Plugin Directory

Changeset 376042


Ignore:
Timestamp:
04/22/2011 05:24:57 PM (15 years ago)
Author:
apollox2
Message:
 
Location:
syntaxhighlighter-evolved-applescript
Files:
9 added
2 edited

Legend:

Unmodified
Added
Removed
  • syntaxhighlighter-evolved-applescript/trunk/readme.txt

    r376019 r376042  
    55Requires at least: 2.7
    66Tested up to: 3.1.1
    7 Stable tag: 1.1.0
     7Stable tag: 1.2.0
    88
    99Adds support for the AppleScript language to the SyntaxHighlighter Evolved plugin.
     
    2929###Plugin Usage###
    3030
    31 Just wrap your code in [applescript], such as [applescript]code here[/applescript] or [as]code here[/as].
     31Just wrap your code in [applescript], such as [applescript]code here[/applescript].
    3232
    3333The 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  
    1616// Register the brush file with WordPress
    1717function 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');
    2020}
    2121
     
    2323function syntaxhighlighter_applescript_addlang( $brushes ) {
    2424    $brushes['applescript'] = 'applescript';
    25     $brushes['applescript'] = 'as';
     25    //$brushes['applescript'] = 'as';
    2626    return $brushes;
    2727}
Note: See TracChangeset for help on using the changeset viewer.