├── mysite ├── __init__.py ├── static │ ├── css │ │ ├── forms.css │ │ ├── stats.css │ │ ├── calendar.css │ │ └── buttons.css │ ├── vendors │ │ ├── bootstrap-wysihtml5 │ │ │ ├── VERSION │ │ │ ├── test │ │ │ │ ├── lib │ │ │ │ ├── README │ │ │ │ └── index.html │ │ │ ├── .gitignore │ │ │ ├── Gemfile │ │ │ ├── .settings │ │ │ │ └── .gitignore │ │ │ ├── lib │ │ │ │ ├── img │ │ │ │ │ ├── glyphicons-halflings.png │ │ │ │ │ └── glyphicons-halflings-white.png │ │ │ │ └── css │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── wysiwyg-color.css │ │ │ ├── component.json │ │ │ ├── Gemfile.lock │ │ │ ├── src │ │ │ │ ├── wysiwyg-color.css │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ │ │ ├── bootstrap-wysihtml5.zh-TW.js │ │ │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ │ │ └── bootstrap-wysihtml5.el-GR.js │ │ │ ├── LICENCE │ │ │ └── Rakefile │ │ ├── flot │ │ │ ├── .travis.yml │ │ │ ├── .gitignore │ │ │ ├── examples │ │ │ │ ├── ajax │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ └── data-eu-gdp-growth-5.json │ │ │ │ ├── background.png │ │ │ │ ├── navigate │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ └── arrow-right.gif │ │ │ │ ├── axes-time-zones │ │ │ │ │ └── tz │ │ │ │ │ │ ├── southamerica │ │ │ │ │ │ ├── factory │ │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ │ └── pacificnew │ │ │ │ └── image │ │ │ │ │ └── hs-2004-27-a-large-web.jpg │ │ │ ├── component.json │ │ │ ├── package.json │ │ │ ├── Makefile │ │ │ ├── flot.jquery.json │ │ │ └── LICENSE.txt │ │ ├── ckeditor │ │ │ ├── samples │ │ │ │ ├── assets │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.jpg │ │ │ │ │ ├── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── uilanguages │ │ │ │ │ │ └── languages.js │ │ │ │ ├── plugins │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ └── outputforflash.swf │ │ │ │ │ └── dialog │ │ │ │ │ │ └── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ ├── sample_posteddata.php │ │ │ │ └── sample.js │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── smiley │ │ │ │ │ └── images │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ └── whatchutalkingabout_smile.gif │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── icon.png │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── fakeobjects │ │ │ │ │ └── images │ │ │ │ │ │ └── spacer.gif │ │ │ │ ├── flash │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── iframe │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_pre.png │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ └── block_blockquote.png │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── templates │ │ │ │ │ └── templates │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── lang │ │ │ │ │ │ └── _translationstatus.txt │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── lang │ │ │ │ │ │ └── _translationstatus.txt │ │ │ │ ├── wsc │ │ │ │ │ └── README.md │ │ │ │ └── scayt │ │ │ │ │ └── README.md │ │ │ ├── skins │ │ │ │ └── moono │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── lock-open.png │ │ │ └── config.js │ │ ├── tinymce │ │ │ └── js │ │ │ │ └── tinymce │ │ │ │ ├── skins │ │ │ │ └── lightgray │ │ │ │ │ ├── fonts │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ ├── icomoon.woff │ │ │ │ │ ├── icomoon-small.eot │ │ │ │ │ ├── icomoon-small.ttf │ │ │ │ │ └── icomoon-small.woff │ │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ ├── trans.gif │ │ │ │ │ └── wline.gif │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ └── content.min.css │ │ │ │ ├── plugins │ │ │ │ ├── example_dependency │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── media │ │ │ │ │ └── moxieplayer.swf │ │ │ │ ├── emoticons │ │ │ │ │ ├── img │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ ├── smiley-yell.gif │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ └── smiley-foot-in-mouth.gif │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── print │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── hr │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── anchor │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── example │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── code │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── nonbreaking │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── contextmenu │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── directionality │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── wordcount │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── visualchars │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── preview │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── autoresize │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── visualblocks │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── save │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── importcss │ │ │ │ │ └── plugin.min.js │ │ │ │ ├── tabfocus │ │ │ │ │ └── plugin.min.js │ │ │ │ └── advlist │ │ │ │ │ └── plugin.min.js │ │ │ │ └── langs │ │ │ │ └── readme.md │ │ ├── datatables │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── sort_asc.png │ │ │ │ ├── sort_both.png │ │ │ │ ├── sort_desc.png │ │ │ │ ├── back_enabled.png │ │ │ │ ├── Sorting icons.psd │ │ │ │ ├── back_disabled.png │ │ │ │ ├── forward_enabled.png │ │ │ │ ├── forward_disabled.png │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ ├── back_enabled_hover.png │ │ │ │ ├── sort_desc_disabled.png │ │ │ │ └── forward_enabled_hover.png │ │ │ ├── unit_testing │ │ │ │ ├── index.html │ │ │ │ └── tests_onhold │ │ │ │ │ ├── 1_dom │ │ │ │ │ ├── 2799.js │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ ├── 2512.js │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ ├── 2530.js │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ ├── 2635.js │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ └── 2600.js │ │ │ │ │ ├── 2_js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── bFilter.js │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ └── oLanguage.sProcessing.js │ │ │ │ │ ├── 3_ajax │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ └── bFilter.js │ │ │ │ │ ├── 4_server-side │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ ├── 2440.js │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ ├── 2569.js │ │ │ │ │ └── bFilter.js │ │ │ │ │ ├── 6_delayed_rendering │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ ├── bInfo.js │ │ │ │ │ └── bFilter.js │ │ │ │ │ └── 5_ajax_objects │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ └── aoColumns.sName.js │ │ │ └── src │ │ │ │ ├── model │ │ │ │ └── model.search.js │ │ │ │ └── core │ │ │ │ └── core.processing.js │ │ ├── address │ │ │ └── address.css │ │ ├── form-helpers │ │ │ └── img │ │ │ │ ├── bootstrap-formhelpers-googlefonts.png │ │ │ │ ├── bootstrap-formhelpers-countries.flags.png │ │ │ │ ├── bootstrap-formhelpers-currencies.flags.png │ │ │ │ └── bootstrap-formhelpers-countries.flags-LICENSE.txt │ │ ├── easypiechart │ │ │ └── jquery.easy-pie-chart.css │ │ ├── morris │ │ │ └── morris.css │ │ └── wysiwyg │ │ │ └── bootstrap-wysihtml5.css │ ├── js │ │ ├── tables.js │ │ ├── custom.js │ │ └── forms.js │ ├── images │ │ └── facebook.png │ ├── codemirror │ │ ├── theme │ │ │ ├── ambiance-mobile.css │ │ │ ├── neat.css │ │ │ ├── elegant.css │ │ │ ├── neo.css │ │ │ └── eclipse.css │ │ └── mode │ │ │ ├── tiddlywiki │ │ │ └── tiddlywiki.css │ │ │ ├── ruby │ │ │ └── test.js │ │ │ ├── css │ │ │ └── gss_test.js │ │ │ ├── tiki │ │ │ └── tiki.css │ │ │ ├── rust │ │ │ └── test.js │ │ │ ├── python │ │ │ └── test.js │ │ │ └── diff │ │ │ └── diff.js │ └── bootstrap │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff ├── forms.py ├── wsgi.py └── urls.py ├── scrapyproject ├── __init__.py ├── migrations │ ├── __init__.py │ ├── 0004_pipeline_pipeline_function.py │ ├── 0010_auto_20170406_1835.py │ ├── 0009_auto_20170215_0657.py │ ├── 0007_linkgendeploy.py │ ├── 0008_scrapersdeploy.py │ ├── 0011_dataset.py │ ├── 0006_mongopass.py │ ├── 0005_auto_20170213_1053.py │ ├── 0003_auto_20170209_1025.py │ └── 0001_initial.py ├── scrapy_packages │ ├── __init__.py │ ├── mongodb │ │ └── __init__.py │ ├── rabbitmq │ │ └── __init__.py │ └── sample_settings.py ├── tests.py ├── admin.py └── scrapy_templates │ ├── setup.py │ └── settings.py.tmpl ├── .gitignore ├── screenshots ├── additem.png ├── addlinkgen.png ├── addscraper.png ├── deployment.png ├── itemslist.png ├── main_page.png ├── addpipeline.png ├── new_project.png ├── pipelinelist.png ├── registration.png ├── manage_project.png ├── main_page_project.png └── main_page_scraped.png ├── various_config_files └── scrapyd_upstart.conf ├── manage.py ├── templates ├── sharedb_started.html ├── createproject.html ├── changepassword.html ├── shareproject.html ├── sharedb.html ├── deleteproject.html ├── deleteitem.html ├── deletepipeline.html └── registration │ ├── login.html │ └── registration_form.html └── examples ├── scraper.py └── link_generator.py /mysite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/css/forms.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/css/stats.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapyproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapyproject/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scrapyproject/scrapy_packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | 3 | -------------------------------------------------------------------------------- /scrapyproject/scrapy_packages/mongodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/test/lib: -------------------------------------------------------------------------------- 1 | ../lib/ -------------------------------------------------------------------------------- /mysite/static/vendors/flot/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | db.sqlite3 3 | settings.py 4 | projects/ 5 | __pycache__/ 6 | *.py[cod] -------------------------------------------------------------------------------- /mysite/static/vendors/flot/.gitignore: -------------------------------------------------------------------------------- 1 | *.min.js 2 | !excanvas.min.js 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .c9revisions 3 | /*.project 4 | -------------------------------------------------------------------------------- /scrapyproject/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/static/js/tables.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('#example').dataTable(); 3 | } ); -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'rake' 4 | gem 'therubyracer' 5 | gem 'uglifier' -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/readme.md: -------------------------------------------------------------------------------- 1 | Icons are generated and provided by the http://icomoon.io service. 2 | -------------------------------------------------------------------------------- /screenshots/additem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/additem.png -------------------------------------------------------------------------------- /screenshots/addlinkgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/addlinkgen.png -------------------------------------------------------------------------------- /screenshots/addscraper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/addscraper.png -------------------------------------------------------------------------------- /screenshots/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/deployment.png -------------------------------------------------------------------------------- /screenshots/itemslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/itemslist.png -------------------------------------------------------------------------------- /screenshots/main_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/main_page.png -------------------------------------------------------------------------------- /screenshots/addpipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/addpipeline.png -------------------------------------------------------------------------------- /screenshots/new_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/new_project.png -------------------------------------------------------------------------------- /screenshots/pipelinelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/pipelinelist.png -------------------------------------------------------------------------------- /screenshots/registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/registration.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth-1.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/example_dependency/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("example_dependency",function(){},["example"]); -------------------------------------------------------------------------------- /screenshots/manage_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/manage_project.png -------------------------------------------------------------------------------- /mysite/static/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/images/facebook.png -------------------------------------------------------------------------------- /screenshots/main_page_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/main_page_project.png -------------------------------------------------------------------------------- /screenshots/main_page_scraped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/screenshots/main_page_scraped.png -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/.settings/.gitignore: -------------------------------------------------------------------------------- 1 | /*.jsdtscope 2 | /*.eclipse.wst.jsdt.ui.superType.container 3 | /*.eclipse.wst.jsdt.ui.superType.name 4 | -------------------------------------------------------------------------------- /mysite/static/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth-2.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.0-beta", 4 | "main": "jquery.flot.js", 5 | "dependencies": { 6 | "jquery": ">= 1.2.6" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/favicon.ico -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/background.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/sort_both.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/back_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/back_enabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth-3.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/Sorting icons.psd -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/back_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/back_disabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/forward_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/forward_enabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/navigate/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/navigate/arrow-down.gif -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/navigate/arrow-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/navigate/arrow-left.gif -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/navigate/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/navigate/arrow-up.gif -------------------------------------------------------------------------------- /mysite/static/vendors/address/address.css: -------------------------------------------------------------------------------- 1 | .editable-address { 2 | display: block; 3 | margin-bottom: 5px; 4 | } 5 | 6 | .editable-address span { 7 | width: 70px; 8 | display: inline-block; 9 | } -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/forward_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/forward_disabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/navigate/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/navigate/arrow-right.gif -------------------------------------------------------------------------------- /mysite/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/back_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/back_enabled_hover.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/langs/readme.md: -------------------------------------------------------------------------------- 1 | This is where language files should be placed. 2 | 3 | Please DO NOT translate these directly use this service: https://www.transifex.com/projects/p/tinymce/ 4 | -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/images/forward_enabled_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/datatables/images/forward_enabled_hover.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth-4.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/axes-time-zones/tz/southamerica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/axes-time-zones/tz/southamerica -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/flot/examples/image/hs-2004-27-a-large-web.jpg -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/anchor.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/loader.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/object.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/trans.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/img/wline.gif -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.eot -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.ttf -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-usa-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "USA", 3 | "data": [[1999, 4.4], [2000, 3.7], [2001, 0.8], [2002, 1.6], [2003, 2.5], [2004, 3.6], [2005, 2.9], [2006, 2.8], [2007, 2.0], [2008, 1.1]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-googlefonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-googlefonts.png -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon.woff -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /mysite/static/vendors/easypiechart/jquery.easy-pie-chart.css: -------------------------------------------------------------------------------- 1 | .easyPieChart { 2 | position: relative; 3 | text-align: center; 4 | } 5 | 6 | .easyPieChart canvas { 7 | position: absolute; 8 | top: 0; 9 | left: 0; 10 | } 11 | -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif -------------------------------------------------------------------------------- /various_config_files/scrapyd_upstart.conf: -------------------------------------------------------------------------------- 1 | start on filesystem 2 | setuid vagrant 3 | setgid vagrant 4 | script 5 | cd /vagrant/venv 6 | . bin/activate 7 | cd .. 8 | cd scrapyd 9 | scrapyd 10 | end script -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/bootstrap-wysihtml5/lib/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-japan-gdp-growth.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Japan", 3 | "data": [[1999, -0.1], [2000, 2.9], [2001, 0.2], [2002, 0.3], [2003, 1.4], [2004, 2.7], [2005, 1.9], [2006, 2.0], [2007, 2.3], [2008, -0.7]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/flot/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Flot", 3 | "version": "0.8.0-beta", 4 | "main": "jquery.flot.js", 5 | "scripts": { 6 | "test": "make test" 7 | }, 8 | "devDependencies": { 9 | "jshint": "0.9.1" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-countries.flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-countries.flags.png -------------------------------------------------------------------------------- /mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-currencies.flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/form-helpers/img/bootstrap-formhelpers-currencies.flags.png -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.eot -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.ttf -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/skins/lightgray/fonts/icomoon-small.woff -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /mysite/static/vendors/flot/examples/ajax/data-eu-gdp-growth-5.json: -------------------------------------------------------------------------------- 1 | { 2 | "label": "Europe (EU27)", 3 | "data": [[1999, 3.0], [2000, 3.9], [2001, 2.0], [2002, 1.2], [2003, 1.3], [2004, 2.5], [2005, 2.0], [2006, 3.1], [2007, 2.9], [2008, 0.9]] 4 | } 5 | -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /scrapyproject/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Project, Item, Field, Pipeline 3 | 4 | # Register your models here. 5 | admin.site.register(Project) 6 | admin.site.register(Item) 7 | admin.site.register(Field) 8 | admin.site.register(Pipeline) -------------------------------------------------------------------------------- /mysite/static/vendors/bootstrap-wysihtml5/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap-wysihtml5", 3 | "version": "0.1.0", 4 | "main": ["src/bootstrap-wysihtml5.css", "src/bootstrap-wysihtml5.js"], 5 | "dependencies": { 6 | "wysihtml5": "~0.3.0" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /scrapyproject/scrapy_templates/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | setup( 4 | name = 'project', 5 | version = '1.0', 6 | packages = find_packages(), 7 | entry_points = {'scrapy': ['settings = $projectname.settings']}, 8 | ) 9 | -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /mysite/static/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaldaber/Distributed-Multi-User-Scrapy-System-with-a-Web-UI/HEAD/mysite/static/vendors/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /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", "mysite.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /mysite/static/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /mysite/static/vendors/datatables/unit_testing/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
7 | -------------------------------------------------------------------------------- /scrapyproject/scrapy_packages/rabbitmq/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | """ 4 | Scrapy RabbitMQ 5 | ~~~~~~~~~~~~~~~~~~~~~~ 6 | 7 | TODO 8 | 9 | Usage: 10 | 11 | TODO 12 | 13 | """ 14 | 15 | __title__ = 'scrapy-rabbitmq' 16 | __version__ = '0.1.0' 17 | __author__ = 'Royce Haynes' 18 | __copyright__ = 'Copyright 2014 Royce Haynes' -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("print",function(t){t.addCommand("mcePrint",function(){t.getWin().print()}),t.addButton("print",{title:"Print",cmd:"mcePrint"}),t.addShortcut("Ctrl+P","","mcePrint"),t.addMenuItem("print",{text:"Print",cmd:"mcePrint",icon:"print",shortcut:"Ctrl+P",context:"file"})}); -------------------------------------------------------------------------------- /mysite/static/vendors/flot/Makefile: -------------------------------------------------------------------------------- 1 | # Makefile for generating minified files 2 | 3 | .PHONY: all 4 | 5 | # we cheat and process all .js files instead of an exhaustive list 6 | all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js))) 7 | 8 | %.min.js: %.js 9 | yui-compressor $< -o $@ 10 | 11 | test: 12 | ./node_modules/.bin/jshint *jquery.flot.js 13 | -------------------------------------------------------------------------------- /mysite/static/vendors/tinymce/js/tinymce/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- 1 | tinymce.PluginManager.add("hr",function(e){e.addCommand("InsertHorizontalRule",function(){e.execCommand("mceInsertContent",!1,"
2 | # This file is in the public domain, so clarified as of
3 | # 2009-05-17 by Arthur David Olson.
4 |
5 | # For companies who don't want to put time zone specification in
6 | # their installation procedures. When users run date, they'll get the message.
7 | # Also useful for the "comp.sources" version.
8 |
9 | # Zone NAME GMTOFF RULES FORMAT
10 | Zone Factory 0 - "Local time zone must be set--see zic manual page"
11 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/2512.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: 2512
2 | oTest.fnStart( "Check filtering with BR and HTML entity" );
3 |
4 |
5 | $(document).ready( function () {
6 | $('#example').dataTable();
7 |
8 | /* Basic checks */
9 | oTest.fnTest(
10 | "Check filtering",
11 | function () { $('#example').dataTable().fnFilter('testsearchstring'); },
12 | function () { return $('#example tbody tr').length == 1; }
13 | );
14 |
15 |
16 | oTest.fnComplete();
17 | } );
--------------------------------------------------------------------------------
/mysite/static/js/custom.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 |
3 |
4 | $(".submenu > a").click(function(e) {
5 | e.preventDefault();
6 | var $li = $(this).parent("li");
7 | var $ul = $(this).next("ul");
8 |
9 | if($li.hasClass("open")) {
10 | $ul.slideUp(350);
11 | $li.removeClass("open");
12 | } else {
13 | $(".nav > li > ul").slideUp(350);
14 | $(".nav > li").removeClass("open");
15 | $ul.slideDown(350);
16 | $li.addClass("open");
17 | }
18 | });
19 |
20 | });
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/anchor/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("anchor",function(e){function t(){var t=e.selection.getNode();e.windowManager.open({title:"Anchor",body:{type:"textbox",name:"name",size:40,label:"Name",value:t.name||t.id},onsubmit:function(t){e.execCommand("mceInsertContent",!1,e.dom.createHTML("a",{id:t.data.name}))}})}e.addButton("anchor",{icon:"anchor",tooltip:"Anchor",onclick:t,stateSelector:"a:not([href])"}),e.addMenuItem("anchor",{icon:"anchor",text:"Anchor",context:"insert",onclick:t})});
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/fnFilter.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "fnFilter" );
3 |
4 | $(document).ready( function () {
5 | /* Check the default */
6 | var oTable = $('#example').dataTable();
7 | oTable.fnFilter(1);
8 |
9 | oTest.fnTest(
10 | "Filtering with a non-string input is valid",
11 | null,
12 | function () { return $('#example_info').html() == "Showing 1 to 10 of 32 entries (filtered from 57 total entries)"; }
13 | );
14 |
15 | oTest.fnComplete();
16 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/example/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("example",function(e){e.addButton("example",{text:"My button",icon:!1,onclick:function(){e.windowManager.open({title:"Example plugin",body:[{type:"textbox",name:"title",label:"Title"}],onsubmit:function(t){e.insertContent("Title: "+t.data.title)}})}}),e.addMenuItem("example",{text:"Example plugin",context:"tools",onclick:function(){e.windowManager.open({title:"TinyMCE site",url:"http://www.tinymce.com",width:800,height:600,buttons:[{text:"Close",onclick:"close"}]})}})});
--------------------------------------------------------------------------------
/scrapyproject/migrations/0004_pipeline_pipeline_function.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0003_auto_20170209_1025'),
11 | ]
12 |
13 | operations = [
14 | migrations.AddField(
15 | model_name='pipeline',
16 | name='pipeline_function',
17 | field=models.TextField(blank=True),
18 | ),
19 | ]
20 |
--------------------------------------------------------------------------------
/mysite/static/codemirror/mode/ruby/test.js:
--------------------------------------------------------------------------------
1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 | // Distributed under an MIT license: http://codemirror.net/LICENSE
3 |
4 | (function() {
5 | var mode = CodeMirror.getMode({indentUnit: 2}, "ruby");
6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
7 |
8 | MT("divide_equal_operator",
9 | "[variable bar] [operator /=] [variable foo]");
10 |
11 | MT("divide_equal_operator_no_spacing",
12 | "[variable foo][operator /=][number 42]");
13 |
14 | })();
15 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/2840-restore-table-width.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "2840 - Restore table width on fnDestroy" );
3 |
4 | $(document).ready( function () {
5 | document.cookie = "";
6 | $('#example').dataTable( {
7 | "sScrollX": "100%",
8 | "sScrollXInner": "110%"
9 | } );
10 | $('#example').dataTable().fnDestroy();
11 |
12 | oTest.fnTest(
13 | "Width after destroy",
14 | null,
15 | function () { return $('#example').width() == "800"; }
16 | );
17 |
18 | oTest.fnComplete();
19 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Not interested in ajax source here other than to check it's default */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable();
9 | var oSettings = oTable.fnSettings();
10 |
11 | oTest.fnTest(
12 | "Server side is off by default",
13 | null,
14 | function () { return oSettings.sAjaxSource == null; }
15 | );
16 |
17 | oTest.fnComplete();
18 | } );
--------------------------------------------------------------------------------
/mysite/static/codemirror/mode/css/gss_test.js:
--------------------------------------------------------------------------------
1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 | // Distributed under an MIT license: http://codemirror.net/LICENSE
3 |
4 | (function() {
5 | "use strict";
6 |
7 | var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-gss");
8 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1), "gss"); }
9 |
10 | MT("atComponent",
11 | "[def @component] {",
12 | "[tag foo] {",
13 | " [property color]: [keyword black];",
14 | "}",
15 | "}");
16 |
17 | })();
18 |
--------------------------------------------------------------------------------
/scrapyproject/migrations/0010_auto_20170406_1835.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0009_auto_20170215_0657'),
11 | ]
12 |
13 | operations = [
14 | migrations.RemoveField(
15 | model_name='mongopass',
16 | name='user',
17 | ),
18 | migrations.DeleteModel(
19 | name='MongoPass',
20 | ),
21 | ]
22 |
--------------------------------------------------------------------------------
/mysite/static/codemirror/mode/tiki/tiki.css:
--------------------------------------------------------------------------------
1 | .cm-tw-syntaxerror {
2 | color: #FFF;
3 | background-color: #900;
4 | }
5 |
6 | .cm-tw-deleted {
7 | text-decoration: line-through;
8 | }
9 |
10 | .cm-tw-header5 {
11 | font-weight: bold;
12 | }
13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/
14 | padding-left: 10px;
15 | }
16 |
17 | .cm-tw-box {
18 | border-top-width: 0px !important;
19 | border-style: solid;
20 | border-width: 1px;
21 | border-color: inherit;
22 | }
23 |
24 | .cm-tw-underline {
25 | text-decoration: underline;
26 | }
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dom_data
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable();
9 | var oSettings = oTable.fnSettings();
10 |
11 | oTest.fnTest(
12 | "Server side is off by default",
13 | null,
14 | function () { return oSettings.oFeatures.bServerSide == false; }
15 | );
16 |
17 | oTest.fnComplete();
18 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/2_js/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: js_data
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Not interested in ajax source here other than to check it's default */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "aaData": gaaData
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.sAjaxSource == null; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/2_js/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: js_data
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "aaData": gaaData
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.oFeatures.bServerSide == false; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/code/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("code",function(e){function t(){e.windowManager.open({title:"Source code",body:{type:"textbox",name:"code",multiline:!0,minWidth:e.getParam("code_dialog_width",600),minHeight:e.getParam("code_dialog_height",500),value:e.getContent({source_view:!0}),spellcheck:!1},onSubmit:function(t){e.undoManager.transact(function(){e.setContent(t.data.code)}),e.nodeChanged()}})}e.addCommand("mceCodeEditor",t),e.addButton("code",{icon:"code",tooltip:"Source code",onclick:t}),e.addMenuItem("code",{icon:"code",text:"Source code",context:"tools",onclick:t})});
--------------------------------------------------------------------------------
/templates/sharedb_started.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Share Database{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Database Sharing process started! You may continue working on the site.
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("nonbreaking",function(e){var t=e.getParam("nonbreaking_force_tab");if(e.addCommand("mceNonBreaking",function(){e.insertContent(e.plugins.visualchars&&e.plugins.visualchars.state?' ':" ")}),e.addButton("nonbreaking",{title:"Insert nonbreaking space",cmd:"mceNonBreaking"}),e.addMenuItem("nonbreaking",{text:"Nonbreaking space",cmd:"mceNonBreaking",context:"insert"}),t){var n=+t>1?+t:3;e.on("keydown",function(t){if(9==t.keyCode){if(t.shiftKey)return;t.preventDefault();for(var i=0;n>i;i++)e.execCommand("mceNonBreaking")}})}});
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/3_ajax/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt"
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnWaitTest(
14 | "Server side is off by default",
15 | null,
16 | function () { return oSettings.oFeatures.bServerSide == false; }
17 | );
18 |
19 | oTest.fnComplete();
20 | } );
--------------------------------------------------------------------------------
/templates/createproject.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}New Project{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | New Project
15 | {% csrf_token %}
16 | {% crispy form %}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/3_ajax/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt"
10 | } );
11 | var oSettings = oTable.fnSettings();
12 |
13 | oTest.fnWaitTest(
14 | "Server side is off by default",
15 | null,
16 | function () {
17 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt";
18 | }
19 | );
20 |
21 | oTest.fnComplete();
22 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/4_server-side/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* All the other scripts blast the ssp processing */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "bServerSide": true,
10 | "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php"
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side can be set to on",
16 | null,
17 | function () { return oSettings.oFeatures.bServerSide == true; }
18 | );
19 |
20 | oTest.fnComplete();
21 | } );
--------------------------------------------------------------------------------
/templates/changepassword.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Change Password{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Change Account Password
15 | {% csrf_token %}
16 | {% crispy form %}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | {% endblock %}
--------------------------------------------------------------------------------
/templates/shareproject.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Share Project{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | You are sharing the project {{ projectname }}
15 | {% csrf_token %}
16 | {% crispy form %}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side is off by default",
16 | null,
17 | function () { return oSettings.oFeatures.bServerSide == false; }
18 | );
19 |
20 | oTest.fnComplete();
21 | } );
--------------------------------------------------------------------------------
/scrapyproject/migrations/0009_auto_20170215_0657.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0008_scrapersdeploy'),
11 | ]
12 |
13 | operations = [
14 | migrations.AddField(
15 | model_name='linkgendeploy',
16 | name='version',
17 | field=models.IntegerField(default=0),
18 | ),
19 | migrations.AddField(
20 | model_name='scrapersdeploy',
21 | name='version',
22 | field=models.IntegerField(default=0),
23 | ),
24 | ]
25 |
--------------------------------------------------------------------------------
/templates/sharedb.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Share Database{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | You are sharing the database for the project {{ projectname }}
15 | {% csrf_token %}
16 | {% crispy form %}
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true
11 | } );
12 | var oSettings = oTable.fnSettings();
13 |
14 | oTest.fnWaitTest(
15 | "Server side is off by default",
16 | null,
17 | function () {
18 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/arrays.txt";
19 | }
20 | );
21 |
22 | oTest.fnComplete();
23 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("contextmenu",function(e){var t;e.on("contextmenu",function(n){var i;if(n.preventDefault(),i=e.settings.contextmenu||"link image inserttable | cell row column deletetable",t)t.show();else{var o=[];tinymce.each(i.split(/[ ,]/),function(t){var n=e.menuItems[t];"|"==t&&(n={text:t}),n&&(n.shortcut="",o.push(n))});for(var a=0;a
9 |
10 |
11 |
12 |
13 |
14 | Delete Project
15 | Please confirm that you want to delete the project {{ projectname }}
16 | {% csrf_token %}
17 | {% crispy form %}
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | {% endblock %}
--------------------------------------------------------------------------------
/scrapyproject/migrations/0007_linkgendeploy.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0006_mongopass'),
11 | ]
12 |
13 | operations = [
14 | migrations.CreateModel(
15 | name='LinkgenDeploy',
16 | fields=[
17 | ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
18 | ('success', models.BooleanField()),
19 | ('date', models.DateTimeField(auto_now_add=True)),
20 | ('project', models.ForeignKey(to='scrapyproject.Project')),
21 | ],
22 | ),
23 | ]
24 |
--------------------------------------------------------------------------------
/templates/deleteitem.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Delete an Item{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Delete Item
15 | Please confirm that you want to delete the item {{ itemname }} in {{ projectname }} project
16 | {% csrf_token %}
17 | {% crispy form %}
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/css/calendar.css:
--------------------------------------------------------------------------------
1 | #external-events {
2 | float: left;
3 | width: 150px;
4 | padding: 0 10px;
5 | border: 1px solid #ccc;
6 | background: #eee;
7 | text-align: left;
8 | }
9 |
10 | #external-events h4 {
11 | font-size: 16px;
12 | margin-top: 0;
13 | padding-top: 1em;
14 | }
15 |
16 | .external-event { /* try to mimick the look of a real event */
17 | margin: 10px 0;
18 | padding: 2px 4px;
19 | background: #3366CC;
20 | color: #fff;
21 | font-size: .85em;
22 | cursor: pointer;
23 | z-index: 99999999;
24 | }
25 |
26 | #external-events p {
27 | margin: 1.5em 0;
28 | font-size: 11px;
29 | color: #666;
30 | }
31 |
32 | #external-events p input {
33 | margin: 0;
34 | vertical-align: middle;
35 | }
--------------------------------------------------------------------------------
/scrapyproject/migrations/0008_scrapersdeploy.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0007_linkgendeploy'),
11 | ]
12 |
13 | operations = [
14 | migrations.CreateModel(
15 | name='ScrapersDeploy',
16 | fields=[
17 | ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
18 | ('success', models.TextField(blank=True)),
19 | ('date', models.DateTimeField(auto_now_add=True)),
20 | ('project', models.ForeignKey(to='scrapyproject.Project')),
21 | ],
22 | ),
23 | ]
24 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/3_ajax/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "aoColumns": [
11 | null,
12 | null,
13 | null,
14 | { "sName": 'unit test' },
15 | null
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Names are stored in the columns object",
22 | null,
23 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
24 | );
25 |
26 |
27 | oTest.fnComplete();
28 | } );
--------------------------------------------------------------------------------
/templates/deletepipeline.html:
--------------------------------------------------------------------------------
1 | {% extends 'base.html' %}
2 | {% block title %}Delete a Pipeline{% endblock %}
3 |
4 | {% load crispy_forms_tags %}
5 |
6 | {% block content %}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | Delete Pipeline
15 | Please confirm that you want to delete the item pipeline {{ pipelinename }} in {{ projectname }} project
16 | {% csrf_token %}
17 | {% crispy form %}
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | {% endblock %}
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/emoticons/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("emoticons",function(e,t){function n(){var e;return e='',tinymce.each(i,function(n){e+="",tinymce.each(n,function(n){var i=t+"/img/smiley-"+n+".gif";e+='
'}),e+=" "}),e+="
"}var i=[["cool","cry","embarassed","foot-in-mouth"],["frown","innocent","kiss","laughing"],["money-mouth","sealed","smile","surprised"],["tongue-out","undecided","wink","yell"]];e.addButton("emoticons",{type:"panelbutton",popoverAlign:"bc-tl",panel:{autohide:!0,html:n,onclick:function(t){var n=e.dom.getParent(t.target,"a");n&&(e.insertContent('
'),this.hide())}},tooltip:"Emoticons"})});
--------------------------------------------------------------------------------
/scrapyproject/migrations/0011_dataset.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 | from django.conf import settings
6 |
7 |
8 | class Migration(migrations.Migration):
9 |
10 | dependencies = [
11 | migrations.swappable_dependency(settings.AUTH_USER_MODEL),
12 | ('scrapyproject', '0010_auto_20170406_1835'),
13 | ]
14 |
15 | operations = [
16 | migrations.CreateModel(
17 | name='Dataset',
18 | fields=[
19 | ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
20 | ('database', models.CharField(max_length=50)),
21 | ('user', models.ForeignKey(to=settings.AUTH_USER_MODEL)),
22 | ],
23 | ),
24 | ]
25 |
--------------------------------------------------------------------------------
/scrapyproject/migrations/0006_mongopass.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 | from django.conf import settings
6 |
7 |
8 | class Migration(migrations.Migration):
9 |
10 | dependencies = [
11 | migrations.swappable_dependency(settings.AUTH_USER_MODEL),
12 | ('scrapyproject', '0005_auto_20170213_1053'),
13 | ]
14 |
15 | operations = [
16 | migrations.CreateModel(
17 | name='MongoPass',
18 | fields=[
19 | ('id', models.AutoField(verbose_name='ID', primary_key=True, serialize=False, auto_created=True)),
20 | ('password', models.CharField(max_length=200)),
21 | ('user', models.OneToOneField(to=settings.AUTH_USER_MODEL)),
22 | ],
23 | ),
24 | ]
25 |
--------------------------------------------------------------------------------
/scrapyproject/migrations/0005_auto_20170213_1053.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0004_pipeline_pipeline_function'),
11 | ]
12 |
13 | operations = [
14 | migrations.RemoveField(
15 | model_name='project',
16 | name='settings',
17 | ),
18 | migrations.AddField(
19 | model_name='project',
20 | name='settings_link_generator',
21 | field=models.TextField(blank=True),
22 | ),
23 | migrations.AddField(
24 | model_name='project',
25 | name='settings_scraper',
26 | field=models.TextField(blank=True),
27 | ),
28 | ]
29 |
--------------------------------------------------------------------------------
/mysite/static/codemirror/theme/elegant.css:
--------------------------------------------------------------------------------
1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom { color: #762; }
2 | .cm-s-elegant span.cm-comment { color: #262; font-style: italic; line-height: 1em; }
3 | .cm-s-elegant span.cm-meta { color: #555; font-style: italic; line-height: 1em; }
4 | .cm-s-elegant span.cm-variable { color: black; }
5 | .cm-s-elegant span.cm-variable-2 { color: #b11; }
6 | .cm-s-elegant span.cm-qualifier { color: #555; }
7 | .cm-s-elegant span.cm-keyword { color: #730; }
8 | .cm-s-elegant span.cm-builtin { color: #30a; }
9 | .cm-s-elegant span.cm-link { color: #762; }
10 | .cm-s-elegant span.cm-error { background-color: #fdd; }
11 |
12 | .cm-s-elegant .CodeMirror-activeline-background { background: #e8f2ff; }
13 | .cm-s-elegant .CodeMirror-matchingbracket { outline:1px solid grey; color:black !important; }
14 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/bServerSide.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "bServerSide" );
3 |
4 | /* Not interested in server-side processing here other than to check that it is off */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version" },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Server side is off by default",
22 | null,
23 | function () { return oSettings.oFeatures.bServerSide == false; }
24 | );
25 |
26 | oTest.fnComplete();
27 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/6_delayed_rendering/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/arrays.txt",
10 | "bDeferRender": true,
11 | "aoColumns": [
12 | null,
13 | null,
14 | null,
15 | { "sName": 'unit test' },
16 | null
17 | ]
18 | } );
19 | var oSettings = oTable.fnSettings();
20 |
21 | oTest.fnWaitTest(
22 | "Names are stored in the columns object",
23 | null,
24 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/1_dom/2530.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: dymanic_table
2 | oTest.fnStart( "2530 - Check width's when dealing with empty strings" );
3 |
4 |
5 | $(document).ready( function () {
6 | $('#example').dataTable( {
7 | "aaData": [
8 | ['','Internet Explorer 4.0','Win 95+','4','X'],
9 | ['','Internet Explorer 5.0','Win 95+','5','C']
10 | ],
11 | "aoColumns": [
12 | { "sTitle": "", "sWidth": "40px" },
13 | { "sTitle": "Browser" },
14 | { "sTitle": "Platform" },
15 | { "sTitle": "Version", "sClass": "center" },
16 | { "sTitle": "Grade", "sClass": "center" }
17 | ]
18 | } );
19 |
20 | /* Basic checks */
21 | oTest.fnTest(
22 | "Check calculated widths",
23 | null,
24 | function () { return $('#example tbody tr td:eq(0)').width() < 100; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/4_server-side/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "bServerSide": true,
10 | "sAjaxSource": "../../../examples/server_side/scripts/server_processing.php",
11 | "aoColumns": [
12 | null,
13 | null,
14 | null,
15 | { "sName": 'unit test' },
16 | null
17 | ]
18 | } );
19 | var oSettings = oTable.fnSettings();
20 |
21 | oTest.fnWaitTest(
22 | "Names are stored in the columns object",
23 | null,
24 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
25 | );
26 |
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/mysite/static/vendors/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/sAjaxSource.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "sAjaxSource" );
3 |
4 | /* Sanitfy check really - all the other tests blast this */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version" },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Server side is off by default",
22 | null,
23 | function () {
24 | return oSettings.sAjaxSource == "../../../examples/ajax/sources/objects.txt";
25 | }
26 | );
27 |
28 | oTest.fnComplete();
29 | } );
--------------------------------------------------------------------------------
/examples/scraper.py:
--------------------------------------------------------------------------------
1 | # You need to create an Item name 'played' for running this script
2 | # item['ack_signal'] = int(response.meta['ack_signal']) - this line is used for sending ack signal to RabbitMQ
3 | def parse(self, response):
4 | item = played()
5 | songs = response.xpath('//li[@class="player-in-playlist-holder"]')
6 | indexr = response.url.find('date=')
7 | indexr = indexr + 5
8 | date = response.url[indexr:indexr + 10]
9 |
10 | for song in songs:
11 | item['timeplayed'] = song.xpath('.//span[@class="time"]/text()').extract()[0]
12 | item['artist'] = song.xpath('.//div[@class="jp-title"]/strong//span//text()').extract()[0]
13 | item['song'] = song.xpath('.//div[@class="jp-title"]/strong//em//text()').extract()[0]
14 | item['dateplayed'] = date
15 | item['ack_signal'] = int(response.meta['ack_signal'])
16 | yield item
--------------------------------------------------------------------------------
/scrapyproject/migrations/0003_auto_20170209_1025.py:
--------------------------------------------------------------------------------
1 | # -*- coding: utf-8 -*-
2 | from __future__ import unicode_literals
3 |
4 | from django.db import migrations, models
5 |
6 |
7 | class Migration(migrations.Migration):
8 |
9 | dependencies = [
10 | ('scrapyproject', '0002_auto_20170208_1738'),
11 | ]
12 |
13 | operations = [
14 | migrations.AlterField(
15 | model_name='project',
16 | name='link_generator',
17 | field=models.TextField(blank=True),
18 | ),
19 | migrations.AlterField(
20 | model_name='project',
21 | name='scraper_function',
22 | field=models.TextField(blank=True),
23 | ),
24 | migrations.AlterField(
25 | model_name='project',
26 | name='settings',
27 | field=models.TextField(blank=True),
28 | ),
29 | ]
30 |
--------------------------------------------------------------------------------
/mysite/static/vendors/tinymce/js/tinymce/plugins/wordcount/plugin.min.js:
--------------------------------------------------------------------------------
1 | tinymce.PluginManager.add("wordcount",function(e){function t(){e.theme.panel.find("#wordcount").text(["Words: {0}",a.getCount()])}var n,i,a=this;n=e.getParam("wordcount_countregex",/[\w\u2019\x27\-]+/g),i=e.getParam("wordcount_cleanregex",/[0-9.(),;:!?%#$?\x27\x22_+=\\\/\-]*/g),e.on("init",function(){var n=e.theme.panel&&e.theme.panel.find("#statusbar")[0];n&&window.setTimeout(function(){n.insert({type:"label",name:"wordcount",text:["Words: {0}",a.getCount()],classes:"wordcount"},0),e.on("setcontent beforeaddundo",t),e.on("keyup",function(e){32==e.keyCode&&t()})},0)}),a.getCount=function(){var t=e.getContent({format:"raw"}),a=0;if(t){t=t.replace(/\.\.\./g," "),t=t.replace(/<.[^<>]*?>/g," ").replace(/ | /gi," "),t=t.replace(/(\w+)(&.+?;)+(\w+)/,"$1$3").replace(/&.+?;/g," "),t=t.replace(i,"");var o=t.match(n);o&&(a=o.length)}return a}});
--------------------------------------------------------------------------------
/mysite/static/vendors/flot/examples/axes-time-zones/tz/yearistype.sh:
--------------------------------------------------------------------------------
1 | #! /bin/sh
2 |
3 | : 'This file is in the public domain, so clarified as of'
4 | : '2006-07-17 by Arthur David Olson.'
5 |
6 | case $#-$1 in
7 | 2-|2-0*|2-*[!0-9]*)
8 | echo "$0: wild year - $1" >&2
9 | exit 1 ;;
10 | esac
11 |
12 | case $#-$2 in
13 | 2-even)
14 | case $1 in
15 | *[24680]) exit 0 ;;
16 | *) exit 1 ;;
17 | esac ;;
18 | 2-nonpres|2-nonuspres)
19 | case $1 in
20 | *[02468][048]|*[13579][26]) exit 1 ;;
21 | *) exit 0 ;;
22 | esac ;;
23 | 2-odd)
24 | case $1 in
25 | *[13579]) exit 0 ;;
26 | *) exit 1 ;;
27 | esac ;;
28 | 2-uspres)
29 | case $1 in
30 | *[02468][048]|*[13579][26]) exit 0 ;;
31 | *) exit 1 ;;
32 | esac ;;
33 | 2-*)
34 | echo "$0: wild type - $2" >&2 ;;
35 | esac
36 |
37 | echo "$0: usage is $0 year even|odd|uspres|nonpres|nonuspres" >&2
38 | exit 1
39 |
--------------------------------------------------------------------------------
/mysite/static/vendors/datatables/unit_testing/tests_onhold/5_ajax_objects/aoColumns.sName.js:
--------------------------------------------------------------------------------
1 | // DATA_TEMPLATE: empty_table
2 | oTest.fnStart( "aoColumns.sName" );
3 |
4 | /* This has no effect at all in DOM methods - so we just check that it has applied the name */
5 |
6 | $(document).ready( function () {
7 | /* Check the default */
8 | var oTable = $('#example').dataTable( {
9 | "sAjaxSource": "../../../examples/ajax/sources/objects.txt",
10 | "aoColumns": [
11 | { "mData": "engine" },
12 | { "mData": "browser" },
13 | { "mData": "platform" },
14 | { "mData": "version", "sName": 'unit test' },
15 | { "mData": "grade" }
16 | ]
17 | } );
18 | var oSettings = oTable.fnSettings();
19 |
20 | oTest.fnWaitTest(
21 | "Names are stored in the columns object",
22 | null,
23 | function () { return oSettings.aoColumns[3].sName =="unit test"; }
24 | );
25 |
26 |
27 | oTest.fnComplete();
28 | } );
--------------------------------------------------------------------------------
/mysite/static/js/forms.js:
--------------------------------------------------------------------------------
1 | $(document).ready(function(){
2 | // Select
3 | $('.selectpicker').selectpicker();
4 |
5 | // Tags
6 | $("#tags").tags({
7 | suggestions: ["alpha", "bravo", "charlie", "delta", "echo", "foxtrot", "golf", "hotel", "india"],
8 | tagData: ["juliett", "kilo"]
9 | });
10 |
11 | // Editable
12 | $('.editable').editable();
13 |
14 | // Wizard
15 | $('#rootwizard').bootstrapWizard();
16 |
17 | // Mask
18 | if ($('[data-mask]')
19 | .length) {
20 | $('[data-mask]')
21 | .each(function () {
22 |
23 | $this = $(this);
24 | var mask = $this.attr('data-mask') || 'error...',
25 | mask_placeholder = $this.attr('data-mask-placeholder') || 'X';
26 |
27 | $this.mask(mask, {
28 | placeholder: mask_placeholder
29 | });
30 | })
31 | }
32 | });
--------------------------------------------------------------------------------
/mysite/static/vendors/ckeditor/samples/sample_posteddata.php:
--------------------------------------------------------------------------------
1 |
2 |
3 | -------------------------------------------------------------------------------------------
4 | CKEditor - Posted Data
5 |
6 | We are sorry, but your Web server does not support the PHP language used in this script.
7 |
8 | Please note that CKEditor can be used with any other server-side language than just PHP.
9 | To save the content created with CKEditor you need to read the POST data on the server
10 | side and write it to a file or the database.
11 |
12 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
13 | For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 |
16 |