├── README.md ├── _attachments ├── costco.css ├── costco.js ├── costco.less ├── index.html ├── jquery.couch.app.js ├── jquery.couch.js ├── jquery.min.js ├── less-1.0.35.min.js └── underscore-min.js ├── _id ├── couchapp.json ├── language └── vendor └── couchapp ├── README.md ├── _attachments ├── jquery.couch.app.js ├── jquery.couch.app.util.js ├── jquery.evently.js ├── jquery.mustache.js ├── jquery.pathbinder.js └── loader.js ├── evently ├── README.md ├── account │ ├── _init.js │ ├── adminParty │ │ └── mustache.html │ ├── doLogin.js │ ├── doLogout.js │ ├── doSignup.js │ ├── loggedIn │ │ ├── after.js │ │ ├── data.js │ │ ├── mustache.html │ │ └── selectors.json │ ├── loggedOut │ │ ├── mustache.html │ │ └── selectors.json │ ├── loginForm │ │ ├── after.js │ │ ├── mustache.html │ │ └── selectors │ │ │ ├── a[href=#signup].json │ │ │ └── form │ │ │ └── submit.js │ └── signupForm │ │ ├── after.js │ │ ├── mustache.html │ │ └── selectors │ │ ├── a[href=#login].json │ │ └── form │ │ └── submit.js └── profile │ ├── loggedIn.js │ ├── loggedOut │ ├── after.js │ └── mustache.html │ ├── noProfile │ ├── data.js │ ├── mustache.html │ └── selectors │ │ └── form │ │ └── submit.js │ └── profileReady │ ├── after.js │ ├── data.js │ └── mustache.html ├── lib ├── atom.js ├── cache.js ├── docform.js ├── linkup.js ├── list.js ├── markdown.js ├── md5.js ├── mustache.js ├── path.js └── redirect.js └── metadata.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/README.md -------------------------------------------------------------------------------- /_attachments/costco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/costco.css -------------------------------------------------------------------------------- /_attachments/costco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/costco.js -------------------------------------------------------------------------------- /_attachments/costco.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/costco.less -------------------------------------------------------------------------------- /_attachments/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/index.html -------------------------------------------------------------------------------- /_attachments/jquery.couch.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/jquery.couch.app.js -------------------------------------------------------------------------------- /_attachments/jquery.couch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/jquery.couch.js -------------------------------------------------------------------------------- /_attachments/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/jquery.min.js -------------------------------------------------------------------------------- /_attachments/less-1.0.35.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/less-1.0.35.min.js -------------------------------------------------------------------------------- /_attachments/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/_attachments/underscore-min.js -------------------------------------------------------------------------------- /_id: -------------------------------------------------------------------------------- 1 | _design/costco -------------------------------------------------------------------------------- /couchapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/couchapp.json -------------------------------------------------------------------------------- /language: -------------------------------------------------------------------------------- 1 | javascript -------------------------------------------------------------------------------- /vendor/couchapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/README.md -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/jquery.couch.app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/jquery.couch.app.js -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/jquery.couch.app.util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/jquery.couch.app.util.js -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/jquery.evently.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/jquery.evently.js -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/jquery.mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/jquery.mustache.js -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/jquery.pathbinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/jquery.pathbinder.js -------------------------------------------------------------------------------- /vendor/couchapp/_attachments/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/_attachments/loader.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/README.md -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/_init.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/adminParty/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/adminParty/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/doLogin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/doLogin.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/doLogout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/doLogout.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/doSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/doSignup.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedIn/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedIn/after.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedIn/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedIn/data.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedIn/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedIn/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedIn/selectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedIn/selectors.json -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedOut/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedOut/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loggedOut/selectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loggedOut/selectors.json -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loginForm/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loginForm/after.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loginForm/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loginForm/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loginForm/selectors/a[href=#signup].json: -------------------------------------------------------------------------------- 1 | {"click" : ["signupForm"]} -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/loginForm/selectors/form/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/loginForm/selectors/form/submit.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/signupForm/after.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/signupForm/after.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/signupForm/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/signupForm/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/signupForm/selectors/a[href=#login].json: -------------------------------------------------------------------------------- 1 | {"click" : ["loginForm"]} -------------------------------------------------------------------------------- /vendor/couchapp/evently/account/signupForm/selectors/form/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/account/signupForm/selectors/form/submit.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/loggedIn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/profile/loggedIn.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/loggedOut/after.js: -------------------------------------------------------------------------------- 1 | function() { 2 | $$(this).profile = null; 3 | }; -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/loggedOut/mustache.html: -------------------------------------------------------------------------------- 1 |
Please log in to see your profile.
-------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/noProfile/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/profile/noProfile/data.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/noProfile/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/profile/noProfile/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/noProfile/selectors/form/submit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/profile/noProfile/selectors/form/submit.js -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/profileReady/after.js: -------------------------------------------------------------------------------- 1 | function(e, p) { 2 | $$(this).profile = p; 3 | }; -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/profileReady/data.js: -------------------------------------------------------------------------------- 1 | function(e, p) { 2 | return p 3 | } 4 | -------------------------------------------------------------------------------- /vendor/couchapp/evently/profile/profileReady/mustache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/evently/profile/profileReady/mustache.html -------------------------------------------------------------------------------- /vendor/couchapp/lib/atom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/atom.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/cache.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/docform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/docform.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/linkup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/linkup.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/list.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/markdown.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/md5.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/mustache.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/path.js -------------------------------------------------------------------------------- /vendor/couchapp/lib/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/lib/redirect.js -------------------------------------------------------------------------------- /vendor/couchapp/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harthur/costco/HEAD/vendor/couchapp/metadata.json --------------------------------------------------------------------------------