Changeset 376042
- Timestamp:
- 04/22/2011 05:24:57 PM (15 years ago)
- Location:
- syntaxhighlighter-evolved-applescript
- Files:
-
- 9 added
- 2 edited
-
tags/1.2.0 (added)
-
tags/1.2.0/readme.txt (added)
-
tags/1.2.0/screenshot-1.png (added)
-
tags/1.2.0/scripts (added)
-
tags/1.2.0/scripts/shBrushAppleScript.js (added)
-
tags/1.2.0/styles (added)
-
tags/1.2.0/styles/bg.png (added)
-
tags/1.2.0/styles/shThemeAppleScript.css (added)
-
tags/1.2.0/syntaxhighlighter-applescript.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/syntaxhighlighter-applescript.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
syntaxhighlighter-evolved-applescript/trunk/readme.txt
r376019 r376042 5 5 Requires at least: 2.7 6 6 Tested up to: 3.1.1 7 Stable tag: 1. 1.07 Stable tag: 1.2.0 8 8 9 9 Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin. … … 29 29 ###Plugin Usage### 30 30 31 Just wrap your code in [applescript], such as [applescript]code here[/applescript] or [as]code here[/as].31 Just wrap your code in [applescript], such as [applescript]code here[/applescript]. 32 32 33 33 The shortcodes accept a wide variety of parameters. For details, see the bottom of the SyntaxHighlighter Evolved's settings page. -
syntaxhighlighter-evolved-applescript/trunk/syntaxhighlighter-applescript.php
r376010 r376042 16 16 // Register the brush file with WordPress 17 17 function syntaxhighlighter_applescript_regscript() { 18 wp_register_script( 'syntaxhighlighter-brush-applescript', plugins_url('syntaxhighlighter- applescript/scripts/shBrushAppleScript.js'), array('syntaxhighlighter-core'), '1.0.2');19 wp_register_style( 'syntaxhighlighter-theme-applescript', plugins_url('syntaxhighlighter- applescript/styles/shThemeAppleScript.css'), array('syntaxhighlighter-core'), '1.0.2');18 wp_register_script( 'syntaxhighlighter-brush-applescript', plugins_url('syntaxhighlighter-evolved-applescript/scripts/shBrushAppleScript.js'), array('syntaxhighlighter-core'), '1.0.2'); 19 wp_register_style( 'syntaxhighlighter-theme-applescript', plugins_url('syntaxhighlighter-evolved-applescript/styles/shThemeAppleScript.css'), array('syntaxhighlighter-core'), '1.0.2'); 20 20 } 21 21 … … 23 23 function syntaxhighlighter_applescript_addlang( $brushes ) { 24 24 $brushes['applescript'] = 'applescript'; 25 $brushes['applescript'] = 'as';25 //$brushes['applescript'] = 'as'; 26 26 return $brushes; 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.