Changeset 629
- Timestamp:
- 12/18/2003 09:45:34 AM (21 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/index.php
r628 r629 8 8 9 9 <head> 10 <title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' ::') ?></title>10 <title><?php bloginfo('name') ?><?php single_post_title(' » ') ?><?php single_cat_title(' » ') ?><?php single_month_title(' » ') ?></title> 11 11 12 12 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 13 <meta name="generator" content="WordPress .72" /> <!-- leave this for stats -->13 <meta name="generator" content="WordPress <?php echo $wp_version; ?>" /> <!-- leave this for stats --> 14 14 15 15 <style type="text/css" media="screen"> … … 19 19 <link rel="stylesheet" type="text/css" media="print" href="<?php echo $siteurl; ?>/print.css" /> 20 20 <link rel="alternate" type="text/xml" title="RDF" href="<?php bloginfo('rdf_url'); ?>" /> 21 <link rel="alternate" type="text/xml" title="RSS" href="<?php bloginfo('rss2_url'); ?>" /> 21 <link rel="alternate" type="text/xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 22 <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> 23 22 24 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 23 25 <?php get_archives('monthly', '', 'link'); ?> … … 99 101 <li>Meta: 100 102 <ul> 101 <li><a href="<?php bloginfo('rss_url'); ?>">RSS .92</a></li> 102 <li><a href="<?php bloginfo('rdf_url'); ?>">RDF 1.0</a></li> 103 <li><a href="<?php bloginfo('rss2_url'); ?>">RSS 2.0</a></li> 104 <li><a href="<?php bloginfo('comments_rss2_url'); ?>">Comments RSS 2.0</a></li> 103 <li><a href="<?php bloginfo('rss2_url'); ?>" title="Syndicate this site using RSS"><abbr title="Really Simple Syndication">RSS</abbr> 2.0</a></li> 104 <li><a href="<?php bloginfo('comments_rss2_url'); ?>" title="The latest comments to all posts in RSS">Comments <abbr title="Really Simple Syndication">RSS</abbr> 2.0</a></li> 105 105 <li><a href="http://validator.w3.org/check/referer" title="This page validates as XHTML 1.0 Transitional">Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr></a></li> 106 <li><a href="http://wordpress.org" title="Powered by WordPress, personal publishing platform">WP</a></li>106 <li><a href="http://wordpress.org" title="Powered by WordPress, state-of-the-art semantic personal publishing platform">WP</a></li> 107 107 </ul> 108 108 </li> … … 114 114 </div> 115 115 116 <p class="credit"><?php echo $wpdb->querycount; ?> queries. <?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org" ><strong>WordPress</strong></a></cite></p>116 <p class="credit"><?php echo $wpdb->querycount; ?> queries. <?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>WordPress</strong></a></cite></p> 117 117 </body> 118 118 </html> -
trunk/wp-includes/vars.php
r628 r629 1 1 <?php 2 2 3 /* This file sets various arrays and variables for use in b2*/4 5 # b2version6 $wp_version = ' 0.80';7 8 # BBcode search and replace arrays3 /* This file sets various arrays and variables for use in WordPress */ 4 5 # WordPress version 6 $wp_version = '1.0-alpha-1'; 7 8 # BBcode search and replace arrays 9 9 $wp_bbcode['in'] = array( 10 10 '#\[b](.+?)\[/b]#is', // Formatting tags … … 36 36 ); 37 37 38 # GreyMatter formatting search and replace arrays38 # GreyMatter formatting search and replace arrays 39 39 $wp_gmcode['in'] = array( 40 40 '#\\*\*(.+?)\\*\*#is', // **bold** … … 48 48 ); 49 49 50 # Translation of HTML entities and special characters50 # Translation of HTML entities and special characters 51 51 $wp_htmltrans = array_flip(get_html_translation_table(HTML_ENTITIES)); 52 52 $wp_htmltrans['<'] = '<'; # preserve HTML … … 98 98 $wp_htmltrans = array_merge($wp_htmltrans,$wp_htmltransbis); 99 99 100 # Translation of invalid Unicode references range to valid range100 # Translation of invalid Unicode references range to valid range 101 101 $wp_htmltranswinuni = array( 102 102 '€' => '€', // the Euro sign … … 270 270 } 271 271 272 273 274 275 276 //include_once('textile.php');277 //add_filter('the_content', 'textile');278 272 add_filter('all', 'wptexturize'); 273 add_filter('the_content', 'wpautop'); 274 add_filter('comment_text', 'wpautop'); 275 // Uncomment the following for Textile support 276 // include_once('textile.php'); 277 // add_filter('the_content', 'textile'); 278 // There is some duplication of effort so textile.php really should be tweaked to eliminate that. 279 279 ?>
Note: See TracChangeset
for help on using the changeset viewer.