Changeset 469925
- Timestamp:
- 12/01/2011 04:34:07 PM (14 years ago)
- Location:
- tm-replace-howdy
- Files:
-
- 1 deleted
- 7 edited
- 7 copied
-
tags/1.3.1 (copied) (copied from tm-replace-howdy/trunk)
-
tags/1.3.1/index.php (copied) (copied from tm-replace-howdy/trunk/index.php) (2 diffs)
-
tags/1.3.1/js (copied) (copied from tm-replace-howdy/trunk/js)
-
tags/1.3.1/js/tm-replace-howdy-3_1.js (modified) (1 diff)
-
tags/1.3.1/js/tm-replace-howdy-3_2.js (modified) (1 diff)
-
tags/1.3.1/js/tm-replace-howdy-3_3.js (copied) (copied from tm-replace-howdy/trunk/js/tm-replace-howdy-3_3.js) (1 diff)
-
tags/1.3.1/options.php (copied) (copied from tm-replace-howdy/trunk/options.php)
-
tags/1.3.1/readme.txt (copied) (copied from tm-replace-howdy/trunk/readme.txt) (3 diffs)
-
tags/1.3.1/screenshot-1.jpg (copied) (copied from tm-replace-howdy/trunk/screenshot-1.jpg)
-
tags/1.3.1/techm_options.php (deleted)
-
trunk/index.php (modified) (2 diffs)
-
trunk/js/tm-replace-howdy-3_1.js (modified) (1 diff)
-
trunk/js/tm-replace-howdy-3_2.js (modified) (1 diff)
-
trunk/js/tm-replace-howdy-3_3.js (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tm-replace-howdy/tags/1.3.1/index.php
r469914 r469925 5 5 Description: The Replace Howdy Plugin is designed to replace the word "Howdy" in the WordPress backend header with something else. By default it randomly pulls from a list of several replacement words and phrases such as "Hello", "Welcome", and "Get to the choppa". The plugin also comes with a menu where you can limit it to "professional" sounding greetings, set a static word or phrase, or add your own list (which can be by itself or added into the default list for even more variety)! 6 6 Author: David Wood 7 Version: 1.3 7 Version: 1.3.1 8 8 Author URI: http://iamdavidwood.com/ 9 9 Contributors: Micah Wood … … 26 26 27 27 class tm_replace_howdy { 28 private $version = '1.3 ',28 private $version = '1.3.1', 29 29 $tm_howdy_fun = array( // Array containing standard greetings 30 30 'Hello', -
tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_1.js
r465373 r469925 1 1 jQuery(document).ready(function($) { 2 $('#user_info p').html( 3 $('#user_info p') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#user_info p').html( 4 $('#user_info p') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_2.js
r465373 r469925 1 1 jQuery(document).ready(function($) { 2 $('#user_info .hide-if-no-js p').html( 3 $('#user_info .hide-if-no-js p') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#user_info .hide-if-no-js p').html( 4 $('#user_info .hide-if-no-js p') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/tags/1.3.1/js/tm-replace-howdy-3_3.js
r469914 r469925 1 1 jQuery(document).ready(function($) { 2 $('#wp-admin-bar-my-account > a').html( 3 $('#wp-admin-bar-my-account > a') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#wp-admin-bar-my-account > a').html( 4 $('#wp-admin-bar-my-account > a') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/tags/1.3.1/readme.txt
r469914 r469925 10 10 Requires at least: 3.0 11 11 Tested up to: 3.3 12 Stable tag: 1.3 13 Version: 1.3 12 Stable tag: 1.3.1 13 Version: 1.3.1 14 14 15 15 == Description == … … 58 58 59 59 == Upgrade Notice == 60 = 1.3.1 = 61 Fixed a JavaScript related bug that could break WordPress functionality. Replace Howdy now degrades more gracefully when faced with a JavaScript error. 60 62 = 1.3 = 61 63 Further updated for WordPress 3.3 compatibility and updated core functionality to be more secure and efficient. … … 75 77 76 78 == Changelog == 79 = 1.3.1 = 80 * Fixed a JavaScript related bug that could break WordPress functionality 77 81 = 1.3 = 78 82 * Further updated for WordPress 3.3 compatibility -
tm-replace-howdy/trunk/index.php
r469914 r469925 5 5 Description: The Replace Howdy Plugin is designed to replace the word "Howdy" in the WordPress backend header with something else. By default it randomly pulls from a list of several replacement words and phrases such as "Hello", "Welcome", and "Get to the choppa". The plugin also comes with a menu where you can limit it to "professional" sounding greetings, set a static word or phrase, or add your own list (which can be by itself or added into the default list for even more variety)! 6 6 Author: David Wood 7 Version: 1.3 7 Version: 1.3.1 8 8 Author URI: http://iamdavidwood.com/ 9 9 Contributors: Micah Wood … … 26 26 27 27 class tm_replace_howdy { 28 private $version = '1.3 ',28 private $version = '1.3.1', 29 29 $tm_howdy_fun = array( // Array containing standard greetings 30 30 'Hello', -
tm-replace-howdy/trunk/js/tm-replace-howdy-3_1.js
r465373 r469925 1 1 jQuery(document).ready(function($) { 2 $('#user_info p').html( 3 $('#user_info p') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#user_info p').html( 4 $('#user_info p') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/trunk/js/tm-replace-howdy-3_2.js
r465373 r469925 1 1 jQuery(document).ready(function($) { 2 $('#user_info .hide-if-no-js p').html( 3 $('#user_info .hide-if-no-js p') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#user_info .hide-if-no-js p').html( 4 $('#user_info .hide-if-no-js p') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/trunk/js/tm-replace-howdy-3_3.js
r469914 r469925 1 1 jQuery(document).ready(function($) { 2 $('#wp-admin-bar-my-account > a').html( 3 $('#wp-admin-bar-my-account > a') 4 .html() 5 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 2 try { 3 $('#wp-admin-bar-my-account > a').html( 4 $('#wp-admin-bar-my-account > a') 5 .html() 6 .replace(/Howdy/,tmReplaceHowdy.noHowdy)); 7 } catch(err) { 8 return false; 9 } 6 10 }); -
tm-replace-howdy/trunk/readme.txt
r469914 r469925 10 10 Requires at least: 3.0 11 11 Tested up to: 3.3 12 Stable tag: 1.3 13 Version: 1.3 12 Stable tag: 1.3.1 13 Version: 1.3.1 14 14 15 15 == Description == … … 58 58 59 59 == Upgrade Notice == 60 = 1.3.1 = 61 Fixed a JavaScript related bug that could break WordPress functionality. Replace Howdy now degrades more gracefully when faced with a JavaScript error. 60 62 = 1.3 = 61 63 Further updated for WordPress 3.3 compatibility and updated core functionality to be more secure and efficient. … … 75 77 76 78 == Changelog == 79 = 1.3.1 = 80 * Fixed a JavaScript related bug that could break WordPress functionality 77 81 = 1.3 = 78 82 * Further updated for WordPress 3.3 compatibility
Note: See TracChangeset
for help on using the changeset viewer.