├── celeryweb ├── __init__.py ├── static │ ├── robots.txt │ ├── js │ │ ├── tiny_mce │ │ │ ├── plugins │ │ │ │ ├── safari │ │ │ │ │ ├── blank.htm │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── syntaxhl │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── zh_dlg.js │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── img │ │ │ │ │ │ └── highlight.gif │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── dialog.js │ │ │ │ │ └── README │ │ │ │ ├── example │ │ │ │ │ ├── langs │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── img │ │ │ │ │ │ └── example.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── dialog.js │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── dialog.htm │ │ │ │ ├── advhr │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── advhr.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── js │ │ │ │ │ │ └── rule.js │ │ │ │ ├── spellchecker │ │ │ │ │ ├── css │ │ │ │ │ │ └── content.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── wline.gif │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── media │ │ │ │ │ ├── img │ │ │ │ │ │ ├── flash.gif │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ ├── quicktime.gif │ │ │ │ │ │ ├── realmedia.gif │ │ │ │ │ │ ├── shockwave.gif │ │ │ │ │ │ ├── flv_player.swf │ │ │ │ │ │ └── windowsmedia.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ └── media.css │ │ │ │ │ └── js │ │ │ │ │ │ └── embed.js │ │ │ │ ├── xhtmlxtras │ │ │ │ │ ├── js │ │ │ │ │ │ ├── del.js │ │ │ │ │ │ ├── ins.js │ │ │ │ │ │ ├── abbr.js │ │ │ │ │ │ ├── cite.js │ │ │ │ │ │ ├── acronym.js │ │ │ │ │ │ ├── attributes.js │ │ │ │ │ │ └── element_common.js │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ ├── attributes.css │ │ │ │ │ │ └── popup.css │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── advimage │ │ │ │ │ ├── img │ │ │ │ │ │ └── sample.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── advimage.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── pagebreak │ │ │ │ │ ├── img │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── content.css │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── save │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── advlink │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── advlink.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── bbcode │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── emotions │ │ │ │ │ ├── img │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ ├── smiley-yell.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ └── smiley-foot-in-mouth.gif │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── js │ │ │ │ │ │ └── emotions.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── iespell │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── layer │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── paste │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ ├── js │ │ │ │ │ │ ├── pastetext.js │ │ │ │ │ │ └── pasteword.js │ │ │ │ │ ├── pasteword.htm │ │ │ │ │ └── pastetext.htm │ │ │ │ ├── preview │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── preview.html │ │ │ │ │ ├── example.html │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── jscripts │ │ │ │ │ │ └── embed.js │ │ │ │ ├── print │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── style │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── props.css │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── table │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ ├── table.css │ │ │ │ │ │ ├── cell.css │ │ │ │ │ │ └── row.css │ │ │ │ │ ├── js │ │ │ │ │ │ └── merge_cells.js │ │ │ │ │ ├── merge_cells.htm │ │ │ │ │ └── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ ├── autosave │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── compat2x │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── fullpage │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── tabfocus │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── template │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ │ └── template.css │ │ │ │ │ ├── blank.htm │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en_dlg.js │ │ │ │ │ └── template.htm │ │ │ │ ├── contextmenu │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── fullscreen │ │ │ │ │ └── editor_plugin_src.js │ │ │ │ ├── inlinepopups │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── skins │ │ │ │ │ │ └── clearlooks2 │ │ │ │ │ │ └── img │ │ │ │ │ │ ├── alert.gif │ │ │ │ │ │ ├── button.gif │ │ │ │ │ │ ├── buttons.gif │ │ │ │ │ │ ├── confirm.gif │ │ │ │ │ │ ├── corners.gif │ │ │ │ │ │ ├── vertical.gif │ │ │ │ │ │ └── horizontal.gif │ │ │ │ ├── nonbreaking │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── noneditable │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── visualchars │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── directionality │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ ├── insertdatetime │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ └── editor_plugin.js │ │ │ │ └── searchreplace │ │ │ │ │ ├── editor_plugin_src.js │ │ │ │ │ ├── css │ │ │ │ │ └── searchreplace.css │ │ │ │ │ ├── langs │ │ │ │ │ └── en_dlg.js │ │ │ │ │ └── editor_plugin.js │ │ │ ├── utils │ │ │ │ ├── mctabs.js │ │ │ │ ├── validate.js │ │ │ │ ├── form_utils.js │ │ │ │ └── editable_selects.js │ │ │ ├── themes │ │ │ │ ├── simple │ │ │ │ │ ├── img │ │ │ │ │ │ └── icons.gif │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ ├── skins │ │ │ │ │ │ ├── o2k7 │ │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ │ └── button_bg.png │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ └── ui.css │ │ │ │ │ ├── langs │ │ │ │ │ │ └── en.js │ │ │ │ │ └── editor_template.js │ │ │ │ └── advanced │ │ │ │ │ ├── img │ │ │ │ │ ├── icons.gif │ │ │ │ │ └── colorpicker.jpg │ │ │ │ │ ├── editor_template_src.js │ │ │ │ │ ├── skins │ │ │ │ │ ├── default │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ │ ├── tabs.gif │ │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ │ └── menu_check.gif │ │ │ │ │ │ └── content.css │ │ │ │ │ └── o2k7 │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ │ ├── ui_silver.css │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ └── ui_black.css │ │ │ │ │ ├── js │ │ │ │ │ ├── anchor.js │ │ │ │ │ ├── source_editor.js │ │ │ │ │ └── about.js │ │ │ │ │ ├── anchor.htm │ │ │ │ │ ├── source_editor.htm │ │ │ │ │ └── langs │ │ │ │ │ ├── en_dlg.js │ │ │ │ │ └── en.js │ │ │ └── textarea.js │ │ ├── syntaxhighlighter │ │ │ ├── tests │ │ │ │ ├── .rvmrc │ │ │ │ ├── webrick.sh │ │ │ │ ├── webrick.rb │ │ │ │ ├── cases │ │ │ │ │ ├── 008_first_line.html │ │ │ │ │ ├── 012_server_side.html │ │ │ │ │ ├── 009_class_name.html │ │ │ │ │ ├── 013_html_script.html │ │ │ │ │ ├── 005_no_gutter.html │ │ │ │ │ ├── 003_script_tag.html │ │ │ │ │ ├── 001_basic.html │ │ │ │ │ ├── 007_collapse_interaction.html │ │ │ │ │ ├── 006_pad_line_numbers.html │ │ │ │ │ ├── 004_url_parsing.html │ │ │ │ │ ├── 002_brushes.html │ │ │ │ │ ├── 014_legacy.html │ │ │ │ │ ├── 007_collapse.html │ │ │ │ │ ├── 010_highlight.html │ │ │ │ │ └── 011_smart_tabs.html │ │ │ │ └── commonjs_tests.js │ │ │ ├── compass │ │ │ │ ├── shCoreEmacs.scss │ │ │ │ ├── shCoreRDark.scss │ │ │ │ ├── shCoreDefault.scss │ │ │ │ ├── shCoreDjango.scss │ │ │ │ ├── shCoreEclipse.scss │ │ │ │ ├── shCoreMDUltra.scss │ │ │ │ ├── shCoreMidnight.scss │ │ │ │ ├── shCoreFadeToGrey.scss │ │ │ │ ├── shThemeDefault.scss │ │ │ │ ├── config.rb │ │ │ │ ├── shThemeMDUltra.scss │ │ │ │ ├── shThemeEmacs.scss │ │ │ │ ├── shThemeMidnight.scss │ │ │ │ ├── shThemeRDark.scss │ │ │ │ ├── shThemeDjango.scss │ │ │ │ ├── shThemeFadeToGrey.scss │ │ │ │ └── shThemeEclipse.scss │ │ │ ├── index.html │ │ │ ├── scripts │ │ │ │ ├── shBrushPlain.js │ │ │ │ ├── shBrushDiff.js │ │ │ │ ├── shAutoloader.js │ │ │ │ ├── shBrushJScript.js │ │ │ │ ├── shLegacy.js │ │ │ │ ├── shBrushErlang.js │ │ │ │ ├── shBrushScala.js │ │ │ │ ├── shBrushXml.js │ │ │ │ ├── shBrushJava.js │ │ │ │ ├── shBrushRuby.js │ │ │ │ ├── shBrushJavaFX.js │ │ │ │ └── shBrushVb.js │ │ │ └── MIT-LICENSE │ │ └── core.js │ └── img │ │ ├── icon.png │ │ ├── logo.png │ │ ├── splash.jpg │ │ ├── favicon0.png │ │ ├── icon-amex.png │ │ ├── icon-visa.png │ │ ├── rackspace.png │ │ ├── adroll_logo.png │ │ ├── ajax-loader.gif │ │ ├── icon-paypal.png │ │ ├── mozilla_logo.png │ │ ├── icon-mastercard.png │ │ └── instagram_logo.png ├── locale │ └── en_GB │ │ └── LC_MESSAGES │ │ └── django.mo └── custom_context_processors.py ├── celeryproject ├── __init__.py ├── settings │ ├── __init__.py │ └── dev.py.sample ├── wsgi.py └── urls.py ├── requirements.txt ├── .gitignore ├── templates ├── 404.html ├── 500.html ├── flatpages │ ├── default.html │ └── syntax_highlight.html ├── admin │ └── base_site.html ├── common │ ├── share.html │ └── paginator.html ├── ajax │ ├── stackoverflow_questions.html │ └── celery_package_info.html ├── news_detail.html ├── news.html ├── tutorials.html ├── user_profile.html ├── external_resources.html └── tutorial_detail.html ├── manage.py ├── CONTRIBUTORS.txt ├── README.md └── LICENSE.txt /celeryweb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryweb/static/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryproject/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/safari/blank.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/tests/.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.8.7-p249@copydeca -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/tests/webrick.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ruby webrick.rb 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django>=2.2.0, <3.0 2 | sorl-thumbnail>=12.5.0 3 | Pillow>=5.4.1 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pot 3 | *.pyc 4 | *.sqlite 5 | .idea 6 | dev.py 7 | production.py 8 | media 9 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeEmacs"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeRDark"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/icon.png -------------------------------------------------------------------------------- /celeryweb/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/logo.png -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeDefault"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeDjango"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeEclipse"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeMDUltra"; 3 | -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeMidnight"; 3 | -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- 1 | {%extends "base.html" %} 2 | {% block content %} 3 |

