├── .envrc ├── .gitignore ├── .ssh └── config ├── Cakefile ├── Dockerfile ├── LICENCE ├── Procfile ├── README.md ├── activate ├── bin ├── changeUserDetails.js ├── contact ├── custard-munin ├── find-unsubscribed.coffee ├── journalistDatasets.js ├── livemongo ├── lookfor ├── mongo-timestamp ├── mongurl └── whbox ├── client ├── code │ ├── app.coffee │ ├── model │ │ ├── boxable.coffee │ │ ├── dataset.coffee │ │ ├── tool.coffee │ │ ├── user.coffee │ │ └── view.coffee │ ├── namespace.coffee │ ├── router │ │ └── main.coffee │ ├── shared │ ├── template │ ├── util.coffee │ └── view │ │ ├── dashboard.coffee │ │ ├── dataset │ │ ├── deleted.coffee │ │ ├── list.coffee │ │ ├── row.coffee │ │ ├── tile.coffee │ │ └── tools.coffee │ │ ├── docs.coffee │ │ ├── error.coffee │ │ ├── fourohfour.coffee │ │ ├── home.coffee │ │ ├── nav.coffee │ │ ├── people-pack.coffee │ │ ├── pricing.coffee │ │ ├── profile │ │ ├── create-profile.coffee │ │ ├── reset-password.coffee │ │ └── set-password.coffee │ │ ├── sign-up.coffee │ │ ├── subnav.coffee │ │ ├── subscribe.coffee │ │ ├── terms.coffee │ │ ├── thankyou.coffee │ │ └── tool │ │ ├── content.coffee │ │ ├── list-header.coffee │ │ ├── list.coffee │ │ ├── menu-item.coffee │ │ └── tile.coffee └── template │ ├── create-profile.eco │ ├── dataset-row-deleted.eco │ ├── dataset-row.eco │ ├── dataset-tile-deleted.eco │ ├── dataset-tile.eco │ ├── dataset-views.eco │ ├── fourohfour.eco │ ├── help-code-in-your-browser.eco │ ├── help-corporate.eco │ ├── help-developer.eco │ ├── help-home.eco │ ├── help-make-your-own-tool.eco │ ├── help-upload-and-summarise.eco │ ├── help-whats-new.eco │ ├── help-zig.eco │ ├── helpnav.eco │ ├── index.eco │ ├── modal-add-ssh.eco │ ├── modal-api-endpoints.eco │ ├── modal-downgrade.eco │ ├── modal-ssh.eco │ ├── modal-upgrade.eco │ ├── nav.eco │ ├── people-pack.eco │ ├── pricing.eco │ ├── reset-password.eco │ ├── set-password.eco │ ├── sign-up.eco │ ├── signupnav.eco │ ├── subnav-home.eco │ ├── subnav-toolbar.eco │ ├── subnav.eco │ ├── subscribe.eco │ ├── terms-enterprise-agreement.eco │ ├── terms.eco │ ├── thankyou.eco │ ├── tool-tile.eco │ ├── toolbar-tile.eco │ └── view-tile.eco ├── cron └── find-unsubscribed.sh ├── docker-compose.yml ├── docker ├── Dockerfile ├── custard-data-image │ └── Dockerfile ├── populate-node-modules.sh ├── run.sh └── start.sh ├── fixtures.js ├── migration ├── 010camelCase ├── 020grandfatherPlan ├── 040addRecurlyAccounts ├── 050addBoxServers ├── 060addDatasetServers ├── 070addBoxJSON ├── 080addDatasetsBoxJSON ├── 090addMeToMe ├── 100addToBeDeleted ├── 2013-08-symlink-migration │ ├── cobalt_symlink │ ├── generate-migrate-scripts.sh │ └── should-migrate.sh ├── checkServerConsistency └── update_tools.js ├── package.json ├── pre-commit.sh ├── server.js ├── server ├── code │ ├── index.coffee │ ├── lib │ │ ├── email.coffee │ │ └── sign.coffee │ ├── model │ │ ├── base.coffee │ │ ├── box.coffee │ │ ├── dataset.coffee │ │ ├── plan.coffee │ │ ├── subscription.coffee │ │ ├── token.coffee │ │ ├── tool.coffee │ │ └── user.coffee │ └── plans.json └── template │ ├── base_footer.html │ ├── base_header.html │ ├── index.html │ ├── login.html │ └── not_found.html ├── shared ├── code │ ├── custard.coffee │ ├── page-titles.coffee │ ├── scraperwiki.coffee │ └── views.coffee ├── image │ ├── avatar-rob.png │ ├── avatar.png │ ├── chooser-icon-24px.png │ ├── dataset-tools-toggle.png │ ├── exclamation-red.png │ ├── favicon.ico │ ├── header-highlight.png │ ├── header-logo.png │ ├── icon-cloud.png │ ├── icon-cross.png │ ├── icon-input-search.png │ ├── icon-rename.png │ ├── icon-settings.png │ ├── icon-terminal.png │ ├── icon.png │ ├── loader-btn-danger.gif │ ├── loader-btn-default.gif │ ├── loader-btn-info.gif │ ├── loader-btn-inverse.gif │ ├── loader-btn-link.gif │ ├── loader-btn-primary.gif │ ├── loader-btn-success.gif │ ├── loader-btn-warning.gif │ ├── loader-input-search.gif │ ├── logos.gif │ ├── micropig.jpg │ ├── qc-logo-left.png │ ├── quickcode-rough-logo.png │ ├── screenshots │ │ ├── code-in-browser-language.png │ │ ├── code-in-browser-rename.png │ │ ├── code-in-browser-toolbar.png │ │ ├── code-your-own-tool-finished.png │ │ ├── code-your-own-tool-rename.png │ │ ├── code-your-own-tool-ssh.png │ │ ├── create-new-dataset.png │ │ ├── default-dataset-index-html.png │ │ ├── importer-chooser.png │ │ ├── tool-chooser.png │ │ ├── twitter-auth.png │ │ ├── twitter-download.png │ │ ├── twitter-schedule.png │ │ ├── twitter-search-term.png │ │ ├── twitter-table-view.png │ │ └── twitter-toolbar.png │ ├── team_aidan.png │ ├── team_aine.jpg │ ├── team_chris.png │ ├── team_david.png │ ├── team_dragon.jpg │ ├── team_dragon.png │ ├── team_ed.png │ ├── team_francis.png │ ├── team_ian.png │ ├── team_jane.png │ ├── team_julian.png │ ├── team_paul.png │ ├── team_peter.png │ ├── team_zarino.png │ ├── tile-options-grey.png │ ├── tile-options-white.png │ ├── tool-icon-classic.png │ ├── tool-icon-code.png │ ├── tool-icon-data-table.png │ ├── tool-icon-events.png │ ├── tool-icon-lastfm.png │ ├── tool-icon-linkedin-companies.png │ ├── tool-icon-linkedin-groups.png │ ├── tool-icon-linkedin-people.png │ ├── tool-icon-map.png │ ├── tool-icon-network.png │ ├── tool-icon-notifications.png │ ├── tool-icon-report.png │ ├── tool-icon-spreadsheet-upload.png │ ├── tool-icon-sql.png │ ├── tool-icon-summarise.png │ ├── tool-icon-test.png │ ├── tool-icon-twitter.png │ ├── tool-loader.gif │ ├── toolbar-more.png │ ├── toolbar-scroll-left.png │ ├── toolbar-scroll-right.png │ ├── toolbar-triangle-mask.png │ ├── tractor-500x320.png │ └── tractor-metro-tile.png ├── sitemap.txt ├── style │ ├── custard.css │ ├── ie.css │ ├── scraperwiki.css │ └── test.html ├── template │ ├── 50x.html │ └── termsfeed.rss └── vendor │ ├── image │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png │ ├── js │ ├── ZeroClipboard.js │ ├── ZeroClipboard.min.js │ ├── ZeroClipboard.swf │ ├── backbone-relational.js │ ├── backbone.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── chroma.pack.min.js │ ├── css3-mediaqueries.js │ ├── easyXDM.min.js │ ├── excanvas.min.js │ ├── flatdoc-legacy.js │ ├── flatdoc.js │ ├── guiders.js │ ├── jquery.cookie.js │ ├── jquery.min.js │ ├── jquery.mousewheel.js │ ├── jquery.tinysort.charorder.min.js │ ├── jquery.tinysort.min.js │ ├── lang-apollo.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-lua.js │ ├── lang-ml.js │ ├── lang-n.js │ ├── lang-proto.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── modernizr.custom.2.6.2.js │ ├── moment.min.js │ ├── mustache.js │ ├── nibbler.js │ ├── prettify.js │ ├── recurly.js │ ├── selectivizr-min.js │ ├── selectivizr.js │ ├── spinners.min.js │ └── underscore.js │ └── style │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── guiders.css │ ├── prettify.css │ └── recurly.css ├── tang.hook ├── test ├── cleaner.coffee ├── integration │ ├── api.coffee │ ├── create_profile.coffee │ ├── dashboard.coffee │ ├── dataset.coffee │ ├── dataset_limit.coffee │ ├── errors.coffee │ ├── free_trial.coffee │ ├── helper.coffee │ ├── home.coffee │ ├── home_nologin.coffee │ ├── login.coffee │ ├── new_dataset.coffee │ ├── new_view.coffee │ ├── password_reset.coffee │ ├── pricing.coffee │ ├── setup_teardown.coffee │ ├── signup.coffee │ ├── ssh_dataset.coffee │ ├── ssh_platform_detect.coffee │ ├── subscription.coffee │ ├── switch_context.coffee │ ├── terms.coffee │ ├── tool_content.coffee │ ├── tool_privacy.coffee │ ├── tool_rpc.coffee │ └── view.coffee ├── mocha.opts └── unit │ ├── helper.coffee │ ├── index.coffee │ ├── model │ ├── box.coffee │ ├── dataset.coffee │ ├── handle_error.coffee │ ├── plan.coffee │ ├── serv_tool.coffee │ ├── user.coffee │ └── view.coffee │ ├── setup_teardown.coffee │ └── view │ ├── error-bar.coffee │ └── tile.coffee └── util ├── addUnixUser.sh ├── changeUserPlan ├── generatePasswdLines ├── generateShadowLines ├── listAllUserBoxes ├── listBoxServersOfDir ├── listGitURLsOfDir ├── listUsersOnPlan ├── migrateBoxToServer.coffee ├── migrateCobaltBoxToCustard.coffee └── transferBoxData.sh /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/.gitignore -------------------------------------------------------------------------------- /.ssh/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/.ssh/config -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/Cakefile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:0.10-onbuild 2 | EXPOSE 3001 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/LICENCE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/README.md -------------------------------------------------------------------------------- /activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/activate -------------------------------------------------------------------------------- /bin/changeUserDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/changeUserDetails.js -------------------------------------------------------------------------------- /bin/contact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/contact -------------------------------------------------------------------------------- /bin/custard-munin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/custard-munin -------------------------------------------------------------------------------- /bin/find-unsubscribed.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/find-unsubscribed.coffee -------------------------------------------------------------------------------- /bin/journalistDatasets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/journalistDatasets.js -------------------------------------------------------------------------------- /bin/livemongo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/livemongo -------------------------------------------------------------------------------- /bin/lookfor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/lookfor -------------------------------------------------------------------------------- /bin/mongo-timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/mongo-timestamp -------------------------------------------------------------------------------- /bin/mongurl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/mongurl -------------------------------------------------------------------------------- /bin/whbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/bin/whbox -------------------------------------------------------------------------------- /client/code/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/app.coffee -------------------------------------------------------------------------------- /client/code/model/boxable.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/model/boxable.coffee -------------------------------------------------------------------------------- /client/code/model/dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/model/dataset.coffee -------------------------------------------------------------------------------- /client/code/model/tool.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/model/tool.coffee -------------------------------------------------------------------------------- /client/code/model/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/model/user.coffee -------------------------------------------------------------------------------- /client/code/model/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/model/view.coffee -------------------------------------------------------------------------------- /client/code/namespace.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/namespace.coffee -------------------------------------------------------------------------------- /client/code/router/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/router/main.coffee -------------------------------------------------------------------------------- /client/code/shared: -------------------------------------------------------------------------------- 1 | ../../shared -------------------------------------------------------------------------------- /client/code/template: -------------------------------------------------------------------------------- 1 | ../template -------------------------------------------------------------------------------- /client/code/util.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/util.coffee -------------------------------------------------------------------------------- /client/code/view/dashboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dashboard.coffee -------------------------------------------------------------------------------- /client/code/view/dataset/deleted.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dataset/deleted.coffee -------------------------------------------------------------------------------- /client/code/view/dataset/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dataset/list.coffee -------------------------------------------------------------------------------- /client/code/view/dataset/row.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dataset/row.coffee -------------------------------------------------------------------------------- /client/code/view/dataset/tile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dataset/tile.coffee -------------------------------------------------------------------------------- /client/code/view/dataset/tools.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/dataset/tools.coffee -------------------------------------------------------------------------------- /client/code/view/docs.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/docs.coffee -------------------------------------------------------------------------------- /client/code/view/error.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/error.coffee -------------------------------------------------------------------------------- /client/code/view/fourohfour.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/fourohfour.coffee -------------------------------------------------------------------------------- /client/code/view/home.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/home.coffee -------------------------------------------------------------------------------- /client/code/view/nav.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/nav.coffee -------------------------------------------------------------------------------- /client/code/view/people-pack.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/people-pack.coffee -------------------------------------------------------------------------------- /client/code/view/pricing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/pricing.coffee -------------------------------------------------------------------------------- /client/code/view/profile/create-profile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/profile/create-profile.coffee -------------------------------------------------------------------------------- /client/code/view/profile/reset-password.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/profile/reset-password.coffee -------------------------------------------------------------------------------- /client/code/view/profile/set-password.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/profile/set-password.coffee -------------------------------------------------------------------------------- /client/code/view/sign-up.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/sign-up.coffee -------------------------------------------------------------------------------- /client/code/view/subnav.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/subnav.coffee -------------------------------------------------------------------------------- /client/code/view/subscribe.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/subscribe.coffee -------------------------------------------------------------------------------- /client/code/view/terms.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/terms.coffee -------------------------------------------------------------------------------- /client/code/view/thankyou.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/thankyou.coffee -------------------------------------------------------------------------------- /client/code/view/tool/content.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/tool/content.coffee -------------------------------------------------------------------------------- /client/code/view/tool/list-header.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/tool/list-header.coffee -------------------------------------------------------------------------------- /client/code/view/tool/list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/tool/list.coffee -------------------------------------------------------------------------------- /client/code/view/tool/menu-item.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/tool/menu-item.coffee -------------------------------------------------------------------------------- /client/code/view/tool/tile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/code/view/tool/tile.coffee -------------------------------------------------------------------------------- /client/template/create-profile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/create-profile.eco -------------------------------------------------------------------------------- /client/template/dataset-row-deleted.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/dataset-row-deleted.eco -------------------------------------------------------------------------------- /client/template/dataset-row.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/dataset-row.eco -------------------------------------------------------------------------------- /client/template/dataset-tile-deleted.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/dataset-tile-deleted.eco -------------------------------------------------------------------------------- /client/template/dataset-tile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/dataset-tile.eco -------------------------------------------------------------------------------- /client/template/dataset-views.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/dataset-views.eco -------------------------------------------------------------------------------- /client/template/fourohfour.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/fourohfour.eco -------------------------------------------------------------------------------- /client/template/help-code-in-your-browser.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-code-in-your-browser.eco -------------------------------------------------------------------------------- /client/template/help-corporate.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-corporate.eco -------------------------------------------------------------------------------- /client/template/help-developer.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-developer.eco -------------------------------------------------------------------------------- /client/template/help-home.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-home.eco -------------------------------------------------------------------------------- /client/template/help-make-your-own-tool.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-make-your-own-tool.eco -------------------------------------------------------------------------------- /client/template/help-upload-and-summarise.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-upload-and-summarise.eco -------------------------------------------------------------------------------- /client/template/help-whats-new.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-whats-new.eco -------------------------------------------------------------------------------- /client/template/help-zig.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/help-zig.eco -------------------------------------------------------------------------------- /client/template/helpnav.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/helpnav.eco -------------------------------------------------------------------------------- /client/template/index.eco: -------------------------------------------------------------------------------- 1 | #= require_tree . 2 | -------------------------------------------------------------------------------- /client/template/modal-add-ssh.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/modal-add-ssh.eco -------------------------------------------------------------------------------- /client/template/modal-api-endpoints.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/modal-api-endpoints.eco -------------------------------------------------------------------------------- /client/template/modal-downgrade.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/modal-downgrade.eco -------------------------------------------------------------------------------- /client/template/modal-ssh.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/modal-ssh.eco -------------------------------------------------------------------------------- /client/template/modal-upgrade.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/modal-upgrade.eco -------------------------------------------------------------------------------- /client/template/nav.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/nav.eco -------------------------------------------------------------------------------- /client/template/people-pack.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/people-pack.eco -------------------------------------------------------------------------------- /client/template/pricing.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/pricing.eco -------------------------------------------------------------------------------- /client/template/reset-password.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/reset-password.eco -------------------------------------------------------------------------------- /client/template/set-password.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/set-password.eco -------------------------------------------------------------------------------- /client/template/sign-up.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/sign-up.eco -------------------------------------------------------------------------------- /client/template/signupnav.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/signupnav.eco -------------------------------------------------------------------------------- /client/template/subnav-home.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/subnav-home.eco -------------------------------------------------------------------------------- /client/template/subnav-toolbar.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/subnav-toolbar.eco -------------------------------------------------------------------------------- /client/template/subnav.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/subnav.eco -------------------------------------------------------------------------------- /client/template/subscribe.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/subscribe.eco -------------------------------------------------------------------------------- /client/template/terms-enterprise-agreement.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/terms-enterprise-agreement.eco -------------------------------------------------------------------------------- /client/template/terms.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/terms.eco -------------------------------------------------------------------------------- /client/template/thankyou.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/thankyou.eco -------------------------------------------------------------------------------- /client/template/tool-tile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/tool-tile.eco -------------------------------------------------------------------------------- /client/template/toolbar-tile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/toolbar-tile.eco -------------------------------------------------------------------------------- /client/template/view-tile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/client/template/view-tile.eco -------------------------------------------------------------------------------- /cron/find-unsubscribed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/cron/find-unsubscribed.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/custard-data-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker/custard-data-image/Dockerfile -------------------------------------------------------------------------------- /docker/populate-node-modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker/populate-node-modules.sh -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker/run.sh -------------------------------------------------------------------------------- /docker/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/docker/start.sh -------------------------------------------------------------------------------- /fixtures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/fixtures.js -------------------------------------------------------------------------------- /migration/010camelCase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/010camelCase -------------------------------------------------------------------------------- /migration/020grandfatherPlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/020grandfatherPlan -------------------------------------------------------------------------------- /migration/040addRecurlyAccounts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/040addRecurlyAccounts -------------------------------------------------------------------------------- /migration/050addBoxServers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/050addBoxServers -------------------------------------------------------------------------------- /migration/060addDatasetServers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/060addDatasetServers -------------------------------------------------------------------------------- /migration/070addBoxJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/070addBoxJSON -------------------------------------------------------------------------------- /migration/080addDatasetsBoxJSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/080addDatasetsBoxJSON -------------------------------------------------------------------------------- /migration/090addMeToMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/090addMeToMe -------------------------------------------------------------------------------- /migration/100addToBeDeleted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/100addToBeDeleted -------------------------------------------------------------------------------- /migration/2013-08-symlink-migration/cobalt_symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/2013-08-symlink-migration/cobalt_symlink -------------------------------------------------------------------------------- /migration/2013-08-symlink-migration/generate-migrate-scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/2013-08-symlink-migration/generate-migrate-scripts.sh -------------------------------------------------------------------------------- /migration/2013-08-symlink-migration/should-migrate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/2013-08-symlink-migration/should-migrate.sh -------------------------------------------------------------------------------- /migration/checkServerConsistency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/checkServerConsistency -------------------------------------------------------------------------------- /migration/update_tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/migration/update_tools.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/package.json -------------------------------------------------------------------------------- /pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/pre-commit.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | require('./server/js'); 2 | -------------------------------------------------------------------------------- /server/code/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/index.coffee -------------------------------------------------------------------------------- /server/code/lib/email.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/lib/email.coffee -------------------------------------------------------------------------------- /server/code/lib/sign.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/lib/sign.coffee -------------------------------------------------------------------------------- /server/code/model/base.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/base.coffee -------------------------------------------------------------------------------- /server/code/model/box.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/box.coffee -------------------------------------------------------------------------------- /server/code/model/dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/dataset.coffee -------------------------------------------------------------------------------- /server/code/model/plan.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/plan.coffee -------------------------------------------------------------------------------- /server/code/model/subscription.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/subscription.coffee -------------------------------------------------------------------------------- /server/code/model/token.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/token.coffee -------------------------------------------------------------------------------- /server/code/model/tool.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/tool.coffee -------------------------------------------------------------------------------- /server/code/model/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/model/user.coffee -------------------------------------------------------------------------------- /server/code/plans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/code/plans.json -------------------------------------------------------------------------------- /server/template/base_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/template/base_footer.html -------------------------------------------------------------------------------- /server/template/base_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/template/base_header.html -------------------------------------------------------------------------------- /server/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/template/index.html -------------------------------------------------------------------------------- /server/template/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/template/login.html -------------------------------------------------------------------------------- /server/template/not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/server/template/not_found.html -------------------------------------------------------------------------------- /shared/code/custard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/code/custard.coffee -------------------------------------------------------------------------------- /shared/code/page-titles.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/code/page-titles.coffee -------------------------------------------------------------------------------- /shared/code/scraperwiki.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/code/scraperwiki.coffee -------------------------------------------------------------------------------- /shared/code/views.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/code/views.coffee -------------------------------------------------------------------------------- /shared/image/avatar-rob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/avatar-rob.png -------------------------------------------------------------------------------- /shared/image/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/avatar.png -------------------------------------------------------------------------------- /shared/image/chooser-icon-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/chooser-icon-24px.png -------------------------------------------------------------------------------- /shared/image/dataset-tools-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/dataset-tools-toggle.png -------------------------------------------------------------------------------- /shared/image/exclamation-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/exclamation-red.png -------------------------------------------------------------------------------- /shared/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/favicon.ico -------------------------------------------------------------------------------- /shared/image/header-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/header-highlight.png -------------------------------------------------------------------------------- /shared/image/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/header-logo.png -------------------------------------------------------------------------------- /shared/image/icon-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-cloud.png -------------------------------------------------------------------------------- /shared/image/icon-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-cross.png -------------------------------------------------------------------------------- /shared/image/icon-input-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-input-search.png -------------------------------------------------------------------------------- /shared/image/icon-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-rename.png -------------------------------------------------------------------------------- /shared/image/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-settings.png -------------------------------------------------------------------------------- /shared/image/icon-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-terminal.png -------------------------------------------------------------------------------- /shared/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon.png -------------------------------------------------------------------------------- /shared/image/loader-btn-danger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-danger.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-default.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-info.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-inverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-inverse.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-link.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-primary.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-primary.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-success.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-warning.gif -------------------------------------------------------------------------------- /shared/image/loader-input-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-input-search.gif -------------------------------------------------------------------------------- /shared/image/logos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/logos.gif -------------------------------------------------------------------------------- /shared/image/micropig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/micropig.jpg -------------------------------------------------------------------------------- /shared/image/qc-logo-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/qc-logo-left.png -------------------------------------------------------------------------------- /shared/image/quickcode-rough-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/quickcode-rough-logo.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-in-browser-language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-in-browser-language.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-in-browser-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-in-browser-rename.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-in-browser-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-in-browser-toolbar.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-your-own-tool-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-your-own-tool-finished.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-your-own-tool-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-your-own-tool-rename.png -------------------------------------------------------------------------------- /shared/image/screenshots/code-your-own-tool-ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/code-your-own-tool-ssh.png -------------------------------------------------------------------------------- /shared/image/screenshots/create-new-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/create-new-dataset.png -------------------------------------------------------------------------------- /shared/image/screenshots/default-dataset-index-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/default-dataset-index-html.png -------------------------------------------------------------------------------- /shared/image/screenshots/importer-chooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/importer-chooser.png -------------------------------------------------------------------------------- /shared/image/screenshots/tool-chooser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/tool-chooser.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-auth.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-download.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-schedule.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-search-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-search-term.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-table-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-table-view.png -------------------------------------------------------------------------------- /shared/image/screenshots/twitter-toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/screenshots/twitter-toolbar.png -------------------------------------------------------------------------------- /shared/image/team_aidan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_aidan.png -------------------------------------------------------------------------------- /shared/image/team_aine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_aine.jpg -------------------------------------------------------------------------------- /shared/image/team_chris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_chris.png -------------------------------------------------------------------------------- /shared/image/team_david.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_david.png -------------------------------------------------------------------------------- /shared/image/team_dragon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_dragon.jpg -------------------------------------------------------------------------------- /shared/image/team_dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_dragon.png -------------------------------------------------------------------------------- /shared/image/team_ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_ed.png -------------------------------------------------------------------------------- /shared/image/team_francis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_francis.png -------------------------------------------------------------------------------- /shared/image/team_ian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_ian.png -------------------------------------------------------------------------------- /shared/image/team_jane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_jane.png -------------------------------------------------------------------------------- /shared/image/team_julian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_julian.png -------------------------------------------------------------------------------- /shared/image/team_paul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_paul.png -------------------------------------------------------------------------------- /shared/image/team_peter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_peter.png -------------------------------------------------------------------------------- /shared/image/team_zarino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_zarino.png -------------------------------------------------------------------------------- /shared/image/tile-options-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tile-options-grey.png -------------------------------------------------------------------------------- /shared/image/tile-options-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tile-options-white.png -------------------------------------------------------------------------------- /shared/image/tool-icon-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-classic.png -------------------------------------------------------------------------------- /shared/image/tool-icon-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-code.png -------------------------------------------------------------------------------- /shared/image/tool-icon-data-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-data-table.png -------------------------------------------------------------------------------- /shared/image/tool-icon-events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-events.png -------------------------------------------------------------------------------- /shared/image/tool-icon-lastfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-lastfm.png -------------------------------------------------------------------------------- /shared/image/tool-icon-linkedin-companies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-linkedin-companies.png -------------------------------------------------------------------------------- /shared/image/tool-icon-linkedin-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-linkedin-groups.png -------------------------------------------------------------------------------- /shared/image/tool-icon-linkedin-people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-linkedin-people.png -------------------------------------------------------------------------------- /shared/image/tool-icon-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-map.png -------------------------------------------------------------------------------- /shared/image/tool-icon-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-network.png -------------------------------------------------------------------------------- /shared/image/tool-icon-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-notifications.png -------------------------------------------------------------------------------- /shared/image/tool-icon-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-report.png -------------------------------------------------------------------------------- /shared/image/tool-icon-spreadsheet-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-spreadsheet-upload.png -------------------------------------------------------------------------------- /shared/image/tool-icon-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-sql.png -------------------------------------------------------------------------------- /shared/image/tool-icon-summarise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-summarise.png -------------------------------------------------------------------------------- /shared/image/tool-icon-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-test.png -------------------------------------------------------------------------------- /shared/image/tool-icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-twitter.png -------------------------------------------------------------------------------- /shared/image/tool-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-loader.gif -------------------------------------------------------------------------------- /shared/image/toolbar-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/toolbar-more.png -------------------------------------------------------------------------------- /shared/image/toolbar-scroll-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/toolbar-scroll-left.png -------------------------------------------------------------------------------- /shared/image/toolbar-scroll-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/toolbar-scroll-right.png -------------------------------------------------------------------------------- /shared/image/toolbar-triangle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/toolbar-triangle-mask.png -------------------------------------------------------------------------------- /shared/image/tractor-500x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tractor-500x320.png -------------------------------------------------------------------------------- /shared/image/tractor-metro-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tractor-metro-tile.png -------------------------------------------------------------------------------- /shared/sitemap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/sitemap.txt -------------------------------------------------------------------------------- /shared/style/custard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/style/custard.css -------------------------------------------------------------------------------- /shared/style/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/style/ie.css -------------------------------------------------------------------------------- /shared/style/scraperwiki.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/style/scraperwiki.css -------------------------------------------------------------------------------- /shared/style/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/style/test.html -------------------------------------------------------------------------------- /shared/template/50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/template/50x.html -------------------------------------------------------------------------------- /shared/template/termsfeed.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/template/termsfeed.rss -------------------------------------------------------------------------------- /shared/vendor/image/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/image/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /shared/vendor/image/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/image/glyphicons-halflings.png -------------------------------------------------------------------------------- /shared/vendor/js/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/ZeroClipboard.js -------------------------------------------------------------------------------- /shared/vendor/js/ZeroClipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/ZeroClipboard.min.js -------------------------------------------------------------------------------- /shared/vendor/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /shared/vendor/js/backbone-relational.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/backbone-relational.js -------------------------------------------------------------------------------- /shared/vendor/js/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/backbone.js -------------------------------------------------------------------------------- /shared/vendor/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/bootstrap.js -------------------------------------------------------------------------------- /shared/vendor/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/bootstrap.min.js -------------------------------------------------------------------------------- /shared/vendor/js/chroma.pack.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/chroma.pack.min.js -------------------------------------------------------------------------------- /shared/vendor/js/css3-mediaqueries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/css3-mediaqueries.js -------------------------------------------------------------------------------- /shared/vendor/js/easyXDM.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/easyXDM.min.js -------------------------------------------------------------------------------- /shared/vendor/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/excanvas.min.js -------------------------------------------------------------------------------- /shared/vendor/js/flatdoc-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/flatdoc-legacy.js -------------------------------------------------------------------------------- /shared/vendor/js/flatdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/flatdoc.js -------------------------------------------------------------------------------- /shared/vendor/js/guiders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/guiders.js -------------------------------------------------------------------------------- /shared/vendor/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/jquery.cookie.js -------------------------------------------------------------------------------- /shared/vendor/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/jquery.min.js -------------------------------------------------------------------------------- /shared/vendor/js/jquery.mousewheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/jquery.mousewheel.js -------------------------------------------------------------------------------- /shared/vendor/js/jquery.tinysort.charorder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/jquery.tinysort.charorder.min.js -------------------------------------------------------------------------------- /shared/vendor/js/jquery.tinysort.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/jquery.tinysort.min.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-apollo.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-clj.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-css.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-go.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-hs.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-lisp.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-lua.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-ml.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-n.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-proto.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-scala.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-sql.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-tex.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-vb.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-vhdl.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-wiki.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-xq.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-yaml.js -------------------------------------------------------------------------------- /shared/vendor/js/modernizr.custom.2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/modernizr.custom.2.6.2.js -------------------------------------------------------------------------------- /shared/vendor/js/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/moment.min.js -------------------------------------------------------------------------------- /shared/vendor/js/mustache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/mustache.js -------------------------------------------------------------------------------- /shared/vendor/js/nibbler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/nibbler.js -------------------------------------------------------------------------------- /shared/vendor/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/prettify.js -------------------------------------------------------------------------------- /shared/vendor/js/recurly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/recurly.js -------------------------------------------------------------------------------- /shared/vendor/js/selectivizr-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/selectivizr-min.js -------------------------------------------------------------------------------- /shared/vendor/js/selectivizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/selectivizr.js -------------------------------------------------------------------------------- /shared/vendor/js/spinners.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/spinners.min.js -------------------------------------------------------------------------------- /shared/vendor/js/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/underscore.js -------------------------------------------------------------------------------- /shared/vendor/style/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/style/bootstrap.css -------------------------------------------------------------------------------- /shared/vendor/style/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/style/bootstrap.min.css -------------------------------------------------------------------------------- /shared/vendor/style/guiders.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/style/guiders.css -------------------------------------------------------------------------------- /shared/vendor/style/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/style/prettify.css -------------------------------------------------------------------------------- /shared/vendor/style/recurly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/style/recurly.css -------------------------------------------------------------------------------- /tang.hook: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "Hello, world" 4 | 5 | cd docker 6 | 7 | time ./run.sh 8 | 9 | -------------------------------------------------------------------------------- /test/cleaner.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/cleaner.coffee -------------------------------------------------------------------------------- /test/integration/api.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/api.coffee -------------------------------------------------------------------------------- /test/integration/create_profile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/create_profile.coffee -------------------------------------------------------------------------------- /test/integration/dashboard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/dashboard.coffee -------------------------------------------------------------------------------- /test/integration/dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/dataset.coffee -------------------------------------------------------------------------------- /test/integration/dataset_limit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/dataset_limit.coffee -------------------------------------------------------------------------------- /test/integration/errors.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/errors.coffee -------------------------------------------------------------------------------- /test/integration/free_trial.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/free_trial.coffee -------------------------------------------------------------------------------- /test/integration/helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/helper.coffee -------------------------------------------------------------------------------- /test/integration/home.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/home.coffee -------------------------------------------------------------------------------- /test/integration/home_nologin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/home_nologin.coffee -------------------------------------------------------------------------------- /test/integration/login.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/login.coffee -------------------------------------------------------------------------------- /test/integration/new_dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/new_dataset.coffee -------------------------------------------------------------------------------- /test/integration/new_view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/new_view.coffee -------------------------------------------------------------------------------- /test/integration/password_reset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/password_reset.coffee -------------------------------------------------------------------------------- /test/integration/pricing.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/pricing.coffee -------------------------------------------------------------------------------- /test/integration/setup_teardown.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/setup_teardown.coffee -------------------------------------------------------------------------------- /test/integration/signup.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/signup.coffee -------------------------------------------------------------------------------- /test/integration/ssh_dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/ssh_dataset.coffee -------------------------------------------------------------------------------- /test/integration/ssh_platform_detect.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/ssh_platform_detect.coffee -------------------------------------------------------------------------------- /test/integration/subscription.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/subscription.coffee -------------------------------------------------------------------------------- /test/integration/switch_context.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/switch_context.coffee -------------------------------------------------------------------------------- /test/integration/terms.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/terms.coffee -------------------------------------------------------------------------------- /test/integration/tool_content.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/tool_content.coffee -------------------------------------------------------------------------------- /test/integration/tool_privacy.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/tool_privacy.coffee -------------------------------------------------------------------------------- /test/integration/tool_rpc.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/tool_rpc.coffee -------------------------------------------------------------------------------- /test/integration/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/integration/view.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/unit/helper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/helper.coffee -------------------------------------------------------------------------------- /test/unit/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/index.coffee -------------------------------------------------------------------------------- /test/unit/model/box.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/box.coffee -------------------------------------------------------------------------------- /test/unit/model/dataset.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/dataset.coffee -------------------------------------------------------------------------------- /test/unit/model/handle_error.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/handle_error.coffee -------------------------------------------------------------------------------- /test/unit/model/plan.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/plan.coffee -------------------------------------------------------------------------------- /test/unit/model/serv_tool.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/serv_tool.coffee -------------------------------------------------------------------------------- /test/unit/model/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/user.coffee -------------------------------------------------------------------------------- /test/unit/model/view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/model/view.coffee -------------------------------------------------------------------------------- /test/unit/setup_teardown.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/setup_teardown.coffee -------------------------------------------------------------------------------- /test/unit/view/error-bar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/view/error-bar.coffee -------------------------------------------------------------------------------- /test/unit/view/tile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/test/unit/view/tile.coffee -------------------------------------------------------------------------------- /util/addUnixUser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/addUnixUser.sh -------------------------------------------------------------------------------- /util/changeUserPlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/changeUserPlan -------------------------------------------------------------------------------- /util/generatePasswdLines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/generatePasswdLines -------------------------------------------------------------------------------- /util/generateShadowLines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/generateShadowLines -------------------------------------------------------------------------------- /util/listAllUserBoxes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/listAllUserBoxes -------------------------------------------------------------------------------- /util/listBoxServersOfDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/listBoxServersOfDir -------------------------------------------------------------------------------- /util/listGitURLsOfDir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/listGitURLsOfDir -------------------------------------------------------------------------------- /util/listUsersOnPlan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/listUsersOnPlan -------------------------------------------------------------------------------- /util/migrateBoxToServer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/migrateBoxToServer.coffee -------------------------------------------------------------------------------- /util/migrateCobaltBoxToCustard.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/migrateCobaltBoxToCustard.coffee -------------------------------------------------------------------------------- /util/transferBoxData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/util/transferBoxData.sh --------------------------------------------------------------------------------