This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.4.2.min.js"></script> | |
| <script src="http://maps.googleapis.com/maps/api/js?sensor=false"></script> | |
| <script> | |
| jQuery(window).ready(function(){ | |
| g_initialize(); | |
| jQuery("#findLocationBtn").click(initiate_geolocation); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * | |
| * MOVED TO: https://github.com/iFind/html5MultidimensionalStorage | |
| * | |
| * This methods extends the default HTML5 Storage object and add support | |
| * to set and get multidimensional data | |
| * | |
| * @example Storage.setObj('users.albums.sexPistols',"blah"); | |
| * @example Storage.setObj('users.albums.sexPistols',{ sid : "My Way", nancy : "Bitch" }); | |
| * @example Storage.setObj('users.albums.sexPistols.sid',"Other songs"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * SplClassLoader implementation that implements the technical interoperability | |
| * standards for PHP 5.3 namespaces and class names. | |
| * | |
| * http://groups.google.com/group/php-standards/web/final-proposal | |
| * | |
| * // Example which loads classes for the Doctrine Common package in the | |
| * // Doctrine\Common namespace. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| """My Fabric script. | |
| * Deploy code | |
| * Set up a local development environment | |
| There are two ways to deploy the myrepo code: | |
| 1. :func:`deploy` will do a full virtualenv installation/update and expand a | |
| tarball of the specified git revision (defaults to HEAD) to a timestamped |