Page not found !

4 | {% endblock %} -------------------------------------------------------------------------------- /celeryweb/static/img/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/splash.jpg -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- 1 | @import "shCore"; 2 | @import "shThemeFadeToGrey"; 3 | -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- 1 | {%extends "base.html" %} 2 | {% block content %} 3 |

Internal Server Error !

4 | {% endblock %} -------------------------------------------------------------------------------- /celeryweb/static/img/favicon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/favicon0.png -------------------------------------------------------------------------------- /celeryweb/static/img/icon-amex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/icon-amex.png -------------------------------------------------------------------------------- /celeryweb/static/img/icon-visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/icon-visa.png -------------------------------------------------------------------------------- /celeryweb/static/img/rackspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/rackspace.png -------------------------------------------------------------------------------- /celeryweb/static/img/adroll_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/adroll_logo.png -------------------------------------------------------------------------------- /celeryweb/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /celeryweb/static/img/icon-paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/icon-paypal.png -------------------------------------------------------------------------------- /celeryweb/static/img/mozilla_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/mozilla_logo.png -------------------------------------------------------------------------------- /celeryweb/static/img/icon-mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/icon-mastercard.png -------------------------------------------------------------------------------- /celeryweb/static/img/instagram_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/img/instagram_logo.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/syntaxhl/langs/zh.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.syntaxhl',{ 2 | desc : '用Syntaxhighlighter插入代码' 3 | }); 4 | -------------------------------------------------------------------------------- /celeryweb/locale/en_GB/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/locale/en_GB/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/utils/mctabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/utils/mctabs.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/utils/validate.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/syntaxhl/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.syntaxhl',{ 2 | desc : 'Insert code using Syntaxhighlighter' 3 | }); 4 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/utils/form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/utils/form_utils.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{ 2 | width:"Width", 3 | size:"Height", 4 | noshade:"No shadow" 5 | }); -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/utils/editable_selects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/utils/editable_selects.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/del.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/del.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/ins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/ins.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/abbr.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/cite.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /celeryweb/custom_context_processors.py: -------------------------------------------------------------------------------- 1 | from models import ExtendedFlatPage 2 | 3 | 4 | def ext_flatpages(request): 5 | return {'ext_flatpages': ExtendedFlatPage.objects.all()} -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/save/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/save/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/acronym.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advhr/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/advhr/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advlink/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/advlink/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/bbcode/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/bbcode/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/example/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/example/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/iespell/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/iespell/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/layer/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/layer/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/paste/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/paste/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/preview/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/preview/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/print/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/print/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/safari/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/safari/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/style/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/style/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/syntaxhl/img/highlight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/syntaxhl/img/highlight.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/table/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/table/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/attributes.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/simple/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/simple/editor_template_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advimage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/advimage/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/autosave/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/autosave/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/compat2x/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/compat2x/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/fullpage/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/fullpage/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/pagebreak/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/tabfocus/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/template/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/template/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/editor_template_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/editor_template_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/contextmenu/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/fullscreen/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/nonbreaking/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/noneditable/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/noneditable/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/visualchars/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/visualchars/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/js/element_common.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/directionality/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/directionality/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/insertdatetime/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/searchreplace/editor_plugin_src.js -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- 1 | // Default Syntax Highlighter theme. 2 | 3 | @import "theme_template"; 4 | 5 | .syntaxhighlighter { 6 | .keyword { font-weight: bold !important; } 7 | } 8 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/celery/celeryproject/master/celeryweb/static/js/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} 2 | -------------------------------------------------------------------------------- /templates/flatpages/default.html: -------------------------------------------------------------------------------- 1 | {%extends "base.html" %} 2 | {%block title%}{{ flatpage.title }}{%endblock%} 3 | {% block content %} 4 |

