├── .gitignore ├── .gitmodules ├── LICENSE ├── README.rst ├── backbonejs_第二版.pdf ├── chapters ├── 00-preface.rst ├── 01-hello-backbonejs.rst ├── 02-backbonejs-model.rst ├── 03-backbonejs-collection.rst ├── 04-backbonejs-router.rst ├── 05-backbonejs-view.rst ├── 06-backbonejs-todos-1.rst ├── 07-backbonejs-todos-2.rst ├── 08-backbonejs-todos-3.rst ├── 09-intro-webpy.rst ├── 10-expand-todos-with-server.rst ├── 11-web-chatroom-base-on-backbonejs-1.rst ├── 12-web-chatroom-base-on-backbonejs-2.rst ├── 13-web-chatroom-base-on-backbonejs-3.rst ├── 14-web-chatroom-base-on-backbonejs-4.rst ├── 15-import-requirejs.rst ├── 16-exception-in-backbone.rst ├── 17-customize-backbonejs-sync.rst ├── 18-backbone-summary.rst ├── 19-backbone-js-resource.rst └── rst_to_md.sh ├── code ├── 01-hello-backbonejs.html ├── 02-backbonejs-model-server.py ├── 02-backbonejs-model.html ├── 03-backbonejs-collection-server.py ├── 03-backbonejs-collection.html ├── 04-backbonejs-router.html ├── 05-backbonejs-view.html ├── requirejs-demo │ ├── hello-backbonejs-requirejs.html │ └── static │ │ ├── js │ │ └── app.js │ │ ├── lib │ │ ├── backbone.js │ │ ├── jquery.js │ │ ├── require.js │ │ └── underscore.js │ │ └── main.js └── seajs-demo │ ├── hello-backbonejs-seajs.html │ └── static │ ├── js │ └── app.js │ ├── lib │ ├── backbone.js │ ├── jquery.js │ ├── sea-debug.js │ └── underscore.js │ └── main.js ├── images ├── backbonejs-cover.png ├── donate-alipay.png ├── login.png ├── message.png ├── topics.png └── wechat-arch.png ├── md_chapters ├── 00-preface.md ├── 01-hello-backbonejs.md ├── 02-backbonejs-model.md ├── 03-backbonejs-collection.md ├── 04-backbonejs-router.md ├── 05-backbonejs-view.md ├── 06-backbonejs-todos-1.md ├── 07-backbonejs-todos-2.md ├── 08-backbonejs-todos-3.md ├── 09-intro-webpy.md ├── 10-expand-todos-with-server.md ├── 11-web-chatroom-base-on-backbonejs-1.md ├── 12-web-chatroom-base-on-backbonejs-2.md ├── 13-web-chatroom-base-on-backbonejs-3.md ├── 14-web-chatroom-base-on-backbonejs-4.md ├── 15-import-requirejs.md ├── 16-exception-in-backbone.md ├── 17-customize-backbonejs-sync.md ├── 18-backbone-summary.md └── 19-backbone-js-resource.md ├── sites-baseon-backbonejs.rst ├── sponsor.rst └── 反馈.rst /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/README.rst -------------------------------------------------------------------------------- /backbonejs_第二版.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/backbonejs_第二版.pdf -------------------------------------------------------------------------------- /chapters/00-preface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/00-preface.rst -------------------------------------------------------------------------------- /chapters/01-hello-backbonejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/01-hello-backbonejs.rst -------------------------------------------------------------------------------- /chapters/02-backbonejs-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/02-backbonejs-model.rst -------------------------------------------------------------------------------- /chapters/03-backbonejs-collection.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/03-backbonejs-collection.rst -------------------------------------------------------------------------------- /chapters/04-backbonejs-router.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/04-backbonejs-router.rst -------------------------------------------------------------------------------- /chapters/05-backbonejs-view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/05-backbonejs-view.rst -------------------------------------------------------------------------------- /chapters/06-backbonejs-todos-1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/06-backbonejs-todos-1.rst -------------------------------------------------------------------------------- /chapters/07-backbonejs-todos-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/07-backbonejs-todos-2.rst -------------------------------------------------------------------------------- /chapters/08-backbonejs-todos-3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/08-backbonejs-todos-3.rst -------------------------------------------------------------------------------- /chapters/09-intro-webpy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/09-intro-webpy.rst -------------------------------------------------------------------------------- /chapters/10-expand-todos-with-server.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/10-expand-todos-with-server.rst -------------------------------------------------------------------------------- /chapters/11-web-chatroom-base-on-backbonejs-1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/11-web-chatroom-base-on-backbonejs-1.rst -------------------------------------------------------------------------------- /chapters/12-web-chatroom-base-on-backbonejs-2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/12-web-chatroom-base-on-backbonejs-2.rst -------------------------------------------------------------------------------- /chapters/13-web-chatroom-base-on-backbonejs-3.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/13-web-chatroom-base-on-backbonejs-3.rst -------------------------------------------------------------------------------- /chapters/14-web-chatroom-base-on-backbonejs-4.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/14-web-chatroom-base-on-backbonejs-4.rst -------------------------------------------------------------------------------- /chapters/15-import-requirejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/15-import-requirejs.rst -------------------------------------------------------------------------------- /chapters/16-exception-in-backbone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/16-exception-in-backbone.rst -------------------------------------------------------------------------------- /chapters/17-customize-backbonejs-sync.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/17-customize-backbonejs-sync.rst -------------------------------------------------------------------------------- /chapters/18-backbone-summary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/18-backbone-summary.rst -------------------------------------------------------------------------------- /chapters/19-backbone-js-resource.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/19-backbone-js-resource.rst -------------------------------------------------------------------------------- /chapters/rst_to_md.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/chapters/rst_to_md.sh -------------------------------------------------------------------------------- /code/01-hello-backbonejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/01-hello-backbonejs.html -------------------------------------------------------------------------------- /code/02-backbonejs-model-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/02-backbonejs-model-server.py -------------------------------------------------------------------------------- /code/02-backbonejs-model.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/02-backbonejs-model.html -------------------------------------------------------------------------------- /code/03-backbonejs-collection-server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/03-backbonejs-collection-server.py -------------------------------------------------------------------------------- /code/03-backbonejs-collection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/03-backbonejs-collection.html -------------------------------------------------------------------------------- /code/04-backbonejs-router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/04-backbonejs-router.html -------------------------------------------------------------------------------- /code/05-backbonejs-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/05-backbonejs-view.html -------------------------------------------------------------------------------- /code/requirejs-demo/hello-backbonejs-requirejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/hello-backbonejs-requirejs.html -------------------------------------------------------------------------------- /code/requirejs-demo/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/js/app.js -------------------------------------------------------------------------------- /code/requirejs-demo/static/lib/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/lib/backbone.js -------------------------------------------------------------------------------- /code/requirejs-demo/static/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/lib/jquery.js -------------------------------------------------------------------------------- /code/requirejs-demo/static/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/lib/require.js -------------------------------------------------------------------------------- /code/requirejs-demo/static/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/lib/underscore.js -------------------------------------------------------------------------------- /code/requirejs-demo/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/requirejs-demo/static/main.js -------------------------------------------------------------------------------- /code/seajs-demo/hello-backbonejs-seajs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/hello-backbonejs-seajs.html -------------------------------------------------------------------------------- /code/seajs-demo/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/js/app.js -------------------------------------------------------------------------------- /code/seajs-demo/static/lib/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/lib/backbone.js -------------------------------------------------------------------------------- /code/seajs-demo/static/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/lib/jquery.js -------------------------------------------------------------------------------- /code/seajs-demo/static/lib/sea-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/lib/sea-debug.js -------------------------------------------------------------------------------- /code/seajs-demo/static/lib/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/lib/underscore.js -------------------------------------------------------------------------------- /code/seajs-demo/static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/code/seajs-demo/static/main.js -------------------------------------------------------------------------------- /images/backbonejs-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/backbonejs-cover.png -------------------------------------------------------------------------------- /images/donate-alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/donate-alipay.png -------------------------------------------------------------------------------- /images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/login.png -------------------------------------------------------------------------------- /images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/message.png -------------------------------------------------------------------------------- /images/topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/topics.png -------------------------------------------------------------------------------- /images/wechat-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/images/wechat-arch.png -------------------------------------------------------------------------------- /md_chapters/00-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/00-preface.md -------------------------------------------------------------------------------- /md_chapters/01-hello-backbonejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/01-hello-backbonejs.md -------------------------------------------------------------------------------- /md_chapters/02-backbonejs-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/02-backbonejs-model.md -------------------------------------------------------------------------------- /md_chapters/03-backbonejs-collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/03-backbonejs-collection.md -------------------------------------------------------------------------------- /md_chapters/04-backbonejs-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/04-backbonejs-router.md -------------------------------------------------------------------------------- /md_chapters/05-backbonejs-view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/05-backbonejs-view.md -------------------------------------------------------------------------------- /md_chapters/06-backbonejs-todos-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/06-backbonejs-todos-1.md -------------------------------------------------------------------------------- /md_chapters/07-backbonejs-todos-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/07-backbonejs-todos-2.md -------------------------------------------------------------------------------- /md_chapters/08-backbonejs-todos-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/08-backbonejs-todos-3.md -------------------------------------------------------------------------------- /md_chapters/09-intro-webpy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/09-intro-webpy.md -------------------------------------------------------------------------------- /md_chapters/10-expand-todos-with-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/10-expand-todos-with-server.md -------------------------------------------------------------------------------- /md_chapters/11-web-chatroom-base-on-backbonejs-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/11-web-chatroom-base-on-backbonejs-1.md -------------------------------------------------------------------------------- /md_chapters/12-web-chatroom-base-on-backbonejs-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/12-web-chatroom-base-on-backbonejs-2.md -------------------------------------------------------------------------------- /md_chapters/13-web-chatroom-base-on-backbonejs-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/13-web-chatroom-base-on-backbonejs-3.md -------------------------------------------------------------------------------- /md_chapters/14-web-chatroom-base-on-backbonejs-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/14-web-chatroom-base-on-backbonejs-4.md -------------------------------------------------------------------------------- /md_chapters/15-import-requirejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/15-import-requirejs.md -------------------------------------------------------------------------------- /md_chapters/16-exception-in-backbone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/16-exception-in-backbone.md -------------------------------------------------------------------------------- /md_chapters/17-customize-backbonejs-sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/17-customize-backbonejs-sync.md -------------------------------------------------------------------------------- /md_chapters/18-backbone-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/18-backbone-summary.md -------------------------------------------------------------------------------- /md_chapters/19-backbone-js-resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/md_chapters/19-backbone-js-resource.md -------------------------------------------------------------------------------- /sites-baseon-backbonejs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/sites-baseon-backbonejs.rst -------------------------------------------------------------------------------- /sponsor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/sponsor.rst -------------------------------------------------------------------------------- /反馈.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the5fire/backbonejs-learning-note/HEAD/反馈.rst --------------------------------------------------------------------------------