Plugin Directory

Changeset 225256


Ignore:
Timestamp:
04/04/2010 03:51:44 PM (16 years ago)
Author:
OsExpert.net
Message:
 
Location:
wp-dojox-syntax-highlighter
Files:
6 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-dojox-syntax-highlighter/trunk/readme.txt

    r94729 r225256  
    11=== Dojox Wordpress Syntax Highlighter ===
    2 Contributors: OsExpert.net
     2Contributors: saquery.com
    33Donate link:
    44Tags: Syntax,Highlighter,Code,Highlight
    55Requires at least: 2.0.2
    66Tested up to: 2.7.1
    7 Stable tag: 0.2
     7Stable tag: 0.3
    88
    99Free syntax highlighter written in Java Script as Wordpress Plugin.
  • wp-dojox-syntax-highlighter/trunk/wp-dojox-highlight.php

    r94722 r225256  
    22/*
    33Plugin Name: WP Dojox Syntax Highlighter
    4 Plugin URI: http://osexpert.net/wordpress-syntax-highlighter
     4Plugin URI: http://saquery.com/worpdress
    55Description: Wordpress Syntax Highlighter Plugin.
    6 Version: 0.1
     6Version: 0.3
    77Author: Stephan Ahlf
    8 Author URI: http://osexpert.net
     8Author URI: http://saquery.com
    99*/
    1010
    1111    /* Please use this Variable to point to special style sheet. */
    12     $wp_dojox_highlight_theme = "http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojox/highlight/resources/pygments/native.css";
     12    $wp_dojox_highlight_theme = "http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojox/highlight/resources/pygments/native.css";
    1313
    1414    /* Please do NOT change code below! */
    1515    function wpDojoxHighlight_wp_head(){
    1616        global $wp_dojox_highlight_theme;
    17         echo "<!-- wp-dojox-highlight plugin start - http://osexpert.net/wordpress-syntax-highlighter -->";
    18         echo "\n<link href=\"http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojox/highlight/resources/highlight.css\" rel=\"stylesheet\"/>";
     17        echo "<!-- wp-dojox-highlight plugin start - http://saquery.com/wordpress -->";
     18        echo "\n<link href=\"http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojox/highlight/resources/highlight.css\" rel=\"stylesheet\"/>";
    1919        echo "\n<link id=\"syntaxSheet\" href=\"".$wp_dojox_highlight_theme."\" rel=\"stylesheet\"/>";
    20         echo "\n<script djConfig=\"parseOnLoad: true\" src=\"http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojo/dojo.xd.js\"></script>";
     20        echo "\n<script djConfig=\"parseOnLoad: true\" src=\"http://ajax.googleapis.com/ajax/libs/dojo/1.4.1/dojo/dojo.xd.js\"></script>";
    2121        echo "\n<link href=\"".get_bloginfo('home')."/wp-content/plugins/wp-dojox-syntax-highlighter/dh.css\" rel=\"stylesheet\"/>";
    2222        echo "\n<script src=\"".get_bloginfo('home')."/wp-content/plugins/wp-dojox-syntax-highlighter/dh.js\"></script>";
Note: See TracChangeset for help on using the changeset viewer.