Changeset 531339
- Timestamp:
- 04/15/2012 11:27:42 AM (14 years ago)
- Location:
- password-protect-wordpress-blog
- Files:
-
- 8 added
- 10 edited
-
. (modified) (1 prop)
-
readme.txt (added)
-
screenshot-1.png (added)
-
screenshot-2.png (added)
-
screenshot-3.png (added)
-
trunk/Thumbs.db (modified) (previous)
-
trunk/lava/_classes/lavaAdvancedTablePage.php (added)
-
trunk/lava/_classes/lavaMiscFunctions.php (modified) (1 diff)
-
trunk/lava/_classes/lavaPages.php (modified) (1 diff)
-
trunk/lava/_classes/lavaTable.php (modified) (1 diff)
-
trunk/lava/_static/scripts.js (modified) (1 diff)
-
trunk/lava/_static/scripts_new.js (added)
-
trunk/lava/_static/table_scripts.js (added)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/screenshot-1.png (modified) (previous)
-
trunk/screenshot-2.png (modified) (previous)
-
trunk/screenshot-3.png (added)
-
trunk/vendor.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
password-protect-wordpress-blog
-
Property
svn:ignore
set to
*.db
-
Property
svn:ignore
set to
-
password-protect-wordpress-blog/trunk/lava/_classes/lavaMiscFunctions.php
r527802 r531339 63 63 } 64 64 if( $ver1 == $ver2 ) { 65 return false; 65 66 return true; 66 67 } 67 return fa sle;68 return false; 68 69 } 69 70 -
password-protect-wordpress-blog/trunk/lava/_classes/lavaPages.php
r527802 r531339 45 45 46 46 $this->addScript( $this->_slug( "lavaScripts" ), "lava/_static/scripts.js", array( "jquery" ) ); 47 $this->addScript( $this->_slug( "lavaScriptsNew" ), "lava/_static/scripts_new.js", array( "jquery" ) ); 47 48 $this->addScript( $this->_slug( "dropkick" ), "lava/_static/dropkick.js", array( "jquery" ) ); 48 49 $this->addScript( $this->_slug( "modernizr" ), "lava/_static/modernizr.js" ); -
password-protect-wordpress-blog/trunk/lava/_classes/lavaTable.php
r527802 r531339 116 116 $sql .= "\n);"; 117 117 require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); 118 119 118 120 dbDelta($sql); 119 121 return true; -
password-protect-wordpress-blog/trunk/lava/_static/scripts.js
r527802 r531339 296 296 }); 297 297 //not implemented buttons 298 jQuery(".lava-btn.not-implemented").addClass("lava-btn-disabled").addClass("tiptip-right").attr("title", "This feature hasn't been im lemented yet :(");298 jQuery(".lava-btn.not-implemented").addClass("lava-btn-disabled").addClass("tiptip-right").attr("title", "This feature hasn't been implemented yet :("); 299 299 } 300 300 -
password-protect-wordpress-blog/trunk/readme.txt
r527802 r531339 5 5 Requires at least: 3.3.1 6 6 Tested up to: 3.3.1 7 Stable tag: 3.97 Stable tag: 4.0 8 8 9 9 This plugin password protects your wordpress blog with a single password. … … 19 19 Internationalized to make translations easy. 20 20 21 Custom Logo [premium only]<br /> 22 Custom Message [premium only]<br /> 23 Multiple Passwords [premium only]<br /> 24 Logging [premium only] 21 Customize the login page (with more skins added all the time) 25 22 26 23 … … 39 36 3. Activate the plugin through the 'Plugins' menu in WordPress 40 37 41 1. Edit the configuration by clicking on 'password protect' under settings 38 1. Edit the configuration by clicking on 'Private Blog' under settings 39 42 40 == Frequently Asked Questions == 43 41 44 Q. I have made a contribution - how do I unlock the premium features.45 42 46 A. The features are unlocked automatically after I process the payment. Please allow 48 hrs for this before contacting me.47 43 48 44 == Screenshots == 49 45 50 1. Wordpress style login form with a customizable logo.46 1. Customizable login form 51 47 52 48 2. Easy to use admin panel can be accessed by clicking on 'Password Protect' under settings on the wordpress admin dashboard. 49 50 2. Change the CSS styles for the login page to get the look and feel right 53 51 54 52 == Changelog == … … 124 122 125 123 * Links can now be in the message (by typing in the html) 124 125 = 4.0 = 126 127 * Complete rewrite -
password-protect-wordpress-blog/trunk/vendor.php
r527802 r531339 9 9 class private_blog_vendor extends lavaExtension { 10 10 11 public $isLocal = False;12 11 public $apiVersion = 1; 13 12 … … 162 161 163 162 function getVendorUrl( $append = "" ) { 164 if( $this->isLocal ) { 163 if( ! defined( 'LAVA_API_IS_LOCAL' ) ) { 164 define( 'LAVA_API_IS_LOCAL', false ); 165 } 166 if( LAVA_API_IS_LOCAL ) { 165 167 return "http://localhost:8082/" . $append; 166 168 } else {
Note: See TracChangeset
for help on using the changeset viewer.