Make WordPress Core

Changeset 629


Ignore:
Timestamp:
12/18/2003 09:45:34 AM (21 years ago)
Author:
saxmatt
Message:

Formatting changes and version bump.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r628 r629  
    88
    99<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(' &raquo; ') ?><?php single_cat_title(' &raquo; ') ?><?php single_month_title(' &raquo; ') ?></title>
    1111   
    1212    <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 -->
    1414
    1515    <style type="text/css" media="screen">
     
    1919    <link rel="stylesheet" type="text/css" media="print" href="<?php echo $siteurl; ?>/print.css" />
    2020    <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   
    2224    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    2325    <?php get_archives('monthly', '', 'link'); ?>
     
    99101 <li>Meta:
    100102    <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>
    105105        <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>
    107107    </ul>
    108108 </li>
     
    114114</div>
    115115
    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>
    117117</body>
    118118</html>
  • trunk/wp-includes/vars.php

    r628 r629  
    11<?php
    22
    3 /* This file sets various arrays and variables for use in b2 */
    4 
    5 #b2 version
    6 $wp_version = '0.80';
    7 
    8 #BBcode search and replace arrays
     3/* 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
    99$wp_bbcode['in'] = array(
    1010    '#\[b](.+?)\[/b]#is',       // Formatting tags
     
    3636);
    3737
    38 #GreyMatter formatting search and replace arrays
     38# GreyMatter formatting search and replace arrays
    3939$wp_gmcode['in'] = array(
    4040    '#\\*\*(.+?)\\*\*#is',      // **bold**
     
    4848);
    4949
    50 #Translation of HTML entities and special characters
     50# Translation of HTML entities and special characters
    5151$wp_htmltrans = array_flip(get_html_translation_table(HTML_ENTITIES));
    5252$wp_htmltrans['<'] = '<';   # preserve HTML
     
    9898$wp_htmltrans = array_merge($wp_htmltrans,$wp_htmltransbis);
    9999
    100 #Translation of invalid Unicode references range to valid range
     100# Translation of invalid Unicode references range to valid range
    101101$wp_htmltranswinuni = array(
    102102    '&#128;' => '&#8364;', // the Euro sign
     
    270270}
    271271
    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.
     272add_filter('all', 'wptexturize');
     273add_filter('the_content', 'wpautop');
     274add_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.
    279279?>
Note: See TracChangeset for help on using the changeset viewer.