This repository was archived by the owner on Jun 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Roadmap
jbueza edited this page Jan 4, 2012
·
14 revisions
- Fix mojo.Model.set() templating bug -- was not allowing multiple calls and not updating the Views
- Fix mojo.define() so that in the factory we now pass jQuery in to eliminate repetitive declarations for locals
- Finish documentation site
- Finish web site
- Write guide for setting up a hello world (blog post or screencast)
- Write guide for plugin injection (blog post or screencast)
- Write guide for deployment (blog post or screencast)
- Write guide/examples on integrating Blast Mojo with Facebook Connect
- Explore documentation being generated off of Sphinx instead of Showdown (markdown)
- Finish full suite of specs for a v0.2.0 (53 specs)
- Create public web site
- Refactor getPlugins to use MOJO.require()
- Write a lightweight micro templater for the Service class (so people can do restful uri's)
- example:
new Service('GetUser', '/api/user/{userId}');should be: /api/user/123
- example:
- Land asynchronous, non-blocking requests and logical execution order so we don't get any race conditions
- Write basic BDD specs (/test folder) [29 specs so far]
- Upgrade Jasmine BDD to 1.01
- jCarousel example
- Several more controllers such as Registration Controller and Profile Controller
- Configurable applications
- Configurable controllers by using mycontroller.param(key, value) to set, or mycontroller.param(key) to get
- Controller and Application specs