├── apps ├── 2011 │ ├── __init__.py │ ├── conf.py │ ├── info.ini │ ├── setting.ini │ ├── static │ │ ├── css │ │ │ ├── index.css │ │ │ ├── schedule.css │ │ │ ├── sponsors.css │ │ │ └── volunteer.css │ │ ├── images │ │ │ ├── PyConChina.png │ │ │ ├── heroes │ │ │ │ ├── Python-new.gif │ │ │ │ ├── Python-old.png │ │ │ │ ├── bambook.png │ │ │ │ └── guido.jpg │ │ │ ├── logo_s.png │ │ │ ├── speakers │ │ │ │ ├── chenshixin.jpg │ │ │ │ ├── chenzheng.jpg │ │ │ │ ├── damienhou.jpg │ │ │ │ ├── diaolizhi.jpg │ │ │ │ ├── hongqiangning.jpg │ │ │ │ ├── huangdong.jpg │ │ │ │ ├── laiyonghao.jpg │ │ │ │ ├── lijundong.jpg │ │ │ │ ├── linjun.jpg │ │ │ │ ├── linwei.jpg │ │ │ │ ├── liyinghui.jpg │ │ │ │ ├── martinbaehr.jpg │ │ │ │ ├── nopic.gif │ │ │ │ ├── panjunyong.jpg │ │ │ │ ├── ryanye.jpg │ │ │ │ ├── shenwai.jpg │ │ │ │ ├── sundatong.jpg │ │ │ │ ├── wanghaofei.jpg │ │ │ │ ├── wangjian.jpg │ │ │ │ ├── wangjianfeng.jpg │ │ │ │ ├── zhongzifei.jpg │ │ │ │ └── zhouqi.jpg │ │ │ ├── sponsors │ │ │ │ ├── ccp.gif │ │ │ │ ├── cpyug.gif │ │ │ │ ├── csdn.gif │ │ │ │ ├── douban.gif │ │ │ │ ├── gensee-cloud.gif │ │ │ │ ├── gensee.png │ │ │ │ ├── google.png │ │ │ │ ├── google_groups.gif │ │ │ │ ├── gtug.gif │ │ │ │ ├── infoq.gif │ │ │ │ ├── jinshan.gif │ │ │ │ ├── liubao.png │ │ │ │ ├── pycon.gif │ │ │ │ ├── sina.gif │ │ │ │ ├── snda.png │ │ │ │ ├── topgeek.gif │ │ │ │ ├── tudou.png │ │ │ │ ├── turingbook.gif │ │ │ │ ├── woodpecker.gif │ │ │ │ └── xunpu.png │ │ │ └── volunteer │ │ │ │ ├── caoyiling.jpg │ │ │ │ ├── chenshixin.jpg │ │ │ │ ├── gexinyang.jpg │ │ │ │ ├── lugang.jpg │ │ │ │ ├── luweifeng.jpg │ │ │ │ ├── lvguoning.png │ │ │ │ ├── shenwai.jpg │ │ │ │ ├── sundatong.jpg │ │ │ │ ├── zhixiaoyong.jpg │ │ │ │ └── zhouqi.png │ │ ├── js │ │ │ ├── index.js │ │ │ ├── schedule.js │ │ │ └── venue.js │ │ ├── readme.txt │ │ └── xml │ │ │ ├── speakers-cn.xml │ │ │ └── speakers-en.xml │ ├── templates │ │ ├── index.html │ │ ├── readme.txt │ │ └── siteView │ │ │ ├── about.html │ │ │ ├── collections.html │ │ │ ├── registration.html │ │ │ ├── schedule.html │ │ │ ├── sponsors.html │ │ │ ├── venue.html │ │ │ └── volunteer.html │ └── views.py ├── bootstrap │ ├── __init__.py │ ├── conf.py │ ├── config.ini │ ├── info.ini │ ├── settings.ini │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── layout.css │ │ ├── js │ │ │ ├── QTransform.js │ │ │ ├── bootstrap-alerts.js │ │ │ ├── bootstrap-dropdown.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-scrollspy.js │ │ │ ├── bootstrap-tabs.js │ │ │ ├── bootstrap-twipsy.js │ │ │ ├── google-code-prettify │ │ │ │ ├── prettify.css │ │ │ │ └── prettify.js │ │ │ ├── ie9-js.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.min.js │ │ │ └── layout.js │ │ └── readme.txt │ └── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── bootstrap_layout.html │ │ ├── container-app.html │ │ ├── error.html │ │ ├── fluid.html │ │ ├── hero.html │ │ ├── inc_show_messages.html │ │ ├── index.html │ │ ├── layout_3column.html │ │ ├── menu.html │ │ └── readme.txt ├── home │ ├── __init__.py │ ├── conf.py │ ├── info.ini │ ├── static │ │ └── readme.txt │ ├── templates │ │ ├── index.html │ │ └── readme.txt │ └── views.py └── settings.ini ├── fcgi_handler.fcgi ├── locale └── en │ └── LC_MESSAGES │ ├── uliweb.mo │ ├── uliweb.po │ └── uliweb.pot ├── tornado_wrapper.py └── wsgi_handler.py /apps/2011/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/__init__.py -------------------------------------------------------------------------------- /apps/2011/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/conf.py -------------------------------------------------------------------------------- /apps/2011/info.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/info.ini -------------------------------------------------------------------------------- /apps/2011/setting.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/2011/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/css/index.css -------------------------------------------------------------------------------- /apps/2011/static/css/schedule.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/css/schedule.css -------------------------------------------------------------------------------- /apps/2011/static/css/sponsors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/css/sponsors.css -------------------------------------------------------------------------------- /apps/2011/static/css/volunteer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/css/volunteer.css -------------------------------------------------------------------------------- /apps/2011/static/images/PyConChina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/PyConChina.png -------------------------------------------------------------------------------- /apps/2011/static/images/heroes/Python-new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/heroes/Python-new.gif -------------------------------------------------------------------------------- /apps/2011/static/images/heroes/Python-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/heroes/Python-old.png -------------------------------------------------------------------------------- /apps/2011/static/images/heroes/bambook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/heroes/bambook.png -------------------------------------------------------------------------------- /apps/2011/static/images/heroes/guido.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/heroes/guido.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/logo_s.png -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/chenshixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/chenshixin.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/chenzheng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/chenzheng.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/damienhou.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/damienhou.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/diaolizhi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/diaolizhi.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/hongqiangning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/hongqiangning.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/huangdong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/huangdong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/laiyonghao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/laiyonghao.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/lijundong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/lijundong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/linjun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/linjun.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/linwei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/linwei.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/liyinghui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/liyinghui.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/martinbaehr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/martinbaehr.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/nopic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/nopic.gif -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/panjunyong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/panjunyong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/ryanye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/ryanye.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/shenwai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/shenwai.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/sundatong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/sundatong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/wanghaofei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/wanghaofei.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/wangjian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/wangjian.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/wangjianfeng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/wangjianfeng.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/zhongzifei.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/zhongzifei.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/speakers/zhouqi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/speakers/zhouqi.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/ccp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/ccp.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/cpyug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/cpyug.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/csdn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/csdn.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/douban.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/douban.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/gensee-cloud.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/gensee-cloud.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/gensee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/gensee.png -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/google.png -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/google_groups.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/google_groups.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/gtug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/gtug.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/infoq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/infoq.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/jinshan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/jinshan.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/liubao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/liubao.png -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/pycon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/pycon.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/sina.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/sina.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/snda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/snda.png -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/topgeek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/topgeek.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/tudou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/tudou.png -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/turingbook.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/turingbook.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/woodpecker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/woodpecker.gif -------------------------------------------------------------------------------- /apps/2011/static/images/sponsors/xunpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/sponsors/xunpu.png -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/caoyiling.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/caoyiling.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/chenshixin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/chenshixin.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/gexinyang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/gexinyang.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/lugang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/lugang.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/luweifeng.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/luweifeng.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/lvguoning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/lvguoning.png -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/shenwai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/shenwai.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/sundatong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/sundatong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/zhixiaoyong.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/zhixiaoyong.jpg -------------------------------------------------------------------------------- /apps/2011/static/images/volunteer/zhouqi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/images/volunteer/zhouqi.png -------------------------------------------------------------------------------- /apps/2011/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/js/index.js -------------------------------------------------------------------------------- /apps/2011/static/js/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/js/schedule.js -------------------------------------------------------------------------------- /apps/2011/static/js/venue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/js/venue.js -------------------------------------------------------------------------------- /apps/2011/static/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/readme.txt -------------------------------------------------------------------------------- /apps/2011/static/xml/speakers-cn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/xml/speakers-cn.xml -------------------------------------------------------------------------------- /apps/2011/static/xml/speakers-en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/static/xml/speakers-en.xml -------------------------------------------------------------------------------- /apps/2011/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/index.html -------------------------------------------------------------------------------- /apps/2011/templates/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/readme.txt -------------------------------------------------------------------------------- /apps/2011/templates/siteView/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/about.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/collections.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/registration.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/schedule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/schedule.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/sponsors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/sponsors.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/venue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/venue.html -------------------------------------------------------------------------------- /apps/2011/templates/siteView/volunteer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/templates/siteView/volunteer.html -------------------------------------------------------------------------------- /apps/2011/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/2011/views.py -------------------------------------------------------------------------------- /apps/bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/bootstrap/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/conf.py -------------------------------------------------------------------------------- /apps/bootstrap/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/config.ini -------------------------------------------------------------------------------- /apps/bootstrap/info.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/info.ini -------------------------------------------------------------------------------- /apps/bootstrap/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/settings.ini -------------------------------------------------------------------------------- /apps/bootstrap/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /apps/bootstrap/static/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/css/layout.css -------------------------------------------------------------------------------- /apps/bootstrap/static/js/QTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/QTransform.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-alerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-alerts.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-dropdown.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-modal.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-popover.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-tabs.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/bootstrap-twipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/bootstrap-twipsy.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/google-code-prettify/prettify.css -------------------------------------------------------------------------------- /apps/bootstrap/static/js/google-code-prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/google-code-prettify/prettify.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/ie9-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/ie9-js.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/jquery.cookie.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/jquery.min.js -------------------------------------------------------------------------------- /apps/bootstrap/static/js/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/js/layout.js -------------------------------------------------------------------------------- /apps/bootstrap/static/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/static/readme.txt -------------------------------------------------------------------------------- /apps/bootstrap/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/404.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/500.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/bootstrap_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/bootstrap_layout.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/container-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/container-app.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/error.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/fluid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/fluid.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/hero.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/hero.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/inc_show_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/inc_show_messages.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/index.html: -------------------------------------------------------------------------------- 1 | {{extend "bootstrap_layout.html"}} 2 | 3 | -------------------------------------------------------------------------------- /apps/bootstrap/templates/layout_3column.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/layout_3column.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/menu.html -------------------------------------------------------------------------------- /apps/bootstrap/templates/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/bootstrap/templates/readme.txt -------------------------------------------------------------------------------- /apps/home/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/home/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/home/conf.py -------------------------------------------------------------------------------- /apps/home/info.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/home/info.ini -------------------------------------------------------------------------------- /apps/home/static/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/home/static/readme.txt -------------------------------------------------------------------------------- /apps/home/templates/index.html: -------------------------------------------------------------------------------- 1 | {{extend "layout.html"}} 2 | 3 | -------------------------------------------------------------------------------- /apps/home/templates/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/home/templates/readme.txt -------------------------------------------------------------------------------- /apps/home/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/home/views.py -------------------------------------------------------------------------------- /apps/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/apps/settings.ini -------------------------------------------------------------------------------- /fcgi_handler.fcgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/fcgi_handler.fcgi -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/uliweb.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/locale/en/LC_MESSAGES/uliweb.mo -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/uliweb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/locale/en/LC_MESSAGES/uliweb.po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/uliweb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/locale/en/LC_MESSAGES/uliweb.pot -------------------------------------------------------------------------------- /tornado_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/tornado_wrapper.py -------------------------------------------------------------------------------- /wsgi_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyhunterpig/PyConCN/HEAD/wsgi_handler.py --------------------------------------------------------------------------------