├── .gitignore ├── README.md ├── profiles └── app.js ├── util ├── build.sh └── setup.sh └── www ├── css └── app.css ├── data └── people.json ├── img ├── adam.png ├── alex.png ├── loading.gif ├── paul.png └── rebecca.png ├── index.html └── js ├── app ├── base.js ├── controllers │ └── People.js ├── models │ ├── People.js │ └── Person.js ├── services │ ├── Favorites.js │ ├── Twitter.js │ └── YQL.js └── views │ ├── People.js │ ├── People │ ├── People.html │ └── Person.html │ ├── Person.js │ └── Person │ ├── Person.html │ ├── Tweet.html │ └── Weather.html └── dbp ├── Router.js └── tests ├── Router.html └── Router.js /.gitignore: -------------------------------------------------------------------------------- 1 | www/js/dojo-release-1.6.0-src 2 | dist 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/README.md -------------------------------------------------------------------------------- /profiles/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/profiles/app.js -------------------------------------------------------------------------------- /util/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/util/build.sh -------------------------------------------------------------------------------- /util/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/util/setup.sh -------------------------------------------------------------------------------- /www/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/css/app.css -------------------------------------------------------------------------------- /www/data/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/data/people.json -------------------------------------------------------------------------------- /www/img/adam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/img/adam.png -------------------------------------------------------------------------------- /www/img/alex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/img/alex.png -------------------------------------------------------------------------------- /www/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/img/loading.gif -------------------------------------------------------------------------------- /www/img/paul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/img/paul.png -------------------------------------------------------------------------------- /www/img/rebecca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/img/rebecca.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/index.html -------------------------------------------------------------------------------- /www/js/app/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/base.js -------------------------------------------------------------------------------- /www/js/app/controllers/People.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/controllers/People.js -------------------------------------------------------------------------------- /www/js/app/models/People.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/models/People.js -------------------------------------------------------------------------------- /www/js/app/models/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/models/Person.js -------------------------------------------------------------------------------- /www/js/app/services/Favorites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/services/Favorites.js -------------------------------------------------------------------------------- /www/js/app/services/Twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/services/Twitter.js -------------------------------------------------------------------------------- /www/js/app/services/YQL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/services/YQL.js -------------------------------------------------------------------------------- /www/js/app/views/People.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/views/People.js -------------------------------------------------------------------------------- /www/js/app/views/People/People.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /www/js/app/views/People/Person.html: -------------------------------------------------------------------------------- 1 |
  • ${name}
  • 2 | -------------------------------------------------------------------------------- /www/js/app/views/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/views/Person.js -------------------------------------------------------------------------------- /www/js/app/views/Person/Person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/views/Person/Person.html -------------------------------------------------------------------------------- /www/js/app/views/Person/Tweet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/views/Person/Tweet.html -------------------------------------------------------------------------------- /www/js/app/views/Person/Weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/app/views/Person/Weather.html -------------------------------------------------------------------------------- /www/js/dbp/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/dbp/Router.js -------------------------------------------------------------------------------- /www/js/dbp/tests/Router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/dbp/tests/Router.html -------------------------------------------------------------------------------- /www/js/dbp/tests/Router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmurphey/dojo-demo/HEAD/www/js/dbp/tests/Router.js --------------------------------------------------------------------------------