{{ flatpage.title }}

5 | {% include "common/share.html" %} 6 | {{ flatpage.content }} 7 | {% endblock %} -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{ 2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.", 3 | text_linebreaks:"Keep linebreaks", 4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window." 5 | }); -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/base.html" %} 2 | {% load i18n %} 3 | 4 | {% block title %}{{ title }} | Celeryproject admin{% endblock %} 5 | 6 | 7 | {% block branding %} 8 |

Celeryproject admin

9 | {% endblock %} 10 | 11 | {% block nav-global %}{% endblock %} -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "celeryproject.settings.dev") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/tests/webrick.rb: -------------------------------------------------------------------------------- 1 | require 'webrick' 2 | include WEBrick 3 | 4 | s = HTTPServer.new( 5 | :Port => 2010, 6 | :DocumentRoot => Dir::pwd 7 | ) 8 | s.mount('/sh/scripts', WEBrick::HTTPServlet::FileHandler, '../scripts') 9 | s.mount('/sh/styles', WEBrick::HTTPServlet::FileHandler, '../styles') 10 | trap('INT') { s.stop } 11 | s.start 12 | -------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/plugins/syntaxhl/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.syntaxhl_dlg',{ 2 | title : '用SyntaxHighlighter插入代码', 3 | highlight_options : '高亮选项', 4 | paste : '粘贴代码', 5 | choose_lang : '选择语言', 6 | nogutter : '无装订线', 7 | light : '精简模式', 8 | collapse : '折叠代码', 9 | fontsize : '字体大小', 10 | first_line : '起始行的值', 11 | highlight : '高亮行' 12 | }); 13 | -------------------------------------------------------------------------------- /templates/common/share.html: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 5 |
6 |
7 | 8 |
9 |
10 |
-------------------------------------------------------------------------------- /celeryweb/static/js/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{ 2 | bold_desc:"Bold (Ctrl+B)", 3 | italic_desc:"Italic (Ctrl+I)", 4 | underline_desc:"Underline (Ctrl+U)", 5 | striketrough_desc:"Strikethrough", 6 | bullist_desc:"Unordered list", 7 | numlist_desc:"Ordered list", 8 | undo_desc:"Undo (Ctrl+Z)", 9 | redo_desc:"Redo (Ctrl+Y)", 10 | cleanup_desc:"Cleanup messy code" 11 | }); -------------------------------------------------------------------------------- /celeryweb/static/js/syntaxhighlighter/compass/config.rb: -------------------------------------------------------------------------------- 1 | environment = :production 2 | project_type = :stand_alone 3 | http_path = "/" 4 | css_dir = "../styles" 5 | sass_dir = "." 6 | images_dir = "images" 7 | sass_options = { 8 | :line_numbers => false, 9 | :debug_info => false 10 | } 11 | 12 | # output_style = :compressed 13 | # output_style = :compact 14 | output_style = :expanded 15 | -------------------------------------------------------------------------------- /templates/ajax/stackoverflow_questions.html: -------------------------------------------------------------------------------- 1 |