├── README ├── __init__.py ├── api ├── __init__.py ├── test │ ├── test_news.sh │ ├── test_leasons.sh │ ├── test_contacts.sh │ ├── test_ranking.sh │ ├── test_user.sh │ └── test_marker.sh ├── newshandler.py ├── csrfhandler.py ├── lessonshandler.py ├── rankinghandler.py ├── contactshandler.py ├── crossdomain.py └── markerhandler.py ├── apps ├── __init__.py ├── news │ ├── __init__.py │ ├── forms.py │ ├── urls.py │ ├── admin.py │ ├── models.py │ ├── tests.py │ └── views.py ├── accounts │ ├── __init__.py │ ├── urls.py │ ├── tests.py │ ├── forms.py │ ├── admin.py │ └── models.py ├── contacts │ ├── __init__.py │ ├── urls.py │ ├── views.py │ └── tests.py ├── lessons │ ├── __init__.py │ ├── admin.py │ ├── models.py │ ├── views.py │ └── tests.py ├── location │ ├── __init__.py │ ├── forms.py │ ├── admin.py │ ├── models.py │ ├── urls.py │ ├── tests.py │ └── views.py ├── ranking │ ├── __init__.py │ ├── forms.py │ ├── urls.py │ ├── models.py │ ├── admin.py │ ├── tests.py │ └── views.py ├── jsjtbb │ ├── markups │ │ └── __init__.py │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── unban.py │ ├── templatetags │ │ └── __init__.py │ ├── tests │ │ └── __init__.py │ ├── context_processors.py │ ├── index.py │ ├── signals.py │ ├── middleware.py │ ├── admin.py │ └── subscription.py └── views.py ├── static ├── forum │ ├── avatars │ │ └── index.html │ ├── attachments │ │ └── index.html │ ├── favicon.png │ ├── img │ │ ├── logo.png │ │ ├── login-bg.gif │ │ ├── openid_logo.png │ │ ├── smilies │ │ │ ├── hmm.png │ │ │ ├── lol.png │ │ │ ├── mad.png │ │ │ ├── sad.png │ │ │ ├── cool.png │ │ │ ├── roll.png │ │ │ ├── smile.png │ │ │ ├── wink.png │ │ │ ├── yikes.png │ │ │ ├── neutral.png │ │ │ ├── tongue.png │ │ │ ├── big_smile.png │ │ │ └── emoticon-smile.png │ │ ├── feed-icon-big.png │ │ ├── stars │ │ │ ├── Star_0.gif │ │ │ ├── Star_1.gif │ │ │ ├── Star_2.gif │ │ │ ├── Star_3.gif │ │ │ ├── Star_4.gif │ │ │ ├── Star_5.gif │ │ │ ├── Star_0_Half.gif │ │ │ ├── Star_1_Half.gif │ │ │ ├── Star_2_Half.gif │ │ │ ├── Star_3_Half.gif │ │ │ └── Star_4_Half.gif │ │ ├── attachment │ │ │ ├── audio.png │ │ │ ├── doc.png │ │ │ ├── image.png │ │ │ ├── text.png │ │ │ ├── video.png │ │ │ ├── unknown.png │ │ │ └── compress.png │ │ ├── authority │ │ │ ├── vote0.gif │ │ │ ├── vote1.gif │ │ │ ├── vote10.gif │ │ │ ├── vote2.gif │ │ │ ├── vote3.gif │ │ │ ├── vote4.gif │ │ │ ├── vote5.gif │ │ │ ├── vote6.gif │ │ │ ├── vote7.gif │ │ │ ├── vote8.gif │ │ │ └── vote9.gif │ │ ├── feed-icon-small.png │ │ └── reputation │ │ │ ├── warn_add.gif │ │ │ └── warn_minus.gif │ ├── themes │ │ └── default │ │ │ └── img │ │ │ ├── back.gif │ │ │ ├── closed.png │ │ │ ├── fon111.gif │ │ │ ├── link.png │ │ │ ├── stats.gif │ │ │ ├── category.gif │ │ │ ├── active_topic.gif │ │ │ ├── cat_maximize.png │ │ │ ├── cat_minimize.png │ │ │ ├── closed_topic.gif │ │ │ ├── sticky_topic.gif │ │ │ └── inactive_topic.gif │ ├── js │ │ ├── markitup │ │ │ ├── sets │ │ │ │ ├── bbcode │ │ │ │ │ ├── images │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── clean.png │ │ │ │ │ │ ├── fonts.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── quotes.png │ │ │ │ │ │ ├── stroke.png │ │ │ │ │ │ ├── list-item.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ ├── underline.png │ │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ │ └── list-numeric.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── set.js │ │ │ │ │ └── style.css │ │ │ │ ├── markdown │ │ │ │ │ ├── images │ │ │ │ │ │ ├── h1.png │ │ │ │ │ │ ├── h2.png │ │ │ │ │ │ ├── h3.png │ │ │ │ │ │ ├── h4.png │ │ │ │ │ │ ├── h5.png │ │ │ │ │ │ ├── h6.png │ │ │ │ │ │ ├── bold.png │ │ │ │ │ │ ├── code.png │ │ │ │ │ │ ├── link.png │ │ │ │ │ │ ├── italic.png │ │ │ │ │ │ ├── picture.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ ├── quotes.png │ │ │ │ │ │ ├── list-bullet.png │ │ │ │ │ │ └── list-numeric.png │ │ │ │ │ ├── readme.txt │ │ │ │ │ ├── style.css │ │ │ │ │ └── set.js │ │ │ │ └── default │ │ │ │ │ ├── images │ │ │ │ │ ├── bold.png │ │ │ │ │ ├── clean.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── link.png │ │ │ │ │ ├── italic.png │ │ │ │ │ ├── picture.png │ │ │ │ │ ├── preview.png │ │ │ │ │ └── stroke.png │ │ │ │ │ ├── style.css │ │ │ │ │ └── set.js │ │ │ ├── skins │ │ │ │ ├── simple │ │ │ │ │ └── images │ │ │ │ │ │ ├── menu.png │ │ │ │ │ │ ├── handle.png │ │ │ │ │ │ └── submenu.png │ │ │ │ └── markitup │ │ │ │ │ └── images │ │ │ │ │ ├── handle.png │ │ │ │ │ ├── menu.png │ │ │ │ │ ├── submenu.png │ │ │ │ │ ├── bg-editor.png │ │ │ │ │ ├── bg-container.png │ │ │ │ │ ├── bg-editor-xml.png │ │ │ │ │ ├── bg-editor-bbcode.png │ │ │ │ │ ├── bg-editor-html.png │ │ │ │ │ ├── bg-editor-json.png │ │ │ │ │ ├── bg-editor-wiki.png │ │ │ │ │ ├── bg-editor-dotclear.png │ │ │ │ │ ├── bg-editor-markdown.png │ │ │ │ │ └── bg-editor-textile.png │ │ │ ├── templates │ │ │ │ ├── preview.css │ │ │ │ └── preview.html │ │ │ └── readme.txt │ │ ├── corners_init.js │ │ ├── jquery.highlight-3.pack.js │ │ ├── languages │ │ │ ├── ini.js │ │ │ ├── dos.js │ │ │ ├── profile.js │ │ │ ├── smalltalk.js │ │ │ ├── diff.js │ │ │ ├── javascript.js │ │ │ ├── axapta.js │ │ │ ├── cpp.js │ │ │ ├── php.js │ │ │ ├── cs.js │ │ │ ├── java.js │ │ │ ├── python.js │ │ │ ├── bash.js │ │ │ └── vbscript.js │ │ └── board.js │ └── css │ │ ├── lofi │ │ ├── lofiprint.css │ │ └── lofihandheld.css │ │ ├── hljs_styles │ │ ├── ascetic.css │ │ ├── vs.css │ │ ├── idea.css │ │ ├── magula.css │ │ ├── default.css │ │ ├── dark.css │ │ ├── jsjtbb.css │ │ ├── zenburn.css │ │ ├── far.css │ │ └── sunburst.css │ │ └── error.css └── lessons │ ├── xxyw1.doc │ ├── xxyw2.doc │ ├── 初中数学第一课.doc │ ├── 初中数学第二课.doc │ ├── 初中英语第一课.doc │ ├── 初中英语第二课.doc │ ├── 小学语文第一课.doc │ ├── 小学语文第二课.doc │ ├── 高中英语第一课.doc │ └── math_20101025.zip ├── .gitignore ├── secret.txt ├── templates ├── forum │ ├── feeds │ │ ├── posts_description.html │ │ ├── topics_description.html │ │ ├── topics_title.html │ │ └── posts_title.html │ ├── lofi │ │ ├── footer.html │ │ ├── pagination.html │ │ ├── header.html │ │ ├── base.html │ │ ├── index.html │ │ ├── forum.html │ │ └── topic.html │ ├── moderators.html │ ├── post_preview.html │ ├── pagination.html │ ├── report.html │ ├── profile │ │ ├── profile_display.html │ │ ├── profile_privacy.html │ │ ├── profile_messaging.html │ │ ├── profile_menu.html │ │ ├── profile_personal.html │ │ └── profile_admin.html │ ├── mail_to.html │ ├── upload_avatar.html │ ├── edit_post.html │ ├── move_topic.html │ ├── forum_row.html │ ├── reputation_form.html │ ├── delete_posts.html │ ├── users.html │ ├── search_posts.html │ ├── add_post.html │ └── header.html ├── messages │ ├── base_pm.html │ ├── menu_pm.html │ ├── compose.html │ ├── outbox.html │ └── inbox.html ├── accounts │ ├── login.html │ └── register.html ├── index.html ├── news │ ├── addreport.html │ └── index.html ├── location │ ├── addmarker.html │ ├── index.html │ ├── showmarker.html │ └── showmarker.html.bak ├── ranking │ ├── addscore.html │ └── index.html ├── 404.html ├── lessons │ └── index.html ├── 500.html └── base.html ├── sitemap.py ├── manage.py ├── logging.conf ├── logger.py └── urls.py /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/lessons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/location/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ranking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/jsjtbb/markups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/forum/avatars/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/jsjtbb/__init__.py: -------------------------------------------------------------------------------- 1 | import signals -------------------------------------------------------------------------------- /apps/jsjtbb/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/jsjtbb/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/forum/attachments/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | logs/ 3 | locale/ 4 | -------------------------------------------------------------------------------- /apps/jsjtbb/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /secret.txt: -------------------------------------------------------------------------------- 1 | ,`3l|+y"4jueeewv%5v%g(2=o@;m`j;wz:644*|\o.x$sl=.3z -------------------------------------------------------------------------------- /templates/forum/feeds/posts_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.body_html|safe }} 2 | -------------------------------------------------------------------------------- /templates/forum/feeds/topics_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.head.body_html|safe }} 2 | -------------------------------------------------------------------------------- /api/test/test_news.sh: -------------------------------------------------------------------------------- 1 | ### news 2 | curl -i http://192.168.1.107:8000/api/news/?format=xml 3 | -------------------------------------------------------------------------------- /apps/jsjtbb/tests/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | The root of forum tests. 3 | """ 4 | import unittest 5 | -------------------------------------------------------------------------------- /static/forum/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/favicon.png -------------------------------------------------------------------------------- /static/lessons/xxyw1.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/xxyw1.doc -------------------------------------------------------------------------------- /static/lessons/xxyw2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/xxyw2.doc -------------------------------------------------------------------------------- /static/forum/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/logo.png -------------------------------------------------------------------------------- /static/lessons/初中数学第一课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/初中数学第一课.doc -------------------------------------------------------------------------------- /static/lessons/初中数学第二课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/初中数学第二课.doc -------------------------------------------------------------------------------- /static/lessons/初中英语第一课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/初中英语第一课.doc -------------------------------------------------------------------------------- /static/lessons/初中英语第二课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/初中英语第二课.doc -------------------------------------------------------------------------------- /static/lessons/小学语文第一课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/小学语文第一课.doc -------------------------------------------------------------------------------- /static/lessons/小学语文第二课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/小学语文第二课.doc -------------------------------------------------------------------------------- /static/lessons/高中英语第一课.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/高中英语第一课.doc -------------------------------------------------------------------------------- /static/forum/img/login-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/login-bg.gif -------------------------------------------------------------------------------- /static/forum/img/openid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/openid_logo.png -------------------------------------------------------------------------------- /static/forum/img/smilies/hmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/hmm.png -------------------------------------------------------------------------------- /static/forum/img/smilies/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/lol.png -------------------------------------------------------------------------------- /static/forum/img/smilies/mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/mad.png -------------------------------------------------------------------------------- /static/forum/img/smilies/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/sad.png -------------------------------------------------------------------------------- /static/lessons/math_20101025.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/lessons/math_20101025.zip -------------------------------------------------------------------------------- /static/forum/img/feed-icon-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/feed-icon-big.png -------------------------------------------------------------------------------- /static/forum/img/smilies/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/cool.png -------------------------------------------------------------------------------- /static/forum/img/smilies/roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/roll.png -------------------------------------------------------------------------------- /static/forum/img/smilies/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/smile.png -------------------------------------------------------------------------------- /static/forum/img/smilies/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/wink.png -------------------------------------------------------------------------------- /static/forum/img/smilies/yikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/yikes.png -------------------------------------------------------------------------------- /static/forum/img/stars/Star_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_0.gif -------------------------------------------------------------------------------- /static/forum/img/stars/Star_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_1.gif -------------------------------------------------------------------------------- /static/forum/img/stars/Star_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_2.gif -------------------------------------------------------------------------------- /static/forum/img/stars/Star_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_3.gif -------------------------------------------------------------------------------- /static/forum/img/stars/Star_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_4.gif -------------------------------------------------------------------------------- /static/forum/img/stars/Star_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/stars/Star_5.gif -------------------------------------------------------------------------------- /templates/forum/feeds/topics_title.html: -------------------------------------------------------------------------------- 1 | {{ obj.forum.category|safe }} :: {{ obj.forum|safe }} :: {{ obj|safe }} 2 | -------------------------------------------------------------------------------- /static/forum/img/attachment/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/attachment/audio.png -------------------------------------------------------------------------------- /static/forum/img/attachment/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/attachment/doc.png -------------------------------------------------------------------------------- /static/forum/img/attachment/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/attachment/image.png -------------------------------------------------------------------------------- /static/forum/img/attachment/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/attachment/text.png -------------------------------------------------------------------------------- /static/forum/img/attachment/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/attachment/video.png -------------------------------------------------------------------------------- /static/forum/img/authority/vote0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote0.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote1.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote10.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote2.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote3.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote4.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote5.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote6.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote7.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote8.gif -------------------------------------------------------------------------------- /static/forum/img/authority/vote9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/authority/vote9.gif -------------------------------------------------------------------------------- /static/forum/img/feed-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/feed-icon-small.png -------------------------------------------------------------------------------- /static/forum/img/smilies/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/neutral.png -------------------------------------------------------------------------------- /static/forum/img/smilies/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/djsite/master/static/forum/img/smilies/tongue.png -------------------------------------------------------------------------------- /templates/forum/lofi/footer.html: -------------------------------------------------------------------------------- 1 |
{% trans "Jsjt has been providing independent tutoring service." %}
17 |{% trans "Each of Jsjt's programs bears a trademark commitment to professional integrity, innovation, and excellence."%}
18 |{% trans "Those were our core values when we first began, and they remain key to our success today." %} 19 |
20 |
17 |
22 | 23 | {% else %} 24 | {% trans "You are not logged in." %} 25 | {% trans "login" %} 26 | {% endif %} 27 |