├── .hg ├── undo.bookmarks ├── undo.dirstate ├── branch ├── store │ ├── phaseroots │ ├── undo.phaseroots │ ├── 00changelog.i │ ├── 00manifest.i │ └── data │ │ ├── setup.py.i │ │ ├── ~2ehgtags.i │ │ ├── ~2ehgignore.i │ │ ├── _c_h_a_n_g_e_s.i │ │ ├── _r_e_a_d_m_e.i │ │ ├── docs │ │ ├── _makefile.i │ │ ├── conf.py.i │ │ ├── index.rst.i │ │ ├── producers │ │ │ ├── index.rst.i │ │ │ ├── live.rst.i │ │ │ ├── filters.rst.i │ │ │ ├── options.rst.i │ │ │ ├── download.rst.i │ │ │ ├── examples │ │ │ │ ├── index.rst.i │ │ │ │ ├── top__10.rst.i │ │ │ │ ├── categories.rst.i │ │ │ │ ├── count__bar.rst.i │ │ │ │ ├── images │ │ │ │ │ ├── _top10.png.i │ │ │ │ │ ├── _bar_chart_report.png.i │ │ │ │ │ ├── _bar_chart_survey.png.i │ │ │ │ │ ├── _simple_poll_entry.png.i │ │ │ │ │ ├── _simple_poll_survey.png.i │ │ │ │ │ ├── _simple_poll_results.png.i │ │ │ │ │ ├── _favorite_composer_each.png.d │ │ │ │ │ ├── _favorite_composer_each.png.i │ │ │ │ │ ├── _favorite_composer_poll.png.d │ │ │ │ │ ├── _favorite_composer_poll.png.i │ │ │ │ │ ├── _favorite_composer_rate_one.png.d │ │ │ │ │ ├── _favorite_composer_rate_one.png.i │ │ │ │ │ ├── _liberal_conservative_report.png.i │ │ │ │ │ ├── _liberal_conservative_survey.png.i │ │ │ │ │ └── _favorite_composer_rate_one_report.png.i │ │ │ │ ├── simple__poll.rst.i │ │ │ │ ├── simple__survey.rst.i │ │ │ │ └── favorite__composer.rst.i │ │ │ ├── ballot__stuffing.rst.i │ │ │ └── images │ │ │ │ └── _download_surveys.png.i │ │ └── developers │ │ │ └── index.rst.i │ │ ├── _m_a_n_i_f_e_s_t.in.i │ │ ├── crowdsourcing │ │ ├── geo.py.i │ │ ├── urls.py.i │ │ ├── util.py.i │ │ ├── admin.py.i │ │ ├── fields.py.i │ │ ├── forms.py.i │ │ ├── models.py.i │ │ ├── tasks.py.i │ │ ├── tests.py.i │ │ ├── views.py.i │ │ ├── jsonutils.py.i │ │ ├── settings.py.i │ │ ├── ____init____.py.i │ │ ├── oembedutils.py.i │ │ ├── flickrsupport.py.i │ │ └── templatetags │ │ │ ├── ____init____.py.i │ │ │ └── crowdsourcing.py.i │ │ ├── example__app │ │ ├── urls.py.i │ │ ├── cms │ │ │ ├── urls.py.i │ │ │ ├── models.py.i │ │ │ ├── tests.py.i │ │ │ ├── views.py.i │ │ │ └── ____init____.py.i │ │ ├── manage.py.i │ │ ├── settings.py.i │ │ ├── ____init____.py.i │ │ ├── media │ │ │ ├── enlarge.js.i │ │ │ ├── styles.css.i │ │ │ ├── survey.js.i │ │ │ ├── enlarge.css.i │ │ │ ├── google__maps.js.i │ │ │ ├── img │ │ │ │ └── loading.gif.i │ │ │ ├── jquery.form.js.i │ │ │ ├── enlarge-icon.png.i │ │ │ ├── google__maps.css.i │ │ │ └── jquery.jcarousel.min.js.i │ │ ├── templates │ │ │ ├── home.html.i │ │ │ ├── header__tags.html.i │ │ │ ├── crowdsourcing │ │ │ │ ├── base.html.i │ │ │ │ ├── submission.html.i │ │ │ │ ├── survey__detail.html.i │ │ │ │ ├── survey__report.html.i │ │ │ │ ├── survey__results.html.i │ │ │ │ ├── submission__for__map.html.i │ │ │ │ ├── embeded__survey__report.html.i │ │ │ │ ├── location__question__map.html.i │ │ │ │ ├── survey__results__archive.html.i │ │ │ │ └── embeded__survey__questions.html.i │ │ │ └── mako │ │ │ │ ├── survey__detail.html.i │ │ │ │ └── survey__results.html.i │ │ └── example__app__requirements.txt.i │ │ └── crowdsourcing__requirements.txt.i ├── undo.branch ├── requires ├── 00changelog.i ├── dirstate ├── hgrc ├── undo.desc └── cache │ └── branchheads-served ├── .gitignore ├── debug_toolbar ├── models.py ├── toolbar │ └── __init__.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── debugsqlshell.py ├── templatetags │ ├── __init__.py │ └── debug_toolbar_utils.py ├── utils │ ├── compat │ │ ├── __init__.py │ │ ├── ._db.py │ │ ├── .___init__.py │ │ └── db.py │ ├── tracking │ │ └── .___init__.py │ └── sqlparse │ │ ├── __init__.py │ │ ├── tokens.py │ │ └── engine │ │ └── __init__.py ├── ._urls.py ├── ._models.py ├── .___init__.py ├── media │ └── debug_toolbar │ │ ├── img │ │ ├── back.png │ │ ├── dot.gif │ │ ├── close.png │ │ ├── indicator.png │ │ ├── panel_bg.png │ │ ├── back_hover.png │ │ ├── close_hover.png │ │ └── djdt_vertical.png │ │ ├── css │ │ └── ._toolbar.css │ │ └── js │ │ └── ._jquery.cookie.js ├── templates │ └── debug_toolbar │ │ ├── panels │ │ ├── ._sql.html │ │ ├── ._profiling.html │ │ ├── ._sql_explain.html │ │ ├── ._sql_profile.html │ │ ├── ._sql_select.html │ │ ├── headers.html │ │ ├── versions.html │ │ ├── settings_vars.html │ │ ├── template_source.html │ │ ├── timer.html │ │ ├── signals.html │ │ ├── logger.html │ │ ├── sql_explain.html │ │ ├── sql_select.html │ │ ├── sql_profile.html │ │ ├── cache.html │ │ ├── profiling.html │ │ └── templates.html │ │ ├── redirect.html │ │ └── base.html ├── __init__.py ├── urls.py └── panels │ ├── settings_vars.py │ ├── headers.py │ ├── version.py │ ├── request_vars.py │ └── __init__.py ├── do-index ├── __init__.py ├── cms │ ├── __init__.py │ ├── templatetags │ │ ├── __init__.py │ │ └── dictionary_extras.py │ ├── forms.py │ ├── models.py │ └── urls.py ├── media │ ├── bootstrap3 │ │ ├── ._css │ │ ├── ._js │ │ ├── ._fonts │ │ ├── js │ │ │ ├── ._bootstrap.js │ │ │ └── ._bootstrap.min.js │ │ ├── css │ │ │ ├── ._bootstrap.css │ │ │ └── ._bootstrap.min.css │ │ └── fonts │ │ │ ├── ._glyphicons-halflings-regular.eot │ │ │ ├── ._glyphicons-halflings-regular.svg │ │ │ ├── ._glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── ._glyphicons-halflings-regular.woff │ ├── enlarge-icon.png │ ├── img │ │ └── loading.gif │ ├── admin │ │ ├── img │ │ │ ├── admin │ │ │ │ ├── nav-bg.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ ├── icon-no.gif │ │ │ │ ├── icon-yes.gif │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── chooser-bg.gif │ │ │ │ ├── default-bg.gif │ │ │ │ ├── icon_alert.gif │ │ │ │ ├── icon_clock.gif │ │ │ │ ├── icon_error.gif │ │ │ │ ├── tool-left.gif │ │ │ │ ├── tool-right.gif │ │ │ │ ├── tooltag-add.gif │ │ │ │ ├── changelist-bg.gif │ │ │ │ ├── icon-unknown.gif │ │ │ │ ├── icon_addlink.gif │ │ │ │ ├── icon_calendar.gif │ │ │ │ ├── icon_success.gif │ │ │ │ ├── inline-delete.png │ │ │ │ ├── selector-add.gif │ │ │ │ ├── deleted-overlay.gif │ │ │ │ ├── icon_changelink.gif │ │ │ │ ├── icon_deletelink.gif │ │ │ │ ├── icon_searchbox.png │ │ │ │ ├── inline-restore.png │ │ │ │ ├── nav-bg-grabber.gif │ │ │ │ ├── nav-bg-reverse.gif │ │ │ │ ├── selector-addall.gif │ │ │ │ ├── selector-remove.gif │ │ │ │ ├── selector-search.gif │ │ │ │ ├── tool-left_over.gif │ │ │ │ ├── tool-right_over.gif │ │ │ │ ├── tooltag-add_over.gif │ │ │ │ ├── changelist-bg_rtl.gif │ │ │ │ ├── chooser_stacked-bg.gif │ │ │ │ ├── default-bg-reverse.gif │ │ │ │ ├── inline-delete-8bit.png │ │ │ │ ├── inline-splitter-bg.gif │ │ │ │ ├── selector-removeall.gif │ │ │ │ ├── tooltag-arrowright.gif │ │ │ │ ├── inline-restore-8bit.png │ │ │ │ ├── selector_stacked-add.gif │ │ │ │ ├── selector_stacked-remove.gif │ │ │ │ └── tooltag-arrowright_over.gif │ │ │ └── gis │ │ │ │ ├── move_vertex_off.png │ │ │ │ └── move_vertex_on.png │ │ ├── js │ │ │ ├── jquery.init.js │ │ │ ├── prepopulate.min.js │ │ │ ├── collapse.min.js │ │ │ ├── collapse.js │ │ │ ├── LICENSE-JQUERY.txt │ │ │ ├── prepopulate.js │ │ │ ├── compress.py │ │ │ └── inlines.min.js │ │ └── css │ │ │ ├── dashboard.css │ │ │ ├── login.css │ │ │ └── ie.css │ ├── bootstrap │ │ └── img │ │ │ ├── glyphicons-halflings.png │ │ │ └── glyphicons-halflings-white.png │ ├── google_maps.css │ └── enlarge.css ├── templates │ ├── crowdsourcing │ │ ├── submission_for_map.html │ │ ├── base.html │ │ ├── survey_report.html │ │ ├── submission.html │ │ ├── location_question_map.html │ │ ├── survey_detail.html │ │ └── embeded_survey_report.html │ ├── overview.html │ ├── header_tags.html │ ├── home.html-waltersave │ └── ie.html ├── manage.py └── urls.py ├── crowdsourcing ├── __init__.py ├── templatetags │ └── __init__.py ├── fields.py ├── tasks.py ├── jsonutils.py ├── geo.py └── util.py ├── src ├── crowdsourcing │ ├── .hg │ │ ├── store │ │ │ ├── phaseroots │ │ │ ├── undo.phaseroots │ │ │ ├── 00changelog.i │ │ │ ├── 00manifest.i │ │ │ └── data │ │ │ │ ├── setup.py.i │ │ │ │ ├── ~2ehgignore.i │ │ │ │ ├── ~2ehgtags.i │ │ │ │ ├── _r_e_a_d_m_e.i │ │ │ │ ├── docs │ │ │ │ ├── conf.py.i │ │ │ │ ├── _makefile.i │ │ │ │ ├── index.rst.i │ │ │ │ ├── producers │ │ │ │ │ ├── live.rst.i │ │ │ │ │ ├── filters.rst.i │ │ │ │ │ ├── index.rst.i │ │ │ │ │ ├── options.rst.i │ │ │ │ │ ├── download.rst.i │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── index.rst.i │ │ │ │ │ │ ├── top__10.rst.i │ │ │ │ │ │ ├── categories.rst.i │ │ │ │ │ │ ├── count__bar.rst.i │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── _top10.png.i │ │ │ │ │ │ │ ├── _bar_chart_report.png.i │ │ │ │ │ │ │ ├── _bar_chart_survey.png.i │ │ │ │ │ │ │ ├── _simple_poll_entry.png.i │ │ │ │ │ │ │ ├── _simple_poll_results.png.i │ │ │ │ │ │ │ ├── _simple_poll_survey.png.i │ │ │ │ │ │ │ ├── _favorite_composer_each.png.d │ │ │ │ │ │ │ ├── _favorite_composer_each.png.i │ │ │ │ │ │ │ ├── _favorite_composer_poll.png.d │ │ │ │ │ │ │ ├── _favorite_composer_poll.png.i │ │ │ │ │ │ │ ├── _favorite_composer_rate_one.png.d │ │ │ │ │ │ │ ├── _favorite_composer_rate_one.png.i │ │ │ │ │ │ │ ├── _liberal_conservative_report.png.i │ │ │ │ │ │ │ ├── _liberal_conservative_survey.png.i │ │ │ │ │ │ │ └── _favorite_composer_rate_one_report.png.i │ │ │ │ │ │ ├── simple__poll.rst.i │ │ │ │ │ │ ├── simple__survey.rst.i │ │ │ │ │ │ └── favorite__composer.rst.i │ │ │ │ │ ├── ballot__stuffing.rst.i │ │ │ │ │ └── images │ │ │ │ │ │ └── _download_surveys.png.i │ │ │ │ └── developers │ │ │ │ │ └── index.rst.i │ │ │ │ ├── _c_h_a_n_g_e_s.i │ │ │ │ ├── _m_a_n_i_f_e_s_t.in.i │ │ │ │ ├── crowdsourcing │ │ │ │ ├── geo.py.i │ │ │ │ ├── urls.py.i │ │ │ │ ├── util.py.i │ │ │ │ ├── admin.py.i │ │ │ │ ├── fields.py.i │ │ │ │ ├── forms.py.i │ │ │ │ ├── models.py.i │ │ │ │ ├── tasks.py.i │ │ │ │ ├── tests.py.i │ │ │ │ ├── views.py.i │ │ │ │ ├── jsonutils.py.i │ │ │ │ ├── settings.py.i │ │ │ │ ├── oembedutils.py.i │ │ │ │ ├── ____init____.py.i │ │ │ │ ├── flickrsupport.py.i │ │ │ │ └── templatetags │ │ │ │ │ ├── ____init____.py.i │ │ │ │ │ └── crowdsourcing.py.i │ │ │ │ ├── example__app │ │ │ │ ├── urls.py.i │ │ │ │ ├── manage.py.i │ │ │ │ ├── cms │ │ │ │ │ ├── models.py.i │ │ │ │ │ ├── tests.py.i │ │ │ │ │ ├── urls.py.i │ │ │ │ │ ├── views.py.i │ │ │ │ │ └── ____init____.py.i │ │ │ │ ├── settings.py.i │ │ │ │ ├── ____init____.py.i │ │ │ │ ├── media │ │ │ │ │ ├── survey.js.i │ │ │ │ │ ├── enlarge.css.i │ │ │ │ │ ├── enlarge.js.i │ │ │ │ │ ├── styles.css.i │ │ │ │ │ ├── jquery.form.js.i │ │ │ │ │ ├── enlarge-icon.png.i │ │ │ │ │ ├── google__maps.css.i │ │ │ │ │ ├── google__maps.js.i │ │ │ │ │ ├── img │ │ │ │ │ │ └── loading.gif.i │ │ │ │ │ └── jquery.jcarousel.min.js.i │ │ │ │ ├── templates │ │ │ │ │ ├── home.html.i │ │ │ │ │ ├── header__tags.html.i │ │ │ │ │ ├── crowdsourcing │ │ │ │ │ │ ├── base.html.i │ │ │ │ │ │ ├── submission.html.i │ │ │ │ │ │ ├── survey__detail.html.i │ │ │ │ │ │ ├── survey__report.html.i │ │ │ │ │ │ ├── survey__results.html.i │ │ │ │ │ │ ├── submission__for__map.html.i │ │ │ │ │ │ ├── embeded__survey__report.html.i │ │ │ │ │ │ ├── location__question__map.html.i │ │ │ │ │ │ ├── survey__results__archive.html.i │ │ │ │ │ │ └── embeded__survey__questions.html.i │ │ │ │ │ └── mako │ │ │ │ │ │ ├── survey__detail.html.i │ │ │ │ │ │ └── survey__results.html.i │ │ │ │ └── example__app__requirements.txt.i │ │ │ │ └── crowdsourcing__requirements.txt.i │ │ ├── undo.bookmarks │ │ ├── undo.dirstate │ │ ├── branch │ │ ├── undo.branch │ │ ├── requires │ │ ├── 00changelog.i │ │ ├── undo.desc │ │ ├── hgrc │ │ ├── dirstate │ │ └── cache │ │ │ └── branchheads-served │ ├── crowdsourcing │ │ ├── __init__.py │ │ ├── templatetags │ │ │ └── __init__.py │ │ ├── fields.py │ │ ├── tasks.py │ │ ├── jsonutils.py │ │ ├── geo.py │ │ └── util.py │ ├── example_app │ │ ├── __init__.py │ │ ├── cms │ │ │ ├── __init__.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── templates │ │ │ ├── crowdsourcing │ │ │ │ ├── submission_for_map.html │ │ │ │ ├── base.html │ │ │ │ ├── survey_report.html │ │ │ │ ├── submission.html │ │ │ │ ├── embeded_survey_questions.html │ │ │ │ ├── location_question_map.html │ │ │ │ ├── survey_detail.html │ │ │ │ └── embeded_survey_report.html │ │ │ ├── home.html │ │ │ └── header_tags.html │ │ ├── media │ │ │ ├── img │ │ │ │ └── loading.gif │ │ │ ├── enlarge-icon.png │ │ │ ├── google_maps.css │ │ │ ├── enlarge.css │ │ │ └── styles.css │ │ ├── example_app_requirements.txt │ │ ├── manage.py │ │ └── urls.py │ ├── django_crowdsourcing.egg-info │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── SOURCES.txt │ ├── MANIFEST.in │ ├── docs │ │ └── producers │ │ │ ├── examples │ │ │ ├── images │ │ │ │ ├── Top10.png │ │ │ │ ├── BarChartReport.png │ │ │ │ ├── BarChartSurvey.png │ │ │ │ ├── SimplePollEntry.png │ │ │ │ ├── SimplePollResults.png │ │ │ │ ├── SimplePollSurvey.png │ │ │ │ ├── FavoriteComposerEach.png │ │ │ │ ├── FavoriteComposerPoll.png │ │ │ │ ├── FavoriteComposerRateOne.png │ │ │ │ ├── LiberalConservativeReport.png │ │ │ │ ├── LiberalConservativeSurvey.png │ │ │ │ └── FavoriteComposerRateOneReport.png │ │ │ ├── index.rst │ │ │ ├── top_10.rst │ │ │ ├── count_bar.rst │ │ │ ├── simple_poll.rst │ │ │ ├── favorite_composer.rst │ │ │ └── categories.rst │ │ │ ├── images │ │ │ └── DownloadSurveys.png │ │ │ ├── index.rst │ │ │ ├── download.rst │ │ │ └── ballot_stuffing.rst │ ├── .hgignore │ ├── crowdsourcing_requirements.txt │ ├── setup.py │ └── .hgtags └── pip-delete-this-directory.txt ├── django_crowdsourcing.egg-info ├── dependency_links.txt ├── top_level.txt └── SOURCES.txt ├── docs └── producers │ ├── examples │ ├── images │ │ ├── Top10.png │ │ ├── BarChartReport.png │ │ ├── BarChartSurvey.png │ │ ├── SimplePollEntry.png │ │ ├── SimplePollSurvey.png │ │ ├── SimplePollResults.png │ │ ├── FavoriteComposerEach.png │ │ ├── FavoriteComposerPoll.png │ │ ├── FavoriteComposerRateOne.png │ │ ├── LiberalConservativeReport.png │ │ ├── LiberalConservativeSurvey.png │ │ └── FavoriteComposerRateOneReport.png │ ├── index.rst │ ├── top_10.rst │ ├── count_bar.rst │ ├── simple_poll.rst │ ├── favorite_composer.rst │ └── categories.rst │ ├── images │ └── DownloadSurveys.png │ ├── index.rst │ ├── download.rst │ └── ballot_stuffing.rst ├── dist └── django_crowdsourcing-1.1.35-py2.7.egg ├── MANIFEST.in ├── .hgignore ├── django.wsgi ├── README.md ├── crowdsourcing_requirements.txt ├── setup.py └── .hgtags /.hg/undo.bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hg/undo.dirstate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /.hg/branch: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /.hg/store/phaseroots: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hg/undo.branch: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /debug_toolbar/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /do-index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.hg/store/undo.phaseroots: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crowdsourcing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /do-index/cms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/toolbar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/utils/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /do-index/cms/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/phaseroots: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/undo.bookmarks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/undo.dirstate: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crowdsourcing/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/branch: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/undo.phaseroots: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/undo.branch: -------------------------------------------------------------------------------- 1 | default -------------------------------------------------------------------------------- /src/crowdsourcing/crowdsourcing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debug_toolbar/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/cms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_crowdsourcing.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.hg/requires: -------------------------------------------------------------------------------- 1 | dotencode 2 | fncache 3 | revlogv1 4 | store 5 | -------------------------------------------------------------------------------- /django_crowdsourcing.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | crowdsourcing 2 | -------------------------------------------------------------------------------- /src/crowdsourcing/crowdsourcing/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/crowdsourcing/django_crowdsourcing.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.hg/00changelog.i: -------------------------------------------------------------------------------- 1 | dummy changelog to prevent using the old repo layout -------------------------------------------------------------------------------- /.hg/dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/dirstate -------------------------------------------------------------------------------- /.hg/hgrc: -------------------------------------------------------------------------------- 1 | [paths] 2 | default = https://django-crowdsourcing.googlecode.com/hg/ 3 | -------------------------------------------------------------------------------- /.hg/undo.desc: -------------------------------------------------------------------------------- 1 | 0 2 | pull 3 | https://django-crowdsourcing.googlecode.com/hg/ 4 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/requires: -------------------------------------------------------------------------------- 1 | dotencode 2 | fncache 3 | revlogv1 4 | store 5 | -------------------------------------------------------------------------------- /src/crowdsourcing/django_crowdsourcing.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | crowdsourcing 2 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/00changelog.i: -------------------------------------------------------------------------------- 1 | dummy changelog to prevent using the old repo layout -------------------------------------------------------------------------------- /.hg/store/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/00changelog.i -------------------------------------------------------------------------------- /.hg/store/00manifest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/00manifest.i -------------------------------------------------------------------------------- /debug_toolbar/._urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/._urls.py -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/undo.desc: -------------------------------------------------------------------------------- 1 | 0 2 | pull 3 | https://django-crowdsourcing.googlecode.com/hg/ 4 | -------------------------------------------------------------------------------- /.hg/store/data/setup.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/setup.py.i -------------------------------------------------------------------------------- /.hg/store/data/~2ehgtags.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/~2ehgtags.i -------------------------------------------------------------------------------- /debug_toolbar/._models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/._models.py -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/hgrc: -------------------------------------------------------------------------------- 1 | [paths] 2 | default = https://django-crowdsourcing.googlecode.com/hg/ 3 | -------------------------------------------------------------------------------- /.hg/store/data/~2ehgignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/~2ehgignore.i -------------------------------------------------------------------------------- /debug_toolbar/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/.___init__.py -------------------------------------------------------------------------------- /.hg/store/data/_c_h_a_n_g_e_s.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/_c_h_a_n_g_e_s.i -------------------------------------------------------------------------------- /.hg/store/data/_r_e_a_d_m_e.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/_r_e_a_d_m_e.i -------------------------------------------------------------------------------- /.hg/store/data/docs/_makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/_makefile.i -------------------------------------------------------------------------------- /.hg/store/data/docs/conf.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/conf.py.i -------------------------------------------------------------------------------- /.hg/store/data/docs/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/index.rst.i -------------------------------------------------------------------------------- /do-index/media/bootstrap3/._css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/._css -------------------------------------------------------------------------------- /do-index/media/bootstrap3/._js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/._js -------------------------------------------------------------------------------- /do-index/media/enlarge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/enlarge-icon.png -------------------------------------------------------------------------------- /do-index/media/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/img/loading.gif -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/dirstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/dirstate -------------------------------------------------------------------------------- /do-index/media/bootstrap3/._fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/._fonts -------------------------------------------------------------------------------- /.hg/store/data/_m_a_n_i_f_e_s_t.in.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/_m_a_n_i_f_e_s_t.in.i -------------------------------------------------------------------------------- /debug_toolbar/utils/compat/._db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/utils/compat/._db.py -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/geo.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/geo.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/urls.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/util.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/util.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/urls.py.i -------------------------------------------------------------------------------- /do-index/templates/crowdsourcing/submission_for_map.html: -------------------------------------------------------------------------------- 1 | {% load crowdsourcing %} 2 | {% submission_fields submission %} 3 | -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/admin.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/admin.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/fields.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/fields.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/forms.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/forms.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/models.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/models.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/tasks.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/tasks.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/tests.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/views.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/views.py.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/index.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/live.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/live.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/cms/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/cms/urls.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/manage.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/manage.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/settings.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/settings.py.i -------------------------------------------------------------------------------- /debug_toolbar/utils/compat/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/utils/compat/.___init__.py -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/nav-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/nav-bg.gif -------------------------------------------------------------------------------- /docs/producers/examples/images/Top10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/Top10.png -------------------------------------------------------------------------------- /docs/producers/images/DownloadSurveys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/images/DownloadSurveys.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/00changelog.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/00changelog.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/00manifest.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/00manifest.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/jsonutils.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/jsonutils.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/settings.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/settings.py.i -------------------------------------------------------------------------------- /.hg/store/data/docs/developers/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/developers/index.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/filters.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/filters.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/options.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/options.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/cms/models.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/cms/models.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/cms/tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/cms/tests.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/cms/views.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/cms/views.py.i -------------------------------------------------------------------------------- /debug_toolbar/utils/tracking/.___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/utils/tracking/.___init__.py -------------------------------------------------------------------------------- /dist/django_crowdsourcing-1.1.35-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/dist/django_crowdsourcing-1.1.35-py2.7.egg -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/arrow-up.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon-no.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon-no.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon-yes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon-yes.gif -------------------------------------------------------------------------------- /do-index/media/bootstrap3/js/._bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/js/._bootstrap.js -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/setup.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/setup.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/____init____.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/oembedutils.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/oembedutils.py.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/download.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/download.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/____init____.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/enlarge.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/enlarge.js.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/styles.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/styles.css.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/survey.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/survey.js.i -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/back.png -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/dot.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/arrow-down.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/chooser-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/chooser-bg.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/default-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/default-bg.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_alert.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_clock.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_error.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tool-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tool-left.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tool-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tool-right.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tooltag-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tooltag-add.gif -------------------------------------------------------------------------------- /do-index/media/bootstrap3/css/._bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/css/._bootstrap.css -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/~2ehgignore.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/~2ehgignore.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/~2ehgtags.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/~2ehgtags.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/flickrsupport.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/flickrsupport.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing__requirements.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing__requirements.txt.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/enlarge.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/enlarge.css.i -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README 2 | include CHANGES 3 | include crowdsourcing_requirements.txt 4 | recursive-include docs * 5 | prune docs/_build 6 | -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/close.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/changelist-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/changelist-bg.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon-unknown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon-unknown.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_addlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_addlink.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_calendar.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_success.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/inline-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/inline-delete.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector-add.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/gis/move_vertex_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/gis/move_vertex_off.png -------------------------------------------------------------------------------- /do-index/media/admin/img/gis/move_vertex_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/gis/move_vertex_on.png -------------------------------------------------------------------------------- /do-index/media/bootstrap3/js/._bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/js/._bootstrap.min.js -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/_r_e_a_d_m_e.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/_r_e_a_d_m_e.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/conf.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/conf.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/templates/crowdsourcing/submission_for_map.html: -------------------------------------------------------------------------------- 1 | {% load crowdsourcing %} 2 | {% submission_fields submission %} 3 | -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/index.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/cms/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/cms/____init____.py.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/google__maps.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/google__maps.js.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/img/loading.gif.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/img/loading.gif.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/jquery.form.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/jquery.form.js.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/home.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/home.html.i -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/css/._toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/css/._toolbar.css -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/indicator.png -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/panel_bg.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/deleted-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/deleted-overlay.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_changelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_changelink.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_deletelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_deletelink.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/icon_searchbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/icon_searchbox.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/inline-restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/inline-restore.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/nav-bg-grabber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/nav-bg-grabber.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/nav-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/nav-bg-reverse.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector-addall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector-addall.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector-remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector-remove.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector-search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector-search.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tool-left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tool-left_over.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tool-right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tool-right_over.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tooltag-add_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tooltag-add_over.gif -------------------------------------------------------------------------------- /do-index/media/bootstrap3/css/._bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/css/._bootstrap.min.css -------------------------------------------------------------------------------- /docs/producers/examples/images/BarChartReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/BarChartReport.png -------------------------------------------------------------------------------- /docs/producers/examples/images/BarChartSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/BarChartSurvey.png -------------------------------------------------------------------------------- /docs/producers/examples/images/SimplePollEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/SimplePollEntry.png -------------------------------------------------------------------------------- /docs/producers/examples/images/SimplePollSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/SimplePollSurvey.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/_c_h_a_n_g_e_s.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/_c_h_a_n_g_e_s.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/_makefile.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/_makefile.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/index.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/media/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/example_app/media/img/loading.gif -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/ballot__stuffing.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/ballot__stuffing.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/top__10.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/top__10.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/enlarge-icon.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/enlarge-icon.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/google__maps.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/google__maps.css.i -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/back_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/back_hover.png -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/close_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/close_hover.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/changelist-bg_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/changelist-bg_rtl.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/chooser_stacked-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/chooser_stacked-bg.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/default-bg-reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/default-bg-reverse.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/inline-delete-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/inline-delete-8bit.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/inline-splitter-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/inline-splitter-bg.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector-removeall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector-removeall.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tooltag-arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tooltag-arrowright.gif -------------------------------------------------------------------------------- /do-index/media/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/producers/examples/images/SimplePollResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/SimplePollResults.png -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/media/enlarge-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/example_app/media/enlarge-icon.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/categories.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/categories.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/count__bar.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/count__bar.rst.i -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/img/djdt_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/img/djdt_vertical.png -------------------------------------------------------------------------------- /debug_toolbar/media/debug_toolbar/js/._jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/media/debug_toolbar/js/._jquery.cookie.js -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/._sql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/templates/debug_toolbar/panels/._sql.html -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/inline-restore-8bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/inline-restore-8bit.png -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector_stacked-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector_stacked-add.gif -------------------------------------------------------------------------------- /do-index/media/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | // Puts the included jQuery into our own namespace 2 | var django = { 3 | "jQuery": jQuery.noConflict(true) 4 | }; 5 | -------------------------------------------------------------------------------- /docs/producers/examples/images/FavoriteComposerEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/FavoriteComposerEach.png -------------------------------------------------------------------------------- /docs/producers/examples/images/FavoriteComposerPoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/FavoriteComposerPoll.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/_m_a_n_i_f_e_s_t.in.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/_m_a_n_i_f_e_s_t.in.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/geo.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/geo.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/urls.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/util.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/util.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/urls.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README 2 | include CHANGES 3 | include crowdsourcing_requirements.txt 4 | recursive-include docs * 5 | prune docs/_build 6 | -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_top10.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_top10.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/simple__poll.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/simple__poll.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/header__tags.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/header__tags.html.i -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/selector_stacked-remove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/selector_stacked-remove.gif -------------------------------------------------------------------------------- /do-index/media/admin/img/admin/tooltag-arrowright_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/admin/img/admin/tooltag-arrowright_over.gif -------------------------------------------------------------------------------- /docs/producers/examples/images/FavoriteComposerRateOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/FavoriteComposerRateOne.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/admin.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/admin.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/fields.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/fields.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/forms.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/forms.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/models.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/models.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/tasks.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/tasks.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/tests.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/views.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/views.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/live.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/live.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/manage.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/manage.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/Top10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/Top10.png -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/templatetags/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/templatetags/____init____.py.i -------------------------------------------------------------------------------- /.hg/store/data/crowdsourcing/templatetags/crowdsourcing.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/crowdsourcing/templatetags/crowdsourcing.py.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/simple__survey.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/simple__survey.rst.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/images/_download_surveys.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/images/_download_surveys.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/example__app__requirements.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/example__app__requirements.txt.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/media/jquery.jcarousel.min.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/media/jquery.jcarousel.min.js.i -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/._profiling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/templates/debug_toolbar/panels/._profiling.html -------------------------------------------------------------------------------- /do-index/media/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/producers/examples/images/LiberalConservativeReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/LiberalConservativeReport.png -------------------------------------------------------------------------------- /docs/producers/examples/images/LiberalConservativeSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/LiberalConservativeSurvey.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/jsonutils.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/jsonutils.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/settings.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/settings.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/developers/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/developers/index.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/filters.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/filters.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/index.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/options.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/options.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/cms/models.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/cms/models.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/cms/tests.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/cms/tests.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/cms/urls.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/cms/urls.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/cms/views.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/cms/views.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/settings.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/settings.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/images/DownloadSurveys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/images/DownloadSurveys.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/favorite__composer.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/favorite__composer.rst.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/base.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/base.html.i -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/._sql_explain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/templates/debug_toolbar/panels/._sql_explain.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/._sql_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/templates/debug_toolbar/panels/._sql_profile.html -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/._sql_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/debug_toolbar/templates/debug_toolbar/panels/._sql_select.html -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/oembedutils.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/oembedutils.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/download.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/download.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/____init____.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/survey.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/survey.js.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/mako/survey__detail.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/mako/survey__detail.html.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/mako/survey__results.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/mako/survey__results.html.i -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/producers/examples/images/FavoriteComposerRateOneReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/docs/producers/examples/images/FavoriteComposerRateOneReport.png -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/____init____.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/flickrsupport.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/flickrsupport.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing__requirements.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing__requirements.txt.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/enlarge.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/enlarge.css.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/enlarge.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/enlarge.js.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/styles.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/styles.css.i -------------------------------------------------------------------------------- /do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/do-index/media/bootstrap3/fonts/._glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/index.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/index.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/cms/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/cms/____init____.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/jquery.form.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/jquery.form.js.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/home.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/home.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/BarChartReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/BarChartReport.png -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/BarChartSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/BarChartSurvey.png -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/SimplePollEntry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/SimplePollEntry.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_bar_chart_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_bar_chart_report.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_bar_chart_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_bar_chart_survey.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_simple_poll_entry.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_simple_poll_entry.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_simple_poll_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_simple_poll_survey.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/submission.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/submission.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/ballot__stuffing.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/ballot__stuffing.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/top__10.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/top__10.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/enlarge-icon.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/enlarge-icon.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/google__maps.css.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/google__maps.css.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/google__maps.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/google__maps.js.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/img/loading.gif.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/img/loading.gif.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/SimplePollResults.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/SimplePollResults.png -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/SimplePollSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/SimplePollSurvey.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_simple_poll_results.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_simple_poll_results.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/survey__detail.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/survey__detail.html.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/survey__report.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/survey__report.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/categories.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/categories.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/count__bar.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/count__bar.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/FavoriteComposerEach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/FavoriteComposerEach.png -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/FavoriteComposerPoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/FavoriteComposerPoll.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.d -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.d -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/survey__results.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/survey__results.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_top10.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_top10.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/simple__poll.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/simple__poll.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/header__tags.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/header__tags.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/FavoriteComposerRateOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/FavoriteComposerRateOne.png -------------------------------------------------------------------------------- /do-index/cms/templatetags/dictionary_extras.py: -------------------------------------------------------------------------------- 1 | from django import template 2 | register = template.Library() 3 | 4 | @register.filter(name='access') 5 | def access(value, arg): 6 | return value[arg] 7 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/templatetags/____init____.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/templatetags/____init____.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/crowdsourcing/templatetags/crowdsourcing.py.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/crowdsourcing/templatetags/crowdsourcing.py.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/simple__survey.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/simple__survey.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/images/_download_surveys.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/images/_download_surveys.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/example__app__requirements.txt.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/example__app__requirements.txt.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/media/jquery.jcarousel.min.js.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/media/jquery.jcarousel.min.js.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/LiberalConservativeReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/LiberalConservativeReport.png -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/LiberalConservativeSurvey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/LiberalConservativeSurvey.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.d -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_liberal_conservative_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_liberal_conservative_report.png.i -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_liberal_conservative_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_liberal_conservative_survey.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/submission__for__map.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/submission__for__map.html.i -------------------------------------------------------------------------------- /docs/producers/examples/index.rst: -------------------------------------------------------------------------------- 1 | Examples 2 | ======== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | simple_poll 8 | top_10 9 | categories 10 | favorite_composer 11 | count_bar 12 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/favorite__composer.rst.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/favorite__composer.rst.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/base.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/base.html.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__report.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__report.html.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/location__question__map.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/location__question__map.html.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/survey__results__archive.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/survey__results__archive.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/mako/survey__detail.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/mako/survey__detail.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/mako/survey__results.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/mako/survey__results.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/images/FavoriteComposerRateOneReport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/docs/producers/examples/images/FavoriteComposerRateOneReport.png -------------------------------------------------------------------------------- /.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one_report.png.i -------------------------------------------------------------------------------- /.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__questions.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__questions.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_bar_chart_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_bar_chart_report.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_bar_chart_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_bar_chart_survey.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_entry.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_entry.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/submission.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/submission.html.i -------------------------------------------------------------------------------- /debug_toolbar/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = ('VERSION',) 2 | 3 | try: 4 | VERSION = __import__('pkg_resources') \ 5 | .get_distribution('django-debug-toolbar').version 6 | except Exception, e: 7 | VERSION = 'unknown' 8 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_results.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_results.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_simple_poll_survey.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__detail.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__detail.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__report.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__report.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/index.rst: -------------------------------------------------------------------------------- 1 | Examples 2 | ======== 3 | 4 | .. toctree:: 5 | :maxdepth: 1 6 | 7 | simple_poll 8 | top_10 9 | categories 10 | favorite_composer 11 | count_bar 12 | -------------------------------------------------------------------------------- /do-index/cms/forms.py: -------------------------------------------------------------------------------- 1 | class LoginForm(forms.Form): 2 | email = forms.CharField(label=(u'Email'), max_length=30) 3 | password = forms.CharField(label=(u'Pass'), widget=forms.PasswordInput(render_value=False), max_length=30) 4 | -------------------------------------------------------------------------------- /docs/producers/examples/top_10.rst: -------------------------------------------------------------------------------- 1 | ****** 2 | Top 10 3 | ****** 4 | 5 | Let's say you have a survey with voting. If you want to display the just the top 10 submissions, you could do it this way. 6 | 7 | .. image:: images/Top10.png 8 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.d -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_each.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.d -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_poll.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__results.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__results.html.i -------------------------------------------------------------------------------- /src/pip-delete-this-directory.txt: -------------------------------------------------------------------------------- 1 | This file is placed here by pip to indicate the source was put 2 | here by pip. 3 | 4 | Once this package is successfully installed this source code will be 5 | deleted (unless you remove this file). 6 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.d -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_liberal_conservative_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_liberal_conservative_report.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_liberal_conservative_survey.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_liberal_conservative_survey.png.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/submission__for__map.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/submission__for__map.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__report.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__report.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/location__question__map.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/location__question__map.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__results__archive.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/survey__results__archive.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__questions.html.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/example__app/templates/crowdsourcing/embeded__survey__questions.html.i -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/top_10.rst: -------------------------------------------------------------------------------- 1 | ****** 2 | Top 10 3 | ****** 4 | 5 | Let's say you have a survey with voting. If you want to display the just the top 10 submissions, you could do it this way. 6 | 7 | .. image:: images/Top10.png 8 | -------------------------------------------------------------------------------- /src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one_report.png.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/do-index/master/src/crowdsourcing/.hg/store/data/docs/producers/examples/images/_favorite_composer_rate_one_report.png.i -------------------------------------------------------------------------------- /do-index/templates/crowdsourcing/base.html: -------------------------------------------------------------------------------- 1 | 2 |
3 || {% trans "Key" %} | 6 |{% trans "Value" %} | 7 |
|---|---|
| {{ key|escape }} | 13 |{{ value|escape }} | 14 |
| {% trans "Package" %} | 7 |{% trans "Version" %} | 8 |
|---|---|
| {{ package }} | 14 |{{ version }} | 15 |
| {% trans "Setting" %} | 6 |{% trans "Value" %} | 7 |
|---|---|
| {{ var.0 }} | 13 |{{ var.1|pprint }} |
14 |
{{ template_name }}{{ source }}
10 | {% else %}
11 | {{ source }}
12 | {% endif %}
13 | | {% trans "Resource" %} | 10 |{% trans "Value" %} | 11 |
|---|---|
| {{ key|escape }} | 17 |{{ value|escape }} | 18 |
11 | | {% trans "Signal" %} | 6 |{% trans 'Providing Args' %} | 7 |{% trans 'Receivers' %} | 8 |
|---|---|---|
| {{ name|escape }} | 14 |{{ signal.providing_args|join:", " }} | 15 |{{ receivers|join:", " }} | 16 |
{% trans 'Location' %}: {{ redirect_to }}
8 |
9 | {% trans "The Django Debug Toolbar has intercepted a redirect to the above URL for debug viewing purposes. You can click the above link to continue with the redirect as normal. If you'd like to disable this feature, set the DEBUG_TOOLBAR_CONFIG dictionary's key INTERCEPT_REDIRECTS to False." %}
10 |
{% firstof survey.description survey.tease %}
13 | 14 | {% if forms %} 15 | 21 | {% endif %} 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/download.rst: -------------------------------------------------------------------------------- 1 | .. _downloading-survey-submissions: 2 | 3 | ****************************** 4 | Downloading Survey Submissions 5 | ****************************** 6 | 7 | In the survey list in the Django admin you can click to download a csv, json, xml, or html file of all the submissions for that survey. This feature is part of a more powerful :ref:`API` for the more technically minded. If you are a logged in staff member, as you must be to see the Django admin, the :ref:`API` will return all submissions and all answers to questions, regardless of whether they are public. 8 | 9 | .. image:: images/DownloadSurveys.png 10 | -------------------------------------------------------------------------------- /do-index/cms/urls.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from django.conf.urls.defaults import patterns, url 4 | 5 | from .views import home, login, finalize, preliminary, getPreliminary, overview, status, update_ie, create_new_user 6 | 7 | urlpatterns = patterns( 8 | "", 9 | url(r'^$', home), 10 | url(r'^finalize/$', finalize), 11 | url(r'^preliminary/$', preliminary), 12 | url(r'^getPreliminary/$', getPreliminary), 13 | url(r'^login/$', login), 14 | url(r'^overview/$', overview), 15 | url(r'^status/$', status), 16 | url(r'^update-ie/$', update_ie), 17 | url(r'^create-user/$', create_new_user), 18 | ) 19 | -------------------------------------------------------------------------------- /docs/producers/examples/simple_poll.rst: -------------------------------------------------------------------------------- 1 | *********** 2 | Simple Poll 3 | *********** 4 | 5 | This simple poll has a single question and a pie chart display. Since the pie chart is the default display for a choice type question, we don't have to set up any survey reports. 6 | 7 | /admin/crowdsourcing/survey/add/ 8 | ================================ 9 | 10 | .. image:: images/SimplePollSurvey.png 11 | 12 | /crowdsourcing/my-simple-poll/ 13 | ============================== 14 | 15 | .. image:: images/SimplePollEntry.png 16 | 17 | /crowdsourcing/my-simple-poll/report/ 18 | ===================================== 19 | 20 | .. image:: images/SimplePollResults.png 21 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/templates/crowdsourcing/survey_detail.html: -------------------------------------------------------------------------------- 1 | {% load crowdsourcing %} 2 | 3 | 4 |{% firstof survey.description survey.tease %}
13 | 14 | {% if forms %} 15 | 21 | {% endif %} 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/example_app_requirements.txt: -------------------------------------------------------------------------------- 1 | # This pip requirements file contains the additional requirements that let you 2 | # run the example app. Make sure you also install crowdsourcing_requirements. 3 | # 4 | # You'll also need to install whatever apps you need to run your database 5 | # of choice. For postgresql, for example, you could use 6 | # psycopg2>=2.0.8 7 | 8 | # oembed allows video embedding. 9 | -e git+git://github.com/smulloni/python-oembed.git#egg=python-oembed 10 | 11 | # You'll of course need django-crowdsourcing if you want to run the example 12 | # app. 13 | -e hg+https://django-crowdsourcing.googlecode.com/hg/#egg=crowdsourcing 14 | -------------------------------------------------------------------------------- /src/crowdsourcing/docs/producers/examples/simple_poll.rst: -------------------------------------------------------------------------------- 1 | *********** 2 | Simple Poll 3 | *********** 4 | 5 | This simple poll has a single question and a pie chart display. Since the pie chart is the default display for a choice type question, we don't have to set up any survey reports. 6 | 7 | /admin/crowdsourcing/survey/add/ 8 | ================================ 9 | 10 | .. image:: images/SimplePollSurvey.png 11 | 12 | /crowdsourcing/my-simple-poll/ 13 | ============================== 14 | 15 | .. image:: images/SimplePollEntry.png 16 | 17 | /crowdsourcing/my-simple-poll/report/ 18 | ===================================== 19 | 20 | .. image:: images/SimplePollResults.png 21 | -------------------------------------------------------------------------------- /crowdsourcing/tasks.py: -------------------------------------------------------------------------------- 1 | try: 2 | from celery.task import PeriodicTask 3 | from celery.registry import tasks 4 | except ImportError: 5 | PeriodicTask = object 6 | tasks = None 7 | 8 | from datetime import timedelta 9 | import logging 10 | from .models import Answer 11 | from . import settings as local_settings 12 | 13 | logger = logging.getLogger('crowdsourcing.tasks') 14 | 15 | class SyncFlickr(PeriodicTask): 16 | run_every = timedelta(minutes=5) 17 | 18 | def run(self, *args, **kwargs): 19 | logger.debug("Syncing flickr") 20 | Answer.sync_to_flickr() 21 | 22 | if tasks and not local_settings.SYNCHRONOUS_FLICKR_UPLOAD: 23 | tasks.register(SyncFlickr) 24 | -------------------------------------------------------------------------------- /src/crowdsourcing/crowdsourcing/tasks.py: -------------------------------------------------------------------------------- 1 | try: 2 | from celery.task import PeriodicTask 3 | from celery.registry import tasks 4 | except ImportError: 5 | PeriodicTask = object 6 | tasks = None 7 | 8 | from datetime import timedelta 9 | import logging 10 | from .models import Answer 11 | from . import settings as local_settings 12 | 13 | logger = logging.getLogger('crowdsourcing.tasks') 14 | 15 | class SyncFlickr(PeriodicTask): 16 | run_every = timedelta(minutes=5) 17 | 18 | def run(self, *args, **kwargs): 19 | logger.debug("Syncing flickr") 20 | Answer.sync_to_flickr() 21 | 22 | if tasks and not local_settings.SYNCHRONOUS_FLICKR_UPLOAD: 23 | tasks.register(SyncFlickr) 24 | -------------------------------------------------------------------------------- /do-index/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | from django.core.management import execute_manager 6 | 7 | # to be able to import the crowdsourcing app 8 | sys.path.append(os.path.normpath(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) 9 | 10 | try: 11 | import settings # Assumed to be in the same directory. 12 | except ImportError: 13 | sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) 14 | sys.exit(1) 15 | 16 | if __name__ == "__main__": 17 | execute_manager(settings) 18 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/templates/header_tags.html: -------------------------------------------------------------------------------- 1 | {% load crowdsourcing %} 2 | 3 | 4 | 5 | 6 | 7 | {% jquery_and_google_api %} 8 | {% yahoo_api %} 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/crowdsourcing/example_app/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | from django.core.management import execute_manager 6 | 7 | # to be able to import the crowdsourcing app 8 | sys.path.append(os.path.normpath(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))) 9 | 10 | try: 11 | import settings # Assumed to be in the same directory. 12 | except ImportError: 13 | sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__) 14 | sys.exit(1) 15 | 16 | if __name__ == "__main__": 17 | execute_manager(settings) 18 | -------------------------------------------------------------------------------- /debug_toolbar/urls.py: -------------------------------------------------------------------------------- 1 | """ 2 | URLpatterns for the debug toolbar. 3 | 4 | These should not be loaded explicitly; the debug toolbar middleware will patch 5 | this into the urlconf for the request. 6 | """ 7 | from django.conf.urls.defaults import * 8 | 9 | _PREFIX = '__debug__' 10 | 11 | urlpatterns = patterns('', 12 | url(r'^%s/m/(.*)$' % _PREFIX, 'debug_toolbar.views.debug_media'), 13 | url(r'^%s/sql_select/$' % _PREFIX, 'debug_toolbar.views.sql_select', name='sql_select'), 14 | url(r'^%s/sql_explain/$' % _PREFIX, 'debug_toolbar.views.sql_explain', name='sql_explain'), 15 | url(r'^%s/sql_profile/$' % _PREFIX, 'debug_toolbar.views.sql_profile', name='sql_profile'), 16 | url(r'^%s/template_source/$' % _PREFIX, 'debug_toolbar.views.template_source', name='template_source'), 17 | ) 18 | -------------------------------------------------------------------------------- /crowdsourcing_requirements.txt: -------------------------------------------------------------------------------- 1 | # This pip requirements file contains all the basic requirements of 2 | # django-crowdsourcing. To run this file you will need to 3 | # $ easy_install pip 4 | # $ pip install -r crowdsourcing_requirements.txt 5 | 6 | # Python Image Library for processing image answers. 7 | PIL>=1.1.6 8 | 9 | # for image thumbnailing 10 | sorl-thumbnail==3.2.5 11 | 12 | # for ordering inlines 13 | -e git://github.com/jpwatts/django-positions.git#egg=django-positions 14 | 15 | # For geocoding addresses and address lookups 16 | geopy 17 | 18 | # For building the documentation. 19 | # Sphinx 20 | 21 | # For Flickr support. Crowdsourcing is fairly graceful if you don't install 22 | # flickrapi. 23 | flickrapi 24 | 25 | # For asynchronously synching Flickr. Sync synchronously by default. 26 | # carrot>=0.10.3 27 | # celery==1.0.2 28 | -------------------------------------------------------------------------------- /debug_toolbar/management/commands/debugsqlshell.py: -------------------------------------------------------------------------------- 1 | from datetime import datetime 2 | 3 | from django.db.backends import util 4 | from django.core.management.commands.shell import Command 5 | 6 | from debug_toolbar.utils import ms_from_timedelta, sqlparse 7 | 8 | 9 | class PrintQueryWrapper(util.CursorDebugWrapper): 10 | def execute(self, sql, params=()): 11 | starttime = datetime.now() 12 | try: 13 | return self.cursor.execute(sql, params) 14 | finally: 15 | raw_sql = self.db.ops.last_executed_query(self.cursor, sql, params) 16 | execution_time = datetime.now() - starttime 17 | print sqlparse.format(raw_sql, reindent=True), 18 | print ' [%.2fms]' % (ms_from_timedelta(execution_time),) 19 | print 20 | 21 | util.CursorDebugWrapper = PrintQueryWrapper 22 | -------------------------------------------------------------------------------- /debug_toolbar/templates/debug_toolbar/panels/logger.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% if records %} 3 || {% trans "Level" %} | 7 |{% trans "Time" %} | 8 |{% trans "Channel" %} | 9 |{% trans "Message" %} | 10 |{% trans "Location" %} | 11 |
|---|---|---|---|---|
| {{ record.level }} | 17 |{{ record.time|date:"h:i:s m/d/Y" }} | 18 |{{ record.channel|default:"-" }} | 19 |{{ record.message }} | 20 |{{ record.file }}:{{ record.line }} | 21 |
{% trans "No messages logged" %}.
27 | {% endif %} 28 | 29 | -------------------------------------------------------------------------------- /src/crowdsourcing/crowdsourcing_requirements.txt: -------------------------------------------------------------------------------- 1 | # This pip requirements file contains all the basic requirements of 2 | # django-crowdsourcing. To run this file you will need to 3 | # $ easy_install pip 4 | # $ pip install -r crowdsourcing_requirements.txt 5 | 6 | # Python Image Library for processing image answers. 7 | PIL>=1.1.6 8 | 9 | # for image thumbnailing 10 | sorl-thumbnail==3.2.5 11 | 12 | # for ordering inlines 13 | -e git://github.com/jpwatts/django-positions.git#egg=django-positions 14 | 15 | # For geocoding addresses and address lookups 16 | geopy 17 | 18 | # For building the documentation. 19 | # Sphinx 20 | 21 | # For Flickr support. Crowdsourcing is fairly graceful if you don't install 22 | # flickrapi. 23 | flickrapi 24 | 25 | # For asynchronously synching Flickr. Sync synchronously by default. 26 | # carrot>=0.10.3 27 | # celery==1.0.2 28 | -------------------------------------------------------------------------------- /crowdsourcing/jsonutils.py: -------------------------------------------------------------------------------- 1 | from datetime import datetime, date, time 2 | 3 | import json 4 | 5 | 6 | FORMATS = {datetime: "%Y-%m-%dT%H:%M:%S", 7 | date: '%Y-%m-%d', 8 | time: '%H:%M:%S'} 9 | 10 | 11 | def dump(obj, fp, **kw): 12 | kw.setdefault('cls', Encoder) 13 | return json.dump(obj, fp, **kw) 14 | 15 | 16 | def dumps(obj, **kw): 17 | kw.setdefault('cls', Encoder) 18 | return json.dumps(obj, **kw) 19 | 20 | 21 | def datetime_to_string(dt): 22 | for k in FORMATS: 23 | if isinstance(dt, k): 24 | return dt.strftime(FORMATS[k]) 25 | 26 | class Encoder(json.JSONEncoder): 27 | def default(self, obj): 28 | if hasattr(obj, 'to_jsondata'): 29 | return obj.to_jsondata() 30 | dt_format = datetime_to_string(obj) 31 | return dt_format if dt_format else super(Encoder, self).default(obj) 32 | -------------------------------------------------------------------------------- /debug_toolbar/panels/settings_vars.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | from django.views.debug import get_safe_settings 3 | from django.utils.translation import ugettext_lazy as _ 4 | from debug_toolbar.panels import DebugPanel 5 | 6 | 7 | class SettingsVarsDebugPanel(DebugPanel): 8 | """ 9 | A panel to display all variables in django.conf.settings 10 | """ 11 | name = 'SettingsVars' 12 | template = 'debug_toolbar/panels/settings_vars.html' 13 | has_content = True 14 | 15 | def nav_title(self): 16 | return _('Settings') 17 | 18 | def title(self): 19 | return _('Settings from%s') % settings.SETTINGS_MODULE
20 |
21 | def url(self):
22 | return ''
23 |
24 | def process_response(self, request, response):
25 | self.record_stats({
26 | 'settings': get_safe_settings(),
27 | })
28 |
--------------------------------------------------------------------------------
/do-index/urls.py:
--------------------------------------------------------------------------------
1 | from django.conf import settings
2 | from django.conf.urls.defaults import *
3 | from django.contrib import admin
4 | admin.autodiscover()
5 |
6 | urlpatterns = patterns('',
7 | ('', include('cms.urls')),
8 | (r'^crowdsourcing/', include('crowdsourcing.urls')),
9 | # Uncomment the admin/doc line below and add 'django.contrib.admindocs'
10 | # to INSTALLED_APPS to enable admin documentation:
11 | # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
12 | (r'^admin/', include(admin.site.urls)),
13 | (r'^media/(?P| {{ h|upper }} | 21 | {% endfor %} 22 |
|---|
| {{ column|escape }} | 29 | {% endfor %} 30 |
| {{ h|upper }} | 22 | {% endfor %} 23 |
|---|
| {{ column|escape }} | 30 | {% endfor %} 31 |
{% trans "Empty set" %}
37 | {% endif %} 38 || {{ h|upper }} | 22 | {% endfor %} 23 |
|---|
| {{ column|escape }} | 30 | {% endfor %} 31 |
| {% trans "Total Calls" %} | 15 |{{ cache_calls }} | 16 |{% trans "Total Time" %} | 17 |{{ cache_time }}ms | 18 |{% trans "Hits" %} | 19 |{{ cache.hits }} | 20 |{% trans "Misses" %} | 21 |{{ cache.misses }} | 22 |
|---|---|---|---|---|---|---|---|
| gets | 25 |{{ cache.gets }} | 26 |sets | 27 |{{ cache.sets }} | 28 |deletes | 29 |{{ cache.deletes }} | 30 |get_many | 31 |{{ cache.get_many }} | 32 |
| {% trans "Time" %} (ms) | 40 |{% trans "Type" %} | 41 |{% trans "Parameters" %} | 42 |{% trans "Function" %} | 43 |
|---|---|---|---|
| {{ query.0|floatformat:"4" }} | 49 |{{ query.1|escape }} | 50 |{{ query.2|escape }} | 51 |{{ query.3.2|escape }}: {{ query.3.3.0|escape }} | 52 |
| {% trans "Call" %} | 7 |{% trans "CumTime" %} | 8 |{% trans "Per" %} | 9 |{% trans "TotTime" %} | 10 |{% trans "Per" %} | 11 |{% trans "Count" %} | 12 |
|---|---|---|---|---|---|
|
19 |
20 | {% if call.has_subfuncs %}
21 | -
22 | {% else %}
23 |
24 | {% endif %}
25 | {{ call.func_std_string }}
26 |
27 | |
28 | {{ call.cumtime|floatformat:3 }} | 29 |{{ call.cumtime_per_call|floatformat:3 }} | 30 |{{ call.tottime|floatformat:3 }} | 31 |{{ call.tottime_per_call|floatformat:3 }} | 32 |{{ call.count }} | 33 |
37 | {{ call.line_stats_text }} |
39 | |||||
None
11 | {% endif %} 12 | 13 |{% trans 'None' %}
29 | {% endif %} 30 | 31 |{% trans 'None' %}
44 | {% endif %} 45 | -------------------------------------------------------------------------------- /do-index/templates/crowdsourcing/embeded_survey_report.html: -------------------------------------------------------------------------------- 1 | {% load crowdsourcing %} 2 | 3 |{{ report.get_summary }}
5 | 6 | {% if thanks %} 7 |Thanks for your submission.
8 | {% endif %} 9 | 10 | {% if filters %} 11 |{{ report.get_summary }}
5 | 6 | {% if thanks %} 7 |Thanks for your submission.
8 | {% endif %} 9 | 10 | {% if filters %} 11 |
28 | Dies ist die Umfrageseite von der [do:index] Befragung 2013.
29 | Sie können sich als eingeladene Stadt oder Gemeinde mit den Ihnen zugeschickten Anmeldedaten anmelden.
30 |
31 | Einloggen und Umfrage beginnen! 32 |
33 | Weitere Infos zu [do:index] 34 | 35 | 38 | 54 | {% endif %} 55 |
17 |
18 |
19 |