Plugin Directory

Changeset 502832


Ignore:
Timestamp:
02/09/2012 05:57:17 PM (14 years ago)
Author:
gliffy
Message:

updates to Gliffy client library

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

Legend:

Unmodified
Added
Removed
  • gliffy-plugin-for-wordpress/trunk/lib/examples/simple/gliffyWrapper.php

    r500015 r502832  
    2222$returnPage = str_replace( 'gliffyWrapper.php', 'closeGliffy.php',  $_SERVER['PHP_SELF'] );
    2323$returnURL = "http://" . $_SERVER['SERVER_NAME'] . $returnPage;
    24 echo "Return URL: " . $returnURL ;
    2524
    2625# Get the diagram editor link
  • gliffy-plugin-for-wordpress/trunk/lib/src/GliffyFolder.php

    r500015 r502832  
    2727    // Creates a folder object from an xml folder, including and child folders
    2828    public static function from_response_xml( $response  ) {
    29         echo "\n\n from_response_xml";   
    3029        return GliffyFolder::from_folder_xml( $response->folders->folder );
    3130    }
     
    3433    // Creates a folder object from an xml folder, including and child folders
    3534    public static function from_folder_xml( $folder  ) {
    36 
    37         echo "\n\n from_folder_xml";   
    3835        $newFolder = new GliffyFolder( (string)   $folder->name,
    3936                                       (bool) $folder['is-default'],
  • gliffy-plugin-for-wordpress/trunk/lib/src/OAuth.php

    r500015 r502832  
    6565  public function build_signature($request, $consumer, $token) {/*{{{*/
    6666    $base_string = $request->get_signature_base_string();
    67     //echo "\nBASE STRING YO:" . $base_string ;
    6867    $request->base_string = $base_string;
    69 
    70     //cho "\n\nUsing secret: $token->secret";
    71     //echo "\nUsing key: $token->key \n";
    72 
    73 
    7468
    7569    $key_parts = array(
Note: See TracChangeset for help on using the changeset viewer.