Changeset 502832
- Timestamp:
- 02/09/2012 05:57:17 PM (14 years ago)
- Location:
- gliffy-plugin-for-wordpress/trunk/lib
- Files:
-
- 3 edited
-
examples/simple/gliffyWrapper.php (modified) (1 diff)
-
src/GliffyFolder.php (modified) (2 diffs)
-
src/OAuth.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gliffy-plugin-for-wordpress/trunk/lib/examples/simple/gliffyWrapper.php
r500015 r502832 22 22 $returnPage = str_replace( 'gliffyWrapper.php', 'closeGliffy.php', $_SERVER['PHP_SELF'] ); 23 23 $returnURL = "http://" . $_SERVER['SERVER_NAME'] . $returnPage; 24 echo "Return URL: " . $returnURL ;25 24 26 25 # Get the diagram editor link -
gliffy-plugin-for-wordpress/trunk/lib/src/GliffyFolder.php
r500015 r502832 27 27 // Creates a folder object from an xml folder, including and child folders 28 28 public static function from_response_xml( $response ) { 29 echo "\n\n from_response_xml";30 29 return GliffyFolder::from_folder_xml( $response->folders->folder ); 31 30 } … … 34 33 // Creates a folder object from an xml folder, including and child folders 35 34 public static function from_folder_xml( $folder ) { 36 37 echo "\n\n from_folder_xml";38 35 $newFolder = new GliffyFolder( (string) $folder->name, 39 36 (bool) $folder['is-default'], -
gliffy-plugin-for-wordpress/trunk/lib/src/OAuth.php
r500015 r502832 65 65 public function build_signature($request, $consumer, $token) {/*{{{*/ 66 66 $base_string = $request->get_signature_base_string(); 67 //echo "\nBASE STRING YO:" . $base_string ;68 67 $request->base_string = $base_string; 69 70 //cho "\n\nUsing secret: $token->secret";71 //echo "\nUsing key: $token->key \n";72 73 74 68 75 69 $key_parts = array(
Note: See TracChangeset
for help on using the changeset viewer.