├── .gitignore ├── .gitmodules ├── CONTRIBUTORS ├── LICENSE ├── README.markdown ├── Rakefile ├── assets ├── downloads │ └── .gitignore ├── images │ ├── activejs.gif │ ├── aptana.gif │ ├── dashwire.gif │ └── syntacticx.gif ├── samples │ ├── editable_list.html │ ├── editable_list_with_database.html │ ├── javascripts │ │ ├── example_setup.js │ │ ├── showdown.js │ │ └── syntax.js │ ├── nested_views.html │ ├── routed_tabs.html │ ├── simple_view.html │ ├── stylesheets │ │ ├── screen.css │ │ └── syntax.css │ ├── view_aspects.html │ └── wiki.html └── stylesheets │ └── docs.css ├── docs └── .gitignore ├── src ├── active_event.js ├── active_record.js ├── active_record │ ├── .DS_Store │ ├── adapters.js │ ├── adapters │ │ ├── .DS_Store │ │ ├── in_memory.js │ │ └── rest.js │ ├── base.js │ ├── calculations.js │ ├── errors.js │ ├── finders.js │ ├── indicies.js │ ├── lifecycle.js │ ├── main.js │ ├── relationships.js │ ├── relationships │ │ ├── belongs_to.js │ │ ├── has_many.js │ │ └── has_one.js │ ├── result_set.js │ ├── validations.js │ └── where_parser.js ├── active_routes.js ├── active_support.js ├── active_support │ ├── array.js │ ├── callback_queue.js │ ├── date.js │ ├── function.js │ ├── inflector.js │ ├── initializer.js │ ├── json.js │ ├── number.js │ ├── object.js │ ├── request.js │ └── string.js ├── active_test.js ├── active_view.js ├── active_view │ ├── .DS_Store │ └── main.js ├── builder.js ├── constants.yml └── dom.js ├── test ├── .gitignore ├── active_event │ ├── active_event.js │ └── setup.js ├── active_record │ ├── basic.js │ ├── callbacks.js │ ├── cleanup.js │ ├── date.js │ ├── finders.js │ ├── indicies.js │ ├── relationships.js │ ├── serialization.js │ ├── setup.js │ ├── teardown.js │ ├── transactions.js │ └── validations.js ├── active_routes │ ├── generator.js │ ├── history.js │ ├── matching.js │ └── setup.js ├── active_support │ └── active_support.js ├── active_view │ ├── aspect.js │ ├── attached.js │ ├── builder.js │ └── setup.js └── runner.html └── vendor └── swfaddress └── swfaddress.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/README.markdown -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/Rakefile -------------------------------------------------------------------------------- /assets/downloads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /assets/images/activejs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/images/activejs.gif -------------------------------------------------------------------------------- /assets/images/aptana.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/images/aptana.gif -------------------------------------------------------------------------------- /assets/images/dashwire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/images/dashwire.gif -------------------------------------------------------------------------------- /assets/images/syntacticx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/images/syntacticx.gif -------------------------------------------------------------------------------- /assets/samples/editable_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/editable_list.html -------------------------------------------------------------------------------- /assets/samples/editable_list_with_database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/editable_list_with_database.html -------------------------------------------------------------------------------- /assets/samples/javascripts/example_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/javascripts/example_setup.js -------------------------------------------------------------------------------- /assets/samples/javascripts/showdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/javascripts/showdown.js -------------------------------------------------------------------------------- /assets/samples/javascripts/syntax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/javascripts/syntax.js -------------------------------------------------------------------------------- /assets/samples/nested_views.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/nested_views.html -------------------------------------------------------------------------------- /assets/samples/routed_tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/routed_tabs.html -------------------------------------------------------------------------------- /assets/samples/simple_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/simple_view.html -------------------------------------------------------------------------------- /assets/samples/stylesheets/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/stylesheets/screen.css -------------------------------------------------------------------------------- /assets/samples/stylesheets/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/stylesheets/syntax.css -------------------------------------------------------------------------------- /assets/samples/view_aspects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/view_aspects.html -------------------------------------------------------------------------------- /assets/samples/wiki.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/samples/wiki.html -------------------------------------------------------------------------------- /assets/stylesheets/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/assets/stylesheets/docs.css -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /src/active_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_event.js -------------------------------------------------------------------------------- /src/active_record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record.js -------------------------------------------------------------------------------- /src/active_record/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/.DS_Store -------------------------------------------------------------------------------- /src/active_record/adapters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/adapters.js -------------------------------------------------------------------------------- /src/active_record/adapters/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/adapters/.DS_Store -------------------------------------------------------------------------------- /src/active_record/adapters/in_memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/adapters/in_memory.js -------------------------------------------------------------------------------- /src/active_record/adapters/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/adapters/rest.js -------------------------------------------------------------------------------- /src/active_record/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/base.js -------------------------------------------------------------------------------- /src/active_record/calculations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/calculations.js -------------------------------------------------------------------------------- /src/active_record/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/errors.js -------------------------------------------------------------------------------- /src/active_record/finders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/finders.js -------------------------------------------------------------------------------- /src/active_record/indicies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/indicies.js -------------------------------------------------------------------------------- /src/active_record/lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/lifecycle.js -------------------------------------------------------------------------------- /src/active_record/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/main.js -------------------------------------------------------------------------------- /src/active_record/relationships.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/relationships.js -------------------------------------------------------------------------------- /src/active_record/relationships/belongs_to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/relationships/belongs_to.js -------------------------------------------------------------------------------- /src/active_record/relationships/has_many.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/relationships/has_many.js -------------------------------------------------------------------------------- /src/active_record/relationships/has_one.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/relationships/has_one.js -------------------------------------------------------------------------------- /src/active_record/result_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/result_set.js -------------------------------------------------------------------------------- /src/active_record/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/validations.js -------------------------------------------------------------------------------- /src/active_record/where_parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_record/where_parser.js -------------------------------------------------------------------------------- /src/active_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_routes.js -------------------------------------------------------------------------------- /src/active_support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support.js -------------------------------------------------------------------------------- /src/active_support/array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/array.js -------------------------------------------------------------------------------- /src/active_support/callback_queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/callback_queue.js -------------------------------------------------------------------------------- /src/active_support/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/date.js -------------------------------------------------------------------------------- /src/active_support/function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/function.js -------------------------------------------------------------------------------- /src/active_support/inflector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/inflector.js -------------------------------------------------------------------------------- /src/active_support/initializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/initializer.js -------------------------------------------------------------------------------- /src/active_support/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/json.js -------------------------------------------------------------------------------- /src/active_support/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/number.js -------------------------------------------------------------------------------- /src/active_support/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/object.js -------------------------------------------------------------------------------- /src/active_support/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/request.js -------------------------------------------------------------------------------- /src/active_support/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_support/string.js -------------------------------------------------------------------------------- /src/active_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_test.js -------------------------------------------------------------------------------- /src/active_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_view.js -------------------------------------------------------------------------------- /src/active_view/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_view/.DS_Store -------------------------------------------------------------------------------- /src/active_view/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/active_view/main.js -------------------------------------------------------------------------------- /src/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/builder.js -------------------------------------------------------------------------------- /src/constants.yml: -------------------------------------------------------------------------------- 1 | VERSION: "1.0" 2 | COPYRIGHT_YEAR: "2010" -------------------------------------------------------------------------------- /src/dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/src/dom.js -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/active_event/active_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_event/active_event.js -------------------------------------------------------------------------------- /test/active_event/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_event/setup.js -------------------------------------------------------------------------------- /test/active_record/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/basic.js -------------------------------------------------------------------------------- /test/active_record/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/callbacks.js -------------------------------------------------------------------------------- /test/active_record/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/cleanup.js -------------------------------------------------------------------------------- /test/active_record/date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/date.js -------------------------------------------------------------------------------- /test/active_record/finders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/finders.js -------------------------------------------------------------------------------- /test/active_record/indicies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/indicies.js -------------------------------------------------------------------------------- /test/active_record/relationships.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/relationships.js -------------------------------------------------------------------------------- /test/active_record/serialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/serialization.js -------------------------------------------------------------------------------- /test/active_record/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/setup.js -------------------------------------------------------------------------------- /test/active_record/teardown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/teardown.js -------------------------------------------------------------------------------- /test/active_record/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/transactions.js -------------------------------------------------------------------------------- /test/active_record/validations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_record/validations.js -------------------------------------------------------------------------------- /test/active_routes/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_routes/generator.js -------------------------------------------------------------------------------- /test/active_routes/history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_routes/history.js -------------------------------------------------------------------------------- /test/active_routes/matching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_routes/matching.js -------------------------------------------------------------------------------- /test/active_routes/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_routes/setup.js -------------------------------------------------------------------------------- /test/active_support/active_support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_support/active_support.js -------------------------------------------------------------------------------- /test/active_view/aspect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_view/aspect.js -------------------------------------------------------------------------------- /test/active_view/attached.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_view/attached.js -------------------------------------------------------------------------------- /test/active_view/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_view/builder.js -------------------------------------------------------------------------------- /test/active_view/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/active_view/setup.js -------------------------------------------------------------------------------- /test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/test/runner.html -------------------------------------------------------------------------------- /vendor/swfaddress/swfaddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aptana/activejs/HEAD/vendor/swfaddress/swfaddress.js --------------------------------------------------------------------------------