Log in with username/password: lyceum/lyceum

Changeset 1014

Show
Ignore:
Timestamp:
03/04/07 00:28:45 (3 years ago)
Author:
jjb
Message:

Syncing with WP 2.0.9

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dev/script/compare-wordpress-code

    r998 r1014  
    11#!/bin/sh 
    22 
    3 # working directory must be the top of trunk/src/lyceum 
    4 # $1 is a local path to a file or dirctory 
    5  
    6 # ~/lyceum/trunk/src/lyceum$ pwd 
    7 # /Users/USERNAME/lyceum/trunk/src/lyceum 
    8 # ~/lyceum/trunk/src/lyceum$ ../../dev/script/compare-wordpress-code . 
     3# see notes in compare-wordpress-structure 
    94 
    105#hardcode this to the version of wordpress you want to compare 
    11 WP=/Users/john/ibiblio/wordpress/tags/2.0.1 
     6WP=../../../../wordpress/tags/2.0.9 
    127 
    138left=$WP/$2  
  • trunk/dev/script/compare-wordpress-structure

    r993 r1014  
    55 
    66# ~/lyceum/trunk/src/lyceum$ pwd 
    7 # /Users/USERNAME/lyceum/trunk/src/lyceum 
    8 # ~/lyceum/trunk/src/lyceum$ ../../dev/script/compare-wordpress-code . 
     7# ....../lyceum/trunk/src/lyceum 
    98 
    10 #hardcode this to the version of wordpress you want to compare 
    11 WP=/Users/john/ibiblio/wordpress/tags/2.0.1 
     9# Assumes the entire wordpress source tree is sitting in the same directory  
     10# as the entire lyceum source tree. 
     11 
     12# hardcode this to the version of wordpress you want to compare 
     13WP=../../../../wordpress/tags/2.0.1 
    1214 
    1315echo '.svn' > /tmp/diffexcludes 
  • trunk/src/lyceum/wp-includes/functions.php

    r1008 r1014  
    25582558      } 
    25592559      $html .= "\t\t<input type='hidden' name='_wpnonce' value='" . wp_create_nonce($action) . "' />\n"; 
    2560       $html .= "\t\t<div id='message' class='confirm fade'>\n\t\t<p>" . wp_explain_nonce($action) . "</p>\n\t\t<p><a href='$adminurl'>" . __('No') . "</a> <input type='submit' value='" . __('Yes') . "' /></p>\n\t\t</div>\n\t</form>\n"; 
    2561    } else { 
    2562       $html .= "\t<div id='message' class='confirm fade'>\n\t<p>" . wp_explain_nonce($action) . "</p>\n\t<p><a href='$adminurl'>" . __('No') . "</a> <a href='" . attribute_escape(add_query_arg('_wpnonce', wp_create_nonce($action), $_SERVER['REQUEST_URI'])) . "'>" . __('Yes') . "</a></p>\n\t</div>\n"; 
     2560      $html .= "\t\t<div id='message' class='confirm fade'>\n\t\t<p>" . wp_specialchars(wp_explain_nonce($action)) . "</p>\n\t\t<p><a href='$adminurl'>" . __('No') . "</a> <input type='submit' value='" . __('Yes') . "' /></p>\n\t\t</div>\n\t</form>\n"; 
     2561   } else { 
     2562      $html .= "\t<div id='message' class='confirm fade'>\n\t<p>" . wp_specialchars(wp_explain_nonce($action)) . "</p>\n\t<p><a href='$adminurl'>" . __('No') . "</a> <a href='" . attribute_escape(add_query_arg('_wpnonce', wp_create_nonce($action), $_SERVER['REQUEST_URI'])) . "'>" . __('Yes') . "</a></p>\n\t</div>\n"; 
    25632563   } 
    25642564   $html .= "</body>\n</html>"; 
  • trunk/src/lyceum/wp-includes/js/tinymce/tiny_mce_gzip.php

    r1002 r1014  
    6060 
    6161   // Output rest of headers 
    62    header("Content-type: text/javascript; charset: UTF-8"); 
     62   header("Content-Type: text/javascript; charset=".get_bloginfo('charset')); 
    6363   header("Vary: Accept-Encoding"); // Handle proxies 
    6464   header("Expires: " . gmdate("D, d M Y H:i:s", time() + $expiresOffset) . " GMT"); 
  • trunk/src/lyceum/wp-includes/js/tinymce/wp-mce-help.php

    r991 r1014  
    22require('../../private.php'); 
    33require_once(CONFIGPATH . 'wp-config.php'); 
     4 
     5header('Content-Type: text/html; charset='.get_bloginfo('charset')); 
    46 
    57?> 
  • trunk/src/lyceum/wp-includes/version.php

    r1008 r1014  
    33// This just holds the version number, in a separate file so we can bump it without cluttering the SVN 
    44 
    5 $wp_version = '0.48'; 
     5$wp_version = '1.0.9.0-beta'; 
    66$wp_db_version = 2; 
    77 
Log in with username/password: lyceum/lyceum