├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .nojekyll ├── app-spec.md ├── architecture-examples ├── agilityjs │ ├── bower.json │ ├── bower_components │ │ ├── agility │ │ │ └── agility.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ └── localstorage.js │ └── readme.md ├── angularjs-perf │ ├── bower.json │ ├── bower_components │ │ ├── angular │ │ │ └── angular.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ └── todoCtrl.js │ │ ├── directives │ │ │ ├── todoEscape.js │ │ │ └── todoFocus.js │ │ └── services │ │ │ └── todoStorage.js │ └── readme.md ├── angularjs │ ├── bower.json │ ├── bower_components │ │ ├── angular-route │ │ │ └── angular-route.js │ │ ├── angular │ │ │ └── angular.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ └── todoCtrl.js │ │ ├── directives │ │ │ ├── todoEscape.js │ │ │ └── todoFocus.js │ │ └── services │ │ │ └── todoStorage.js │ ├── readme.md │ └── test │ │ ├── config │ │ └── karma.conf.js │ │ ├── package.json │ │ ├── readme.md │ │ └── unit │ │ ├── directivesSpec.js │ │ └── todoCtrlSpec.js ├── backbone │ ├── bower.json │ ├── bower_components │ │ ├── backbone.localStorage │ │ │ └── backbone.localStorage.js │ │ ├── backbone │ │ │ └── backbone.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ └── underscore │ │ │ └── underscore.js │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── collections │ │ │ └── todos.js │ │ ├── models │ │ │ └── todo.js │ │ ├── routers │ │ │ └── router.js │ │ └── views │ │ │ ├── app-view.js │ │ │ └── todo-view.js │ └── readme.md ├── canjs │ ├── bower.json │ ├── bower_components │ │ ├── canjs-localstorage │ │ │ └── can.localstorage.js │ │ ├── canjs │ │ │ └── can.jquery.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── components │ │ │ └── todo-app.js │ │ └── models │ │ │ └── todo.js │ └── readme.md ├── closure │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── build │ │ ├── closure-linter.version │ │ └── plovr.version │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── compiled.js │ │ └── todomvc │ │ │ ├── model │ │ │ ├── ToDoItem.js │ │ │ └── ToDoItemStore.js │ │ │ └── view │ │ │ ├── ClearCompletedControlRenderer.js │ │ │ ├── ItemCountControlRenderer.js │ │ │ ├── ToDoItemControl.js │ │ │ ├── ToDoItemControlRenderer.js │ │ │ ├── ToDoListContainer.js │ │ │ ├── ToDoListContainerRenderer.js │ │ │ └── templates.soy │ ├── plovr.json │ └── readme.md ├── dojo │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── index-1.7.html │ ├── index.html │ ├── js │ │ ├── lib │ │ │ ├── dijit-1.8 │ │ │ │ └── nls │ │ │ │ │ └── common.js │ │ │ ├── dojo-1.8 │ │ │ │ ├── cldr │ │ │ │ │ └── nls │ │ │ │ │ │ └── en │ │ │ │ │ │ └── number.js │ │ │ │ ├── dojo.js │ │ │ │ ├── nls │ │ │ │ │ └── dojo_ROOT.js │ │ │ │ └── resources │ │ │ │ │ └── blank.gif │ │ │ └── dojo │ │ │ │ ├── cldr │ │ │ │ └── nls │ │ │ │ │ └── en │ │ │ │ │ └── number.js │ │ │ │ └── dojo.js │ │ └── todo │ │ │ ├── CssToggleWidget.js │ │ │ ├── TodoList.js │ │ │ ├── app.html │ │ │ ├── app.js │ │ │ ├── app18.html │ │ │ ├── app18.js │ │ │ ├── ctrl │ │ │ ├── RouteController.js │ │ │ ├── TodoListRefController.js │ │ │ ├── TodoRefController.js │ │ │ └── _HashCompletedMixin.js │ │ │ ├── form │ │ │ ├── CheckBox.js │ │ │ └── InlineEditBox.js │ │ │ ├── misc │ │ │ ├── HashSelectedConverter.js │ │ │ └── LessThanOrEqualToConverter.js │ │ │ ├── model │ │ │ ├── SimpleTodoModel.js │ │ │ └── TodoModel.js │ │ │ └── store │ │ │ └── LocalStorage.js │ ├── profiles │ │ └── todomvc.profile.js │ └── readme.md ├── emberjs │ ├── bower.json │ ├── bower_components │ │ ├── ember-data │ │ │ └── ember-data.js │ │ ├── ember-localstorage-adapter │ │ │ └── localstorage_adapter.js │ │ ├── ember │ │ │ └── ember.js │ │ ├── handlebars │ │ │ └── handlebars.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ ├── todo_controller.js │ │ │ └── todos_controller.js │ │ ├── helpers │ │ │ └── pluralize.js │ │ ├── models │ │ │ └── todo.js │ │ ├── router.js │ │ └── views │ │ │ ├── edit_todo_view.js │ │ │ └── todos_view.js │ └── readme.md ├── gwt │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── gwttodo │ │ ├── 11269AA57F495539D3888C07B9EB3B17.cache.js │ │ ├── 11502D2DBBE27FDC3BF44BACE45F84B6.cache.js │ │ ├── 28574D07C51C1139889498637093E3B0.cache.js │ │ ├── 2AC272A01A9C4D209D21D674CB52AB0C.cache.js │ │ ├── 5C490F07F777E65FD19DF9ECC16C17FB.cache.js │ │ ├── F07E0067CA72074137C8A4F29F19B2C3.cache.js │ │ ├── clear.cache.gif │ │ └── gwttodo.nocache.js │ ├── index.html │ ├── readme.md │ └── src │ │ └── com │ │ └── todo │ │ ├── GwtToDo.gwt.xml │ │ └── client │ │ ├── GwtToDo.java │ │ ├── TextBoxWithPlaceholder.java │ │ ├── ToDoCell.java │ │ ├── ToDoItem.java │ │ ├── ToDoPresenter.java │ │ ├── ToDoRouting.java │ │ ├── ToDoRoutingActive.java │ │ ├── ToDoRoutingAll.java │ │ ├── ToDoRoutingCompleted.java │ │ ├── ToDoRoutingFunction.java │ │ ├── ToDoView.java │ │ └── ToDoView.ui.xml ├── jquery │ ├── bower.json │ ├── bower_components │ │ ├── handlebars │ │ │ └── handlebars.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── index.html │ ├── js │ │ └── app.js │ └── readme.md ├── knockback │ ├── Cakefile │ ├── bower.json │ ├── bower_components │ │ ├── Backbone.localStorage │ │ │ └── backbone.localStorage.js │ │ ├── jquery │ │ │ └── jquery.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── lib │ │ │ ├── backbone.localStorage-min.js │ │ │ ├── knockback-full-stack-0.16.9.min.js │ │ │ └── knockout-extended-bindings.js │ │ ├── models │ │ │ ├── todo.js │ │ │ └── todo_collection.js │ │ └── viewmodels │ │ │ ├── app.js │ │ │ └── todo.js │ ├── readme.md │ └── src │ │ ├── lib │ │ └── knockout-extended-bindings.coffee │ │ ├── models │ │ ├── todo.coffee │ │ └── todo_collection.coffee │ │ └── viewmodels │ │ ├── app.coffee │ │ └── todo.coffee ├── knockoutjs │ ├── bower.json │ ├── bower_components │ │ ├── director │ │ │ └── build │ │ │ │ └── director.js │ │ ├── knockout.js │ │ │ └── knockout.debug.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ └── app.js │ └── readme.md ├── maria │ ├── bower.json │ ├── bower_components │ │ ├── aristocrat-bower │ │ │ └── aristocrat.js │ │ ├── director │ │ │ └── build │ │ │ │ └── director.js │ │ ├── maria-bower │ │ │ └── maria.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── index.html │ ├── js │ │ ├── bootstrap.js │ │ ├── controllers │ │ │ ├── TodoController.js │ │ │ └── TodosController.js │ │ ├── models │ │ │ ├── TodoModel.js │ │ │ └── TodosModel.js │ │ ├── namespace.js │ │ ├── templates │ │ │ ├── TodoTemplate.js │ │ │ └── TodosTemplate.js │ │ ├── util.js │ │ └── views │ │ │ ├── TodoView.js │ │ │ └── TodosView.js │ └── readme.md ├── polymer │ ├── AUTHORS │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── PATENTS │ ├── README.md │ ├── app │ │ └── app.css │ ├── bower.json │ ├── bower_components │ │ ├── director │ │ │ └── build │ │ │ │ ├── director.js │ │ │ │ ├── director.min.js │ │ │ │ └── ender.js │ │ ├── polymer │ │ │ └── polymer.min.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── elements │ │ ├── td-input.html │ │ ├── td-item.css │ │ ├── td-item.html │ │ ├── td-model.html │ │ ├── td-todos.css │ │ └── td-todos.html │ ├── index.html │ └── lib-elements │ │ ├── flatiron-director.html │ │ ├── polymer-localstorage.html │ │ ├── polymer-selection.html │ │ └── polymer-selector.html ├── quiescent │ ├── .gitignore │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index-dev.html │ ├── index.html │ ├── project.clj │ ├── readme.md │ └── src │ │ ├── todomvc_quiescent.cljs │ │ └── todomvc_quiescent │ │ ├── data.cljs │ │ ├── render.cljs │ │ ├── serve.clj │ │ └── store.cljs ├── react │ ├── bower.json │ ├── bower_components │ │ ├── director │ │ │ └── build │ │ │ │ └── director.js │ │ ├── react │ │ │ ├── JSXTransformer.js │ │ │ └── react-with-addons.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.jsx │ │ ├── footer.jsx │ │ ├── todoItem.jsx │ │ ├── todoModel.js │ │ └── utils.jsx │ └── readme.md ├── spine │ ├── Cakefile │ ├── bower.json │ ├── bower_components │ │ ├── handlebars │ │ │ └── handlebars.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── spine │ │ │ └── lib │ │ │ │ ├── local.js │ │ │ │ ├── route.js │ │ │ │ └── spine.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ └── todos.js │ │ └── models │ │ │ └── todo.js │ ├── readme.md │ └── src │ │ ├── app.coffee │ │ ├── controllers │ │ └── todos.coffee │ │ └── models │ │ └── todo.coffee └── yui │ ├── bower.json │ ├── bower_components │ └── todomvc-common │ │ ├── base.css │ │ ├── base.js │ │ └── bg.png │ ├── index.html │ ├── js │ ├── app.js │ ├── lib │ │ └── yui.js │ ├── models │ │ ├── todo.js │ │ └── todolist.js │ └── views │ │ └── todoview.js │ └── readme.md ├── bower.json ├── bower_components ├── bootstrap │ └── dist │ │ ├── css │ │ └── bootstrap.min.css │ │ └── js │ │ └── bootstrap.min.js └── jquery │ ├── jquery.min.js │ └── jquery.min.map ├── browser-tests ├── Gruntfile.js ├── README.md ├── allTests.js ├── knownIssues.js ├── package.json ├── page.js ├── pageLaxMode.js ├── test.js └── testOperations.js ├── codestyle.md ├── contributing.md ├── dependency-examples ├── backbone_require │ ├── bower.json │ ├── bower_components │ │ ├── backbone.localStorage │ │ │ └── backbone.localStorage.js │ │ ├── backbone │ │ │ └── backbone.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── requirejs-text │ │ │ └── text.js │ │ ├── requirejs │ │ │ └── require.js │ │ ├── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ └── underscore │ │ │ └── underscore.js │ ├── index.html │ ├── js │ │ ├── collections │ │ │ └── todos.js │ │ ├── common.js │ │ ├── main.js │ │ ├── models │ │ │ └── todo.js │ │ ├── routers │ │ │ └── router.js │ │ ├── templates │ │ │ ├── stats.html │ │ │ └── todos.html │ │ └── views │ │ │ ├── app.js │ │ │ └── todos.js │ └── readme.md ├── emberjs_require │ ├── index.html │ └── readme.md └── flight │ ├── .gitignore │ ├── .jshintrc │ ├── app │ ├── js │ │ ├── app.js │ │ ├── data │ │ │ ├── stats.js │ │ │ └── todos.js │ │ ├── main.js │ │ ├── store.js │ │ ├── ui │ │ │ ├── main_selector.js │ │ │ ├── new_item.js │ │ │ ├── stats.js │ │ │ ├── todo_list.js │ │ │ ├── toggle_all.js │ │ │ └── with_filters.js │ │ └── utils.js │ └── templates │ │ ├── stats.html │ │ └── todo.html │ ├── bower.json │ ├── bower_components │ ├── depot │ │ └── depot.js │ ├── es5-shim │ │ ├── es5-sham.js │ │ └── es5-shim.js │ ├── flight │ │ └── lib │ │ │ ├── advice.js │ │ │ ├── base.js │ │ │ ├── component.js │ │ │ ├── compose.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── logger.js │ │ │ ├── registry.js │ │ │ └── utils.js │ ├── jquery │ │ └── jquery.js │ ├── requirejs-text │ │ └── text.js │ ├── requirejs │ │ └── require.js │ └── todomvc-common │ │ ├── base.css │ │ ├── base.js │ │ └── bg.png │ ├── index.html │ ├── karma.conf.js │ ├── package.json │ ├── readme.md │ └── test │ ├── .jshintrc │ ├── fixture │ ├── footer.html │ ├── new_todo.html │ └── toggle_all.html │ ├── mock │ └── datastore.js │ ├── spec │ ├── data │ │ ├── stats_spec.js │ │ └── todos_spec.js │ └── ui │ │ ├── new_item_spec.js │ │ ├── stats_spec.js │ │ └── toggle_all_spec.js │ └── test-main.js ├── index.html ├── labs ├── README.md ├── architecture-examples │ ├── angular-dart │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ ├── bg.png │ │ │ │ └── bower.json │ │ ├── pubspec.lock │ │ ├── pubspec.yaml │ │ ├── readme.md │ │ └── web │ │ │ ├── directives.dart │ │ │ ├── index.html │ │ │ ├── main.dart │ │ │ ├── main.dart.js │ │ │ ├── main.dart.js.map │ │ │ ├── packages │ │ │ └── browser │ │ │ │ └── dart.js │ │ │ └── todo.dart │ ├── ariatemplates │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── ITodoCtrl.js │ │ │ ├── TodoCtrl.js │ │ │ ├── lib │ │ │ │ └── aria │ │ │ │ │ ├── ariatemplates-1.3.5.js │ │ │ │ │ └── pack-todomvc-cafc22b1e6f269bdc224e12efc172477.js │ │ │ └── view │ │ │ │ ├── Todo.tpl │ │ │ │ ├── TodoScript.js │ │ │ │ └── TodoStyle.tpl.css │ │ └── readme.md │ ├── atmajs │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── cntrl │ │ │ │ └── input.js │ │ │ ├── compo │ │ │ │ ├── filter │ │ │ │ │ ├── filter.js │ │ │ │ │ └── filter.mask │ │ │ │ └── todoList │ │ │ │ │ ├── todoList.js │ │ │ │ │ ├── todoList.mask │ │ │ │ │ └── todoTask │ │ │ │ │ ├── todoTask.js │ │ │ │ │ └── todoTask.mask │ │ │ └── model │ │ │ │ └── Todos.js │ │ ├── lib │ │ │ └── atma-globals-dev.js │ │ └── readme.md │ ├── backbone.xmpp │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── Strophe.js │ │ │ │ └── strophe.js │ │ │ ├── backbone │ │ │ │ └── backbone.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ │ └── lodash.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── collections │ │ │ │ └── todos.js │ │ │ ├── init.js │ │ │ ├── lib │ │ │ │ ├── backbone-localstorage.js │ │ │ │ ├── backbone.xmpp.node.js │ │ │ │ ├── backbone.xmpp.storage.js │ │ │ │ ├── strophe.forms.js │ │ │ │ └── strophe.pubsub.js │ │ │ ├── models │ │ │ │ └── todo.js │ │ │ ├── routers │ │ │ │ └── router.js │ │ │ └── views │ │ │ │ ├── app.js │ │ │ │ └── todos.js │ │ ├── readme.md │ │ └── server │ │ │ ├── bootstrap.py │ │ │ ├── buildout.cfg │ │ │ └── templates │ │ │ └── ejabberd.cfg.in │ ├── backbone_marionette │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── backbone.localStorage │ │ │ │ └── backbone.localStorage.js │ │ │ ├── backbone.marionette │ │ │ │ └── lib │ │ │ │ │ └── backbone.marionette.js │ │ │ ├── backbone │ │ │ │ └── backbone.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ │ └── underscore │ │ │ │ └── underscore.js │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── TodoMVC.Layout.js │ │ │ ├── TodoMVC.TodoList.Views.js │ │ │ ├── TodoMVC.TodoList.js │ │ │ ├── TodoMVC.Todos.js │ │ │ └── TodoMVC.js │ │ └── readme.md │ ├── batman │ │ ├── app.coffee │ │ ├── app.js │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── batman │ │ │ │ └── lib │ │ │ │ │ └── dist │ │ │ │ │ └── batman.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── package.json │ │ └── readme.md │ ├── componentjs │ │ ├── app │ │ │ ├── app-dm.js │ │ │ ├── app-sv.js │ │ │ ├── app-ui-composite-main-mask.html │ │ │ ├── app-ui-composite-main-style.css │ │ │ ├── app-ui-composite-main.js │ │ │ ├── app-ui-composite-root-style.css │ │ │ ├── app-ui-composite-root.js │ │ │ ├── app-ui-constants.js │ │ │ ├── app-ui-widget-todo-mask.html │ │ │ ├── app-ui-widget-todo-model.js │ │ │ ├── app-ui-widget-todo-style.css │ │ │ ├── app-ui-widget-todo-view.js │ │ │ └── app.js │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── componentjs │ │ │ │ ├── component.js │ │ │ │ ├── component.plugin.debugger.js │ │ │ │ ├── component.plugin.extjs.js │ │ │ │ └── component.plugin.jquery.js │ │ │ ├── director │ │ │ │ └── build │ │ │ │ │ └── director.js │ │ │ ├── jquery-markup │ │ │ │ └── jquery.markup.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ │ └── dist │ │ │ │ │ └── lodash.js │ │ │ ├── nunjucks │ │ │ │ └── browser │ │ │ │ │ └── nunjucks.js │ │ │ ├── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ │ └── uuid-js │ │ │ │ └── lib │ │ │ │ └── uuid.js │ │ ├── index.html │ │ └── readme.md │ ├── cujo │ │ ├── TODO.md │ │ ├── app │ │ │ ├── controller.js │ │ │ ├── controls │ │ │ │ ├── strings.js │ │ │ │ ├── structure.css │ │ │ │ └── template.html │ │ │ ├── create │ │ │ │ ├── cleanTodo.js │ │ │ │ ├── generateMetadata.js │ │ │ │ ├── strings.js │ │ │ │ ├── template.html │ │ │ │ └── validateTodo.js │ │ │ ├── footer │ │ │ │ ├── strings.js │ │ │ │ └── template.html │ │ │ ├── list │ │ │ │ ├── setCompletedClass.js │ │ │ │ ├── strings.js │ │ │ │ ├── structure.css │ │ │ │ └── template.html │ │ │ ├── main.js │ │ │ └── run.js │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── cola │ │ │ │ ├── Collection.js │ │ │ │ ├── Model.js │ │ │ │ ├── SortedMap.js │ │ │ │ ├── adapter │ │ │ │ │ ├── Array.js │ │ │ │ │ ├── LocalStorage.js │ │ │ │ │ ├── Object.js │ │ │ │ │ ├── ObjectToArray.js │ │ │ │ │ ├── Query.js │ │ │ │ │ ├── makeJoined.js │ │ │ │ │ ├── makeTransformed.js │ │ │ │ │ └── makeTransformedProperties.js │ │ │ │ ├── adapterResolver.js │ │ │ │ ├── cola.js │ │ │ │ ├── collectionAdapterResolver.js │ │ │ │ ├── comparator │ │ │ │ │ ├── byProperty.js │ │ │ │ │ ├── compose.js │ │ │ │ │ ├── naturalOrder.js │ │ │ │ │ └── reverse.js │ │ │ │ ├── dom │ │ │ │ │ ├── adapter │ │ │ │ │ │ ├── Node.js │ │ │ │ │ │ └── NodeList.js │ │ │ │ │ ├── bindingHandler.js │ │ │ │ │ ├── classList.js │ │ │ │ │ ├── events.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── formElementFinder.js │ │ │ │ │ ├── guess.js │ │ │ │ │ └── has.js │ │ │ │ ├── enqueue.js │ │ │ │ ├── hub │ │ │ │ │ ├── Base.js │ │ │ │ │ └── eventProcessor.js │ │ │ │ ├── identifier │ │ │ │ │ ├── default.js │ │ │ │ │ └── property.js │ │ │ │ ├── network │ │ │ │ │ └── strategy │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── changeEvent.js │ │ │ │ │ │ ├── collectThenDeliver.js │ │ │ │ │ │ ├── compose.js │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── defaultModel.js │ │ │ │ │ │ ├── minimal.js │ │ │ │ │ │ ├── syncAfterJoin.js │ │ │ │ │ │ ├── syncDataDirectly.js │ │ │ │ │ │ ├── syncModel.js │ │ │ │ │ │ ├── targetFirstItem.js │ │ │ │ │ │ └── validate.js │ │ │ │ ├── objectAdapterResolver.js │ │ │ │ ├── projection │ │ │ │ │ ├── assign.js │ │ │ │ │ └── inherit.js │ │ │ │ ├── relational │ │ │ │ │ ├── hashJoin.js │ │ │ │ │ ├── propertiesKey.js │ │ │ │ │ └── strategy │ │ │ │ │ │ └── leftOuterJoin.js │ │ │ │ ├── transform │ │ │ │ │ ├── compose.js │ │ │ │ │ ├── configure.js │ │ │ │ │ ├── createEnum.js │ │ │ │ │ └── expression.js │ │ │ │ └── validation │ │ │ │ │ ├── composeValidators.js │ │ │ │ │ └── form │ │ │ │ │ └── formValidationHandler.js │ │ │ ├── curl │ │ │ │ └── src │ │ │ │ │ ├── curl.js │ │ │ │ │ └── curl │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── domReady.js │ │ │ │ │ ├── loader │ │ │ │ │ └── cjsm11.js │ │ │ │ │ ├── plugin │ │ │ │ │ ├── README.md │ │ │ │ │ ├── _fetchText.js │ │ │ │ │ ├── async.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── domReady.js │ │ │ │ │ ├── i18n.js │ │ │ │ │ ├── js.js │ │ │ │ │ ├── json.js │ │ │ │ │ ├── link.js │ │ │ │ │ ├── style.js │ │ │ │ │ └── text.js │ │ │ │ │ ├── shim │ │ │ │ │ ├── dojo16.js │ │ │ │ │ └── ssjs.js │ │ │ │ │ └── tdd │ │ │ │ │ ├── runner.js │ │ │ │ │ └── undefine.js │ │ │ ├── meld │ │ │ │ ├── aspect │ │ │ │ │ ├── cache.js │ │ │ │ │ ├── memoize.js │ │ │ │ │ └── trace.js │ │ │ │ └── meld.js │ │ │ ├── poly │ │ │ │ ├── all.js │ │ │ │ ├── array.js │ │ │ │ ├── date.js │ │ │ │ ├── es5-strict.js │ │ │ │ ├── es5.js │ │ │ │ ├── function.js │ │ │ │ ├── json.js │ │ │ │ ├── lib │ │ │ │ │ └── _base.js │ │ │ │ ├── object.js │ │ │ │ ├── poly.js │ │ │ │ ├── setImmediate.js │ │ │ │ ├── strict.js │ │ │ │ ├── string.js │ │ │ │ ├── support │ │ │ │ │ └── json3.js │ │ │ │ └── xhr.js │ │ │ ├── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ │ ├── when │ │ │ │ ├── apply.js │ │ │ │ ├── callbacks.js │ │ │ │ ├── cancelable.js │ │ │ │ ├── debug.js │ │ │ │ ├── delay.js │ │ │ │ ├── function.js │ │ │ │ ├── guard.js │ │ │ │ ├── keys.js │ │ │ │ ├── node │ │ │ │ │ └── function.js │ │ │ │ ├── parallel.js │ │ │ │ ├── pipeline.js │ │ │ │ ├── poll.js │ │ │ │ ├── sequence.js │ │ │ │ ├── timed.js │ │ │ │ ├── timeout.js │ │ │ │ ├── unfold.js │ │ │ │ ├── unfold │ │ │ │ │ └── list.js │ │ │ │ └── when.js │ │ │ └── wire │ │ │ │ ├── aop.js │ │ │ │ ├── builder │ │ │ │ └── cram.js │ │ │ │ ├── connect.js │ │ │ │ ├── debug.js │ │ │ │ ├── dojo │ │ │ │ ├── data.js │ │ │ │ ├── dijit.js │ │ │ │ ├── dom.js │ │ │ │ ├── events.js │ │ │ │ ├── on.js │ │ │ │ ├── pubsub.js │ │ │ │ └── store.js │ │ │ │ ├── dom.js │ │ │ │ ├── dom │ │ │ │ ├── render.js │ │ │ │ └── transform │ │ │ │ │ ├── cardinality.js │ │ │ │ │ ├── mapClasses.js │ │ │ │ │ ├── mapTokenList.js │ │ │ │ │ ├── replaceClasses.js │ │ │ │ │ └── toggleClasses.js │ │ │ │ ├── domReady.js │ │ │ │ ├── jquery │ │ │ │ ├── dom.js │ │ │ │ ├── on.js │ │ │ │ └── ui.js │ │ │ │ ├── lib │ │ │ │ ├── ComponentFactory.js │ │ │ │ ├── Container.js │ │ │ │ ├── WireContext.js │ │ │ │ ├── WireProxy.js │ │ │ │ ├── advice.js │ │ │ │ ├── array.js │ │ │ │ ├── connection.js │ │ │ │ ├── context.js │ │ │ │ ├── dom │ │ │ │ │ └── base.js │ │ │ │ ├── functional.js │ │ │ │ ├── graph │ │ │ │ │ ├── DirectedGraph.js │ │ │ │ │ ├── formatCycles.js │ │ │ │ │ ├── tarjan.js │ │ │ │ │ └── trackInflightRefs.js │ │ │ │ ├── instantiate.js │ │ │ │ ├── invoker.js │ │ │ │ ├── lifecycle.js │ │ │ │ ├── loader.js │ │ │ │ ├── object.js │ │ │ │ ├── plugin-base │ │ │ │ │ ├── dom.js │ │ │ │ │ └── on.js │ │ │ │ ├── plugin │ │ │ │ │ ├── basePlugin.js │ │ │ │ │ ├── defaultPlugins.js │ │ │ │ │ ├── priority.js │ │ │ │ │ ├── registry.js │ │ │ │ │ └── wirePlugin.js │ │ │ │ ├── resolver.js │ │ │ │ └── scope.js │ │ │ │ ├── on.js │ │ │ │ ├── sizzle.js │ │ │ │ └── wire.js │ │ ├── index.html │ │ ├── readme.md │ │ └── theme │ │ │ └── base.css │ ├── derby │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── Procfile │ │ ├── bower.json │ │ ├── package.json │ │ ├── public │ │ │ └── components │ │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── readme.md │ │ ├── server.js │ │ ├── src │ │ │ ├── server │ │ │ │ ├── index.coffee │ │ │ │ ├── queries.coffee │ │ │ │ └── serverError.coffee │ │ │ └── todos │ │ │ │ └── index.coffee │ │ ├── styles │ │ │ ├── todos │ │ │ │ └── index.styl │ │ │ └── ui.styl │ │ ├── ui │ │ │ ├── connectionAlert │ │ │ │ ├── index.html │ │ │ │ └── index.js │ │ │ └── index.js │ │ └── views │ │ │ ├── 404.html │ │ │ └── todos │ │ │ └── index.html │ ├── dijon │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── handlebars.js │ │ │ │ └── handlebars.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── config.js │ │ │ ├── lib │ │ │ │ └── dijon-0.5.3.min.js │ │ │ ├── models │ │ │ │ └── TodosModel.js │ │ │ ├── services │ │ │ │ └── LocalStorageService.js │ │ │ ├── utils │ │ │ │ └── Utils.js │ │ │ └── views │ │ │ │ ├── FooterView.js │ │ │ │ ├── TodoFormView.js │ │ │ │ └── TodoListView.js │ │ └── readme.md │ ├── duel │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── pom.xml │ │ ├── readme.md │ │ ├── src │ │ │ └── main │ │ │ │ ├── resources │ │ │ │ └── views │ │ │ │ │ ├── HomePage.duel │ │ │ │ │ ├── Stats.duel │ │ │ │ │ ├── Task.duel │ │ │ │ │ ├── Tasks.duel │ │ │ │ │ └── TodoApp.duel │ │ │ │ └── webapp │ │ │ │ ├── WEB-INF │ │ │ │ └── web.xml │ │ │ │ ├── bower_components │ │ │ │ └── todomvc-common │ │ │ │ │ ├── base.css │ │ │ │ │ ├── base.js │ │ │ │ │ └── bg.png │ │ │ │ ├── css │ │ │ │ └── styles.merge │ │ │ │ └── js │ │ │ │ ├── lib │ │ │ │ └── duel.js │ │ │ │ ├── scripts.merge │ │ │ │ └── todos │ │ │ │ ├── controller.js │ │ │ │ └── model.js │ │ ├── staticapp.json │ │ └── www │ │ │ ├── cdn │ │ │ ├── 0c975f0bb536597038b63a8cb0d85cff2222b0c9.png │ │ │ ├── 4340176df828f72a94b201a48c223860b95908dc.js │ │ │ └── d764469b1882372019d07f8c1174b1d64507e56d.css │ │ │ └── index.html │ ├── epitome │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── Epitome │ │ │ │ └── Epitome-min.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── collections │ │ │ │ └── todo-collection.js │ │ │ ├── controllers │ │ │ │ └── todo-router.js │ │ │ ├── lib │ │ │ │ └── mootools-yui-compressed.js │ │ │ ├── models │ │ │ │ └── todo-model.js │ │ │ └── views │ │ │ │ ├── todo-list.js │ │ │ │ └── todo-main.js │ │ └── readme.md │ ├── exoskeleton │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── backbone.localStorage │ │ │ │ └── backbone.localStorage.js │ │ │ ├── exoskeleton │ │ │ │ └── exoskeleton.js │ │ │ ├── microtemplates │ │ │ │ └── index.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── collections │ │ │ │ └── todos.js │ │ │ ├── models │ │ │ │ └── todo.js │ │ │ ├── routers │ │ │ │ └── router.js │ │ │ └── views │ │ │ │ ├── app-view.js │ │ │ │ └── todo-view.js │ │ └── readme.md │ ├── extjs │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controller │ │ │ │ └── Tasks.js │ │ │ ├── model │ │ │ │ └── Task.js │ │ │ ├── store │ │ │ │ └── Tasks.js │ │ │ └── view │ │ │ │ ├── CheckAllBox.js │ │ │ │ ├── TaskCompleteButton.js │ │ │ │ ├── TaskField.js │ │ │ │ ├── TaskList.js │ │ │ │ └── TaskToolbar.js │ │ └── readme.md │ ├── extjs_deftjs │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── Application.js │ │ │ ├── app-loader.js │ │ │ ├── app.js │ │ │ ├── controller │ │ │ │ └── TodoController.js │ │ │ ├── model │ │ │ │ └── Todo.js │ │ │ ├── store │ │ │ │ └── TodoStore.js │ │ │ ├── util │ │ │ │ └── TemplateLoader.js │ │ │ └── view │ │ │ │ ├── TodoView.js │ │ │ │ └── Viewport.js │ │ ├── lib │ │ │ ├── deft │ │ │ │ ├── deft-debug.js │ │ │ │ └── deft.js │ │ │ └── extjs │ │ │ │ └── ext-all.js │ │ ├── readme.md │ │ └── templates │ │ │ └── todolist.tpl │ ├── firebase-angular │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── angular-mocks │ │ │ │ └── angular-mocks.js │ │ │ ├── angular │ │ │ │ ├── angular.js │ │ │ │ └── bower.json │ │ │ ├── angularfire │ │ │ │ └── angularfire.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ └── todoCtrl.js │ │ │ └── directives │ │ │ │ ├── todoBlur.js │ │ │ │ ├── todoEscape.js │ │ │ │ └── todoFocus.js │ │ └── readme.md │ ├── kendo │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ └── lib │ │ │ │ ├── kendo.bindings.custom.js │ │ │ │ ├── kendo.data.localstoragedatasource.js │ │ │ │ └── kendo.web.js │ │ └── readme.md │ ├── meteor │ │ ├── .bowerrc │ │ ├── .meteor │ │ │ ├── .gitignore │ │ │ ├── packages │ │ │ └── release │ │ ├── app.html │ │ ├── app.js │ │ ├── bower.json │ │ ├── client │ │ │ ├── bower_components │ │ │ │ ├── director │ │ │ │ │ └── build │ │ │ │ │ │ └── director.js │ │ │ │ └── todomvc-common │ │ │ │ │ ├── base.css │ │ │ │ │ ├── base.js │ │ │ │ │ └── bg.png │ │ │ └── css │ │ │ │ └── app.css │ │ └── readme.md │ ├── montage │ │ ├── BSD-LICENSE.md │ │ ├── assets │ │ │ └── app.css │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── core │ │ │ └── todo.js │ │ ├── index.html │ │ ├── index.html.bundle-0.js │ │ ├── index.html.bundle-1-0.js │ │ ├── index.html.bundle-1-1.js │ │ ├── index.html.bundle-1-2.js │ │ ├── index.html.bundle-1-3.js │ │ ├── readme.md │ │ └── ui │ │ │ ├── main.reel │ │ │ ├── main.css │ │ │ ├── main.html │ │ │ └── main.js │ │ │ └── todo-view.reel │ │ │ ├── todo-view.html │ │ │ └── todo-view.js │ ├── mozart │ │ ├── README.md │ │ ├── css │ │ │ ├── app.css │ │ │ └── bg.png │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ ├── handlebars-1.0.rc.1.js │ │ │ ├── i18n │ │ │ └── en.js │ │ │ ├── jquery-1.9.1.js │ │ │ ├── mozart.min.js │ │ │ └── underscore-min.js │ ├── olives │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── emily │ │ │ │ └── build │ │ │ │ │ └── Emily.js │ │ │ ├── olives │ │ │ │ ├── build │ │ │ │ │ └── Olives.js │ │ │ │ └── src │ │ │ │ │ ├── Bind.plugin.js │ │ │ │ │ ├── DomUtils.js │ │ │ │ │ ├── Event.plugin.js │ │ │ │ │ ├── LocalStore.js │ │ │ │ │ ├── OObject.js │ │ │ │ │ ├── Place.plugin.js │ │ │ │ │ ├── Plugins.js │ │ │ │ │ └── SocketIOTransport.js │ │ │ ├── requirejs │ │ │ │ └── require.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── lib │ │ │ │ └── Tools.js │ │ │ └── uis │ │ │ │ ├── Controls.js │ │ │ │ ├── Input.js │ │ │ │ └── List.js │ │ └── readme.md │ ├── plastronjs │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── compiled.js │ │ │ ├── controllers │ │ │ │ ├── listcontrol.js │ │ │ │ └── todocontrol.js │ │ │ ├── models │ │ │ │ ├── listmodel.js │ │ │ │ └── todomodel.js │ │ │ ├── sourcemap.js.map │ │ │ └── sync │ │ │ │ └── listsync.js │ │ ├── plovr.json │ │ ├── readme.md │ │ └── template │ │ │ └── templates.soy │ ├── polymer │ │ └── index.html │ ├── puremvc │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── director │ │ │ │ └── director.js │ │ │ ├── puremvc │ │ │ │ └── puremvc-1.0.1.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── AppConstants.js │ │ │ ├── app.js │ │ │ ├── controller │ │ │ │ └── command │ │ │ │ │ ├── PrepControllerCommand.js │ │ │ │ │ ├── PrepModelCommand.js │ │ │ │ │ ├── PrepViewCommand.js │ │ │ │ │ ├── StartupCommand.js │ │ │ │ │ └── TodoCommand.js │ │ │ ├── lib │ │ │ │ └── puremvc.min.js │ │ │ ├── model │ │ │ │ └── proxy │ │ │ │ │ └── TodoProxy.js │ │ │ └── view │ │ │ │ ├── component │ │ │ │ └── TodoForm.js │ │ │ │ ├── event │ │ │ │ └── AppEvents.js │ │ │ │ └── mediator │ │ │ │ ├── RoutesMediator.js │ │ │ │ └── TodoFormMediator.js │ │ └── readme.md │ ├── ractive │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── director │ │ │ │ └── director.js │ │ │ ├── ractive │ │ │ │ └── Ractive.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── persistence.js │ │ │ └── routes.js │ │ └── readme.md │ ├── rappidjs │ │ ├── app │ │ │ ├── Todo.xml │ │ │ ├── TodoClass.js │ │ │ ├── collection │ │ │ │ └── TodoList.js │ │ │ ├── lib │ │ │ │ └── rappidjs.min.js │ │ │ ├── model │ │ │ │ └── Todo.js │ │ │ └── view │ │ │ │ └── TodoView.xml │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── config.json │ │ ├── index.html │ │ └── readme.md │ ├── sammyjs │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── sammy │ │ │ │ ├── sammy.js │ │ │ │ └── sammy.template.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── controllers │ │ │ │ ├── TodoItem.js │ │ │ │ └── TodoList.js │ │ │ ├── models │ │ │ │ └── Todos.js │ │ │ ├── routes │ │ │ │ ├── active.js │ │ │ │ ├── completed.js │ │ │ │ └── home.js │ │ │ └── views │ │ │ │ ├── TodoItem.js │ │ │ │ └── TodoList.js │ │ ├── readme.md │ │ └── templates │ │ │ ├── footer.template │ │ │ ├── todoItem.template │ │ │ └── todos.template │ ├── sapui5 │ │ ├── bower.json │ │ ├── bower_components │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── base.css │ │ ├── img │ │ │ └── bg.png │ │ ├── index.html │ │ └── js │ │ │ ├── app.js │ │ │ └── todo │ │ │ ├── SmartTextField.js │ │ │ ├── Todo.controller.js │ │ │ ├── Todo.view.js │ │ │ ├── TodoPersistency.js │ │ │ └── formatters.js │ ├── serenadejs │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── director │ │ │ │ └── build │ │ │ │ │ └── director.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── app.coffee │ │ │ ├── app.js │ │ │ └── lib │ │ │ │ └── serenade.js │ │ ├── package.json │ │ └── readme.md │ ├── socketstream │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── .nodemonignore │ │ ├── app.js │ │ ├── bower.json │ │ ├── client │ │ │ ├── code │ │ │ │ ├── app │ │ │ │ │ ├── app.js │ │ │ │ │ └── entry.js │ │ │ │ └── libs │ │ │ │ │ ├── jquery │ │ │ │ │ └── jquery.js │ │ │ │ │ └── todomvc-common │ │ │ │ │ ├── base.css │ │ │ │ │ ├── base.js │ │ │ │ │ └── bg.png │ │ │ ├── css │ │ │ │ └── base.css │ │ │ ├── static │ │ │ │ └── bg.png │ │ │ ├── templates │ │ │ │ ├── footer.html │ │ │ │ └── todo.html │ │ │ └── views │ │ │ │ └── app.html │ │ ├── package.json │ │ ├── readme.md │ │ └── server │ │ │ └── rpc │ │ │ └── todos.js │ ├── somajs │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── director │ │ │ │ └── build │ │ │ │ │ └── director.js │ │ │ ├── soma-template │ │ │ │ └── build │ │ │ │ │ └── soma-template.js │ │ │ ├── soma.js │ │ │ │ └── build │ │ │ │ │ └── soma.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── css │ │ │ └── app.css │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── models │ │ │ │ ├── router.js │ │ │ │ └── todos.js │ │ │ └── views │ │ │ │ ├── footer.js │ │ │ │ ├── header.js │ │ │ │ └── main.js │ │ └── readme.md │ ├── stapes │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── handlebars.js │ │ │ │ └── handlebars.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── stapes │ │ │ │ └── stapes.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── controllers │ │ │ │ └── todoController.js │ │ │ ├── models │ │ │ │ └── todoModel.js │ │ │ ├── stores │ │ │ │ └── todoStore.js │ │ │ └── views │ │ │ │ └── todoView.js │ │ └── readme.md │ ├── thorax │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── backbone │ │ │ │ └── backbone.js │ │ │ ├── handlebars.js │ │ │ │ └── handlebars.js │ │ │ ├── jquery │ │ │ │ └── jquery.js │ │ │ ├── thorax │ │ │ │ └── thorax.js │ │ │ ├── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ │ └── underscore │ │ │ │ └── underscore.js │ │ ├── index.html │ │ ├── js │ │ │ ├── app.js │ │ │ ├── collections │ │ │ │ └── todos.js │ │ │ ├── lib │ │ │ │ └── backbone-localstorage.js │ │ │ ├── models │ │ │ │ └── todo.js │ │ │ ├── routers │ │ │ │ └── router.js │ │ │ └── views │ │ │ │ ├── app.js │ │ │ │ ├── stats.js │ │ │ │ └── todo-item.js │ │ └── readme.md │ ├── typescript-angular │ │ ├── .gitignore │ │ ├── bower.json │ │ ├── bower_components │ │ │ ├── angular │ │ │ │ └── angular.js │ │ │ └── todomvc-common │ │ │ │ ├── base.css │ │ │ │ ├── base.js │ │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── Application.js │ │ │ ├── Application.js.map │ │ │ ├── Application.ts │ │ │ ├── _all.js │ │ │ ├── _all.ts │ │ │ ├── controllers │ │ │ │ ├── TodoCtrl.js │ │ │ │ └── TodoCtrl.ts │ │ │ ├── directives │ │ │ │ ├── TodoBlur.js │ │ │ │ ├── TodoBlur.ts │ │ │ │ ├── TodoFocus.js │ │ │ │ └── TodoFocus.ts │ │ │ ├── interfaces │ │ │ │ ├── ITodoScope.js │ │ │ │ ├── ITodoScope.ts │ │ │ │ ├── ITodoStorage.js │ │ │ │ └── ITodoStorage.ts │ │ │ ├── libs │ │ │ │ ├── angular │ │ │ │ │ └── angular.d.ts │ │ │ │ └── jquery │ │ │ │ │ └── jquery.d.ts │ │ │ ├── models │ │ │ │ ├── TodoItem.js │ │ │ │ └── TodoItem.ts │ │ │ └── services │ │ │ │ ├── TodoStorage.js │ │ │ │ └── TodoStorage.ts │ │ └── readme.md │ └── typescript-backbone │ │ ├── bower.json │ │ ├── bower_components │ │ ├── backbone │ │ │ └── backbone.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── lodash │ │ │ └── lodash.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ ├── index.html │ │ ├── js │ │ ├── app.js │ │ ├── app.ts │ │ └── libs │ │ │ └── backbone │ │ │ └── backbone.localStorage.js │ │ └── readme.md └── dependency-examples │ ├── angularjs_require │ ├── bower.json │ ├── bower_components │ │ ├── angular │ │ │ └── angular.js │ │ ├── requirejs │ │ │ └── require.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ └── todo.js │ │ ├── directives │ │ │ └── todoFocus.js │ │ ├── main.js │ │ └── services │ │ │ └── todoStorage.js │ └── readme.md │ ├── backbone_marionette_require │ ├── app.build.js │ ├── bower.json │ ├── bower_components │ │ ├── backbone.localStorage │ │ │ └── backbone.localStorage.js │ │ ├── backbone.marionette │ │ │ └── lib │ │ │ │ └── backbone.marionette.js │ │ ├── backbone │ │ │ └── backbone.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── requirejs │ │ │ └── require.js │ │ ├── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ └── underscore │ │ │ └── underscore.js │ ├── css │ │ └── custom.css │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── collections │ │ │ └── TodoList.js │ │ ├── controllers │ │ │ └── index.js │ │ ├── lib │ │ │ └── tpl.js │ │ ├── main.js │ │ ├── models │ │ │ └── Todo.js │ │ ├── routers │ │ │ └── index.js │ │ ├── templates.js │ │ ├── templates │ │ │ ├── footer.tmpl │ │ │ ├── header.tmpl │ │ │ ├── todoItemView.tmpl │ │ │ └── todoListCompositeView.tmpl │ │ └── views │ │ │ ├── ActiveCount.js │ │ │ ├── CompletedCount.js │ │ │ ├── Footer.js │ │ │ ├── Header.js │ │ │ ├── TodoItemView.js │ │ │ └── TodoListCompositeView.js │ └── readme.md │ ├── canjs_require │ ├── bower.json │ ├── bower_components │ │ ├── canjs-localstorage │ │ │ └── can.localstorage.js │ │ ├── canjs │ │ │ └── amd │ │ │ │ ├── can.js │ │ │ │ └── can │ │ │ │ ├── component.js │ │ │ │ ├── compute.js │ │ │ │ ├── construct.js │ │ │ │ ├── construct │ │ │ │ ├── proxy.js │ │ │ │ └── super.js │ │ │ │ ├── control.js │ │ │ │ ├── control │ │ │ │ ├── plugin.js │ │ │ │ └── route.js │ │ │ │ ├── list.js │ │ │ │ ├── map.js │ │ │ │ ├── map │ │ │ │ ├── attributes.js │ │ │ │ ├── backup.js │ │ │ │ ├── delegate.js │ │ │ │ ├── list.js │ │ │ │ ├── setter.js │ │ │ │ ├── sort.js │ │ │ │ └── validations.js │ │ │ │ ├── model.js │ │ │ │ ├── model │ │ │ │ └── queue.js │ │ │ │ ├── observe.js │ │ │ │ ├── route.js │ │ │ │ ├── route │ │ │ │ └── pushstate.js │ │ │ │ ├── util │ │ │ │ ├── array │ │ │ │ │ └── each.js │ │ │ │ ├── batch.js │ │ │ │ ├── bind.js │ │ │ │ ├── can.js │ │ │ │ ├── deferred.js │ │ │ │ ├── dojo.js │ │ │ │ ├── event.js │ │ │ │ ├── fixture.js │ │ │ │ ├── fragment.js │ │ │ │ ├── hashchange.js │ │ │ │ ├── inserted.js │ │ │ │ ├── jquery.js │ │ │ │ ├── library.js │ │ │ │ ├── mootools.js │ │ │ │ ├── object.js │ │ │ │ ├── object │ │ │ │ │ └── isplain.js │ │ │ │ ├── string.js │ │ │ │ ├── string │ │ │ │ │ └── deparam.js │ │ │ │ ├── yui.js │ │ │ │ └── zepto.js │ │ │ │ ├── view.js │ │ │ │ └── view │ │ │ │ ├── bindings.js │ │ │ │ ├── ejs.js │ │ │ │ ├── elements.js │ │ │ │ ├── live.js │ │ │ │ ├── modifiers.js │ │ │ │ ├── mustache.js │ │ │ │ ├── node_lists.js │ │ │ │ ├── render.js │ │ │ │ ├── scanner.js │ │ │ │ └── scope.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── requirejs │ │ │ └── require.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── components │ │ │ └── todo-app.js │ │ └── models │ │ │ └── todo.js │ └── readme.md │ ├── chaplin-brunch │ ├── .editorconfig │ ├── .gitignore │ ├── app │ │ ├── application.coffee │ │ ├── assets │ │ │ └── index.html │ │ ├── controllers │ │ │ └── index-controller.coffee │ │ ├── initialize.coffee │ │ ├── lib │ │ │ └── utils.coffee │ │ ├── mediator.coffee │ │ ├── models │ │ │ ├── todo.coffee │ │ │ └── todos.coffee │ │ ├── routes.coffee │ │ └── views │ │ │ ├── base │ │ │ ├── collection-view.coffee │ │ │ └── view.coffee │ │ │ ├── footer-view.coffee │ │ │ ├── header-view.coffee │ │ │ ├── templates │ │ │ ├── footer.hbs │ │ │ ├── header.hbs │ │ │ ├── todo.hbs │ │ │ └── todos.hbs │ │ │ ├── todo-view.coffee │ │ │ └── todos-view.coffee │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── config.coffee │ ├── package.json │ ├── public │ │ ├── app.js │ │ ├── app.js.map │ │ └── index.html │ └── readme.md │ ├── durandal │ ├── bower.json │ ├── bower_components │ │ ├── durandal │ │ │ ├── amd │ │ │ │ ├── require.js │ │ │ │ └── text.js │ │ │ ├── app.js │ │ │ ├── composition.js │ │ │ ├── events.js │ │ │ ├── modalDialog.js │ │ │ ├── plugins │ │ │ │ └── router.js │ │ │ ├── system.js │ │ │ ├── viewEngine.js │ │ │ ├── viewLocator.js │ │ │ ├── viewModel.js │ │ │ ├── viewModelBinder.js │ │ │ └── widget.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── knockout │ │ │ └── knockout.js │ │ ├── requirejs │ │ │ └── require.js │ │ ├── sammy │ │ │ └── sammy.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── index.html │ ├── js │ │ ├── main.js │ │ ├── viewmodels │ │ │ ├── entry.js │ │ │ ├── list.js │ │ │ ├── shell.js │ │ │ └── todoapp.js │ │ └── views │ │ │ ├── entry.html │ │ │ ├── list.html │ │ │ ├── shell.html │ │ │ └── todoapp.html │ └── readme.md │ ├── enyo_backbone │ ├── bower.json │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── enyo │ │ ├── enyo.js │ │ ├── loader.js │ │ └── source │ │ │ ├── boot │ │ │ ├── boot.js │ │ │ ├── package.js │ │ │ └── ready.js │ │ │ └── package.js │ ├── index.html │ ├── js │ │ ├── apps │ │ │ ├── app.js │ │ │ └── package.js │ │ ├── collections │ │ │ ├── TaskCollection.js │ │ │ └── package.js │ │ ├── controllers │ │ │ ├── NotepadController.js │ │ │ ├── Routes.js │ │ │ └── package.js │ │ ├── models │ │ │ ├── TaskModel.js │ │ │ └── package.js │ │ ├── package.js │ │ ├── start.js │ │ └── views │ │ │ ├── FooterView.js │ │ │ ├── NotepadFooterView.js │ │ │ ├── NotepadHeaderView.js │ │ │ ├── NotepadMainView.js │ │ │ ├── NotepadView.js │ │ │ ├── WindowView.js │ │ │ └── package.js │ ├── lib │ │ ├── app.js │ │ ├── enyo.js │ │ └── package.js │ └── readme.md │ ├── flight │ └── index.html │ ├── knockoutjs_require │ ├── bower.json │ ├── bower_components │ │ ├── knockout.js │ │ │ └── knockout.js │ │ ├── requirejs │ │ │ └── require.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ ├── js │ │ ├── config │ │ │ └── global.js │ │ ├── extends │ │ │ └── handlers.js │ │ ├── main.js │ │ ├── models │ │ │ └── Todo.js │ │ └── viewmodels │ │ │ └── todo.js │ └── readme.md │ ├── lavaca_require │ ├── bower.json │ ├── bower_components │ │ ├── dustjs-linkedin-helpers │ │ │ └── dist │ │ │ │ └── dust-helpers-1.1.1.js │ │ ├── dustjs-linkedin │ │ │ └── dist │ │ │ │ └── dust-full-1.1.1.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── mout │ │ │ └── src │ │ │ │ ├── function │ │ │ │ ├── makeIterator_.js │ │ │ │ └── prop.js │ │ │ │ ├── lang │ │ │ │ ├── clone.js │ │ │ │ ├── deepClone.js │ │ │ │ ├── isArray.js │ │ │ │ ├── isKind.js │ │ │ │ ├── isObject.js │ │ │ │ ├── isPlainObject.js │ │ │ │ └── kindOf.js │ │ │ │ └── object │ │ │ │ ├── deepMatches.js │ │ │ │ ├── deepMixIn.js │ │ │ │ ├── equals.js │ │ │ │ ├── every.js │ │ │ │ ├── forIn.js │ │ │ │ ├── forOwn.js │ │ │ │ ├── hasOwn.js │ │ │ │ ├── merge.js │ │ │ │ └── mixIn.js │ │ ├── requirejs │ │ │ └── require.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── index.html │ └── js │ │ ├── app │ │ ├── app.js │ │ ├── boot.js │ │ ├── models │ │ │ └── TodosCollection.js │ │ ├── net │ │ │ └── TodosController.js │ │ └── ui │ │ │ └── views │ │ │ ├── CollectionView.js │ │ │ ├── TodoItemView.js │ │ │ ├── TodosCollectionView.js │ │ │ └── TodosView.js │ │ ├── libs │ │ ├── lavaca.js │ │ └── require-dust.js │ │ └── templates │ │ ├── todo-item.html │ │ └── todos.html │ ├── somajs_require │ ├── bower.json │ ├── bower_components │ │ ├── director │ │ │ └── build │ │ │ │ └── director.js │ │ ├── requirejs │ │ │ └── require.js │ │ ├── soma-template │ │ │ └── build │ │ │ │ └── soma-template.js │ │ ├── soma.js │ │ │ └── build │ │ │ │ └── soma.js │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── css │ │ └── app.css │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── models │ │ │ ├── router.js │ │ │ └── todos.js │ │ └── views │ │ │ ├── footer.js │ │ │ ├── header.js │ │ │ └── main.js │ └── readme.md │ ├── stapes_require │ ├── bower.json │ ├── bower_components │ │ ├── handlebars.js │ │ │ └── handlebars.js │ │ ├── requirejs │ │ │ └── require.js │ │ ├── stapes │ │ │ └── stapes.js │ │ ├── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ └── zepto │ │ │ └── zepto.js │ ├── index.html │ ├── js │ │ ├── app.js │ │ ├── controllers │ │ │ └── todoController.js │ │ ├── models │ │ │ └── todoModel.js │ │ ├── stores │ │ │ └── todoStore.js │ │ └── views │ │ │ └── todoView.js │ └── readme.md │ ├── thorax_lumbar │ ├── bower.json │ ├── bower_components │ │ ├── backbone │ │ │ └── backbone.js │ │ ├── handlebars.js │ │ │ └── handlebars.js │ │ ├── jquery │ │ │ └── jquery.js │ │ ├── lumbar-loader │ │ │ ├── lumbar-loader-backbone.js │ │ │ ├── lumbar-loader-events.js │ │ │ ├── lumbar-loader-localstorage.js │ │ │ ├── lumbar-loader-standard.js │ │ │ └── lumbar-loader.js │ │ ├── script.js │ │ │ └── dist │ │ │ │ └── script.js │ │ ├── thorax │ │ │ └── thorax.js │ │ ├── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ │ └── underscore │ │ │ └── underscore.js │ ├── lumbar.json │ ├── package.json │ ├── public │ │ ├── base.js │ │ ├── index.html │ │ └── todomvc.js │ ├── readme.md │ └── src │ │ ├── js │ │ ├── app.js │ │ ├── collections │ │ │ └── todos.js │ │ ├── init.js │ │ ├── lib │ │ │ └── backbone-localstorage.js │ │ ├── models │ │ │ └── todo.js │ │ ├── routers │ │ │ └── todomvc.js │ │ └── views │ │ │ ├── app.js │ │ │ ├── stats.js │ │ │ └── todo-item.js │ │ └── templates │ │ ├── app.handlebars │ │ └── stats.handlebars │ └── troopjs_require │ ├── bower.json │ ├── bower_components │ ├── jquery │ │ └── jquery.js │ ├── requirejs │ │ └── require.js │ ├── todomvc-common │ │ ├── base.css │ │ ├── base.js │ │ └── bg.png │ └── troopjs-bundle │ │ └── maxi.js │ ├── css │ └── app.css │ ├── index.html │ ├── js │ └── widget │ │ ├── clear.js │ │ ├── count.js │ │ ├── create.js │ │ ├── display.js │ │ ├── filters.js │ │ ├── item.html │ │ ├── list.js │ │ └── mark.js │ └── readme.md ├── learn.json ├── learn.template.json ├── license.md ├── media ├── icon-bg.jpg ├── icon-bg.png ├── icon-small.png ├── icon.png ├── logo.ai ├── logo.png ├── logo.svg ├── symbol.ai ├── symbol.png └── symbol.svg ├── readme.md ├── site-assets ├── editcloud9.png ├── favicon.ico ├── logo-icon.png ├── logo.svg ├── main.css ├── main.js └── screenshot.png ├── tasks ├── Gruntfile.js └── package.json ├── template ├── bower.json ├── bower_components │ └── todomvc-common │ │ ├── base.css │ │ ├── base.js │ │ └── bg.png ├── css │ └── app.css ├── index.html ├── js │ └── app.js ├── readme.md └── readme_template.md └── vanilla-examples ├── vanilladart ├── .bowerrc ├── .gitignore ├── bower.json ├── build │ ├── bower_components │ │ └── todomvc-common │ │ │ ├── base.css │ │ │ ├── base.js │ │ │ └── bg.png │ ├── dart │ │ └── app.dart.js │ ├── index.html │ └── packages │ │ └── browser │ │ └── dart.js ├── lib │ └── models.dart ├── pubspec.yaml ├── readme.md └── web │ ├── bower_components │ └── todomvc-common │ │ ├── base.css │ │ ├── base.js │ │ └── bg.png │ ├── dart │ ├── TodoApp.dart │ ├── TodoWidget.dart │ └── app.dart │ └── index.html └── vanillajs ├── bower.json ├── bower_components ├── jasmine │ └── lib │ │ └── jasmine-core │ │ ├── jasmine-html.js │ │ ├── jasmine.css │ │ └── jasmine.js └── todomvc-common │ ├── base.css │ ├── base.js │ └── bg.png ├── index.html ├── js ├── app.js ├── controller.js ├── helpers.js ├── model.js ├── store.js ├── template.js └── view.js ├── readme.md └── test ├── ControllerSpec.js └── SpecRunner.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/app-spec.md -------------------------------------------------------------------------------- /architecture-examples/agilityjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/agilityjs/bower.json -------------------------------------------------------------------------------- /architecture-examples/agilityjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/agilityjs/index.html -------------------------------------------------------------------------------- /architecture-examples/agilityjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/agilityjs/js/app.js -------------------------------------------------------------------------------- /architecture-examples/agilityjs/js/localstorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/agilityjs/js/localstorage.js -------------------------------------------------------------------------------- /architecture-examples/agilityjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/agilityjs/readme.md -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/bower.json -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/index.html -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/js/app.js -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/js/controllers/todoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/js/controllers/todoCtrl.js -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/js/directives/todoEscape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/js/directives/todoEscape.js -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/js/directives/todoFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/js/directives/todoFocus.js -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/js/services/todoStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/js/services/todoStorage.js -------------------------------------------------------------------------------- /architecture-examples/angularjs-perf/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs-perf/readme.md -------------------------------------------------------------------------------- /architecture-examples/angularjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/bower.json -------------------------------------------------------------------------------- /architecture-examples/angularjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/index.html -------------------------------------------------------------------------------- /architecture-examples/angularjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/js/app.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/js/controllers/todoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/js/controllers/todoCtrl.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/js/directives/todoEscape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/js/directives/todoEscape.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/js/directives/todoFocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/js/directives/todoFocus.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/js/services/todoStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/js/services/todoStorage.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/readme.md -------------------------------------------------------------------------------- /architecture-examples/angularjs/test/config/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/test/config/karma.conf.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/test/package.json -------------------------------------------------------------------------------- /architecture-examples/angularjs/test/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/test/readme.md -------------------------------------------------------------------------------- /architecture-examples/angularjs/test/unit/directivesSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/test/unit/directivesSpec.js -------------------------------------------------------------------------------- /architecture-examples/angularjs/test/unit/todoCtrlSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/angularjs/test/unit/todoCtrlSpec.js -------------------------------------------------------------------------------- /architecture-examples/backbone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/bower.json -------------------------------------------------------------------------------- /architecture-examples/backbone/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /architecture-examples/backbone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/index.html -------------------------------------------------------------------------------- /architecture-examples/backbone/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/app.js -------------------------------------------------------------------------------- /architecture-examples/backbone/js/collections/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/collections/todos.js -------------------------------------------------------------------------------- /architecture-examples/backbone/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/backbone/js/routers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/routers/router.js -------------------------------------------------------------------------------- /architecture-examples/backbone/js/views/app-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/views/app-view.js -------------------------------------------------------------------------------- /architecture-examples/backbone/js/views/todo-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/js/views/todo-view.js -------------------------------------------------------------------------------- /architecture-examples/backbone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/backbone/readme.md -------------------------------------------------------------------------------- /architecture-examples/canjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/bower.json -------------------------------------------------------------------------------- /architecture-examples/canjs/bower_components/canjs/can.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/bower_components/canjs/can.jquery.js -------------------------------------------------------------------------------- /architecture-examples/canjs/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /architecture-examples/canjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/index.html -------------------------------------------------------------------------------- /architecture-examples/canjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/js/app.js -------------------------------------------------------------------------------- /architecture-examples/canjs/js/components/todo-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/js/components/todo-app.js -------------------------------------------------------------------------------- /architecture-examples/canjs/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/canjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/canjs/readme.md -------------------------------------------------------------------------------- /architecture-examples/closure/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/bower.json -------------------------------------------------------------------------------- /architecture-examples/closure/build/closure-linter.version: -------------------------------------------------------------------------------- 1 | 2.3.5 2 | -------------------------------------------------------------------------------- /architecture-examples/closure/build/plovr.version: -------------------------------------------------------------------------------- 1 | plovr-4b3caf2b7d84 2 | -------------------------------------------------------------------------------- /architecture-examples/closure/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/index.html -------------------------------------------------------------------------------- /architecture-examples/closure/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/app.js -------------------------------------------------------------------------------- /architecture-examples/closure/js/compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/compiled.js -------------------------------------------------------------------------------- /architecture-examples/closure/js/todomvc/model/ToDoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/todomvc/model/ToDoItem.js -------------------------------------------------------------------------------- /architecture-examples/closure/js/todomvc/model/ToDoItemStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/todomvc/model/ToDoItemStore.js -------------------------------------------------------------------------------- /architecture-examples/closure/js/todomvc/view/ToDoItemControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/todomvc/view/ToDoItemControl.js -------------------------------------------------------------------------------- /architecture-examples/closure/js/todomvc/view/templates.soy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/js/todomvc/view/templates.soy -------------------------------------------------------------------------------- /architecture-examples/closure/plovr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/plovr.json -------------------------------------------------------------------------------- /architecture-examples/closure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/closure/readme.md -------------------------------------------------------------------------------- /architecture-examples/dojo/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/bower.json -------------------------------------------------------------------------------- /architecture-examples/dojo/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/css/app.css -------------------------------------------------------------------------------- /architecture-examples/dojo/index-1.7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/index-1.7.html -------------------------------------------------------------------------------- /architecture-examples/dojo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/index.html -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dijit-1.8/nls/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dijit-1.8/nls/common.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo-1.8/cldr/nls/en/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo-1.8/cldr/nls/en/number.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo-1.8/dojo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo-1.8/dojo.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo-1.8/nls/dojo_ROOT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo-1.8/nls/dojo_ROOT.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo-1.8/resources/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo-1.8/resources/blank.gif -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo/cldr/nls/en/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo/cldr/nls/en/number.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/lib/dojo/dojo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/lib/dojo/dojo.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/CssToggleWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/CssToggleWidget.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/TodoList.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/app.html -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/app.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/app18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/app18.html -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/app18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/app18.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/ctrl/RouteController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/ctrl/RouteController.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/ctrl/TodoListRefController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/ctrl/TodoListRefController.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/ctrl/TodoRefController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/ctrl/TodoRefController.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/ctrl/_HashCompletedMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/ctrl/_HashCompletedMixin.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/form/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/form/CheckBox.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/form/InlineEditBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/form/InlineEditBox.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/misc/HashSelectedConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/misc/HashSelectedConverter.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/model/SimpleTodoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/model/SimpleTodoModel.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/model/TodoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/model/TodoModel.js -------------------------------------------------------------------------------- /architecture-examples/dojo/js/todo/store/LocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/js/todo/store/LocalStorage.js -------------------------------------------------------------------------------- /architecture-examples/dojo/profiles/todomvc.profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/profiles/todomvc.profile.js -------------------------------------------------------------------------------- /architecture-examples/dojo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/dojo/readme.md -------------------------------------------------------------------------------- /architecture-examples/emberjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/bower.json -------------------------------------------------------------------------------- /architecture-examples/emberjs/bower_components/ember/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/bower_components/ember/ember.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/index.html -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/app.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/controllers/todo_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/controllers/todo_controller.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/controllers/todos_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/controllers/todos_controller.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/helpers/pluralize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/helpers/pluralize.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/router.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/views/edit_todo_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/views/edit_todo_view.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/js/views/todos_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/js/views/todos_view.js -------------------------------------------------------------------------------- /architecture-examples/emberjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/emberjs/readme.md -------------------------------------------------------------------------------- /architecture-examples/gwt/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/bower.json -------------------------------------------------------------------------------- /architecture-examples/gwt/bower_components/todomvc-common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/bower_components/todomvc-common/bg.png -------------------------------------------------------------------------------- /architecture-examples/gwt/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/css/app.css -------------------------------------------------------------------------------- /architecture-examples/gwt/gwttodo/clear.cache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/gwttodo/clear.cache.gif -------------------------------------------------------------------------------- /architecture-examples/gwt/gwttodo/gwttodo.nocache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/gwttodo/gwttodo.nocache.js -------------------------------------------------------------------------------- /architecture-examples/gwt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/index.html -------------------------------------------------------------------------------- /architecture-examples/gwt/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/readme.md -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/GwtToDo.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/GwtToDo.gwt.xml -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/GwtToDo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/GwtToDo.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoCell.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoCell.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoItem.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoPresenter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoPresenter.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoRouting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoRouting.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoView.java -------------------------------------------------------------------------------- /architecture-examples/gwt/src/com/todo/client/ToDoView.ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/gwt/src/com/todo/client/ToDoView.ui.xml -------------------------------------------------------------------------------- /architecture-examples/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/jquery/bower.json -------------------------------------------------------------------------------- /architecture-examples/jquery/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/jquery/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /architecture-examples/jquery/css/app.css: -------------------------------------------------------------------------------- 1 | #main, 2 | #footer { 3 | display: none; 4 | } 5 | -------------------------------------------------------------------------------- /architecture-examples/jquery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/jquery/index.html -------------------------------------------------------------------------------- /architecture-examples/jquery/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/jquery/js/app.js -------------------------------------------------------------------------------- /architecture-examples/jquery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/jquery/readme.md -------------------------------------------------------------------------------- /architecture-examples/knockback/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/Cakefile -------------------------------------------------------------------------------- /architecture-examples/knockback/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/bower.json -------------------------------------------------------------------------------- /architecture-examples/knockback/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/index.html -------------------------------------------------------------------------------- /architecture-examples/knockback/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/knockback/js/models/todo_collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/js/models/todo_collection.js -------------------------------------------------------------------------------- /architecture-examples/knockback/js/viewmodels/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/js/viewmodels/app.js -------------------------------------------------------------------------------- /architecture-examples/knockback/js/viewmodels/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/js/viewmodels/todo.js -------------------------------------------------------------------------------- /architecture-examples/knockback/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/readme.md -------------------------------------------------------------------------------- /architecture-examples/knockback/src/models/todo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/src/models/todo.coffee -------------------------------------------------------------------------------- /architecture-examples/knockback/src/viewmodels/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/src/viewmodels/app.coffee -------------------------------------------------------------------------------- /architecture-examples/knockback/src/viewmodels/todo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockback/src/viewmodels/todo.coffee -------------------------------------------------------------------------------- /architecture-examples/knockoutjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockoutjs/bower.json -------------------------------------------------------------------------------- /architecture-examples/knockoutjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockoutjs/index.html -------------------------------------------------------------------------------- /architecture-examples/knockoutjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockoutjs/js/app.js -------------------------------------------------------------------------------- /architecture-examples/knockoutjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/knockoutjs/readme.md -------------------------------------------------------------------------------- /architecture-examples/maria/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/bower.json -------------------------------------------------------------------------------- /architecture-examples/maria/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/css/app.css -------------------------------------------------------------------------------- /architecture-examples/maria/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/index.html -------------------------------------------------------------------------------- /architecture-examples/maria/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/bootstrap.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/controllers/TodoController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/controllers/TodoController.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/controllers/TodosController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/controllers/TodosController.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/models/TodoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/models/TodoModel.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/models/TodosModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/models/TodosModel.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/namespace.js: -------------------------------------------------------------------------------- 1 | /*jshint unused:false */ 2 | 3 | var checkit = {}; 4 | -------------------------------------------------------------------------------- /architecture-examples/maria/js/templates/TodoTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/templates/TodoTemplate.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/templates/TodosTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/templates/TodosTemplate.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/util.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/views/TodoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/views/TodoView.js -------------------------------------------------------------------------------- /architecture-examples/maria/js/views/TodosView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/js/views/TodosView.js -------------------------------------------------------------------------------- /architecture-examples/maria/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/maria/readme.md -------------------------------------------------------------------------------- /architecture-examples/polymer/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/AUTHORS -------------------------------------------------------------------------------- /architecture-examples/polymer/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/CONTRIBUTING.md -------------------------------------------------------------------------------- /architecture-examples/polymer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/LICENSE -------------------------------------------------------------------------------- /architecture-examples/polymer/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/PATENTS -------------------------------------------------------------------------------- /architecture-examples/polymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/README.md -------------------------------------------------------------------------------- /architecture-examples/polymer/app/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/app/app.css -------------------------------------------------------------------------------- /architecture-examples/polymer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/bower.json -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-input.html -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-item.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-item.css -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-item.html -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-model.html -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-todos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-todos.css -------------------------------------------------------------------------------- /architecture-examples/polymer/elements/td-todos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/elements/td-todos.html -------------------------------------------------------------------------------- /architecture-examples/polymer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/index.html -------------------------------------------------------------------------------- /architecture-examples/polymer/lib-elements/polymer-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/polymer/lib-elements/polymer-selector.html -------------------------------------------------------------------------------- /architecture-examples/quiescent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/.gitignore -------------------------------------------------------------------------------- /architecture-examples/quiescent/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/bower.json -------------------------------------------------------------------------------- /architecture-examples/quiescent/index-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/index-dev.html -------------------------------------------------------------------------------- /architecture-examples/quiescent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/index.html -------------------------------------------------------------------------------- /architecture-examples/quiescent/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/project.clj -------------------------------------------------------------------------------- /architecture-examples/quiescent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/readme.md -------------------------------------------------------------------------------- /architecture-examples/quiescent/src/todomvc_quiescent.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/src/todomvc_quiescent.cljs -------------------------------------------------------------------------------- /architecture-examples/quiescent/src/todomvc_quiescent/data.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/src/todomvc_quiescent/data.cljs -------------------------------------------------------------------------------- /architecture-examples/quiescent/src/todomvc_quiescent/serve.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/src/todomvc_quiescent/serve.clj -------------------------------------------------------------------------------- /architecture-examples/quiescent/src/todomvc_quiescent/store.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/quiescent/src/todomvc_quiescent/store.cljs -------------------------------------------------------------------------------- /architecture-examples/react/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/bower.json -------------------------------------------------------------------------------- /architecture-examples/react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/index.html -------------------------------------------------------------------------------- /architecture-examples/react/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/js/app.jsx -------------------------------------------------------------------------------- /architecture-examples/react/js/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/js/footer.jsx -------------------------------------------------------------------------------- /architecture-examples/react/js/todoItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/js/todoItem.jsx -------------------------------------------------------------------------------- /architecture-examples/react/js/todoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/js/todoModel.js -------------------------------------------------------------------------------- /architecture-examples/react/js/utils.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/js/utils.jsx -------------------------------------------------------------------------------- /architecture-examples/react/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/react/readme.md -------------------------------------------------------------------------------- /architecture-examples/spine/Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/Cakefile -------------------------------------------------------------------------------- /architecture-examples/spine/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/bower.json -------------------------------------------------------------------------------- /architecture-examples/spine/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /architecture-examples/spine/bower_components/spine/lib/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/bower_components/spine/lib/local.js -------------------------------------------------------------------------------- /architecture-examples/spine/bower_components/spine/lib/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/bower_components/spine/lib/route.js -------------------------------------------------------------------------------- /architecture-examples/spine/bower_components/spine/lib/spine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/bower_components/spine/lib/spine.js -------------------------------------------------------------------------------- /architecture-examples/spine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/index.html -------------------------------------------------------------------------------- /architecture-examples/spine/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/js/app.js -------------------------------------------------------------------------------- /architecture-examples/spine/js/controllers/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/js/controllers/todos.js -------------------------------------------------------------------------------- /architecture-examples/spine/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/spine/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/readme.md -------------------------------------------------------------------------------- /architecture-examples/spine/src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/src/app.coffee -------------------------------------------------------------------------------- /architecture-examples/spine/src/controllers/todos.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/src/controllers/todos.coffee -------------------------------------------------------------------------------- /architecture-examples/spine/src/models/todo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/spine/src/models/todo.coffee -------------------------------------------------------------------------------- /architecture-examples/yui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/bower.json -------------------------------------------------------------------------------- /architecture-examples/yui/bower_components/todomvc-common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/bower_components/todomvc-common/bg.png -------------------------------------------------------------------------------- /architecture-examples/yui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/index.html -------------------------------------------------------------------------------- /architecture-examples/yui/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/js/app.js -------------------------------------------------------------------------------- /architecture-examples/yui/js/lib/yui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/js/lib/yui.js -------------------------------------------------------------------------------- /architecture-examples/yui/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/js/models/todo.js -------------------------------------------------------------------------------- /architecture-examples/yui/js/models/todolist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/js/models/todolist.js -------------------------------------------------------------------------------- /architecture-examples/yui/js/views/todoview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/js/views/todoview.js -------------------------------------------------------------------------------- /architecture-examples/yui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/architecture-examples/yui/readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/bower_components/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /bower_components/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/bower_components/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /bower_components/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/bower_components/jquery/jquery.min.js -------------------------------------------------------------------------------- /bower_components/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/bower_components/jquery/jquery.min.map -------------------------------------------------------------------------------- /browser-tests/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/Gruntfile.js -------------------------------------------------------------------------------- /browser-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/README.md -------------------------------------------------------------------------------- /browser-tests/allTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/allTests.js -------------------------------------------------------------------------------- /browser-tests/knownIssues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/knownIssues.js -------------------------------------------------------------------------------- /browser-tests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/package.json -------------------------------------------------------------------------------- /browser-tests/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/page.js -------------------------------------------------------------------------------- /browser-tests/pageLaxMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/pageLaxMode.js -------------------------------------------------------------------------------- /browser-tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/test.js -------------------------------------------------------------------------------- /browser-tests/testOperations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/browser-tests/testOperations.js -------------------------------------------------------------------------------- /codestyle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/codestyle.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/contributing.md -------------------------------------------------------------------------------- /dependency-examples/backbone_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/bower.json -------------------------------------------------------------------------------- /dependency-examples/backbone_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/index.html -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/collections/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/collections/todos.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/common.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/main.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/models/todo.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/routers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/routers/router.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/templates/stats.html -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/templates/todos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/templates/todos.html -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/views/app.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/js/views/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/js/views/todos.js -------------------------------------------------------------------------------- /dependency-examples/backbone_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/backbone_require/readme.md -------------------------------------------------------------------------------- /dependency-examples/emberjs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/emberjs_require/index.html -------------------------------------------------------------------------------- /dependency-examples/emberjs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/emberjs_require/readme.md -------------------------------------------------------------------------------- /dependency-examples/flight/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /dependency-examples/flight/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/.jshintrc -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/app.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/data/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/data/stats.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/data/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/data/todos.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/main.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/store.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/main_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/main_selector.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/new_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/new_item.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/stats.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/todo_list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/todo_list.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/toggle_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/toggle_all.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/ui/with_filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/ui/with_filters.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/js/utils.js -------------------------------------------------------------------------------- /dependency-examples/flight/app/templates/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/templates/stats.html -------------------------------------------------------------------------------- /dependency-examples/flight/app/templates/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/app/templates/todo.html -------------------------------------------------------------------------------- /dependency-examples/flight/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower.json -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/depot/depot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/depot/depot.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/es5-shim/es5-sham.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/es5-shim/es5-sham.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/es5-shim/es5-shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/es5-shim/es5-shim.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/advice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/advice.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/base.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/debug.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/index.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/logger.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/flight/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/flight/lib/utils.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/jquery/jquery.js -------------------------------------------------------------------------------- /dependency-examples/flight/bower_components/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/bower_components/requirejs/require.js -------------------------------------------------------------------------------- /dependency-examples/flight/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/index.html -------------------------------------------------------------------------------- /dependency-examples/flight/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/karma.conf.js -------------------------------------------------------------------------------- /dependency-examples/flight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/package.json -------------------------------------------------------------------------------- /dependency-examples/flight/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/readme.md -------------------------------------------------------------------------------- /dependency-examples/flight/test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/.jshintrc -------------------------------------------------------------------------------- /dependency-examples/flight/test/fixture/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/fixture/footer.html -------------------------------------------------------------------------------- /dependency-examples/flight/test/fixture/new_todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/fixture/new_todo.html -------------------------------------------------------------------------------- /dependency-examples/flight/test/fixture/toggle_all.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dependency-examples/flight/test/mock/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/mock/datastore.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/spec/data/stats_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/spec/data/stats_spec.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/spec/data/todos_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/spec/data/todos_spec.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/spec/ui/new_item_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/spec/ui/new_item_spec.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/spec/ui/stats_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/spec/ui/stats_spec.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/spec/ui/toggle_all_spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/spec/ui/toggle_all_spec.js -------------------------------------------------------------------------------- /dependency-examples/flight/test/test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/dependency-examples/flight/test/test-main.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/index.html -------------------------------------------------------------------------------- /labs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/README.md -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/pubspec.lock -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/pubspec.yaml -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/directives.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/directives.dart -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/main.dart -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/main.dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/main.dart.js -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/main.dart.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/main.dart.js.map -------------------------------------------------------------------------------- /labs/architecture-examples/angular-dart/web/todo.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/angular-dart/web/todo.dart -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/js/ITodoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/js/ITodoCtrl.js -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/js/TodoCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/js/TodoCtrl.js -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/js/view/Todo.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/js/view/Todo.tpl -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/js/view/TodoScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/js/view/TodoScript.js -------------------------------------------------------------------------------- /labs/architecture-examples/ariatemplates/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ariatemplates/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/cntrl/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/cntrl/input.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/compo/filter/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/compo/filter/filter.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/compo/filter/filter.mask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/compo/filter/filter.mask -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/compo/todoList/todoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/compo/todoList/todoList.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/js/model/Todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/js/model/Todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/lib/atma-globals-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/lib/atma-globals-dev.js -------------------------------------------------------------------------------- /labs/architecture-examples/atmajs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/atmajs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/collections/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/collections/todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/init.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/lib/strophe.forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/lib/strophe.forms.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/models/todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/routers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/routers/router.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/views/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/js/views/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/js/views/todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/server/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/server/bootstrap.py -------------------------------------------------------------------------------- /labs/architecture-examples/backbone.xmpp/server/buildout.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone.xmpp/server/buildout.cfg -------------------------------------------------------------------------------- /labs/architecture-examples/backbone_marionette/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone_marionette/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/backbone_marionette/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone_marionette/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/backbone_marionette/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone_marionette/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/backbone_marionette/js/TodoMVC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone_marionette/js/TodoMVC.js -------------------------------------------------------------------------------- /labs/architecture-examples/backbone_marionette/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/backbone_marionette/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/batman/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/app.coffee -------------------------------------------------------------------------------- /labs/architecture-examples/batman/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/batman/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/batman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/batman/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/package.json -------------------------------------------------------------------------------- /labs/architecture-examples/batman/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/batman/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/app/app-dm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/app/app-dm.js -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/app/app-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/app/app-sv.js -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/app/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/componentjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/componentjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/TODO.md -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/controller.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/controls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/controls/strings.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/controls/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/controls/structure.css -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/controls/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/controls/template.html -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/create/cleanTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/create/cleanTodo.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/create/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/create/strings.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/create/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/create/template.html -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/create/validateTodo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/create/validateTodo.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/footer/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/footer/strings.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/footer/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/footer/template.html -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/list/setCompletedClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/list/setCompletedClass.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/list/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/list/strings.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/list/structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/list/structure.css -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/list/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/list/template.html -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/main.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/app/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/app/run.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/cola/cola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/cola/cola.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/meld/meld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/meld/meld.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/all.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/date.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/es5.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/json.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/poly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/poly.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/poly/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/poly/xhr.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/when/keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/when/keys.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/when/poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/when/poll.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/when/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/when/when.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/wire/aop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/wire/aop.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/wire/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/wire/dom.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/wire/on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/wire/on.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/bower_components/wire/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/bower_components/wire/wire.js -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/cujo/theme/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/cujo/theme/base.css -------------------------------------------------------------------------------- /labs/architecture-examples/derby/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "public/components" 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/derby/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | gen 4 | *.swp 5 | *.un~ 6 | -------------------------------------------------------------------------------- /labs/architecture-examples/derby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/Makefile -------------------------------------------------------------------------------- /labs/architecture-examples/derby/Procfile: -------------------------------------------------------------------------------- 1 | web: node server.js 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/derby/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/derby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/package.json -------------------------------------------------------------------------------- /labs/architecture-examples/derby/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/derby/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/server.js -------------------------------------------------------------------------------- /labs/architecture-examples/derby/src/server/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/src/server/index.coffee -------------------------------------------------------------------------------- /labs/architecture-examples/derby/src/server/queries.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/src/server/queries.coffee -------------------------------------------------------------------------------- /labs/architecture-examples/derby/src/todos/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/src/todos/index.coffee -------------------------------------------------------------------------------- /labs/architecture-examples/derby/styles/todos/index.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/architecture-examples/derby/styles/ui.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/styles/ui.styl -------------------------------------------------------------------------------- /labs/architecture-examples/derby/ui/connectionAlert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/ui/connectionAlert/index.js -------------------------------------------------------------------------------- /labs/architecture-examples/derby/ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/ui/index.js -------------------------------------------------------------------------------- /labs/architecture-examples/derby/views/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/views/404.html -------------------------------------------------------------------------------- /labs/architecture-examples/derby/views/todos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/derby/views/todos/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/config.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/lib/dijon-0.5.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/lib/dijon-0.5.3.min.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/models/TodosModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/models/TodosModel.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/utils/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/utils/Utils.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/views/FooterView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/views/FooterView.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/views/TodoFormView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/views/TodoFormView.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/js/views/TodoListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/js/views/TodoListView.js -------------------------------------------------------------------------------- /labs/architecture-examples/dijon/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/dijon/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/duel/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/main/webapp/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/duel/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/duel/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/duel/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/duel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/duel/pom.xml -------------------------------------------------------------------------------- /labs/architecture-examples/duel/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/duel/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/duel/staticapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/duel/staticapp.json -------------------------------------------------------------------------------- /labs/architecture-examples/duel/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/duel/www/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/js/models/todo-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/js/models/todo-model.js -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/js/views/todo-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/js/views/todo-list.js -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/js/views/todo-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/js/views/todo-main.js -------------------------------------------------------------------------------- /labs/architecture-examples/epitome/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/epitome/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/js/models/todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/js/routers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/js/routers/router.js -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/js/views/app-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/js/views/app-view.js -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/js/views/todo-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/js/views/todo-view.js -------------------------------------------------------------------------------- /labs/architecture-examples/exoskeleton/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/exoskeleton/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/controller/Tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/controller/Tasks.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/model/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/model/Task.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/store/Tasks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/store/Tasks.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/view/CheckAllBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/view/CheckAllBox.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/view/TaskField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/view/TaskField.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/view/TaskList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/view/TaskList.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/js/view/TaskToolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/js/view/TaskToolbar.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/.gitignore -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/Application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/Application.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/app-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/app-loader.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/model/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/model/Todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/store/TodoStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/store/TodoStore.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/view/TodoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/view/TodoView.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/js/view/Viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/js/view/Viewport.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/lib/deft/deft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/lib/deft/deft.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/lib/extjs/ext-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/lib/extjs/ext-all.js -------------------------------------------------------------------------------- /labs/architecture-examples/extjs_deftjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/extjs_deftjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/firebase-angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/firebase-angular/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/firebase-angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/firebase-angular/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/firebase-angular/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/firebase-angular/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/firebase-angular/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/firebase-angular/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/kendo/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/kendo/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/kendo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/kendo/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/kendo/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/kendo/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/kendo/js/lib/kendo.web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/kendo/js/lib/kendo.web.js -------------------------------------------------------------------------------- /labs/architecture-examples/kendo/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/kendo/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "client/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/.meteor/.gitignore: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/.meteor/packages: -------------------------------------------------------------------------------- 1 | standard-app-packages 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/.meteor/release: -------------------------------------------------------------------------------- 1 | 0.7.0.1 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/meteor/app.html -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/meteor/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/meteor/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/client/css/app.css: -------------------------------------------------------------------------------- 1 | #filters li a { 2 | text-transform: capitalize; 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/meteor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/meteor/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/montage/BSD-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/BSD-LICENSE.md -------------------------------------------------------------------------------- /labs/architecture-examples/montage/assets/app.css: -------------------------------------------------------------------------------- 1 | #montage-todomvc .visible { 2 | display: block; 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/montage/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/montage/core/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/core/todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html.bundle-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html.bundle-0.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html.bundle-1-0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html.bundle-1-0.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html.bundle-1-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html.bundle-1-1.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html.bundle-1-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html.bundle-1-2.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/index.html.bundle-1-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/index.html.bundle-1-3.js -------------------------------------------------------------------------------- /labs/architecture-examples/montage/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/montage/ui/main.reel/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/ui/main.reel/main.css -------------------------------------------------------------------------------- /labs/architecture-examples/montage/ui/main.reel/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/ui/main.reel/main.html -------------------------------------------------------------------------------- /labs/architecture-examples/montage/ui/main.reel/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/montage/ui/main.reel/main.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/README.md -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/css/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/css/bg.png -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/handlebars-1.0.rc.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/handlebars-1.0.rc.1.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/i18n/en.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/jquery-1.9.1.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/mozart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/mozart.min.js -------------------------------------------------------------------------------- /labs/architecture-examples/mozart/js/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/mozart/js/underscore-min.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/olives/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/olives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/olives/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/js/lib/Tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/js/lib/Tools.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/js/uis/Controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/js/uis/Controls.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/js/uis/Input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/js/uis/Input.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/js/uis/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/js/uis/List.js -------------------------------------------------------------------------------- /labs/architecture-examples/olives/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/olives/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/compiled.js -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/models/listmodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/models/listmodel.js -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/models/todomodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/models/todomodel.js -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/sourcemap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/sourcemap.js.map -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/js/sync/listsync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/js/sync/listsync.js -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/plovr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/plovr.json -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/plastronjs/template/templates.soy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/plastronjs/template/templates.soy -------------------------------------------------------------------------------- /labs/architecture-examples/polymer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/polymer/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/js/AppConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/js/AppConstants.js -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/js/lib/puremvc.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/js/lib/puremvc.min.js -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/js/view/event/AppEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/js/view/event/AppEvents.js -------------------------------------------------------------------------------- /labs/architecture-examples/puremvc/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/puremvc/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/css/app.css -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/js/persistence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/js/persistence.js -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/js/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/js/routes.js -------------------------------------------------------------------------------- /labs/architecture-examples/ractive/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/ractive/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/app/Todo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/app/Todo.xml -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/app/TodoClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/app/TodoClass.js -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/app/lib/rappidjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/app/lib/rappidjs.min.js -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/app/model/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/app/model/Todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/app/view/TodoView.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/app/view/TodoView.xml -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/config.json -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/rappidjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/rappidjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/controllers/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/controllers/TodoItem.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/controllers/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/controllers/TodoList.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/models/Todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/models/Todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/routes/active.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/routes/active.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/routes/completed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/routes/completed.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/routes/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/routes/home.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/views/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/views/TodoItem.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/js/views/TodoList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/js/views/TodoList.js -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/templates/footer.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/templates/footer.template -------------------------------------------------------------------------------- /labs/architecture-examples/sammyjs/templates/todos.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sammyjs/templates/todos.template -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/css/base.css -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/img/bg.png -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/todo/SmartTextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/todo/SmartTextField.js -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/todo/Todo.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/todo/Todo.controller.js -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/todo/Todo.view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/todo/Todo.view.js -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/todo/TodoPersistency.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/todo/TodoPersistency.js -------------------------------------------------------------------------------- /labs/architecture-examples/sapui5/js/todo/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/sapui5/js/todo/formatters.js -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/js/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/js/app.coffee -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/js/lib/serenade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/js/lib/serenade.js -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/package.json -------------------------------------------------------------------------------- /labs/architecture-examples/serenadejs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/serenadejs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "client/code/libs" 3 | } 4 | -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /client/code/libs 3 | -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/.nodemonignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/.nodemonignore -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/client/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/client/css/base.css -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/client/static/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/client/static/bg.png -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/client/views/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/client/views/app.html -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/package.json -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/socketstream/server/rpc/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/socketstream/server/rpc/todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/css/app.css: -------------------------------------------------------------------------------- 1 | .data-cloak { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/models/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/models/router.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/models/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/models/todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/views/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/views/footer.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/views/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/views/header.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/js/views/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/js/views/main.js -------------------------------------------------------------------------------- /labs/architecture-examples/somajs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/somajs/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/js/models/todoModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/js/models/todoModel.js -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/js/stores/todoStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/js/stores/todoStore.js -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/js/views/todoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/js/views/todoView.js -------------------------------------------------------------------------------- /labs/architecture-examples/stapes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/stapes/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/collections/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/collections/todos.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/models/todo.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/routers/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/routers/router.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/views/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/views/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/views/stats.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/js/views/todo-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/js/views/todo-item.js -------------------------------------------------------------------------------- /labs/architecture-examples/thorax/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/thorax/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/.gitignore: -------------------------------------------------------------------------------- 1 | *.suo 2 | *.user 3 | /bin 4 | /obj -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-angular/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-angular/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/js/_all.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/js/_all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-angular/js/_all.ts -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/js/interfaces/ITodoScope.js: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/js/interfaces/ITodoStorage.js: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-angular/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-angular/readme.md -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-backbone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-backbone/bower.json -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-backbone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-backbone/index.html -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-backbone/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-backbone/js/app.js -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-backbone/js/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-backbone/js/app.ts -------------------------------------------------------------------------------- /labs/architecture-examples/typescript-backbone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/architecture-examples/typescript-backbone/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/angularjs_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/angularjs_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/angularjs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/angularjs_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/angularjs_require/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/angularjs_require/js/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/angularjs_require/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/angularjs_require/js/main.js -------------------------------------------------------------------------------- /labs/dependency-examples/angularjs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/angularjs_require/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/canjs_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/canjs_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/canjs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/canjs_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/canjs_require/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/canjs_require/js/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/canjs_require/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/canjs_require/js/models/todo.js -------------------------------------------------------------------------------- /labs/dependency-examples/canjs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/canjs_require/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/.editorconfig -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/.gitignore -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/app/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/app/assets/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/app/initialize.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/app/initialize.coffee -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/app/lib/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/app/lib/utils.coffee -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/app/mediator.coffee: -------------------------------------------------------------------------------- 1 | module.exports = Chaplin.mediator 2 | -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/app/routes.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/app/routes.coffee -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/config.coffee -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/package.json -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/public/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/public/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/public/app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/public/app.js.map -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/public/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/chaplin-brunch/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/chaplin-brunch/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/css/app.css -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/main.js -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/viewmodels/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/viewmodels/entry.js -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/viewmodels/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/viewmodels/list.js -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/viewmodels/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/viewmodels/shell.js -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/viewmodels/todoapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/viewmodels/todoapp.js -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/views/entry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/views/entry.html -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/views/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/views/list.html -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/views/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/views/shell.html -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/js/views/todoapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/js/views/todoapp.html -------------------------------------------------------------------------------- /labs/dependency-examples/durandal/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/durandal/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/enyo/enyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/enyo/enyo.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/enyo/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/enyo/loader.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/enyo/source/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/enyo/source/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/apps/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/apps/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/apps/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/apps/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/models/TaskModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/models/TaskModel.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/models/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/models/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/start.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/views/FooterView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/views/FooterView.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/views/WindowView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/views/WindowView.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/js/views/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/js/views/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/lib/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/lib/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/lib/enyo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/lib/enyo.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/lib/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/lib/package.js -------------------------------------------------------------------------------- /labs/dependency-examples/enyo_backbone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/enyo_backbone/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/flight/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/flight/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/knockoutjs_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/knockoutjs_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/knockoutjs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/knockoutjs_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/knockoutjs_require/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/knockoutjs_require/js/main.js -------------------------------------------------------------------------------- /labs/dependency-examples/knockoutjs_require/js/models/Todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/knockoutjs_require/js/models/Todo.js -------------------------------------------------------------------------------- /labs/dependency-examples/knockoutjs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/knockoutjs_require/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/lavaca_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/lavaca_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/lavaca_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/lavaca_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/lavaca_require/js/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/lavaca_require/js/app/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/lavaca_require/js/app/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/lavaca_require/js/app/boot.js -------------------------------------------------------------------------------- /labs/dependency-examples/lavaca_require/js/libs/lavaca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/lavaca_require/js/libs/lavaca.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/css/app.css: -------------------------------------------------------------------------------- 1 | .data-cloak { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/models/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/models/router.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/models/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/models/todos.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/views/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/views/footer.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/views/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/views/header.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/js/views/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/js/views/main.js -------------------------------------------------------------------------------- /labs/dependency-examples/somajs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/somajs_require/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/stapes_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/stapes_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/stapes_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/stapes_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/stapes_require/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/stapes_require/js/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/stapes_require/js/views/todoView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/stapes_require/js/views/todoView.js -------------------------------------------------------------------------------- /labs/dependency-examples/stapes_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/stapes_require/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/lumbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/lumbar.json -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/package.json -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/public/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/public/base.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/public/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/public/todomvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/public/todomvc.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/readme.md -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/src/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/src/js/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/src/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/src/js/init.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/src/js/models/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/src/js/models/todo.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/src/js/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/src/js/views/app.js -------------------------------------------------------------------------------- /labs/dependency-examples/thorax_lumbar/src/js/views/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/thorax_lumbar/src/js/views/stats.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/bower.json -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/css/app.css -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/index.html -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/clear.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/count.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/count.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/create.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/display.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/filters.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/item.html -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/list.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/js/widget/mark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/js/widget/mark.js -------------------------------------------------------------------------------- /labs/dependency-examples/troopjs_require/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/labs/dependency-examples/troopjs_require/readme.md -------------------------------------------------------------------------------- /learn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/learn.json -------------------------------------------------------------------------------- /learn.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/learn.template.json -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/license.md -------------------------------------------------------------------------------- /media/icon-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/icon-bg.jpg -------------------------------------------------------------------------------- /media/icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/icon-bg.png -------------------------------------------------------------------------------- /media/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/icon-small.png -------------------------------------------------------------------------------- /media/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/icon.png -------------------------------------------------------------------------------- /media/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/logo.ai -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/symbol.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/symbol.ai -------------------------------------------------------------------------------- /media/symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/symbol.png -------------------------------------------------------------------------------- /media/symbol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/media/symbol.svg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/readme.md -------------------------------------------------------------------------------- /site-assets/editcloud9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/editcloud9.png -------------------------------------------------------------------------------- /site-assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/favicon.ico -------------------------------------------------------------------------------- /site-assets/logo-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/logo-icon.png -------------------------------------------------------------------------------- /site-assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/logo.svg -------------------------------------------------------------------------------- /site-assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/main.css -------------------------------------------------------------------------------- /site-assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/main.js -------------------------------------------------------------------------------- /site-assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/site-assets/screenshot.png -------------------------------------------------------------------------------- /tasks/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/tasks/Gruntfile.js -------------------------------------------------------------------------------- /tasks/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/tasks/package.json -------------------------------------------------------------------------------- /template/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/bower.json -------------------------------------------------------------------------------- /template/bower_components/todomvc-common/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/bower_components/todomvc-common/base.css -------------------------------------------------------------------------------- /template/bower_components/todomvc-common/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/bower_components/todomvc-common/base.js -------------------------------------------------------------------------------- /template/bower_components/todomvc-common/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/bower_components/todomvc-common/bg.png -------------------------------------------------------------------------------- /template/css/app.css: -------------------------------------------------------------------------------- 1 | /* base.css overrides */ 2 | -------------------------------------------------------------------------------- /template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/index.html -------------------------------------------------------------------------------- /template/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/js/app.js -------------------------------------------------------------------------------- /template/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/readme.md -------------------------------------------------------------------------------- /template/readme_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/template/readme_template.md -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "web/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/.gitignore: -------------------------------------------------------------------------------- 1 | packages 2 | pubspec.lock 3 | -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/bower.json -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/build/dart/app.dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/build/dart/app.dart.js -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/build/index.html -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/build/packages/browser/dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/build/packages/browser/dart.js -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/lib/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/lib/models.dart -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/pubspec.yaml -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/readme.md -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/web/dart/TodoApp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/web/dart/TodoApp.dart -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/web/dart/TodoWidget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/web/dart/TodoWidget.dart -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/web/dart/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/web/dart/app.dart -------------------------------------------------------------------------------- /vanilla-examples/vanilladart/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanilladart/web/index.html -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/bower.json -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/index.html -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/app.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/controller.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/helpers.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/model.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/store.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/template.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/js/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/js/view.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/readme.md -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/test/ControllerSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/test/ControllerSpec.js -------------------------------------------------------------------------------- /vanilla-examples/vanillajs/test/SpecRunner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/levand/todomvc/HEAD/vanilla-examples/vanillajs/test/SpecRunner.html --------------------------------------------------------------------------------