├── client ├── code │ ├── shared │ ├── template │ ├── namespace.coffee │ ├── view │ │ ├── people-pack.coffee │ │ ├── fourohfour.coffee │ │ ├── home.coffee │ │ ├── thankyou.coffee │ │ ├── dataset │ │ │ ├── deleted.coffee │ │ │ ├── tile.coffee │ │ │ └── row.coffee │ │ ├── tool │ │ │ ├── list-header.coffee │ │ │ └── list.coffee │ │ ├── terms.coffee │ │ ├── profile │ │ │ ├── set-password.coffee │ │ │ ├── reset-password.coffee │ │ │ └── create-profile.coffee │ │ ├── docs.coffee │ │ ├── nav.coffee │ │ ├── error.coffee │ │ ├── subscribe.coffee │ │ └── sign-up.coffee │ ├── model │ │ ├── boxable.coffee │ │ ├── tool.coffee │ │ ├── view.coffee │ │ └── user.coffee │ ├── util.coffee │ └── app.coffee └── template │ ├── index.eco │ ├── dataset-tile-deleted.eco │ ├── dataset-row-deleted.eco │ ├── fourohfour.eco │ ├── subscribe.eco │ ├── subnav.eco │ ├── help-upload-and-summarise.eco │ ├── modal-upgrade.eco │ ├── helpnav.eco │ ├── modal-downgrade.eco │ ├── signupnav.eco │ ├── reset-password.eco │ ├── thankyou.eco │ ├── view-tile.eco │ ├── set-password.eco │ ├── dataset-views.eco │ ├── subnav-home.eco │ ├── modal-ssh.eco │ ├── modal-api-endpoints.eco │ ├── tool-tile.eco │ ├── toolbar-tile.eco │ ├── dataset-tile.eco │ ├── help-home.eco │ ├── subnav-toolbar.eco │ ├── modal-add-ssh.eco │ ├── dataset-row.eco │ ├── sign-up.eco │ ├── create-profile.eco │ ├── help-whats-new.eco │ └── nav.eco ├── .envrc ├── server.js ├── Dockerfile ├── shared ├── image │ ├── icon.png │ ├── logos.gif │ ├── avatar.png │ ├── favicon.ico │ ├── team_ed.png │ ├── avatar-rob.png │ ├── icon-cloud.png │ ├── icon-cross.png │ ├── micropig.jpg │ ├── team_aidan.png │ ├── team_aine.jpg │ ├── team_chris.png │ ├── team_david.png │ ├── team_ian.png │ ├── team_jane.png │ ├── team_paul.png │ ├── team_peter.png │ ├── header-logo.png │ ├── icon-rename.png │ ├── qc-logo-left.png │ ├── team_dragon.jpg │ ├── team_dragon.png │ ├── team_francis.png │ ├── team_julian.png │ ├── team_zarino.png │ ├── tool-loader.gif │ ├── toolbar-more.png │ ├── exclamation-red.png │ ├── icon-settings.png │ ├── icon-terminal.png │ ├── loader-btn-info.gif │ ├── loader-btn-link.gif │ ├── tool-icon-code.png │ ├── tool-icon-map.png │ ├── tool-icon-sql.png │ ├── tool-icon-test.png │ ├── tractor-500x320.png │ ├── chooser-icon-24px.png │ ├── header-highlight.png │ ├── icon-input-search.png │ ├── loader-btn-danger.gif │ ├── tile-options-grey.png │ ├── tool-icon-classic.png │ ├── tool-icon-events.png │ ├── tool-icon-lastfm.png │ ├── tool-icon-network.png │ ├── tool-icon-report.png │ ├── tool-icon-twitter.png │ ├── dataset-tools-toggle.png │ ├── loader-btn-default.gif │ ├── loader-btn-inverse.gif │ ├── loader-btn-primary.gif │ ├── loader-btn-success.gif │ ├── loader-btn-warning.gif │ ├── loader-input-search.gif │ ├── quickcode-rough-logo.png │ ├── tile-options-white.png │ ├── tool-icon-data-table.png │ ├── tool-icon-summarise.png │ ├── toolbar-scroll-left.png │ ├── toolbar-scroll-right.png │ ├── tractor-metro-tile.png │ ├── toolbar-triangle-mask.png │ ├── screenshots │ │ ├── tool-chooser.png │ │ ├── twitter-auth.png │ │ ├── twitter-toolbar.png │ │ ├── create-new-dataset.png │ │ ├── importer-chooser.png │ │ ├── twitter-download.png │ │ ├── twitter-schedule.png │ │ ├── twitter-table-view.png │ │ ├── twitter-search-term.png │ │ ├── code-in-browser-rename.png │ │ ├── code-in-browser-toolbar.png │ │ ├── code-your-own-tool-ssh.png │ │ ├── code-in-browser-language.png │ │ ├── code-your-own-tool-rename.png │ │ ├── code-your-own-tool-finished.png │ │ └── default-dataset-index-html.png │ ├── tool-icon-linkedin-groups.png │ ├── tool-icon-linkedin-people.png │ ├── tool-icon-notifications.png │ ├── tool-icon-linkedin-companies.png │ └── tool-icon-spreadsheet-upload.png ├── vendor │ ├── js │ │ ├── lang-go.js │ │ ├── lang-ml.js │ │ ├── lang-vb.js │ │ ├── lang-lua.js │ │ ├── lang-sql.js │ │ ├── lang-tex.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-apollo.js │ │ ├── lang-scala.js │ │ ├── ZeroClipboard.swf │ │ ├── lang-proto.js │ │ ├── lang-yaml.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-css.js │ │ ├── lang-n.js │ │ ├── lang-clj.js │ │ ├── jquery.tinysort.charorder.min.js │ │ ├── jquery.cookie.js │ │ └── jquery.tinysort.min.js │ ├── image │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ └── style │ │ └── prettify.css ├── style │ └── ie.css ├── sitemap.txt ├── template │ ├── termsfeed.rss │ └── 50x.html └── code │ ├── views.coffee │ └── page-titles.coffee ├── Procfile ├── tang.hook ├── .ssh └── config ├── docker ├── populate-node-modules.sh ├── custard-data-image │ └── Dockerfile ├── Dockerfile ├── start.sh └── run.sh ├── cron └── find-unsubscribed.sh ├── test ├── mocha.opts ├── unit │ ├── model │ │ ├── plan.coffee │ │ ├── view.coffee │ │ ├── box.coffee │ │ └── handle_error.coffee │ ├── setup_teardown.coffee │ ├── view │ │ ├── error-bar.coffee │ │ └── tile.coffee │ ├── helper.coffee │ └── index.coffee ├── cleaner.coffee └── integration │ ├── home_nologin.coffee │ ├── errors.coffee │ ├── setup_teardown.coffee │ ├── dataset_limit.coffee │ ├── terms.coffee │ ├── tool_privacy.coffee │ ├── signup.coffee │ ├── view.coffee │ ├── new_dataset.coffee │ ├── new_view.coffee │ ├── helper.coffee │ ├── create_profile.coffee │ └── ssh_platform_detect.coffee ├── pre-commit.sh ├── bin ├── mongo-timestamp ├── mongurl ├── livemongo ├── journalistDatasets.js ├── custard-munin ├── contact ├── whbox └── find-unsubscribed.coffee ├── .gitignore ├── docker-compose.yml ├── migration ├── update_tools.js ├── 090addMeToMe ├── 100addToBeDeleted ├── 050addBoxServers ├── 2013-08-symlink-migration │ ├── cobalt_symlink │ ├── should-migrate.sh │ └── generate-migrate-scripts.sh ├── 080addDatasetsBoxJSON ├── 060addDatasetServers ├── 040addRecurlyAccounts ├── checkServerConsistency ├── 010camelCase ├── 020grandfatherPlan └── 070addBoxJSON ├── util ├── listAllUserBoxes ├── generateShadowLines ├── generatePasswdLines ├── listUsersOnPlan ├── transferBoxData.sh ├── listBoxServersOfDir ├── changeUserPlan ├── addUnixUser.sh └── listGitURLsOfDir ├── server ├── code │ ├── model │ │ ├── plan.coffee │ │ ├── token.coffee │ │ ├── subscription.coffee │ │ ├── base.coffee │ │ └── tool.coffee │ ├── lib │ │ ├── sign.coffee │ │ └── email.coffee │ └── plans.json └── template │ ├── base_footer.html │ ├── not_found.html │ ├── base_header.html │ └── login.html ├── Cakefile ├── package.json └── activate /client/code/shared: -------------------------------------------------------------------------------- 1 | ../../shared -------------------------------------------------------------------------------- /client/code/template: -------------------------------------------------------------------------------- 1 | ../template -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | source_up 2 | source ./activate -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | require('./server/js'); 2 | -------------------------------------------------------------------------------- /client/template/index.eco: -------------------------------------------------------------------------------- 1 | #= require_tree . 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:0.10-onbuild 2 | EXPOSE 3001 3 | -------------------------------------------------------------------------------- /shared/image/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon.png -------------------------------------------------------------------------------- /shared/image/logos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/logos.gif -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bash -c '. ./activate && cake dev' 2 | selenium: bash -c '. ./activate && cake se' 3 | -------------------------------------------------------------------------------- /shared/image/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/avatar.png -------------------------------------------------------------------------------- /shared/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/favicon.ico -------------------------------------------------------------------------------- /shared/image/team_ed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_ed.png -------------------------------------------------------------------------------- /tang.hook: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | echo "Hello, world" 4 | 5 | cd docker 6 | 7 | time ./run.sh 8 | 9 | -------------------------------------------------------------------------------- /shared/image/avatar-rob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/avatar-rob.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/micropig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/micropig.jpg -------------------------------------------------------------------------------- /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_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_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/vendor/js/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-go.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-ml.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-vb.js -------------------------------------------------------------------------------- /shared/image/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/header-logo.png -------------------------------------------------------------------------------- /shared/image/icon-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-rename.png -------------------------------------------------------------------------------- /shared/image/qc-logo-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/qc-logo-left.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_francis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_francis.png -------------------------------------------------------------------------------- /shared/image/team_julian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_julian.png -------------------------------------------------------------------------------- /shared/image/team_zarino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/team_zarino.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/vendor/js/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-lua.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-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 -------------------------------------------------------------------------------- /client/template/dataset-tile-deleted.eco: -------------------------------------------------------------------------------- 1 |
Dataset deleted
2 | -------------------------------------------------------------------------------- /shared/image/exclamation-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/exclamation-red.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/loader-btn-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-info.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-link.gif -------------------------------------------------------------------------------- /shared/image/tool-icon-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-code.png -------------------------------------------------------------------------------- /shared/image/tool-icon-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-map.png -------------------------------------------------------------------------------- /shared/image/tool-icon-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-sql.png -------------------------------------------------------------------------------- /shared/image/tool-icon-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-test.png -------------------------------------------------------------------------------- /shared/image/tractor-500x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tractor-500x320.png -------------------------------------------------------------------------------- /shared/vendor/js/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-apollo.js -------------------------------------------------------------------------------- /shared/vendor/js/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/lang-scala.js -------------------------------------------------------------------------------- /.ssh/config: -------------------------------------------------------------------------------- 1 | Host github.com 2 | Hostname github.com 3 | User git 4 | IdentityFile /etc/custard/tools_rsa 5 | -------------------------------------------------------------------------------- /shared/image/chooser-icon-24px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/chooser-icon-24px.png -------------------------------------------------------------------------------- /shared/image/header-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/header-highlight.png -------------------------------------------------------------------------------- /shared/image/icon-input-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/icon-input-search.png -------------------------------------------------------------------------------- /shared/image/loader-btn-danger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-danger.gif -------------------------------------------------------------------------------- /shared/image/tile-options-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tile-options-grey.png -------------------------------------------------------------------------------- /shared/image/tool-icon-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-classic.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-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-network.png -------------------------------------------------------------------------------- /shared/image/tool-icon-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-report.png -------------------------------------------------------------------------------- /shared/image/tool-icon-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-twitter.png -------------------------------------------------------------------------------- /shared/vendor/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/vendor/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /client/code/namespace.coffee: -------------------------------------------------------------------------------- 1 | window.Cu = 2 | Model: {} 3 | Collection: {} 4 | View: {} 5 | Router: {} 6 | Util: {} 7 | -------------------------------------------------------------------------------- /docker/populate-node-modules.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | cp /data/custard/package.json . 4 | npm install --unsafe-perm 5 | 6 | -------------------------------------------------------------------------------- /shared/image/dataset-tools-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/dataset-tools-toggle.png -------------------------------------------------------------------------------- /shared/image/loader-btn-default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-default.gif -------------------------------------------------------------------------------- /shared/image/loader-btn-inverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/loader-btn-inverse.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/quickcode-rough-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/quickcode-rough-logo.png -------------------------------------------------------------------------------- /shared/image/tile-options-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tile-options-white.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-summarise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-summarise.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/tractor-metro-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tractor-metro-tile.png -------------------------------------------------------------------------------- /docker/custard-data-image/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM custard 2 | 3 | ADD package.json /data/package.json 4 | 5 | VOLUME /data/node_modules 6 | -------------------------------------------------------------------------------- /shared/image/toolbar-triangle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/toolbar-triangle-mask.png -------------------------------------------------------------------------------- /cron/find-unsubscribed.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | source /etc/custard/production-activate 4 | /opt/custard/bin/find-unsubscribed.coffee 5 | -------------------------------------------------------------------------------- /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/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-notifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cantabular/custard/HEAD/shared/image/tool-icon-notifications.png -------------------------------------------------------------------------------- /client/template/dataset-row-deleted.eco: -------------------------------------------------------------------------------- 1 |Sorry! We couldn’t find what you’re looking for.
2 |Have a micropig.
3 |
4 |
--------------------------------------------------------------------------------
/client/code/view/fourohfour.coffee:
--------------------------------------------------------------------------------
1 | class Cu.View.FourOhFour extends Backbone.View
2 | className: "fourohfour error-page"
3 |
4 | render: ->
5 | @el.innerHTML = JST['fourohfour']()
6 | @
7 |
--------------------------------------------------------------------------------
/client/template/subscribe.eco:
--------------------------------------------------------------------------------
1 |
2 | Loading…
4 |