Changeset 146545
- Timestamp:
- 08/17/2009 06:54:09 AM (17 years ago)
- Location:
- easy-google-syntax-highlighter/trunk
- Files:
-
- 2 edited
-
easy-google-syntax-highlighter.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-google-syntax-highlighter/trunk/easy-google-syntax-highlighter.php
r139555 r146545 4 4 Plugin URI: http://blog.burlock.org/easy-google-syntax-highlighter/ 5 5 Description: This plugin is an implementation of the <a href='http://alexgorbatchev.com/wiki/SyntaxHighlighter'>Google Syntax Highlighter 2.0</a> with a front end to allow configuring all the global settings that are available. Features include selecting themes and specifying languages to highlight. Any language that is not selected will not be called by your blog which will improve page loading performance. 6 Version: 1.1. 16 Version: 1.1.2 7 7 Author: Neil Burlock 8 8 Author URI: http://blog.burlock.org … … 556 556 if (get_option(key_auto_brushes) == key_false) { 557 557 // key_brushes 558 echo "<script class='javascript' src='$path/scripts/shCore.js'></script>\n";558 echo "<script type='text/javascript' src='$path/scripts/shCore.js'></script>\n"; 559 559 $brushes = unserialize(get_option(key_brushes)); 560 560 foreach ($brushes as $brush) { 561 echo "<script class='javascript' src='$path/scripts/$brush'></script>\n";561 echo "<script type='text/javascript' src='$path/scripts/$brush'></script>\n"; 562 562 } 563 563 echo easy_gsh_insert_jscript(); -
easy-google-syntax-highlighter/trunk/readme.txt
r145154 r146545 5 5 Requires at least:2.0.0 6 6 Tested up to: 2.8.4 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 9 9 An implementation of Alex Gorbachev's Google Syntax Highlighter with a front end to allow configuration. … … 34 34 == Changelog == 35 35 36 = 1.1.2 = 37 * Changed "class='javascript'" to "type='javascript'" in a couple of places (thanks Markus) 38 36 39 = 1.1.1 = 37 40 * Fixed incorrect path for script copy swf file
Note: See TracChangeset
for help on using the changeset viewer.