This is the reference point. All the other options are based off this.
|-- app
| |-- controllers
| | |-- admin
| <?php | |
| class Model_Acl extends Zend_Acl { | |
| public function __construct() { | |
| // define Roles | |
| $this->addRole(new Zend_Acl_Role('guest')); // not authenicated | |
| $this->addRole(new Zend_Acl_Role('member'), 'guest'); // authenticated as member inherit guest privilages | |
| $this->addRole(new Zend_Acl_Role('admin'), 'member'); // authenticated as admin inherit member privilages |
| #!/bin/bash | |
| ### | |
| # | |
| # Copyright (c) 2011 Cake Development Corporation (http://cakedc.com) | |
| # | |
| # Ubuntu 11.04 based web server installation script | |
| # Run this by executing the following from a fresh install of Ubuntu 11.04 server: | |
| # | |
| # bash -c "$(curl -fsSL https://raw.github.com/gist/1264701)" <mysqlPassword> |
| <html> | |
| <head> | |
| <title>jsonp test</title> | |
| <script src="http://code.jquery.com/jquery-1.6.2.min.js"></script> | |
| <script type="text/javascript"> | |
| $(function(){ | |
| $('#select_link').click(function(e){ | |
| e.preventDefault(); | |
| console.log('select_link clicked'); | |
| // Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
| // Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
| var FORMAT_ONELINE = 'One-line'; | |
| var FORMAT_MULTILINE = 'Multi-line'; | |
| var FORMAT_PRETTY = 'Pretty'; | |
| var LANGUAGE_JS = 'JavaScript'; | |
| var LANGUAGE_PYTHON = 'Python'; |
| // Combine JS and CSS files | |
| // --- | |
| // | |
| // Make sure you install the npm dependencies | |
| // > cd YOUR_PROJECT_FOLDER | |
| // > npm install | |
| // | |
| // Than run: | |
| // > node build |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <div id="fb-root"></div> | |
| <script src="//connect.facebook.net/en_US/all.js"></script> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
| <script src="facebook-deferred.js"></script> |
Put test1.js and test2.js into a tests/ directory, then run the suite:
$ casperjs test tests/ --pre=pre.js --includes=inc.js --post=post.js
Test file: /Users/nperriault/tmp/pre-inc/pre.js
Hey, I'm executed before the suite.
Test file: /Users/nperriault/tmp/pre-inc/tests/test1.js
# this is test 1
Hi, I've been included.
PASS Subject is strictly true
W3C Introduction to Web Components - explainer/overview of the technologies
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.