Plugin Directory

Changeset 531336


Ignore:
Timestamp:
04/15/2012 11:25:24 AM (14 years ago)
Author:
jcnetsys
Message:

4.0 update

Location:
password-protect-wordpress/trunk
Files:
4 added
15 edited

Legend:

Unmodified
Added
Removed
  • password-protect-wordpress/trunk

    • Property svn:ignore set to
      Thumbs.db
  • password-protect-wordpress/trunk/images

    • Property svn:ignore set to
      *.db
  • password-protect-wordpress/trunk/lava/_classes/lavaMiscFunctions.php

    r527785 r531336  
    6363        }
    6464        if( $ver1 == $ver2 ) {
     65            return false;
    6566            return true;
    6667        }
    67         return fasle;
     68        return false;
    6869    }
    6970
  • password-protect-wordpress/trunk/lava/_classes/lavaPages.php

    r527785 r531336  
    4545
    4646        $this->addScript( $this->_slug( "lavaScripts" ), "lava/_static/scripts.js", array( "jquery" ) );
     47        $this->addScript( $this->_slug( "lavaScriptsNew" ), "lava/_static/scripts_new.js", array( "jquery" ) );
    4748        $this->addScript( $this->_slug( "dropkick" ), "lava/_static/dropkick.js", array( "jquery" ) );
    4849        $this->addScript( $this->_slug( "modernizr" ), "lava/_static/modernizr.js" );
  • password-protect-wordpress/trunk/lava/_classes/lavaTable.php

    r527785 r531336  
    116116        $sql .= "\n);";
    117117        require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
     118
     119
    118120        dbDelta($sql);
    119121        return true;
  • password-protect-wordpress/trunk/lava/_static/scripts.js

    r527785 r531336  
    296296    });
    297297    //not implemented buttons
    298     jQuery(".lava-btn.not-implemented").addClass("lava-btn-disabled").addClass("tiptip-right").attr("title", "This feature hasn't been imlemented yet :(");
     298    jQuery(".lava-btn.not-implemented").addClass("lava-btn-disabled").addClass("tiptip-right").attr("title", "This feature hasn't been implemented yet :(");
    299299}
    300300
  • password-protect-wordpress/trunk/readme.txt

    r527785 r531336  
    55Requires at least: 3.3.1
    66Tested up to: 3.3.1
    7 Stable tag: 3.9
     7Stable tag: 4.0
    88
    99This plugin password protects your wordpress blog with a single password.
     
    1919Internationalized to make translations easy.
    2020
    21 Custom Logo [premium only]<br />
    22 Custom Message [premium only]<br />
    23 Multiple Passwords [premium only]<br />
    24 Logging [premium only]
     21Customize the login page (with more skins added all the time)
    2522
    2623
     
    39363. Activate the plugin through the 'Plugins' menu in WordPress
    4037
    41 1. Edit the configuration by clicking on 'password protect' under settings
     381. Edit the configuration by clicking on 'Private Blog' under settings
     39
    4240== Frequently Asked Questions ==
    4341
    44 Q. I have made a contribution - how do I unlock the premium features.
    4542
    46 A. The features are unlocked automatically after I process the payment. Please allow 48 hrs for this before contacting me.
    4743
    4844== Screenshots ==
    4945
    50 1. Wordpress style login form with a customizable logo.
     461. Customizable login form
    5147
    52482. Easy to use admin panel can be accessed by clicking on 'Password Protect' under settings on the wordpress admin dashboard.
     49
     502. Change the CSS styles for the login page to get the look and feel right
    5351
    5452== Changelog ==
     
    124122
    125123* Links can now be in the message (by typing in the html)
     124
     125= 4.0 =
     126
     127* Complete rewrite
  • password-protect-wordpress/trunk/skins/default

    • Property svn:ignore set to
      *.db
  • password-protect-wordpress/trunk/skins/default/static/images

    • Property svn:ignore set to
      *.db
  • password-protect-wordpress/trunk/skins/defaultcustom

    • Property svn:ignore set to
      *.db
  • password-protect-wordpress/trunk/skins/defaultcustom/static/images

    • Property svn:ignore set to
      *.db
  • password-protect-wordpress/trunk/vendor.php

    r527809 r531336  
    99class private_blog_vendor extends lavaExtension {
    1010
    11     public $isLocal = false;
    1211    public $apiVersion = 1;
    1312
     
    162161
    163162    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 ) {
    165167            return "http://localhost:8082/" . $append;
    166168        } else {
Note: See TracChangeset for help on using the changeset viewer.