Plugin Directory

Changeset 139007


Ignore:
Timestamp:
07/24/2009 11:32:59 PM (17 years ago)
Author:
gliffy
Message:

1.1.2

Location:
gliffy-plugin-for-wordpress/trunk
Files:
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • gliffy-plugin-for-wordpress/trunk/gliffy-plugin-for-wordpress.php

    r138966 r139007  
    44Plugin URI: http://wiki.gliffy.com/display/APIAPPS/WordPress+Plugin
    55Description: Create diagrams and insert them into your posts or pages!  Look for the "Diagrams" menu when you activate the plugin, and use the Gliffy button on the media bar to insert diagrams.  This plugin is dependent on the publicly available Gliffy Client library for php.  Once activated, make sure to <a href="options-general.php?page=gliffy-config">configure</a> the plugin in the settings menu.
    6 Version: 0.1.1
     6Version: 0.1.2
    77Author: Gliffy, Inc.
    88Author URI: http://www.gliffy.com/
  • gliffy-plugin-for-wordpress/trunk/gliffy-wp-diagrams.php

    r138961 r139007  
    6565            if ($diagram->is_public) {
    6666                $gliffy_root = get_option('gliffy_root');
    67                 $img = " | <a href='$gliffy_root/pubdoc/$diagram->id/L.jpg' >View</a>";
     67                $img = " | <a href='$gliffy_root/pubdoc/$diagram->id/L.jpg' title='View'>View</a>";
    6868
    6969                echo "<span class='view'>$img</span>";
  • gliffy-plugin-for-wordpress/trunk/gliffy-wp-options.php

    r138961 r139007  
    1515API access is a feature of Gliffy Premium Accounts.  Follow the links below to get your API credentials.
    1616</p>
     17
     18<?php
     19    $gliffy_root = get_option("gliffy_root");
     20    if (empty($gliffy_root)) {
     21        $gliffy_root = "http://www.gliffy.com";
     22    }
     23?>
    1724
    1825<form method="post" action="options.php">
     
    4855        </th>
    4956        <td style="vertical-align:middle;">
    50         <a href="<?php echo get_option('gliffy_root') , '/gliffy/account/accountAPILogin.jsp'; ?>" onClick="showPopup(this.href);return(false);" >Get API Credentials</a>
    51         <a style="padding: 25px;" href="<?php echo get_option('gliffy_root') , '/gliffy/commerce/signup.jsp'; ?>">Don't have a Gliffy Account?</a>
     57        <a href="<?php echo $gliffy_root , '/gliffy/account/accountAPILogin.jsp'; ?>" onClick="showPopup(this.href);return(false);" >Get API Credentials</a>
     58        <a style="padding: 25px;" href="<?php echo $gliffy_root , '/gliffy/commerce/signup.jsp'; ?>">Don't have a Gliffy Account?</a>
    5259        </td>
    5360    </tr>
  • gliffy-plugin-for-wordpress/trunk/readme.txt

    r138961 r139007  
    4040== Changelog ==
    4141
     42= 0.1.2 =
     43* Changed root filename to match the plugin folder name 'gliffy-plugin-for-wordpress.php'
     44* Changed the credential path and signup path to point to gliffy.com if no other Gliffy ROOT is specified
     45
    4246= 0.1.1 =
    4347* Updated paths to reflect the svn repository name of 'gliffy-plugin-for-wordpress'
Note: See TracChangeset for help on using the changeset viewer.