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
<?xml version="1.0" encoding="utf-8"?> | |
<config> | |
<locales> | |
<locale id="en_us" language="en" name="US English" default="true" /> | |
</locales> | |
<settings> | |
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
{ | |
"cmd": ["ant", "-f", "build.xml"], | |
"file_regex": "^ *\\[javac\\] (.+):([0-9]+):() (.*)$", | |
"working_dir": "${project_path:${folder}}/.ant", | |
"selector": "source.java", | |
"windows": | |
{ | |
"cmd": ["ant.bat"] | |
} |
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
example : function(req, res){ | |
var data = { | |
foo : "foo", | |
bar : "bar", | |
foobar : "foobar" | |
}; | |
res.render('example', {data: data}); | |
} |
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
(function(){ | |
var staticProps = { | |
SOME_PROP : "someVal" | |
}; | |
minion.define("example", { | |
Example : minion.extend("minion.Class", { | |
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
Must Haves: | |
- Issues | |
Nice to Haves: | |
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
var USE_LOCAL_JSON = true, | |
globals = { | |
settings : { | |
TEMPLATE_DEBUG : true | |
}, | |
USE_LOCAL_JSON : USE_LOCAL_JSON, | |
STATIC_URL : "static/", |
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
javascript:(function(){var links = document.getElementsByTagName("link");for (var i = 0; i < links.length; i++) {var link = links[i];if (link.rel === "stylesheet") {var queryString = "";var args = {};var href = link.href;href.replace(/[?&]+([^=&]+)(?:[=]*)([^&]*)/gi, function (m, key, value) {args[key] = value;});args.reload = (new Date()).getTime();for (var p in args) {queryString += (queryString ? "&" : "?") + p + "=" + args[p];}link.href = link.href.replace(/\?.*|$/, queryString);}}}()); |
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
define ( | |
[ | |
"rosy/base/Class", | |
"rosy/routing/Router", | |
"rosy/routing/HistoryRouter", | |
"rosy/routing/HashRouter", | |
"mySite/views/About" | |
], |
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
define ( | |
[ | |
"rosy/base/Class", | |
"rosy/routing/Router", | |
"rosy/routing/HistoryRouter", | |
"rosy/routing/HashRouter", | |
"mySite/views/About" | |
], |
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
location /muppets-most-wanted/mobile.html { | |
alias /path/to/files/mobile.html; | |
} | |
location /muppets-most-wanted/ { | |
alias /path/to/files/; | |
set $mobile_rewrite do_not_perform; | |
set $force_dt_cookie ""; |