Make WordPress Core

Changeset 9042


Ignore:
Timestamp:
09/30/2008 09:39:13 PM (18 years ago)
Author:
ryan
Message:

Landing page for turbo

Location:
trunk/wp-admin
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-header.php

    r9040 r9042  
    9191</div>
    9292
    93 <?php
    94 if ( ! $is_opera ) {
    95 ?>
    96     <div id="gears-info-box" class="info-box" style="display:none;">
    97     <img src="images/gear.png" title="Gear" alt="" class="gears-img" />
    98     <div id="gears-msg1">
    99     <h3 class="info-box-title"><?php _e('Speed up WordPress'); ?></h3>
    100     <p><?php _e('WordPress now has support for Gears, which adds new features to your web browser.'); ?><br />
    101     <a href="http://gears.google.com/" target="_blank" style="font-weight:normal;"><?php _e('More information...'); ?></a></p>
    102     <p><?php _e('After you install and enable Gears, most of WordPress&#8217; images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.'); ?></p>
    103     <p><strong><?php _e('Don&#8217;t install on a public or shared computer.'); ?></strong></p> <div class="submit"><button onclick="window.location = 'http://gears.google.com/?action=install&amp;return=<?php echo urlencode( admin_url() ); ?>';" class="button"><?php _e('Install Now'); ?></button>
    104     <button class="button" style="margin-left:10px;" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Cancel'); ?></button></div>
    105     </div>
    106 
    107     <div id="gears-msg2" style="display:none;">
    108     <h3 class="info-box-title"><?php _e('Gears Status'); ?></h3>
    109     <p><?php _e('Gears is installed on this computer, but is not enabled for use with WordPress.'); ?></p>
    110     <p><?php _e('To enable it click the button below.'); ?></p>
    111     <p><strong><?php _e('However, Gears should not be enabled if this is a public or shared computer.'); ?></strong></p>
    112     <div class="submit"><button class="button" onclick="wpGears.getPermission();"><?php _e('Enable Gears'); ?></button>
    113     <button class="button" style="margin-left:10px;" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Cancel'); ?></button></div>
    114     </div>
    115 
    116     <div id="gears-msg3" style="display:none;">
    117     <h3 class="info-box-title"><?php _e('Gears Status'); ?></h3>
    118     <p><?php
    119 
    120     if ( $is_chrome )
    121         _e('Gears is installed and enabled on this computer. You can disable it from your browser&#8217;s Options, Under the Hood menu.');
    122     elseif ( $is_safari )
    123         _e('Gears is installed and enabled on this computer. You can disable it from the Safari menu.');
    124     else
    125         _e('Gears is installed and enabled on this computer. You can disable it from your browser&#8217;s Tools menu.');
    126 
    127     ?></p>
    128     <p><?php _e('If there are any errors try disabling Gears, reloading the page, and re-enabling Gears.'); ?></p>
    129     <p><?php _e('Local storage status:'); ?> <span id="gears-wait"><span style="color:#f00;"><?php _e('Updating files:'); ?></span> <span id="gears-upd-number"></span></span></p>
    130     <div class="submit"><button class="button" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Close'); ?></button></div>
    131     </div>
    132 
    133     <div id="gears-msg4" style="display:none;">
    134     <h3 class="info-box-title"><?php _e('Gears Status'); ?></h3>
    135     <p><?php _e('This web site is denied to use Gears.'); ?></p>
    136     <p><?php
    137 
    138     if ( $is_chrome )
    139         _e('To allow it, change the Gears settings from your browser&#8217;s Options, Under the Hood menu and reload this page.');
    140     elseif ( $is_safari )
    141         _e('To allow it, change the Gears settings from the Safari menu and reload this page.');
    142     else
    143         _e('To allow it, change the Gears settings from your browser&#8217;s Tools menu and reload this page.');
    144 
    145     ?></p>
    146     <p><strong><?php _e('However, Gears should not be enabled if this is a public or shared computer.'); ?></strong></p>
    147     <div class="submit"><button class="button" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Cancel'); ?></button></div>
    148     </div>
    149    
    150     </div>
    151 <?php } ?>
    152 
    15393<div id="user_info"><p><?php printf(__('Howdy, <a href="%1$s">%2$s</a>!'), 'profile.php', $user_identity) ?> <a href="<?php echo wp_logout_url() ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p></div>
    15494<?php
  • trunk/wp-admin/menu.php

    r9040 r9042  
    6767    $submenu['import.php'][10] = array( __('Export'), 'import', 'export.php' );
    6868    $submenu['import.php'][15] = array( __('Press This'), 'publish_posts', get_shortcut_link() );
    69     $submenu['import.php'][20] = array( __('Turbo'), 'read', '#\' onclick=\'wpGears.message(1);return false;' );
     69    $submenu['import.php'][20] = array( __('Turbo'), 'read', 'turbo.php' );
    7070
    7171$menu[45] = array( __('Plugins'), 'activate_plugins', 'plugins.php' );
Note: See TracChangeset for help on using the changeset viewer.