Changeset 553485
- Timestamp:
- 06/05/2012 06:09:43 PM (14 years ago)
- Location:
- guidepress/trunk
- Files:
-
- 3 edited
-
guidepress.php (modified) (1 diff)
-
js/gp-common.js (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
guidepress/trunk/guidepress.php
r540535 r553485 5 5 Description: The GuidePress plugin puts WordPress video tutorials right into the the WP dashboard! It's a handy companion for new and seasoned WP users. 6 6 Author: GuidePress 7 Version: 0.1. 37 Version: 0.1.4 8 8 Author URI: http://guidepress.net/ 9 9 -
guidepress/trunk/js/gp-common.js
r529529 r553485 87 87 $('#subscribe-dialog').prepend('<div class="error"><p>Your account couldn\'t be verified!</p></div>'); 88 88 } else { 89 $('#subscribe-dialog').prepend('<div class="updated"><p>Your account was successfully verified!</p></div>'); 89 // data 90 var data = {action: 'client_api', username: jQuery('#username_dlg').val(), password: jQuery('#password_dlg').val()}; 91 // ajax call to update video library 92 jQuery.post(ajaxurl, data, function(response) { 93 $('#subscribe-dialog').prepend('<div class="updated"><p>Your account was successfully verified!</p></div>'); 94 if (!response) { 95 alert('Bad AJAX response. Please reload the page.'); 96 } else { 97 var json_response = jQuery.parseJSON(response); 98 jQuery('.updated', '#subscribe-dialog').append('<p>Your GuidePress video library has been updated!</p>'); 99 if (json_response.errors_number > 0) { 100 jQuery('.updated', '#subscribe-dialog').append('<p>There were some errors while updating your GuidePress video library</p>'); 101 jQuery('.updated', '#subscribe-dialog').html('<br/><b>Errors:</b> ' + json_response.errors); 102 } 103 } // if 104 }); // jQuery.post 90 105 } // if 91 106 }); // jQuery.post 107 92 108 return false; 93 109 }); … … 286 302 alert('Bad AJAX response. Please reload the page.'); 287 303 } else { 288 console.log(response);289 304 var json_response = jQuery.parseJSON(response); 290 305 jQuery('#cgp-update-message').hide(); … … 325 340 $('#subscribe-dialog').dialog({ 326 341 autoOpen: false, 327 height: 350,342 height: 400, 328 343 width: 500, 329 344 dialogClass: 'wp-dialog', -
guidepress/trunk/readme.txt
r540535 r553485 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3MX23YDX9XU3Y 4 4 Tags: guidepress, tutorials, video tutorials, screencasts, help videos, help, learn, training, training videos, instructions 5 Requires at least: 3.3.1 6 Tested up to: 3.3.1 7 Stable tag: 0.1.3 5 License: GPLv2 or later 6 Requires at least: 3.3 7 Tested up to: 3.3.2 8 Stable tag: 0.1.4 8 9 9 The GuidePress plugin puts WordPress videos tutorials right to the WP dashboard! It's a handy companion for new and seasoned WP users.10 The GuidePress plugin puts WordPress videos tutorials right into the WP dashboard! It's a handy companion for new and seasoned WP users. 10 11 11 12 == Description == … … 18 19 You'll need a subscription to use this plugin. Simply create a [free GuidePress account](http://guidepress.net/wp-login.php?action=register "GuidePress Registration Screen") and you'll automatically get a lifetime free subscription. 19 20 20 We also offer a [Premium subscription](http://guidepress.net/pricing/ "GuidePress Premium Subscription"). 21 22 **Note:** We only have a small number of video at the moment. But we'll be adding more in the coming weeks. 21 We will soon be offering a [Premium subscription](http://guidepress.net/pricing/ "GuidePress Premium Subscription"). 23 22 24 23 25 24 Main features include: 26 25 26 * There are **over 30 video tutorials** available to watch. 27 27 * Watch video tutorials without leaving the WordPress dashboard 28 28 * Videos are discretely placed inside a "video tutorials" dropdown tab … … 74 74 == Changelog == 75 75 76 = 0.1.4 = 77 * 30/05/12 78 * Added functionality for updating video library immediately after user verification. 79 76 80 = 0.1.3 = 77 81 * 06/05/12
Note: See TracChangeset
for help on using the changeset viewer.