├── .coveragerc ├── .gitattributes ├── .gitignore ├── .lintrc ├── .profile.d └── remote-repo-setup-ssh-key.sh ├── .travis.yml ├── CONTRIBUTING.md ├── CREDITS ├── LAYOUT ├── LICENSE ├── Procfile ├── README.rst ├── docs ├── advanced │ ├── adding_new_bug_tracker_git.rst │ ├── advanced_installation.rst │ ├── advanced_testing.rst │ ├── deployment.rst │ ├── developer_notes.rst │ ├── heroku.rst │ ├── index.rst │ ├── layout_source_code.rst │ ├── maintenance.rst │ ├── styleguide.rst │ └── working_with_git.rst ├── community │ ├── about_our_community.rst │ ├── collaboration_tools.rst │ ├── contact.rst │ ├── domain_team.rst │ ├── index.rst │ ├── login_team.rst │ ├── login_team_agreement.rst │ ├── quotes_db.rst │ ├── sprints.rst │ ├── thanks.rst │ ├── ticket_tracking.rst │ └── web_analytics_team.rst ├── conf.py ├── getting_started │ ├── documentation.rst │ ├── getting_started.rst │ ├── handling_contributions.rst │ ├── index.rst │ ├── installation.rst │ ├── key_features_openhatch_site.rst │ ├── project_overview.rst │ └── testing_basics.rst ├── index.rst ├── internals │ ├── api.rst │ ├── backup.rst │ ├── continuous_integration.rst │ ├── emergency_operations.rst │ ├── front_end_style_guide.rst │ ├── index.rst │ ├── issue_tracking.rst │ ├── monitoring.rst │ ├── pull_request_linting.rst │ ├── security.rst │ └── wordpress.rst └── tutorials │ ├── add_user_project.rst │ ├── adding_new_bug_tracker_web.rst │ ├── index.rst │ └── writing_missions.rst ├── downloads └── .gitignore ├── manage.py ├── mysite ├── .git-hooks │ └── clone_and_test.sh ├── .gitignore ├── __init__.py ├── _profiling.py ├── account │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_raffi_add_invitation_request_model.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── account │ │ │ ├── change_password.html │ │ │ ├── edit_contact_info.html │ │ │ ├── edit_name.html │ │ │ ├── edit_photo.html │ │ │ ├── invite_someone.html │ │ │ ├── login.html │ │ │ ├── login_old.html │ │ │ ├── login_openid.html │ │ │ ├── openid_etc_login.html │ │ │ ├── password_reset.html │ │ │ ├── password_reset_complete.html │ │ │ ├── password_reset_confirm.html │ │ │ ├── password_reset_done.html │ │ │ ├── password_reset_email.html │ │ │ ├── set_location.html │ │ │ ├── settings.html │ │ │ ├── settings_tab.html │ │ │ ├── signup.html │ │ │ └── widget.html │ │ ├── authopenid │ │ │ ├── associate_email.txt │ │ │ ├── associate_email_subject.txt │ │ │ ├── complete.html │ │ │ └── signin.html │ │ ├── invitation │ │ │ ├── invitation_email.txt │ │ │ └── invitation_email_subject.txt │ │ └── vanilla-proxy-connect-sso.txt │ ├── tests.py │ ├── view_helpers.py │ └── views.py ├── base │ ├── __init__.py │ ├── assets.py │ ├── decorators.py │ ├── depends.py │ ├── disk_cache.py │ ├── feeds.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── nagios.py │ │ │ └── remote_command_check.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_timestamp_column_not_auto_add.py │ │ ├── 0003_timestamp_hash_key.py │ │ ├── 0004_shrink_timestamp_text_column.py │ │ └── __init__.py │ ├── models.py │ ├── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base │ │ │ ├── answer-in-feed.html │ │ │ ├── append_ourselves.js │ │ │ ├── base.html │ │ │ ├── donate.html │ │ │ ├── events.html │ │ │ ├── guide.html │ │ │ ├── index.html │ │ │ ├── nav.html │ │ │ ├── one_column.html │ │ │ ├── recommended_bugs_content.html │ │ │ ├── shirts.html │ │ │ ├── sponsors.html │ │ │ ├── two_columns.html │ │ │ ├── two_columns_fat_skinny.html │ │ │ ├── wannahelp-in-feed.html │ │ │ └── wordpress_index.html │ │ ├── blog_widget.html │ │ ├── bug_search_facet_value_in_summary.html │ │ ├── contribute_widget.html │ │ ├── contributors.html │ │ ├── email__list_of_people.html │ │ ├── email_re_projects.html │ │ ├── expandable_list.html │ │ ├── facet_option.html │ │ ├── feed_widget.html │ │ ├── feeds │ │ │ ├── activity_description.html │ │ │ ├── activity_title.html │ │ │ ├── recbugs_description.html │ │ │ └── recbugs_title.html │ │ ├── landing_for_documenters.html │ │ ├── meta.html │ │ ├── mission.html │ │ ├── module-deprecated.html │ │ ├── more_facet_options.html │ │ ├── name.html │ │ ├── nextsteps4helpers.html │ │ ├── outreach.html │ │ ├── people_in_project_summary.html │ │ ├── robots_for_dev_env.txt │ │ ├── robots_for_live_site.txt │ │ ├── tag_list.html │ │ ├── three_columns.html │ │ └── unsubscribe.html │ ├── templatetags │ │ ├── __init__.py │ │ └── base_extras.py │ ├── tests.py │ ├── unicode_sanity.py │ ├── view_helpers.py │ └── views.py ├── bugsets │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_basic_bugset.py │ │ ├── 0002_annotated_bugs.py │ │ ├── 0003_updated_models.py │ │ ├── 0004_add_project.py │ │ ├── 0005_default_assignee.py │ │ ├── 0006_skillset_to_text.py │ │ ├── 0007_remove_skills.py │ │ └── __init__.py │ ├── models.py │ ├── perms.py │ ├── templates │ │ ├── create_index.html │ │ ├── edit_index.html │ │ ├── list_index.html │ │ ├── main_index.html │ │ ├── navigation.html │ │ ├── result.html │ │ └── results_widget.html │ ├── tests.py │ └── views.py ├── config-files │ ├── crontab.linode │ ├── crontab.linode2 │ └── schema.xml ├── customs │ ├── README │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── core_bugimporters.py │ ├── feed.py │ ├── fixtures │ │ └── miro-project.json │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── customs_daily_tasks.py │ │ │ ├── customs_debugger.py │ │ │ ├── export_bug_trackers.py │ │ │ ├── import_bugimporter_data.py │ │ │ └── snapshot_public_data.py │ ├── mechanize_helpers.py │ ├── migrations │ │ ├── 0001_webresponse.py │ │ ├── 0002_add_roundup_bug_tracker_model.py │ │ ├── 0003_remove_datetime_fields.py │ │ ├── 0004_add_newcomers_field_toroundupbugtracker.py │ │ ├── 0005_roundupbugtracker_csv_keyword.py │ │ ├── 0006_fix_fieldname_for_csv_keyword.py │ │ ├── 0007_roundupbugtracker_name_and_components.py │ │ ├── 0008_add_my_bugs_concern_just_documentation_to_roundup_tracker.py │ │ ├── 0009_add_cia_model.py │ │ ├── 0010_add_columns_allowing_generating_two_csvs.py │ │ ├── 0011_remove_unnecessary_roundup_columns.py │ │ ├── 0012_add_bugzilla_tracker_models.py │ │ ├── 0013_fix_fieldname_in_bugzillaurl.py │ │ ├── 0014_add_description_to_bugzillaurl.py │ │ ├── 0015_add_google_tracker_models.py │ │ ├── 0016_lengthen_bugzilla_url_field.py │ │ ├── 0017_support_old_trac_versions.py │ │ ├── 0018_store_tracbugtimes_latest_timeline_status.py │ │ ├── 0019_rename_project_name_to_tracker_name.py │ │ ├── 0020_auto__add_bugzillaquerymodel__add_googletrackermodel__add_bugzillatrac.py │ │ ├── 0021_copy_tracker_model_data_across.py │ │ ├── 0022_auto__del_googletracker__del_bugzillaurl__del_bugzillatracker__del_goo.py │ │ ├── 0023_auto__add_tractrackermodel__add_tracquerymodel.py │ │ ├── 0024_auto__add_field_bugzillaquerymodel_query_type.py │ │ ├── 0025_copy_bugzilla_query_type_across.py │ │ ├── 0026_auto__chg_field_tractrackermodel_documentation_type.py │ │ ├── 0027_auto__add_rounduptrackermodel__add_roundupquerymodel.py │ │ ├── 0028_auto__add_field_trackermodel_created_for_project.py │ │ ├── 0029_auto__add_field_trackermodel_custom_parser.py │ │ ├── 0030_auto__add_launchpadquerymodel__add_launchpadtrackermodel.py │ │ ├── 0031_auto__del_field_launchpadquerymodel_url__del_field_launchpadquerymodel.py │ │ ├── 0032_auto__add_field_launchpadtrackermodel_bitesized_tag__add_field_launchp.py │ │ ├── 0033_auto__add_githubtrackermodel__add_githubquerymodel.py │ │ ├── 0034_auto__chg_field_githubtrackermodel_github_repo__del_unique_githubtrack.py │ │ ├── 0035_auto__add_jiratrackermodel__add_jiraquerymodel.py │ │ ├── 0036_auto__del_field_jiraquerymodel_url.py │ │ ├── 0037_auto__del_recentmessagefromcia.py │ │ ├── 0038_auto__add_tigrisquerymodel__add_tigristrackermodel.py │ │ ├── 0039_auto__add_field_tigrisquerymodel_startid__add_field_tigrisquerymodel_d.py │ │ └── __init__.py │ ├── models.py │ ├── ohloh.py │ ├── templates │ │ └── customs │ │ │ ├── add_tracker.html │ │ │ ├── add_tracker_url.html │ │ │ ├── delete_tracker.html │ │ │ ├── delete_tracker_url.html │ │ │ ├── edit_tracker.html │ │ │ ├── edit_tracker_url.html │ │ │ ├── form-row.html │ │ │ ├── list_trackers.html │ │ │ ├── main.html │ │ │ └── tracker_history.html │ ├── tests.py │ └── views.py ├── deploy.fcgi ├── deployment_settings.py ├── manage.py ├── missions-userdata │ ├── git │ │ └── README │ └── svn │ │ └── README ├── missions │ ├── __init__.py │ ├── base │ │ ├── __init__.py │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── diffpatch │ │ ├── __init__.py │ │ ├── data │ │ │ ├── nutty-pancake.txt │ │ │ ├── nutty-pancake_result.txt │ │ │ ├── oven-pancake.txt │ │ │ ├── oven-pancake_result.txt │ │ │ ├── recipes.more-garlic │ │ │ │ ├── MelanzaneParmigiana.txt │ │ │ │ ├── README │ │ │ │ └── Skillet.txt │ │ │ └── recipes │ │ │ │ ├── MelanzaneParmigiana.txt │ │ │ │ ├── README │ │ │ │ └── Skillet.txt │ │ ├── forms.py │ │ ├── test_data │ │ │ ├── copy_paste_error_pancake_diff.txt │ │ │ ├── leading_dot_slash_diff_1.txt │ │ │ ├── leading_dot_slash_diff_2.txt │ │ │ └── leading_dot_slash_diff_3.txt │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── fixtures │ │ └── initial_data.json │ ├── git │ │ ├── __init__.py │ │ ├── data │ │ │ ├── hello.patch │ │ │ ├── hello.py │ │ │ └── swedish-patch │ │ ├── forms.py │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── irc │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── ircmissionbot.py │ │ └── views.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── git_commit_if_ok.py │ │ │ ├── git_exists.py │ │ │ ├── git_reset.py │ │ │ ├── irc_missionbot.py │ │ │ ├── svn_exists.py │ │ │ ├── svn_precommit.py │ │ │ └── svn_reset.py │ ├── migrations │ │ ├── 0001_step_completion_data.py │ │ ├── 0002_add_tar_extract.py │ │ ├── 0003_add_diffpatch_patchsingle.py │ │ ├── 0004_add_diffpatch_diffsingle.py │ │ ├── 0005_add_diffpatch_diffrecursive.py │ │ ├── 0006_add_diffpatch_patchrecursive.py │ │ ├── 0007_add_svn_checkout.py │ │ ├── 0008_add_svn_diff.py │ │ ├── 0009_add_svn_commit.py │ │ ├── 0010_auto__add_field_stepcompletion_is_currently_completed.py │ │ ├── 0011_auto__add_field_stepcompletion_created_date__add_field_stepcompletion_.py │ │ ├── 0012_auto__add_ircmissionsession.py │ │ └── __init__.py │ ├── models.py │ ├── pipvirtualenv │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── setup │ │ ├── __init__.py │ │ └── views.py │ ├── shell │ │ ├── __init__.py │ │ ├── tests.py │ │ └── views.py │ ├── svn │ │ ├── __init__.py │ │ ├── data │ │ │ ├── README-new-for-svn-commit │ │ │ ├── README-new-for-svn-diff │ │ │ └── svn-initial.svndump │ │ ├── forms.py │ │ ├── testdata │ │ │ └── svn-diff-without-spaces-on-blank-context-lines.patch │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── tar │ │ ├── __init__.py │ │ ├── data │ │ │ └── ghello-0.4 │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ └── ghello.c │ │ ├── forms.py │ │ ├── testdata │ │ │ ├── bad-1.tar.gz │ │ │ ├── bad-2.tar │ │ │ ├── bad-3.tar.gz │ │ │ ├── bad-4.tar.gz │ │ │ ├── bad-5.tar.gz │ │ │ └── good.tar.gz │ │ ├── tests.py │ │ ├── view_helpers.py │ │ └── views.py │ ├── templates │ │ └── missions │ │ │ ├── diffpatch │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── diff_patch.html │ │ │ ├── hints.html │ │ │ ├── recursive_diff.html │ │ │ ├── recursive_patch.html │ │ │ ├── single_file_diff.html │ │ │ └── single_file_patch.html │ │ │ ├── git │ │ │ ├── about_git.html │ │ │ ├── base.html │ │ │ ├── checkout.html │ │ │ ├── diff.html │ │ │ ├── main_page.html │ │ │ ├── rebase.html │ │ │ └── reference.html │ │ │ ├── irc │ │ │ ├── base.html │ │ │ └── irc.html │ │ │ ├── main.html │ │ │ ├── mission_base.html │ │ │ ├── mission_card.html │ │ │ ├── mission_info.html │ │ │ ├── pipvirtualenv │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── installing_packages.html │ │ │ ├── learning_more.html │ │ │ ├── quick_reference.html │ │ │ ├── removing_packages.html │ │ │ └── setup.html │ │ │ ├── shell │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── cd.html │ │ │ ├── cp_mv.html │ │ │ ├── ls.html │ │ │ ├── mkdir_rm.html │ │ │ ├── resources.html │ │ │ └── structure.html │ │ │ ├── svn │ │ │ ├── about_svn.html │ │ │ ├── base.html │ │ │ ├── checkout.html │ │ │ ├── commit.html │ │ │ ├── diff.html │ │ │ └── main_page.html │ │ │ ├── tar │ │ │ ├── about.html │ │ │ ├── base.html │ │ │ ├── creating.html │ │ │ ├── hints.html │ │ │ └── unpacking.html │ │ │ └── windows-setup │ │ │ ├── about.html │ │ │ ├── alternatives.html │ │ │ ├── base.html │ │ │ ├── install-git-bash.html │ │ │ ├── navigating.html │ │ │ ├── open-prompt.html │ │ │ ├── quick-reference.html │ │ │ └── understand-prompt.html │ └── tests.py ├── my.cnf ├── profile │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── fixtures │ │ ├── cchost-data-imported-from-ohloh.json │ │ ├── person-barry.json │ │ ├── person-paulproteus-with-blank-photo.json │ │ ├── person-paulproteus.json │ │ ├── tags.json │ │ ├── trenton-fixtures.json │ │ ├── user-barry.json │ │ └── user-paulproteus.json │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── email_address_from_session_id.py │ │ │ ├── geocode_people_with_location_but_no_coordinates.py │ │ │ ├── profile_daily_tasks.py │ │ │ ├── profile_hourly_tasks.py │ │ │ ├── profile_ten_minutely_tasks.py │ │ │ └── send_emails.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_extend_person.py │ │ ├── 0003_allow_last_polled_blank.py │ │ ├── 0004_allow_last_polled_blank.py │ │ ├── 0005_add_tag_tagtypes_linkp2prel_to_tag.py │ │ ├── 0006_rename_rel_to_project_exp.py │ │ ├── 0007_tag_type_remove_s.py │ │ ├── 0008_add_name_to_tag_type.py │ │ ├── 0009_add_name_to_tag_type_correct_hopefully.py │ │ ├── 0010_remove_time_start_stop_from_project_exp.py │ │ ├── 0011_permit_nulls_in_last_touched_and_rename_tag_type.py │ │ ├── 0012_remove_unneeded_fields.py │ │ ├── 0013_rafpaf_rename_tagtype_field_text_to_name.py │ │ ├── 0014_asheesh_add_interested_in_field_to_person.py │ │ ├── 0015_asheesh_make_project_name_unique.py │ │ ├── 0016_asheesh_make_project_and_project_name_unique_in_projectexp.py │ │ ├── 0017_asheesh_make_projexp_and_tag_unique_for_link.py │ │ ├── 0018_ashesh_add_favorite_field_to_project_exp.py │ │ ├── 0019_ashesh_add_favorite_field_to_tag.py │ │ ├── 0020_asheesh_add_sourceforge_models.py │ │ ├── 0021_raffi_remove_uniqueness_constraint_on_project_exp.py │ │ ├── 0022_asheesh_add_person_tag_link.py │ │ ├── 0023_asheesh_add_person_tag_link_person_column.py │ │ ├── 0024_asheesh_add_person_ohloh_grab_completed.py │ │ ├── 0025_asheesh_add_person_name_grabbed_from_ohloh.py │ │ ├── 0026_asheesh_add_name_to_tagtype_for_real.py │ │ ├── 0026_asheesh_profile_missing_fields.py │ │ ├── 0027_add_user_column_to_person.py │ │ ├── 0028_copy_person_username_to_user_username.py │ │ ├── 0029_remove_dead_user_related_columns_from_person_model.py │ │ ├── 0030_remove_dead_columns_from_profile_person.py │ │ ├── 0031_remove_dead_things.py │ │ ├── 0032_put_the_last_polled_field_back_into_person.py │ │ ├── 0033_ditch_favoriting_for_projectexps.py │ │ ├── 0034_create_data_import_attempt_model.py │ │ ├── 0035_remove_person_poll_on_next_view.py │ │ ├── 0036_make_person_nullable.py │ │ ├── 0037_asheesh_give_old_users_prepassword_users_a_password.py │ │ ├── 0038_asheesh_add_show_email_preference_to_person.py │ │ ├── 0039_asheesh_add_profile_photo.py │ │ ├── 0040_asheesh_photo_defaults_to_sufjan.py │ │ ├── 0041_asheesh_change_default_profile_photo.py │ │ ├── 0042_asheesh_make_all_existing_dias_stale.py │ │ ├── 0043_change_site_domain.py │ │ ├── 0044_change_site_name.py │ │ ├── 0045_remove_static_slash_static_photos.py │ │ ├── 0046_add_modified_flag_so_we_can_detect_projectexps_modified_post_ohloh_import.py │ │ ├── 0047_remove_stale_from_dia.py │ │ ├── 0048_new_models_for_importer.py │ │ ├── 0049_add_year_started_field_to_citation.py │ │ ├── 0050_add_url_to_citation.py │ │ ├── 0051_add_is_deleted_to_portfolio_entry.py │ │ ├── 0052_add_old_summary_field_to_citation.py │ │ ├── 0053_switch_project_exp_to_citations_and_portfolio_entry.py │ │ ├── 0054_add_date_created_field_to_dia_model.py │ │ ├── 0055_portfolio_entry__is_published.py │ │ ├── 0056_photo_thumbnails.py │ │ ├── 0057_generate_photo_thumbnails.py │ │ ├── 0058_web_response_and_citation_ignoring.py │ │ ├── 0059_delete_blank_tags.py │ │ ├── 0060_remove_prefix_field_from_tagtype.py │ │ ├── 0061_add_location_display_name_field.py │ │ ├── 0062_location_display_name_can_be_empty.py │ │ ├── 0063_location_display_name_can_be_blank.py │ │ ├── 0064_person_location_flags.py │ │ ├── 0065_profile_now_has_bio.py │ │ ├── 0068_add_homepage_url_models.py │ │ ├── 0069_fix_wrong_encoded_data_in_location_display_name.py │ │ ├── 0070_delete_all_unconfirmed_locations.py │ │ ├── 0071_lengthen_tag_text_max_length.py │ │ ├── 0072_for_data_imported_from_launchpad_convert_debian_to_debian_gnu_linux.py │ │ ├── 0073_change_seeking_to_can_pitch_in.py │ │ ├── 0074_person_has_contact_blurb.py │ │ ├── 0075_Forwarder.py │ │ ├── 0076_ditch_seeking_tag_from_database.py │ │ ├── 0076_profile_photo_thumbnail_30px_wide.py │ │ ├── 0077_create_profile_photo_thumbnails_30px_wide.py │ │ ├── 0077_forwarders_have_stops_being_listed_on_date.py │ │ ├── 0078_add_expand_next_steps_for_helpers_field.py │ │ ├── 0079_smaller_thumbnail.py │ │ ├── 0080_pfentry_sort_order.py │ │ ├── 0081_portfolioentry_is_archived.py │ │ ├── 0082_portfolioentry_use_my_description.py │ │ ├── 0083_email_me_weekly_re_projects.py │ │ ├── 0084_person__email_me_weekly_re_projects.py │ │ ├── 0085_unsubscribe_token.py │ │ ├── 0086_negate_sort_order.py │ │ ├── 0087_ditch_unused_column.py │ │ ├── 0088_add_field_portfolioentry_receive_maintainer_updates.py │ │ ├── 0089_auto__add_field_person_irc_nick.py │ │ ├── 0090_add_location_table.py │ │ ├── 0091_ensure_inaccessible_island_created.py │ │ ├── 0092_remove_location_model.py │ │ ├── 0093_add_lat_and_long_to_profile.py │ │ ├── 0094_auto__add_field_person_email_me_re_projects.py │ │ ├── 0095_email_me_re_projects.py │ │ ├── 0096_auto__del_field_person_email_me_weekly_re_projects.py │ │ ├── 0097_auto__chg_field_unsubscribetoken_modified_date__del_field_citation_dis.py │ │ ├── 0098_auto__del_dataimportattempt__del_field_citation_data_import_attempt__d.py │ │ ├── 0098_auto__del_sourceforgeperson__del_sourceforgeproject__del_link_sf_proj_.py │ │ └── __init__.py │ ├── models.py │ ├── tasks │ │ └── __init__.py │ ├── templates │ │ └── profile │ │ │ ├── base_profile.html │ │ │ ├── contributors.html │ │ │ ├── delete_user.html │ │ │ ├── header.html │ │ │ ├── importer.html │ │ │ ├── info.html │ │ │ ├── info_wrapper.html │ │ │ ├── main.html │ │ │ ├── people-who.html │ │ │ ├── people.html │ │ │ ├── person-summary-li.html │ │ │ ├── person_small.html │ │ │ ├── portfolio │ │ │ ├── citation_element.html │ │ │ ├── citation_form.html │ │ │ ├── citation_summary.html │ │ │ └── portfolio_entry_element.html │ │ │ ├── search_people.html │ │ │ ├── suggestion_li.html │ │ │ ├── widget-test.html │ │ │ └── widget.html │ ├── templatetags │ │ ├── __init__.py │ │ └── profile_extras.py │ ├── tests.py │ ├── view_helpers.py │ └── views.py ├── project │ ├── __init__.py │ ├── forms.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tasks │ │ └── __init__.py │ ├── templates │ │ ├── edit_project.html │ │ ├── project │ │ │ ├── button_as_widget.html │ │ │ ├── byline.html │ │ │ ├── forms │ │ │ │ ├── bug.html │ │ │ │ ├── paragraph.html │ │ │ │ └── suggest_questions.html │ │ │ ├── mentor_summary.html │ │ │ ├── project-wanna-help-box.html │ │ │ ├── project.html │ │ │ ├── project_list_item.html │ │ │ ├── projects.html │ │ │ ├── suggest_question.html │ │ │ └── voting_controls.html │ │ └── question_text.html │ ├── tests.py │ ├── urls.py │ ├── view_helpers.py │ └── views.py ├── scripts │ ├── add_webkit_border_radii.sh │ ├── clean_data_for_academic_analysis.py │ ├── delete-branches-merged-into-HEAD │ ├── delete_raffis │ ├── deploy │ ├── deploy_myself.sh │ ├── emails │ │ └── .gitignore │ ├── fetch_db │ ├── fetch_profile_icons │ ├── fetch_project_icons │ ├── fix_duplicate_citations.py │ ├── flake8ify │ ├── get_data_and_images │ ├── git-home │ ├── oh_mysql │ ├── oh_mysqldump │ ├── populate_languages_by_hand.py │ ├── remove_numbers_from_locations.py │ ├── run_profile_importer.sh │ ├── run_with_lock.sh │ ├── seeking2pitchin.py │ ├── snapshot_then_push.sh │ ├── take-ownership-of-repo │ ├── test_all_apps_except_customs │ ├── test_all_apps_except_customs_sqlite │ ├── test_all_apps_sqlite │ ├── testsettings.py │ └── vhost_effort.py ├── search │ ├── __init__.py │ ├── admin.py │ ├── fixtures │ │ ├── bugs-for-two-projects.json │ │ └── short_list_of_bugs.json │ ├── forms.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ └── __init__.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_milestone_b_data.py │ │ ├── 0003_add_date_reported.py │ │ ├── 0004_make_dates_datetimes.py │ │ ├── 0005_add_original_bug_link.py │ │ ├── 0006_add_fields_to_bug.py │ │ ├── 0007_asheesh_add_canonical_bug_link_for_real.py │ │ ├── 0008_raffi_add_good_for_newcomers.py │ │ ├── 0009_add_icon_imagefield_to_project.py │ │ ├── 0010_add_badge_size_icon_column_to_project.py │ │ ├── 0011_populate_icons_for_existing_projects.py │ │ ├── 0012_search_result_sized_project_icons.py │ │ ├── 0013_generate_search_result_sized_project_icons.py │ │ ├── 0014_populate_icons_for_existing_projects_LATER.py │ │ ├── 0015_generate_search_result_sized_project_icons_LATER.py │ │ ├── 0016_add_looks_closed_column.py │ │ ├── 0017_for_miro_bugs_mark_resolved_ones_as_closed.py │ │ ├── 0018_bug_bite_size_tag_name.py │ │ ├── 0018_make_people_involved_column_nullable.py │ │ ├── 0018_permit_null_in_bug_submitter_real_name.py │ │ ├── 0019_two_new_project_icon_fields.py │ │ ├── 0020_remove_project_icon_field.py │ │ ├── 0021_remove_icon_for_profile_since_we_realized_we_do_not_need_it.py │ │ ├── 0022_add_project_icon_for_profile.py │ │ ├── 0023_re_run_icon_scaling.py │ │ ├── 0024_hit_count_cache.py │ │ ├── 0025_bug_concerns_just_documentation.py │ │ ├── 0026_for_when_logos_contain_names.py │ │ ├── 0027_change_name_of_python_the_project.py │ │ ├── 0028_change_name_of_python_the_project_back.py │ │ ├── 0029_change_name_of_gnome_general.py │ │ ├── 0030_rename_website_project_to_gnome_website.py │ │ ├── 0031_cache_contributor_count.py │ │ ├── 0032_fill_contributor_count_cache.py │ │ ├── 0033_create_as_appears_in_distro_column.py │ │ ├── 0033_search_lots_of_stuff.py │ │ ├── 0034_answer_points_to_project_and_so_does_question.py │ │ ├── 0034_default_last_polled_date.py │ │ ├── 0035_questions_know_if_they_are_bug_style.py │ │ ├── 0036_questions_with_bugs_as_answers.py │ │ ├── 0037_questions_hold_notes_and_details_labels.py │ │ ├── 0038_questions_store_less_info_about_themselves.py │ │ ├── 0039_bug_answer_no_longer_has_url_field.py │ │ ├── 0040_project_involvement_question_key_string.py │ │ ├── 0041_add_created_and_modified_timestamps_to_all_models.py │ │ ├── 0042_merge_bug_answer_into_answer.py │ │ ├── 0043_allow_null_answer_titles.py │ │ ├── 0044_answer_can_have_non_logged_in_author.py │ │ ├── 0044_bugalert.py │ │ ├── 0045_bugalert_anonymous_users_allowed.py │ │ ├── 0046_bugalert_stores_whole_query_string.py │ │ ├── 0047_project_icons_mark_as_wrong.py │ │ ├── 0048_wrongicon_objects.py │ │ ├── 0049_make_project_foreign_key_in_wrong_icon_model_not_allow_null.py │ │ ├── 0050_remove_author_name.py │ │ ├── 0051_projects_know_which_people_wanna_help_them.py │ │ ├── 0052_re_run_icon_scaling.py │ │ ├── 0053_make_project_name_really_unique.py │ │ ├── 0054_add_table_epoch_table.py │ │ ├── 0055_canonical_bug_link_is_unique_for_bugs.py │ │ ├── 0056_give_us_a_note_with_mtime_on_wanna_help_button_click.py │ │ ├── 0057_rename_wanna_helper_note.py │ │ ├── 0058_increase_maximum_length_of_bug_titles.py │ │ ├── 0059_add_project_homepage_url.py │ │ ├── 0060_auto__del_epoch.py │ │ ├── 0061_auto__add_bugtracker__add_field_bug_bug_tracker.py │ │ ├── 0062_auto__add_field_project_display_name.py │ │ ├── 0063_fill_display_name.py │ │ ├── 0064_add_generic_foreign_key.py │ │ ├── 0065_auto__add_buildhelper__add_buildhelperstep.py │ │ ├── 0066_auto__del_field_buildhelperstep_step_number.py │ │ ├── 0067_auto__del_field_buildhelper_num_steps__chg_field_buildhelperstep_time.py │ │ ├── 0068_auto__del_hitcountcache__del_bugtracker__del_field_bug_bug_tracker.py │ │ ├── 0069_auto__add_field_wannahelpernote_contacted_by__add_field_wannahelpernot.py │ │ ├── 0070_auto__del_field_bug_bize_size_tag_name.py │ │ ├── 0071_remove_null_tracker_bugs.py │ │ ├── 0072_auto__chg_field_bug_tracker_id.py │ │ ├── 0073_auto__del_buildhelper__del_buildhelperstep.py │ │ └── __init__.py │ ├── models.py │ ├── tasks │ │ └── __init__.py │ ├── templates │ │ └── search │ │ │ ├── base.html │ │ │ ├── navigation.html │ │ │ ├── result.html │ │ │ ├── results_widget.html │ │ │ └── search.html │ ├── templatetags │ │ ├── __init__.py │ │ └── search.py │ ├── tests.py │ ├── view_helpers.py │ └── views.py ├── settings.py ├── sqlite_settings.py ├── static │ ├── apache_is_still_alive.txt │ ├── buttoned.html │ ├── css │ │ ├── account │ │ │ ├── auth.css │ │ │ ├── settings.css │ │ │ └── widget.css │ │ ├── base │ │ │ └── jquery.jgrowl.css │ │ ├── blog-style.css │ │ ├── facebox.css │ │ ├── info │ │ │ └── info.css │ │ ├── jquery.autocomplete.css │ │ ├── missions │ │ │ └── base.css │ │ ├── profile │ │ │ ├── base.css │ │ │ ├── person_small.css │ │ │ ├── portfolio.css │ │ │ ├── search_people-deprecated.css │ │ │ ├── search_people.css │ │ │ └── widget.css │ │ ├── project │ │ │ ├── buildhelper.css │ │ │ ├── how-to.css │ │ │ └── project.css │ │ ├── qunit.css │ │ ├── roundup.css │ │ ├── search │ │ │ └── search.css │ │ ├── thickbox.css │ │ ├── tipsy.css │ │ └── wiki_overides.css │ ├── donation-media │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── css │ │ │ └── style.css │ │ ├── img │ │ │ ├── awesome-picture.jpg │ │ │ ├── cat-irc.jpg │ │ │ ├── cookbook-cover.png │ │ │ ├── donate.png │ │ │ ├── gsoc.jpg │ │ │ ├── happy-osctc-people.jpg │ │ │ ├── helping.jpg │ │ │ ├── hmm.jpg │ │ │ ├── laptop-smile.jpg │ │ │ ├── lecture.jpg │ │ │ ├── light-hatch.png │ │ │ ├── logo.png │ │ │ ├── oh-shirt-design.png │ │ │ ├── osctc-help.jpg │ │ │ ├── osctc-status.png │ │ │ ├── pie.jpg │ │ │ ├── plotting.jpg │ │ │ ├── pycon2013.jpg │ │ │ ├── python.png │ │ │ ├── scarf-demo.png │ │ │ ├── scarf.png │ │ │ ├── serene.jpg │ │ │ ├── shirt-front.png │ │ │ ├── sketch.jpg │ │ │ ├── sticker-live.jpg │ │ │ ├── sticker.png │ │ │ ├── sunu.jpg │ │ │ ├── teh-icons │ │ │ │ ├── 02f2e87b57887ab383b209e3a7ce535a.jpeg │ │ │ │ ├── 2386c66668cd638cf97ea248cc7d0d18.jpeg │ │ │ │ ├── 2bdf820f298588fef18a33de5779836a.jpeg │ │ │ │ ├── 33ebe0f1fd49862dbf8e43336333f5f2.jpeg │ │ │ │ ├── 5ae1346bc1eac4cab70d67305d710242.jpeg │ │ │ │ ├── 617ae4bcd7ed946ab5512313f82cfbec.jpeg │ │ │ │ ├── 92480dcf5ce06b0987e01a09689ca2bc.jpeg │ │ │ │ ├── a.png │ │ │ │ ├── a731099bb357198d1dcb8552adbcdb43.jpeg │ │ │ │ ├── b.png │ │ │ │ ├── b7c7c168cd76bbae514d1c97f55b8fee.jpeg │ │ │ │ ├── c.png │ │ │ │ ├── c81c074f30e159a0466d88797543401e.jpeg │ │ │ │ ├── cc57918c88bf891c3269ccff78b73095.jpeg │ │ │ │ ├── cec3156142d4e3e4842eb0dae1f6fce4.jpeg │ │ │ │ ├── cfbbaa096fed7142ff2f4b1c2f38e67a.png │ │ │ │ ├── d.png │ │ │ │ ├── d682ace3f3a6945d9b40090966f57c7e.jpeg │ │ │ │ ├── de1d60091d95f2dfeacc99b3f7f7aa38.jpeg │ │ │ │ └── e.png │ │ │ ├── training-missions.png │ │ │ └── volunteer-opportunities.png │ │ ├── js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.tmpl.min.js │ │ │ └── less.min.js │ │ └── less │ │ │ └── style.less │ ├── error-pages │ │ ├── 413.html │ │ └── 504.html │ ├── fonts │ │ ├── tuffy_bold.ttf │ │ ├── tuffy_bold_italic.ttf │ │ ├── tuffy_italic.ttf │ │ └── tuffy_regular.ttf │ ├── how-to-build-openhatch.html │ ├── html │ │ ├── css3test.html │ │ └── map.html │ ├── images │ │ ├── Exaile-icon.png │ │ ├── Parker-150px.jpg │ │ ├── Parker.jpg │ │ ├── asheesh-fail.jpg │ │ ├── base │ │ │ ├── akbar.jpg │ │ │ ├── hm.png │ │ │ ├── homepage │ │ │ │ ├── feathered-penguin.png │ │ │ │ ├── heads.png │ │ │ │ ├── heads.xcf │ │ │ │ ├── heads2.xcf │ │ │ │ ├── home-opps.png │ │ │ │ ├── importer-100px.png │ │ │ │ ├── one-large-penguin-togo.png │ │ │ │ ├── opps-frontpage.png │ │ │ │ ├── opps.png │ │ │ │ ├── opps.xcf │ │ │ │ ├── penguin-200px.png │ │ │ │ ├── penguin.png │ │ │ │ ├── penguin2.png │ │ │ │ ├── people-100px.png │ │ │ │ ├── people-frontpage.png │ │ │ │ ├── people.png │ │ │ │ ├── people.xcf │ │ │ │ ├── portfolio-frontpage.png │ │ │ │ ├── recruit.png │ │ │ │ ├── recruit.xcf │ │ │ │ ├── teaser-bug-search.png │ │ │ │ ├── teaser-people-search.png │ │ │ │ └── teaser-profile.png │ │ │ ├── landing │ │ │ │ ├── feed-icon-14x14.png │ │ │ │ ├── feed-icon-16x16-grayscale.png │ │ │ │ ├── feed-icon-16x16-sprited.png │ │ │ │ ├── feed-icon-16x16.png │ │ │ │ ├── feed-icon-20x20-grayscale.png │ │ │ │ ├── feed-icon-28x28-grayscale.png │ │ │ │ └── feed-icon-28x28.png │ │ │ ├── request-an-invitation.png │ │ │ └── sign-in.png │ │ ├── beta-background.png │ │ ├── beta-background.xcf.gz │ │ ├── bg-blue-haze-fade.png │ │ ├── bg-blue-haze.png │ │ ├── bg-blue-on-white.png │ │ ├── bg-blue-on-white.xcf │ │ ├── bg-blue-stripes.png │ │ ├── bg-dotted-line.png │ │ ├── bg-translucent-green.png │ │ ├── bg-white-band.png │ │ ├── bg-white-opacity-75.png │ │ ├── bg-white-opacity75.png │ │ ├── bg-white-opacity90.png │ │ ├── blue-green-marker.png │ │ ├── bpw-180x180.jpg │ │ ├── bpw-300x300.jpg │ │ ├── buildhelper │ │ │ └── tutorial-button.png │ │ ├── button-bg-green.png │ │ ├── button_ok.png │ │ ├── campus_IMG_6192_scaled.jpg │ │ ├── corrupted.png │ │ ├── dark-hatch.png │ │ ├── dark-motif.gif │ │ ├── dark-motif.png │ │ ├── data-ready.png │ │ ├── donate.png │ │ ├── dot1px-space2px.png │ │ ├── downgrey.png │ │ ├── downmod.png │ │ ├── drag.png │ │ ├── drag.xcf │ │ ├── facebox │ │ │ ├── b.png │ │ │ ├── closelabel.gif │ │ │ ├── fbx-border-sprite.png │ │ │ ├── loading.gif │ │ │ └── shadow.gif │ │ ├── favicon.ico │ │ ├── gradient-left.png │ │ ├── gradient-top.png │ │ ├── gray-60.png │ │ ├── icons │ │ │ ├── Add.png │ │ │ ├── binoculars.png │ │ │ ├── close.png │ │ │ ├── close.svg │ │ │ ├── data-ready.png │ │ │ ├── data-ready.svg │ │ │ ├── data-sources │ │ │ │ ├── launchpad.png │ │ │ │ └── ohloh.png │ │ │ ├── default-avatar.png │ │ │ ├── default-avatar.svg │ │ │ ├── delete-citation.png │ │ │ ├── delete.png │ │ │ ├── do.png │ │ │ ├── error-arrow.png │ │ │ ├── feed-icon-14x14.png │ │ │ ├── feed-icon-28x28.png │ │ │ ├── finished-successfully.png │ │ │ ├── finished-unsuccessfully.png │ │ │ ├── green-checkmark.png │ │ │ ├── green-checkmark.svg │ │ │ ├── green-circle.jpg │ │ │ ├── green-circle.png │ │ │ ├── green-circle.svg │ │ │ ├── info.png │ │ │ ├── information.svg │ │ │ ├── list-add.png │ │ │ ├── list-remove.png │ │ │ ├── projects │ │ │ │ ├── Iceweasel.png │ │ │ │ ├── exaile-50px.png │ │ │ │ ├── f-spot-100px.png │ │ │ │ ├── f-spot-50px.png │ │ │ │ ├── f-spot.png │ │ │ │ ├── f-spot.svg │ │ │ │ ├── gnome-do.png │ │ │ │ ├── iceweasel-100px.png │ │ │ │ ├── songbird-100px.png │ │ │ │ ├── songbird-50px.png │ │ │ │ ├── songbird-64px.png │ │ │ │ ├── songbird.png │ │ │ │ ├── ubuntu-100px.png │ │ │ │ ├── ubuntu-50px.png │ │ │ │ └── ubuntu.png │ │ │ ├── publish.png │ │ │ ├── readme.html │ │ │ ├── readme.txt │ │ │ ├── star-off.png │ │ │ ├── star-on.png │ │ │ ├── star.png │ │ │ ├── star.svg │ │ │ ├── test-project-icon-64px-by-18px.png │ │ │ ├── throbber.png │ │ │ ├── undo-lit.png │ │ │ ├── undo.png │ │ │ ├── zoom-in.png │ │ │ └── zoom-out.png │ │ ├── info │ │ │ ├── Raffi-cartoon.png │ │ │ ├── Raffi.jpg │ │ │ ├── RaffiHS1.jpg │ │ │ ├── Raphael Krut-Landau.jpg │ │ │ ├── asheesh-cartoon.png │ │ │ ├── asheesh.jpg │ │ │ ├── karen-150px.jpg │ │ │ ├── karen-cartoon-140px.png │ │ │ ├── karen-cartoon.png │ │ │ ├── metaphors │ │ │ ├── nelson-headshot.jpg │ │ │ ├── spam.jpg │ │ │ └── stump.jpg │ │ ├── landing_page │ │ │ ├── tiny-bpw-180x180.jpg │ │ │ ├── tiny-osctc-help.jpg │ │ │ ├── tiny-pycon2012sprint.jpg │ │ │ └── tiny-umass3.jpg │ │ ├── leitmotif.png │ │ ├── light-hatch.png │ │ ├── light-tick.png │ │ ├── lightmotif-dense.png │ │ ├── lightmotif-limpopo.png │ │ ├── lightmotif.png │ │ ├── lightstripe.png │ │ ├── logo-for-widget.png │ │ ├── logo.png │ │ ├── module-head-bg-bright.png │ │ ├── module-head-bg-upside-down.png │ │ ├── module-head-bg.png │ │ ├── motif-band-blue-bright.png │ │ ├── motif-band-blue.png │ │ ├── motif-blue-light.png │ │ ├── motif-blue.png │ │ ├── motif-dark.png │ │ ├── motif-eee.png │ │ ├── motif-lightgrey.png │ │ ├── motif-pastelblue.png │ │ ├── motif-softblue-hatch.png │ │ ├── motif.gif │ │ ├── motif.png │ │ ├── motif2.png │ │ ├── no-tick.png │ │ ├── notification-arrow.png │ │ ├── oh-t-shirt-final-design-sm.png │ │ ├── orange-bg.png │ │ ├── penguin.png │ │ ├── people-search.png │ │ ├── people-search.xcf │ │ ├── people-smaller.png │ │ ├── people.psd │ │ ├── person-at-laptop-180x180-was-IMG_6186.jpg │ │ ├── photo.jpg │ │ ├── portfolio-frontpage.png │ │ ├── profile-photos │ │ │ ├── collins-40px.jpg │ │ │ ├── collins-40pxx40px-0.jpg │ │ │ ├── collins.jpg │ │ │ ├── iris-40px.jpg │ │ │ ├── iris-40pxx40px-0.jpg │ │ │ ├── iris.jpg │ │ │ ├── penguin-20px.png │ │ │ ├── penguin-30px.png │ │ │ ├── penguin-40px.png │ │ │ ├── penguin-w=72px,h=72px.png │ │ │ ├── penguin-w=72px,h=93px.png │ │ │ ├── penguin.png │ │ │ ├── selleck-40px.jpg │ │ │ ├── selleck-40pxx40px-0.jpg │ │ │ ├── selleck.jpg │ │ │ ├── shrink │ │ │ ├── sufjan-40px.jpg │ │ │ ├── sufjan-40pxx40px-0.jpg │ │ │ ├── sufjan.jpg │ │ │ └── sufjan.jpg.ppm │ │ ├── profile │ │ │ ├── map │ │ │ │ ├── greg-small.png │ │ │ │ ├── map-yellow-arrow.png │ │ │ │ ├── orange-marker.png │ │ │ │ └── samplecode.txt │ │ │ ├── map_for_loading.png │ │ │ ├── play.png │ │ │ ├── play.svg │ │ │ └── portfolio │ │ │ │ └── portfolio-entry-bg.png │ │ ├── projects.png │ │ ├── recommended-searches.png │ │ ├── screenshots │ │ │ ├── bitesize-opps.png │ │ │ ├── bitesize-opps.xcf │ │ │ ├── browse-bugs-by-toughness-and-language.png │ │ │ ├── browse_bugs_by_language_large.png │ │ │ ├── contributors_to_debian.png │ │ │ ├── i_want_to_help.png │ │ │ ├── importer-screenshot-300px.png │ │ │ ├── importer-screenshot-squared-300px.png │ │ │ ├── importer-screenshot-squared.png │ │ │ ├── importer-screenshot-squared.xcf │ │ │ ├── importer-screenshot.png │ │ │ ├── mentors_in_php.png │ │ │ ├── missions.png │ │ │ ├── new-user-wizard.xcf │ │ │ ├── opportunities.png │ │ │ ├── opps-in-c.png │ │ │ ├── opps-in-c.xcf │ │ │ ├── opps_in_c_plus_plus.png │ │ │ ├── people.png │ │ │ ├── profile.png │ │ │ ├── profile_info.png │ │ │ ├── project-page.png │ │ │ ├── project.png │ │ │ ├── pyblosxom.png │ │ │ ├── these_people_can_pitch_in_with_c.png │ │ │ ├── wanna-help.png │ │ │ └── wanna-help.xcf │ │ ├── ship.png │ │ ├── snake.gif │ │ ├── square-blue.png │ │ ├── squares-blue.png │ │ ├── stripey.png │ │ ├── tab-on.png │ │ ├── the-logo-222.png │ │ ├── the-logo-bluegreen-102px.png │ │ ├── the-logo-bluegreen-125px.png │ │ ├── the-logo-bluegreen-87px.png │ │ ├── the-logo-bluegreen.png │ │ ├── the-logo-bluegreen.xcf │ │ ├── the-logo-sans-text.png │ │ ├── the-logo.png │ │ ├── the-logo.psd │ │ ├── the-logo.xcf │ │ ├── thickbox-loading.gif │ │ ├── throbber-54px.gif │ │ ├── throbber.gif │ │ ├── tick.png │ │ ├── tipsy.gif │ │ ├── too-wide.jpg │ │ ├── too-wide.png │ │ ├── training-missions-blank.png │ │ ├── training-missions.png │ │ ├── update.gif │ │ ├── upgrey.png │ │ ├── upmod.png │ │ ├── volunteer-opportunities-full.png │ │ ├── volunteer-opportunities-full.xcf │ │ ├── volunteer-opportunities.png │ │ ├── wannahelp-button-bg-active.png │ │ ├── wannahelp-button-bg-hover-active.png │ │ ├── wannahelp-button-bg-hover.png │ │ ├── wannahelp-button-bg.png │ │ ├── white-sidebar.png │ │ └── yellow-fade-down.png │ ├── importer2.html │ ├── inplaceeditform │ │ ├── css │ │ │ ├── inplaceedit_structure.css │ │ │ ├── inplaceedit_style.css │ │ │ ├── inplaceedit_toolbar_structure.css │ │ │ └── inplaceedit_toolbar_style.css │ │ ├── img │ │ │ ├── apply.gif │ │ │ ├── cancel.gif │ │ │ ├── false.gif │ │ │ ├── load.png │ │ │ └── true.gif │ │ └── js │ │ │ ├── DateTimeShortcutsInitial.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.init.js │ │ │ ├── jquery.inplaceeditform.hooks.js │ │ │ ├── jquery.inplaceeditform.js │ │ │ └── jquery.json.js │ ├── jquery-ui-1.7.3 │ │ ├── AUTHORS.txt │ │ ├── GPL-LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── demos │ │ │ ├── accordion │ │ │ │ ├── collapsible.html │ │ │ │ ├── custom-icons.html │ │ │ │ ├── default.html │ │ │ │ ├── fillspace.html │ │ │ │ ├── index.html │ │ │ │ ├── mouseover.html │ │ │ │ └── no-auto-height.html │ │ │ ├── addClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── animate │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── datepicker │ │ │ │ ├── alt-field.html │ │ │ │ ├── buttonbar.html │ │ │ │ ├── date-formats.html │ │ │ │ ├── default.html │ │ │ │ ├── dropdown-month-year.html │ │ │ │ ├── icon-trigger.html │ │ │ │ ├── images │ │ │ │ │ └── calendar.gif │ │ │ │ ├── index.html │ │ │ │ ├── inline.html │ │ │ │ ├── localization.html │ │ │ │ ├── min-max.html │ │ │ │ └── multiple-calendars.html │ │ │ ├── demos.css │ │ │ ├── dialog │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── modal-confirmation.html │ │ │ │ ├── modal-form.html │ │ │ │ ├── modal-message.html │ │ │ │ └── modal.html │ │ │ ├── draggable │ │ │ │ ├── constrain-movement.html │ │ │ │ ├── cursor-style.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── events.html │ │ │ │ ├── handle.html │ │ │ │ ├── index.html │ │ │ │ ├── revert.html │ │ │ │ ├── scroll.html │ │ │ │ ├── snap-to.html │ │ │ │ ├── sortable.html │ │ │ │ └── visual-feedback.html │ │ │ ├── droppable │ │ │ │ ├── accepted-elements.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ ├── index.html │ │ │ │ ├── photo-manager.html │ │ │ │ ├── propagation.html │ │ │ │ ├── revert.html │ │ │ │ └── visual-feedback.html │ │ │ ├── effect │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── hide │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── images │ │ │ │ ├── calendar.gif │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ ├── demo-config-on.gif │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ ├── icon-docs-info.gif │ │ │ │ └── pbar-ani.gif │ │ │ ├── index.html │ │ │ ├── progressbar │ │ │ │ ├── animated.html │ │ │ │ ├── default.html │ │ │ │ ├── images │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ └── resize.html │ │ │ ├── removeClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── resizable │ │ │ │ ├── animate.html │ │ │ │ ├── aspect-ratio.html │ │ │ │ ├── constrain-area.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── index.html │ │ │ │ ├── max-min.html │ │ │ │ ├── snap-to-grid.html │ │ │ │ ├── synchronous-resize.html │ │ │ │ └── visual-feedback.html │ │ │ ├── selectable │ │ │ │ ├── default.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── index.html │ │ │ │ └── serialize.html │ │ │ ├── show │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── slider │ │ │ │ ├── colorpicker.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── multiple-vertical.html │ │ │ │ ├── range-vertical.html │ │ │ │ ├── range.html │ │ │ │ ├── rangemax.html │ │ │ │ ├── rangemin.html │ │ │ │ ├── slider-vertical.html │ │ │ │ └── steps.html │ │ │ ├── sortable │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ ├── connect-lists.html │ │ │ │ ├── default.html │ │ │ │ ├── delay-start.html │ │ │ │ ├── display-grid.html │ │ │ │ ├── empty-lists.html │ │ │ │ ├── index.html │ │ │ │ ├── items.html │ │ │ │ ├── placeholder.html │ │ │ │ └── portlets.html │ │ │ ├── switchClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ ├── tabs │ │ │ │ ├── ajax.html │ │ │ │ ├── ajax │ │ │ │ │ ├── content1.html │ │ │ │ │ └── content2.html │ │ │ │ ├── collapsible.html │ │ │ │ ├── default.html │ │ │ │ ├── index.html │ │ │ │ ├── mouseover.html │ │ │ │ ├── sortable.html │ │ │ │ └── vertical.html │ │ │ ├── toggle │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ │ └── toggleClass │ │ │ │ ├── default.html │ │ │ │ └── index.html │ │ ├── docs │ │ │ ├── accordion.html │ │ │ ├── addClass.html │ │ │ ├── animate.html │ │ │ ├── datepicker.html │ │ │ ├── dialog.html │ │ │ ├── draggable.html │ │ │ ├── droppable.html │ │ │ ├── effect.html │ │ │ ├── hide.html │ │ │ ├── progressbar.html │ │ │ ├── removeClass.html │ │ │ ├── resizable.html │ │ │ ├── selectable.html │ │ │ ├── show.html │ │ │ ├── slider.html │ │ │ ├── sortable.html │ │ │ ├── switchClass.html │ │ │ ├── tabs.html │ │ │ ├── toggle.html │ │ │ └── toggleClass.html │ │ ├── external │ │ │ ├── bgiframe │ │ │ │ ├── ChangeLog.txt │ │ │ │ ├── META.json │ │ │ │ ├── docs │ │ │ │ │ └── index.html │ │ │ │ ├── jquery.bgiframe.js │ │ │ │ ├── jquery.bgiframe.min.js │ │ │ │ ├── jquery.bgiframe.pack.js │ │ │ │ └── test │ │ │ │ │ └── index.html │ │ │ ├── cookie │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.cookie.min.js │ │ │ │ ├── jquery.cookie.pack.js │ │ │ │ └── jquery.cookie.zip │ │ │ ├── jsdiff │ │ │ │ └── jsdiff.js │ │ │ ├── qunit │ │ │ │ ├── testrunner.js │ │ │ │ └── testsuite.css │ │ │ └── simulate │ │ │ │ └── jquery.simulate.js │ │ ├── jquery-1.3.2.js │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui.accordion.css │ │ │ │ ├── ui.all.css │ │ │ │ ├── ui.base.css │ │ │ │ ├── ui.core.css │ │ │ │ ├── ui.datepicker.css │ │ │ │ ├── ui.dialog.css │ │ │ │ ├── ui.progressbar.css │ │ │ │ ├── ui.resizable.css │ │ │ │ ├── ui.slider.css │ │ │ │ ├── ui.tabs.css │ │ │ │ └── ui.theme.css │ │ │ └── ui-lightness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui.accordion.css │ │ │ │ ├── ui.all.css │ │ │ │ ├── ui.base.css │ │ │ │ ├── ui.core.css │ │ │ │ ├── ui.datepicker.css │ │ │ │ ├── ui.dialog.css │ │ │ │ ├── ui.progressbar.css │ │ │ │ ├── ui.resizable.css │ │ │ │ ├── ui.slider.css │ │ │ │ ├── ui.tabs.css │ │ │ │ └── ui.theme.css │ │ ├── ui │ │ │ ├── effects.blind.js │ │ │ ├── effects.bounce.js │ │ │ ├── effects.clip.js │ │ │ ├── effects.core.js │ │ │ ├── effects.drop.js │ │ │ ├── effects.explode.js │ │ │ ├── effects.fold.js │ │ │ ├── effects.highlight.js │ │ │ ├── effects.pulsate.js │ │ │ ├── effects.scale.js │ │ │ ├── effects.shake.js │ │ │ ├── effects.slide.js │ │ │ ├── effects.transfer.js │ │ │ ├── i18n │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ ├── ui.datepicker-ar.js │ │ │ │ ├── ui.datepicker-bg.js │ │ │ │ ├── ui.datepicker-ca.js │ │ │ │ ├── ui.datepicker-cs.js │ │ │ │ ├── ui.datepicker-da.js │ │ │ │ ├── ui.datepicker-de.js │ │ │ │ ├── ui.datepicker-el.js │ │ │ │ ├── ui.datepicker-eo.js │ │ │ │ ├── ui.datepicker-es.js │ │ │ │ ├── ui.datepicker-fa.js │ │ │ │ ├── ui.datepicker-fi.js │ │ │ │ ├── ui.datepicker-fr.js │ │ │ │ ├── ui.datepicker-he.js │ │ │ │ ├── ui.datepicker-hr.js │ │ │ │ ├── ui.datepicker-hu.js │ │ │ │ ├── ui.datepicker-hy.js │ │ │ │ ├── ui.datepicker-id.js │ │ │ │ ├── ui.datepicker-is.js │ │ │ │ ├── ui.datepicker-it.js │ │ │ │ ├── ui.datepicker-ja.js │ │ │ │ ├── ui.datepicker-ko.js │ │ │ │ ├── ui.datepicker-lt.js │ │ │ │ ├── ui.datepicker-lv.js │ │ │ │ ├── ui.datepicker-ms.js │ │ │ │ ├── ui.datepicker-nl.js │ │ │ │ ├── ui.datepicker-no.js │ │ │ │ ├── ui.datepicker-pl.js │ │ │ │ ├── ui.datepicker-pt-BR.js │ │ │ │ ├── ui.datepicker-ro.js │ │ │ │ ├── ui.datepicker-ru.js │ │ │ │ ├── ui.datepicker-sk.js │ │ │ │ ├── ui.datepicker-sl.js │ │ │ │ ├── ui.datepicker-sq.js │ │ │ │ ├── ui.datepicker-sr-SR.js │ │ │ │ ├── ui.datepicker-sr.js │ │ │ │ ├── ui.datepicker-sv.js │ │ │ │ ├── ui.datepicker-th.js │ │ │ │ ├── ui.datepicker-tr.js │ │ │ │ ├── ui.datepicker-uk.js │ │ │ │ ├── ui.datepicker-zh-CN.js │ │ │ │ └── ui.datepicker-zh-TW.js │ │ │ ├── minified │ │ │ │ ├── effects.blind.min.js │ │ │ │ ├── effects.bounce.min.js │ │ │ │ ├── effects.clip.min.js │ │ │ │ ├── effects.core.min.js │ │ │ │ ├── effects.drop.min.js │ │ │ │ ├── effects.explode.min.js │ │ │ │ ├── effects.fold.min.js │ │ │ │ ├── effects.highlight.min.js │ │ │ │ ├── effects.pulsate.min.js │ │ │ │ ├── effects.scale.min.js │ │ │ │ ├── effects.shake.min.js │ │ │ │ ├── effects.slide.min.js │ │ │ │ ├── effects.transfer.min.js │ │ │ │ ├── ui.accordion.min.js │ │ │ │ ├── ui.core.min.js │ │ │ │ ├── ui.datepicker.min.js │ │ │ │ ├── ui.dialog.min.js │ │ │ │ ├── ui.draggable.min.js │ │ │ │ ├── ui.droppable.min.js │ │ │ │ ├── ui.progressbar.min.js │ │ │ │ ├── ui.resizable.min.js │ │ │ │ ├── ui.selectable.min.js │ │ │ │ ├── ui.slider.min.js │ │ │ │ ├── ui.sortable.min.js │ │ │ │ └── ui.tabs.min.js │ │ │ ├── ui.accordion.js │ │ │ ├── ui.core.js │ │ │ ├── ui.datepicker.js │ │ │ ├── ui.dialog.js │ │ │ ├── ui.draggable.js │ │ │ ├── ui.droppable.js │ │ │ ├── ui.progressbar.js │ │ │ ├── ui.resizable.js │ │ │ ├── ui.selectable.js │ │ │ ├── ui.slider.js │ │ │ ├── ui.sortable.js │ │ │ └── ui.tabs.js │ │ └── version.txt │ ├── js │ │ ├── account │ │ │ ├── edit_photo.js │ │ │ └── set_location.js │ │ ├── base.js │ │ ├── base │ │ │ └── locationDialog.js │ │ ├── bugsets │ │ │ └── bugsets.js │ │ ├── facebox.js │ │ ├── homepage.js │ │ ├── importer.js │ │ ├── jquery-1.3.2.js │ │ ├── jquery.autocomplete.js │ │ ├── jquery.autocomplete.pack.js │ │ ├── jquery.color.js │ │ ├── jquery.cookie.js │ │ ├── jquery.form.js │ │ ├── jquery.hotkey.js │ │ ├── jquery.hotkeys-0.7.9.js │ │ ├── jquery.jeditable.js │ │ ├── jquery.jgrowl.js │ │ ├── jquery.js │ │ ├── jquery.json-2.2.js │ │ ├── jquery.json.js │ │ ├── jquery.query-2.1.3.js │ │ ├── jquery.query.js │ │ ├── jquery.scrollTo-1.4.2.js │ │ ├── jquery.scrollTo-min.js │ │ ├── jquery.scrollTo.js │ │ ├── jquery.tabs.js │ │ ├── jquery.tipsy.js │ │ ├── jquery.toggleFormText.compressed.js │ │ │ └── jquery.toggleformtext.compressed.js │ │ ├── less-1.3.0.min.js │ │ ├── missions │ │ │ ├── base.js │ │ │ ├── oppia-player.js │ │ │ └── svn-commit-poller.js │ │ ├── profile │ │ │ └── portfolio.js │ │ ├── qunit.js │ │ ├── search │ │ │ ├── search.js │ │ │ ├── testData.js │ │ │ └── tests.js │ │ ├── tester.js │ │ ├── thickbox-compressed.js │ │ └── tipsy-onload.js │ ├── less │ │ └── base │ │ │ ├── base.less │ │ │ ├── landing.less │ │ │ ├── one_column.less │ │ │ ├── three_column.less │ │ │ └── two_column.less │ ├── no-project-icon-w=20.png │ ├── no-project-icon-w=40.png │ ├── no-project-icon.png │ ├── openid │ │ ├── css │ │ │ └── openid.css │ │ ├── images │ │ │ ├── aol.gif │ │ │ ├── blogger.ico │ │ │ ├── blogger.png │ │ │ ├── claimid.ico │ │ │ ├── claimid.png │ │ │ ├── facebook.gif │ │ │ ├── fedora.ico │ │ │ ├── fedora.png │ │ │ ├── flickr.ico │ │ │ ├── flickr.png │ │ │ ├── google.gif │ │ │ ├── google.png │ │ │ ├── launchpad.png │ │ │ ├── livejournal.ico │ │ │ ├── livejournal.png │ │ │ ├── myopenid.ico │ │ │ ├── myopenid.png │ │ │ ├── openid-inputicon.gif │ │ │ ├── openid.gif │ │ │ ├── technorati.ico │ │ │ ├── technorati.png │ │ │ ├── verisign.ico │ │ │ ├── verisign.png │ │ │ ├── vidoop.ico │ │ │ ├── vidoop.png │ │ │ ├── wordpress.ico │ │ │ ├── wordpress.png │ │ │ └── yahoo.gif │ │ └── js │ │ │ └── openid-jquery.js │ ├── packed │ │ └── .gitignore │ ├── sample-data │ │ ├── bitbucket │ │ │ └── paulproteus.json │ │ ├── closed-mercurial-bug.html │ │ ├── debianqa-asheesh.html │ │ ├── github │ │ │ ├── issue-list │ │ │ ├── issue-list-closed │ │ │ ├── issue-show │ │ │ ├── json-repos-show-paulproteus.json │ │ │ ├── paulproteus-personal-feed.json │ │ │ └── paulproteus.json │ │ ├── google_api │ │ │ └── sample_response │ │ ├── kde-117760-2010-04-09.xml │ │ ├── kde-182054-2010-04-09.xml │ │ ├── launchpad │ │ │ ├── bugs_839461 │ │ │ ├── bugs_839461_subscriptions │ │ │ ├── bugs_839461bite │ │ │ ├── bugs_839461doc │ │ │ ├── bugs_task_839461 │ │ │ ├── bugs_task_839461bite │ │ │ ├── bugs_task_839461closed │ │ │ ├── bugs_task_839461doc │ │ │ ├── people__ws.op=find&text=asheesh@asheesh.org │ │ │ ├── ~Mozilla │ │ │ ├── ~paulproteus │ │ │ └── ~vila │ │ ├── miro-2294-2009-08-06-RESOLVED.xml │ │ ├── miro-2294-2009-08-06.xml │ │ ├── ohloh │ │ │ ├── 02103ff050b2e9036a960e5b3de7f1cb │ │ │ ├── 1143684.xml │ │ │ ├── 1454281.xml │ │ │ ├── 15329.xml │ │ │ ├── 18318035536880 │ │ │ ├── 18318035536880.xml │ │ │ ├── 4265.xml │ │ │ ├── 44c4e8d8ef5137fd8bcd78f9cee164ef │ │ │ ├── 479665.xml │ │ │ ├── 65837553699824.xml │ │ │ ├── cchost │ │ │ ├── contributors.xml__query=paulproteus&api_key=JeXHeaQhjXewhdktn4nUw │ │ │ ├── debian │ │ │ └── paulproteus │ │ ├── python-roundup-8264.html │ │ ├── snapshots │ │ │ ├── snapshot1.json │ │ │ └── snapshot2.json │ │ ├── trac-3275.html │ │ ├── twisted-trac-4298-on-2010-04-02.html │ │ ├── twisted-trac-4298-without-modified-using-owned-instead-of-assigned.html │ │ ├── twisted-trac-4298-without-modified.html │ │ ├── twisted-trac-4298.html │ │ └── twisted-trac-query-easy-bugs-on-2011-04-13.csv │ ├── sample-photo.jpg │ ├── sample-photo.png │ ├── twisted-ping-dir │ │ └── .gitignore │ ├── widgeted.html │ └── wiki │ │ └── htmlets │ │ └── IWH_openhatch_button.html ├── statik │ └── README.md ├── testrunner.py └── urls.py ├── requirements.txt ├── run_importer.sh ├── setup.py ├── tools ├── render_docs.py ├── run_coverage.py └── run_tests_nowarn.py └── vendor ├── README ├── __init__.py ├── dependencies.pth └── packages ├── BeautifulSoup ├── BeautifulSoup.py ├── BeautifulSoupTests.py ├── PKG-INFO ├── pip-egg-info │ └── BeautifulSoup.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt └── setup.py ├── Django ├── AUTHORS ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── django │ ├── __init__.py │ ├── conf │ │ ├── __init__.py │ │ ├── app_template │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── global_settings.py │ │ ├── locale │ │ │ ├── __init__.py │ │ │ ├── af │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ar │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── az │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── be │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bg │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── bn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── br │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── bs │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ca │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── cs │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── cy │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── da │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── de │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── de_CH │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── el │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── en │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── en_GB │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── eo │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── es │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_AR │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_MX │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_NI │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── es_VE │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── et │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── eu │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fa │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── fy_NL │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ga │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── gl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── he │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── hu │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ia │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── id │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── is │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── it │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ja │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ka │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── kk │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── km │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── kn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ko │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── lb │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── lt │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── lv │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── mk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ml │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── mn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── nb │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ne │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── nl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── nn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── pa │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── pl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── pt │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── pt_BR │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ro │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ru │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sl │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sq │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sr_Latn │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sv │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── sw │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── ta │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── te │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── th │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── tr │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── tt │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── udm │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── uk │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── ur │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── vi │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ ├── zh_CN │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ └── zh_TW │ │ │ │ ├── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ ├── project_template │ │ │ ├── manage.py │ │ │ └── project_name │ │ │ │ ├── __init__.py │ │ │ │ ├── settings.py │ │ │ │ ├── urls.py │ │ │ │ └── wsgi.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── defaults.py │ │ │ ├── i18n.py │ │ │ ├── shortcut.py │ │ │ └── static.py │ ├── contrib │ │ ├── __init__.py │ │ ├── admin │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── filters.py │ │ │ ├── forms.py │ │ │ ├── helpers.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ ├── django.po │ │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ │ └── djangojs.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ ├── django.po │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── models.py │ │ │ ├── options.py │ │ │ ├── sites.py │ │ │ ├── static │ │ │ │ └── admin │ │ │ │ │ ├── css │ │ │ │ │ ├── base.css │ │ │ │ │ ├── changelists.css │ │ │ │ │ ├── dashboard.css │ │ │ │ │ ├── forms.css │ │ │ │ │ ├── ie.css │ │ │ │ │ ├── login.css │ │ │ │ │ ├── rtl.css │ │ │ │ │ └── widgets.css │ │ │ │ │ ├── img │ │ │ │ │ ├── changelist-bg.gif │ │ │ │ │ ├── changelist-bg_rtl.gif │ │ │ │ │ ├── chooser-bg.gif │ │ │ │ │ ├── chooser_stacked-bg.gif │ │ │ │ │ ├── default-bg-reverse.gif │ │ │ │ │ ├── default-bg.gif │ │ │ │ │ ├── deleted-overlay.gif │ │ │ │ │ ├── gis │ │ │ │ │ │ ├── move_vertex_off.png │ │ │ │ │ │ └── move_vertex_on.png │ │ │ │ │ ├── icon-no.gif │ │ │ │ │ ├── icon-unknown.gif │ │ │ │ │ ├── icon-yes.gif │ │ │ │ │ ├── icon_addlink.gif │ │ │ │ │ ├── icon_alert.gif │ │ │ │ │ ├── icon_calendar.gif │ │ │ │ │ ├── icon_changelink.gif │ │ │ │ │ ├── icon_clock.gif │ │ │ │ │ ├── icon_deletelink.gif │ │ │ │ │ ├── icon_error.gif │ │ │ │ │ ├── icon_searchbox.png │ │ │ │ │ ├── icon_success.gif │ │ │ │ │ ├── inline-delete-8bit.png │ │ │ │ │ ├── inline-delete.png │ │ │ │ │ ├── inline-restore-8bit.png │ │ │ │ │ ├── inline-restore.png │ │ │ │ │ ├── inline-splitter-bg.gif │ │ │ │ │ ├── nav-bg-grabber.gif │ │ │ │ │ ├── nav-bg-reverse.gif │ │ │ │ │ ├── nav-bg-selected.gif │ │ │ │ │ ├── nav-bg.gif │ │ │ │ │ ├── selector-icons.gif │ │ │ │ │ ├── selector-search.gif │ │ │ │ │ ├── sorting-icons.gif │ │ │ │ │ ├── tool-left.gif │ │ │ │ │ ├── tool-left_over.gif │ │ │ │ │ ├── tool-right.gif │ │ │ │ │ ├── tool-right_over.gif │ │ │ │ │ ├── tooltag-add.gif │ │ │ │ │ ├── tooltag-add_over.gif │ │ │ │ │ ├── tooltag-arrowright.gif │ │ │ │ │ └── tooltag-arrowright_over.gif │ │ │ │ │ └── js │ │ │ │ │ ├── LICENSE-JQUERY.txt │ │ │ │ │ ├── SelectBox.js │ │ │ │ │ ├── SelectFilter2.js │ │ │ │ │ ├── actions.js │ │ │ │ │ ├── actions.min.js │ │ │ │ │ ├── admin │ │ │ │ │ ├── DateTimeShortcuts.js │ │ │ │ │ ├── RelatedObjectLookups.js │ │ │ │ │ └── ordering.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── collapse.min.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── getElementsBySelector.js │ │ │ │ │ ├── inlines.js │ │ │ │ │ ├── inlines.min.js │ │ │ │ │ ├── jquery.init.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── prepopulate.js │ │ │ │ │ ├── prepopulate.min.js │ │ │ │ │ ├── timeparse.js │ │ │ │ │ └── urlify.js │ │ │ ├── templates │ │ │ │ ├── admin │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── 500.html │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── app_index.html │ │ │ │ │ ├── auth │ │ │ │ │ │ └── user │ │ │ │ │ │ │ ├── add_form.html │ │ │ │ │ │ │ └── change_password.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── base_site.html │ │ │ │ │ ├── change_form.html │ │ │ │ │ ├── change_list.html │ │ │ │ │ ├── change_list_results.html │ │ │ │ │ ├── date_hierarchy.html │ │ │ │ │ ├── delete_confirmation.html │ │ │ │ │ ├── delete_selected_confirmation.html │ │ │ │ │ ├── edit_inline │ │ │ │ │ │ ├── stacked.html │ │ │ │ │ │ └── tabular.html │ │ │ │ │ ├── filter.html │ │ │ │ │ ├── includes │ │ │ │ │ │ └── fieldset.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── invalid_setup.html │ │ │ │ │ ├── login.html │ │ │ │ │ ├── object_history.html │ │ │ │ │ ├── pagination.html │ │ │ │ │ ├── prepopulated_fields_js.html │ │ │ │ │ ├── search_form.html │ │ │ │ │ └── submit_line.html │ │ │ │ └── registration │ │ │ │ │ ├── logged_out.html │ │ │ │ │ ├── password_change_done.html │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ └── password_reset_form.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ ├── admin_list.py │ │ │ │ ├── admin_modify.py │ │ │ │ ├── admin_static.py │ │ │ │ ├── admin_urls.py │ │ │ │ └── log.py │ │ │ ├── tests.py │ │ │ ├── util.py │ │ │ ├── validation.py │ │ │ ├── views │ │ │ │ ├── __init__.py │ │ │ │ ├── decorators.py │ │ │ │ └── main.py │ │ │ └── widgets.py │ │ ├── admindocs │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ └── admin_doc │ │ │ │ │ ├── bookmarklets.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── missing_docutils.html │ │ │ │ │ ├── model_detail.html │ │ │ │ │ ├── model_index.html │ │ │ │ │ ├── template_detail.html │ │ │ │ │ ├── template_filter_index.html │ │ │ │ │ ├── template_tag_index.html │ │ │ │ │ ├── view_detail.html │ │ │ │ │ └── view_index.html │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ └── fields.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── auth │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── backends.py │ │ │ ├── context_processors.py │ │ │ ├── create_superuser.py │ │ │ ├── decorators.py │ │ │ ├── fixtures │ │ │ │ ├── authtestdata.json │ │ │ │ ├── context-processors-users.xml │ │ │ │ ├── custom_user.json │ │ │ │ ├── natural.json │ │ │ │ └── regular.json │ │ │ ├── forms.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ └── modwsgi.py │ │ │ ├── hashers.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── changepassword.py │ │ │ │ │ └── createsuperuser.py │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ └── registration │ │ │ │ │ └── password_reset_subject.txt │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── auth_backends.py │ │ │ │ ├── basic.py │ │ │ │ ├── context_processors.py │ │ │ │ ├── custom_user.py │ │ │ │ ├── decorators.py │ │ │ │ ├── forms.py │ │ │ │ ├── handlers.py │ │ │ │ ├── hashers.py │ │ │ │ ├── management.py │ │ │ │ ├── models.py │ │ │ │ ├── remote_user.py │ │ │ │ ├── signals.py │ │ │ │ ├── templates │ │ │ │ │ ├── context_processors │ │ │ │ │ │ ├── auth_attrs_access.html │ │ │ │ │ │ ├── auth_attrs_messages.html │ │ │ │ │ │ ├── auth_attrs_no_access.html │ │ │ │ │ │ ├── auth_attrs_perm_in_perms.html │ │ │ │ │ │ ├── auth_attrs_perms.html │ │ │ │ │ │ ├── auth_attrs_test_access.html │ │ │ │ │ │ └── auth_attrs_user.html │ │ │ │ │ └── registration │ │ │ │ │ │ ├── logged_out.html │ │ │ │ │ │ ├── login.html │ │ │ │ │ │ ├── password_change_form.html │ │ │ │ │ │ ├── password_reset_complete.html │ │ │ │ │ │ ├── password_reset_confirm.html │ │ │ │ │ │ ├── password_reset_done.html │ │ │ │ │ │ ├── password_reset_email.html │ │ │ │ │ │ ├── password_reset_form.html │ │ │ │ │ │ └── password_reset_subject.txt │ │ │ │ ├── tokens.py │ │ │ │ ├── urls.py │ │ │ │ ├── urls_admin.py │ │ │ │ ├── utils.py │ │ │ │ └── views.py │ │ │ ├── tokens.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── comments │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── feeds.py │ │ │ ├── forms.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── managers.py │ │ │ ├── models.py │ │ │ ├── moderation.py │ │ │ ├── signals.py │ │ │ ├── templates │ │ │ │ └── comments │ │ │ │ │ ├── 400-debug.html │ │ │ │ │ ├── approve.html │ │ │ │ │ ├── approved.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── delete.html │ │ │ │ │ ├── deleted.html │ │ │ │ │ ├── flag.html │ │ │ │ │ ├── flagged.html │ │ │ │ │ ├── form.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── posted.html │ │ │ │ │ └── preview.html │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── comments.py │ │ │ ├── urls.py │ │ │ └── views │ │ │ │ ├── __init__.py │ │ │ │ ├── comments.py │ │ │ │ ├── moderation.py │ │ │ │ └── utils.py │ │ ├── contenttypes │ │ │ ├── __init__.py │ │ │ ├── generic.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ └── views.py │ │ ├── databrowse │ │ │ ├── __init__.py │ │ │ ├── datastructures.py │ │ │ ├── models.py │ │ │ ├── plugins │ │ │ │ ├── __init__.py │ │ │ │ ├── calendars.py │ │ │ │ ├── fieldchoices.py │ │ │ │ └── objects.py │ │ │ ├── sites.py │ │ │ ├── templates │ │ │ │ └── databrowse │ │ │ │ │ ├── base.html │ │ │ │ │ ├── base_site.html │ │ │ │ │ ├── calendar_day.html │ │ │ │ │ ├── calendar_homepage.html │ │ │ │ │ ├── calendar_main.html │ │ │ │ │ ├── calendar_month.html │ │ │ │ │ ├── calendar_year.html │ │ │ │ │ ├── choice_detail.html │ │ │ │ │ ├── choice_list.html │ │ │ │ │ ├── fieldchoice_detail.html │ │ │ │ │ ├── fieldchoice_homepage.html │ │ │ │ │ ├── fieldchoice_list.html │ │ │ │ │ ├── homepage.html │ │ │ │ │ ├── model_detail.html │ │ │ │ │ └── object_detail.html │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── flatpages │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── fixtures │ │ │ │ ├── example_site.json │ │ │ │ └── sample_flatpages.json │ │ │ ├── forms.py │ │ │ ├── locale │ │ │ │ ├── af │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_VE │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── udm │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── flatpages.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── csrf.py │ │ │ │ ├── forms.py │ │ │ │ ├── middleware.py │ │ │ │ ├── templates │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── flatpages │ │ │ │ │ │ └── default.html │ │ │ │ │ └── registration │ │ │ │ │ │ └── login.html │ │ │ │ ├── templatetags.py │ │ │ │ ├── urls.py │ │ │ │ └── views.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── formtools │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── preview.py │ │ │ ├── templates │ │ │ │ └── formtools │ │ │ │ │ ├── form.html │ │ │ │ │ ├── preview.html │ │ │ │ │ └── wizard │ │ │ │ │ └── wizard_form.html │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── templates │ │ │ │ │ ├── 404.html │ │ │ │ │ ├── base.html │ │ │ │ │ └── forms │ │ │ │ │ │ └── wizard.html │ │ │ │ ├── urls.py │ │ │ │ └── wizard │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cookiestorage.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── loadstorage.py │ │ │ │ │ ├── namedwizardtests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── urls.py │ │ │ │ │ ├── sessionstorage.py │ │ │ │ │ ├── storage.py │ │ │ │ │ └── wizardtests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── forms.py │ │ │ │ │ ├── templates │ │ │ │ │ └── other_wizard_form.html │ │ │ │ │ ├── tests.py │ │ │ │ │ └── urls.py │ │ │ ├── utils.py │ │ │ └── wizard │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── legacy.py │ │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cookie.py │ │ │ │ ├── exceptions.py │ │ │ │ └── session.py │ │ │ │ └── views.py │ │ ├── gis │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ ├── options.py │ │ │ │ └── widgets.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ ├── backends │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ └── operations.py │ │ │ │ │ ├── oracle │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── compiler.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── operations.py │ │ │ │ │ ├── postgis │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── operations.py │ │ │ │ │ ├── spatialite │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── adapter.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── client.py │ │ │ │ │ │ ├── creation.py │ │ │ │ │ │ ├── introspection.py │ │ │ │ │ │ ├── models.py │ │ │ │ │ │ └── operations.py │ │ │ │ │ └── util.py │ │ │ │ └── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── manager.py │ │ │ │ │ ├── proxy.py │ │ │ │ │ ├── query.py │ │ │ │ │ └── sql │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── aggregates.py │ │ │ │ │ ├── compiler.py │ │ │ │ │ ├── conversion.py │ │ │ │ │ ├── query.py │ │ │ │ │ └── where.py │ │ │ ├── feeds.py │ │ │ ├── forms │ │ │ │ ├── __init__.py │ │ │ │ └── fields.py │ │ │ ├── gdal │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── datasource.py │ │ │ │ ├── driver.py │ │ │ │ ├── envelope.py │ │ │ │ ├── error.py │ │ │ │ ├── feature.py │ │ │ │ ├── field.py │ │ │ │ ├── geometries.py │ │ │ │ ├── geomtype.py │ │ │ │ ├── layer.py │ │ │ │ ├── libgdal.py │ │ │ │ ├── prototypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ds.py │ │ │ │ │ ├── errcheck.py │ │ │ │ │ ├── generation.py │ │ │ │ │ ├── geom.py │ │ │ │ │ └── srs.py │ │ │ │ ├── srs.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_driver.py │ │ │ │ │ ├── test_ds.py │ │ │ │ │ ├── test_envelope.py │ │ │ │ │ ├── test_geom.py │ │ │ │ │ └── test_srs.py │ │ │ ├── geoip │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── libgeoip.py │ │ │ │ ├── prototypes.py │ │ │ │ └── tests.py │ │ │ ├── geometry │ │ │ │ ├── __init__.py │ │ │ │ ├── backend │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── geos.py │ │ │ │ ├── regex.py │ │ │ │ └── test_data.py │ │ │ ├── geos │ │ │ │ ├── LICENSE │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── collections.py │ │ │ │ ├── coordseq.py │ │ │ │ ├── error.py │ │ │ │ ├── factory.py │ │ │ │ ├── geometry.py │ │ │ │ ├── io.py │ │ │ │ ├── libgeos.py │ │ │ │ ├── linestring.py │ │ │ │ ├── mutable_list.py │ │ │ │ ├── point.py │ │ │ │ ├── polygon.py │ │ │ │ ├── prepared.py │ │ │ │ ├── prototypes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── coordseq.py │ │ │ │ │ ├── errcheck.py │ │ │ │ │ ├── geom.py │ │ │ │ │ ├── io.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── predicates.py │ │ │ │ │ ├── prepared.py │ │ │ │ │ ├── threadsafe.py │ │ │ │ │ └── topology.py │ │ │ │ └── tests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── test_geos.py │ │ │ │ │ ├── test_geos_mutation.py │ │ │ │ │ ├── test_io.py │ │ │ │ │ └── test_mutable_list.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── inspectdb.py │ │ │ │ │ └── ogrinspect.py │ │ │ ├── maps │ │ │ │ ├── __init__.py │ │ │ │ ├── google │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── gmap.py │ │ │ │ │ ├── overlays.py │ │ │ │ │ └── zoom.py │ │ │ │ └── openlayers │ │ │ │ │ └── __init__.py │ │ │ ├── measure.py │ │ │ ├── models.py │ │ │ ├── shortcuts.py │ │ │ ├── sitemaps │ │ │ │ ├── __init__.py │ │ │ │ ├── georss.py │ │ │ │ ├── kml.py │ │ │ │ └── views.py │ │ │ ├── templates │ │ │ │ └── gis │ │ │ │ │ ├── admin │ │ │ │ │ ├── openlayers.html │ │ │ │ │ ├── openlayers.js │ │ │ │ │ ├── osm.html │ │ │ │ │ └── osm.js │ │ │ │ │ ├── google │ │ │ │ │ ├── google-map.html │ │ │ │ │ ├── google-map.js │ │ │ │ │ ├── google-multi.js │ │ │ │ │ └── google-single.js │ │ │ │ │ ├── kml │ │ │ │ │ ├── base.kml │ │ │ │ │ └── placemarks.kml │ │ │ │ │ └── sitemaps │ │ │ │ │ └── geo_sitemap.xml │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── data │ │ │ │ │ ├── ch-city │ │ │ │ │ │ ├── ch-city.dbf │ │ │ │ │ │ ├── ch-city.prj │ │ │ │ │ │ ├── ch-city.shp │ │ │ │ │ │ └── ch-city.shx │ │ │ │ │ ├── cities │ │ │ │ │ │ ├── cities.dbf │ │ │ │ │ │ ├── cities.prj │ │ │ │ │ │ ├── cities.shp │ │ │ │ │ │ └── cities.shx │ │ │ │ │ ├── counties │ │ │ │ │ │ ├── counties.dbf │ │ │ │ │ │ ├── counties.shp │ │ │ │ │ │ └── counties.shx │ │ │ │ │ ├── geometries.json │ │ │ │ │ ├── interstates │ │ │ │ │ │ ├── interstates.dbf │ │ │ │ │ │ ├── interstates.prj │ │ │ │ │ │ ├── interstates.shp │ │ │ │ │ │ └── interstates.shx │ │ │ │ │ ├── invalid │ │ │ │ │ │ ├── emptypoints.dbf │ │ │ │ │ │ ├── emptypoints.shp │ │ │ │ │ │ └── emptypoints.shx │ │ │ │ │ ├── test_point │ │ │ │ │ │ ├── test_point.dbf │ │ │ │ │ │ ├── test_point.prj │ │ │ │ │ │ ├── test_point.shp │ │ │ │ │ │ └── test_point.shx │ │ │ │ │ ├── test_poly │ │ │ │ │ │ ├── test_poly.dbf │ │ │ │ │ │ ├── test_poly.prj │ │ │ │ │ │ ├── test_poly.shp │ │ │ │ │ │ └── test_poly.shx │ │ │ │ │ ├── test_vrt │ │ │ │ │ │ ├── test_vrt.csv │ │ │ │ │ │ └── test_vrt.vrt │ │ │ │ │ └── texas.dbf │ │ │ │ ├── distapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── initial_data.json.gz │ │ │ │ │ ├── models.py │ │ │ │ │ └── tests.py │ │ │ │ ├── geo3d │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── views.py │ │ │ │ ├── geoadmin │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── urls.py │ │ │ │ ├── geoapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── feeds.py │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── initial_data.json.gz │ │ │ │ │ ├── models.py │ │ │ │ │ ├── sitemaps.py │ │ │ │ │ ├── test_feeds.py │ │ │ │ │ ├── test_regress.py │ │ │ │ │ ├── test_sitemaps.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── urls.py │ │ │ │ ├── geogapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── initial_data.json │ │ │ │ │ ├── models.py │ │ │ │ │ └── tests.py │ │ │ │ ├── inspectapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── tests.py │ │ │ │ ├── layermap │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── models.py │ │ │ │ │ └── tests.py │ │ │ │ ├── relatedapp │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── initial_data.json.gz │ │ │ │ │ ├── models.py │ │ │ │ │ └── tests.py │ │ │ │ ├── test_geoforms.py │ │ │ │ ├── test_measure.py │ │ │ │ ├── test_spatialrefsys.py │ │ │ │ └── utils.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── geoip.py │ │ │ │ ├── layermapping.py │ │ │ │ ├── ogrinfo.py │ │ │ │ ├── ogrinspect.py │ │ │ │ ├── srs.py │ │ │ │ └── wkt.py │ │ │ └── views.py │ │ ├── humanize │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── models.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── humanize.py │ │ │ └── tests.py │ │ ├── localflavor │ │ │ ├── __init__.py │ │ │ ├── ar │ │ │ │ ├── __init__.py │ │ │ │ ├── ar_provinces.py │ │ │ │ └── forms.py │ │ │ ├── at │ │ │ │ ├── __init__.py │ │ │ │ ├── at_states.py │ │ │ │ └── forms.py │ │ │ ├── au │ │ │ │ ├── __init__.py │ │ │ │ ├── au_states.py │ │ │ │ ├── forms.py │ │ │ │ └── models.py │ │ │ ├── be │ │ │ │ ├── __init__.py │ │ │ │ ├── be_provinces.py │ │ │ │ ├── be_regions.py │ │ │ │ └── forms.py │ │ │ ├── br │ │ │ │ ├── __init__.py │ │ │ │ ├── br_states.py │ │ │ │ └── forms.py │ │ │ ├── ca │ │ │ │ ├── __init__.py │ │ │ │ ├── ca_provinces.py │ │ │ │ └── forms.py │ │ │ ├── ch │ │ │ │ ├── __init__.py │ │ │ │ ├── ch_states.py │ │ │ │ └── forms.py │ │ │ ├── cl │ │ │ │ ├── __init__.py │ │ │ │ ├── cl_regions.py │ │ │ │ └── forms.py │ │ │ ├── cn │ │ │ │ ├── __init__.py │ │ │ │ ├── cn_provinces.py │ │ │ │ └── forms.py │ │ │ ├── co │ │ │ │ ├── __init__.py │ │ │ │ ├── co_departments.py │ │ │ │ └── forms.py │ │ │ ├── cz │ │ │ │ ├── __init__.py │ │ │ │ ├── cz_regions.py │ │ │ │ └── forms.py │ │ │ ├── de │ │ │ │ ├── __init__.py │ │ │ │ ├── de_states.py │ │ │ │ └── forms.py │ │ │ ├── ec │ │ │ │ ├── __init__.py │ │ │ │ ├── ec_provinces.py │ │ │ │ └── forms.py │ │ │ ├── es │ │ │ │ ├── __init__.py │ │ │ │ ├── es_provinces.py │ │ │ │ ├── es_regions.py │ │ │ │ └── forms.py │ │ │ ├── fi │ │ │ │ ├── __init__.py │ │ │ │ ├── fi_municipalities.py │ │ │ │ └── forms.py │ │ │ ├── fr │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── fr_department.py │ │ │ ├── gb │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── gb_regions.py │ │ │ ├── generic │ │ │ │ ├── __init__.py │ │ │ │ └── forms.py │ │ │ ├── hk │ │ │ │ ├── __init__.py │ │ │ │ └── forms.py │ │ │ ├── hr │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── hr_choices.py │ │ │ ├── id │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── id_choices.py │ │ │ ├── ie │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── ie_counties.py │ │ │ ├── il │ │ │ │ ├── __init__.py │ │ │ │ └── forms.py │ │ │ ├── in_ │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── in_states.py │ │ │ ├── is_ │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── is_postalcodes.py │ │ │ ├── it │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── it_province.py │ │ │ │ ├── it_region.py │ │ │ │ └── util.py │ │ │ ├── jp │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── jp_prefectures.py │ │ │ ├── kw │ │ │ │ ├── __init__.py │ │ │ │ └── forms.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── mk │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── mk_choices.py │ │ │ │ └── models.py │ │ │ ├── mx │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ └── mx_states.py │ │ │ ├── nl │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── nl_provinces.py │ │ │ ├── no │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── no_municipalities.py │ │ │ ├── pe │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── pe_region.py │ │ │ ├── pl │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── pl_administrativeunits.py │ │ │ │ └── pl_voivodeships.py │ │ │ ├── pt │ │ │ │ ├── __init__.py │ │ │ │ └── forms.py │ │ │ ├── py │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── py_department.py │ │ │ ├── ro │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── ro_counties.py │ │ │ ├── ru │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── ru_regions.py │ │ │ ├── se │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── se_counties.py │ │ │ │ └── utils.py │ │ │ ├── si │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── si_postalcodes.py │ │ │ ├── sk │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── sk_districts.py │ │ │ │ └── sk_regions.py │ │ │ ├── tr │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── tr_provinces.py │ │ │ ├── uk │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── uk_regions.py │ │ │ ├── us │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── models.py │ │ │ │ └── us_states.py │ │ │ ├── uy │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ ├── util.py │ │ │ │ └── uy_departaments.py │ │ │ └── za │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── za_provinces.py │ │ ├── markup │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── markup.py │ │ │ └── tests.py │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── api.py │ │ │ ├── constants.py │ │ │ ├── context_processors.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ia │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── storage │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cookie.py │ │ │ │ ├── fallback.py │ │ │ │ └── session.py │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cookie.py │ │ │ │ ├── fallback.py │ │ │ │ ├── middleware.py │ │ │ │ ├── session.py │ │ │ │ └── urls.py │ │ │ └── utils.py │ │ ├── redirects │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── sessions │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── cache.py │ │ │ │ ├── cached_db.py │ │ │ │ ├── db.py │ │ │ │ ├── file.py │ │ │ │ └── signed_cookies.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clearsessions.py │ │ │ ├── middleware.py │ │ │ ├── models.py │ │ │ ├── serializers.py │ │ │ └── tests.py │ │ ├── sitemaps │ │ │ ├── __init__.py │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ping_google.py │ │ │ ├── models.py │ │ │ ├── templates │ │ │ │ ├── sitemap.xml │ │ │ │ └── sitemap_index.xml │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── flatpages.py │ │ │ │ ├── generic.py │ │ │ │ ├── http.py │ │ │ │ ├── https.py │ │ │ │ ├── templates │ │ │ │ │ ├── custom_sitemap.xml │ │ │ │ │ └── custom_sitemap_index.xml │ │ │ │ └── urls │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── http.py │ │ │ │ │ └── https.py │ │ │ └── views.py │ │ ├── sites │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── locale │ │ │ │ ├── ar │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── az │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── be │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bg │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── br │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── bs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ca │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cs │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── cy │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── da │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── el │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── en_GB │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eo │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── es_MX │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── et │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── eu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── fy_NL │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ga │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── gl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── he │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── hu │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── id │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── is │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ja │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ka │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── km │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── kn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ko │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── lv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ml │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── mn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nb │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ne │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ro │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ru │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sq │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sr_Latn │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sv │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── sw │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ta │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── te │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── th │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── tt │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── uk │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── ur │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── vi │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── zh_CN │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── zh_TW │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── management.py │ │ │ ├── managers.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── staticfiles │ │ │ ├── __init__.py │ │ │ ├── finders.py │ │ │ ├── handlers.py │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── collectstatic.py │ │ │ │ │ ├── findstatic.py │ │ │ │ │ └── runserver.py │ │ │ ├── models.py │ │ │ ├── storage.py │ │ │ ├── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── staticfiles.py │ │ │ ├── urls.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── syndication │ │ │ ├── __init__.py │ │ │ └── views.py │ │ └── webdesign │ │ │ ├── __init__.py │ │ │ ├── lorem_ipsum.py │ │ │ ├── models.py │ │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── webdesign.py │ │ │ └── tests.py │ ├── core │ │ ├── __init__.py │ │ ├── cache │ │ │ ├── __init__.py │ │ │ └── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── db.py │ │ │ │ ├── dummy.py │ │ │ │ ├── filebased.py │ │ │ │ ├── locmem.py │ │ │ │ └── memcached.py │ │ ├── context_processors.py │ │ ├── exceptions.py │ │ ├── files │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── images.py │ │ │ ├── locks.py │ │ │ ├── move.py │ │ │ ├── storage.py │ │ │ ├── temp.py │ │ │ ├── uploadedfile.py │ │ │ ├── uploadhandler.py │ │ │ └── utils.py │ │ ├── handlers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── wsgi.py │ │ ├── mail │ │ │ ├── __init__.py │ │ │ ├── backends │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── console.py │ │ │ │ ├── dummy.py │ │ │ │ ├── filebased.py │ │ │ │ ├── locmem.py │ │ │ │ └── smtp.py │ │ │ ├── message.py │ │ │ └── utils.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── color.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── cleanup.py │ │ │ │ ├── compilemessages.py │ │ │ │ ├── createcachetable.py │ │ │ │ ├── dbshell.py │ │ │ │ ├── diffsettings.py │ │ │ │ ├── dumpdata.py │ │ │ │ ├── flush.py │ │ │ │ ├── inspectdb.py │ │ │ │ ├── loaddata.py │ │ │ │ ├── makemessages.py │ │ │ │ ├── runfcgi.py │ │ │ │ ├── runserver.py │ │ │ │ ├── shell.py │ │ │ │ ├── sql.py │ │ │ │ ├── sqlall.py │ │ │ │ ├── sqlclear.py │ │ │ │ ├── sqlcustom.py │ │ │ │ ├── sqlflush.py │ │ │ │ ├── sqlindexes.py │ │ │ │ ├── sqlinitialdata.py │ │ │ │ ├── sqlsequencereset.py │ │ │ │ ├── startapp.py │ │ │ │ ├── startproject.py │ │ │ │ ├── syncdb.py │ │ │ │ ├── test.py │ │ │ │ ├── testserver.py │ │ │ │ └── validate.py │ │ │ ├── sql.py │ │ │ ├── templates.py │ │ │ └── validation.py │ │ ├── paginator.py │ │ ├── serializers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── json.py │ │ │ ├── python.py │ │ │ ├── pyyaml.py │ │ │ └── xml_serializer.py │ │ ├── servers │ │ │ ├── __init__.py │ │ │ ├── basehttp.py │ │ │ └── fastcgi.py │ │ ├── signals.py │ │ ├── signing.py │ │ ├── urlresolvers.py │ │ ├── validators.py │ │ ├── wsgi.py │ │ └── xheaders.py │ ├── db │ │ ├── __init__.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── creation.py │ │ │ ├── dummy │ │ │ │ ├── __init__.py │ │ │ │ └── base.py │ │ │ ├── mysql │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── compiler.py │ │ │ │ ├── creation.py │ │ │ │ ├── introspection.py │ │ │ │ └── validation.py │ │ │ ├── oracle │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── compiler.py │ │ │ │ ├── creation.py │ │ │ │ └── introspection.py │ │ │ ├── postgresql_psycopg2 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ ├── introspection.py │ │ │ │ ├── operations.py │ │ │ │ └── version.py │ │ │ ├── signals.py │ │ │ ├── sqlite3 │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── client.py │ │ │ │ ├── creation.py │ │ │ │ └── introspection.py │ │ │ └── util.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── aggregates.py │ │ │ ├── base.py │ │ │ ├── constants.py │ │ │ ├── deletion.py │ │ │ ├── expressions.py │ │ │ ├── fields │ │ │ │ ├── __init__.py │ │ │ │ ├── files.py │ │ │ │ ├── proxy.py │ │ │ │ ├── related.py │ │ │ │ └── subclassing.py │ │ │ ├── loading.py │ │ │ ├── manager.py │ │ │ ├── options.py │ │ │ ├── query.py │ │ │ ├── query_utils.py │ │ │ ├── related.py │ │ │ ├── signals.py │ │ │ └── sql │ │ │ │ ├── __init__.py │ │ │ │ ├── aggregates.py │ │ │ │ ├── compiler.py │ │ │ │ ├── constants.py │ │ │ │ ├── datastructures.py │ │ │ │ ├── expressions.py │ │ │ │ ├── query.py │ │ │ │ ├── subqueries.py │ │ │ │ └── where.py │ │ ├── transaction.py │ │ └── utils.py │ ├── dispatch │ │ ├── __init__.py │ │ ├── dispatcher.py │ │ ├── license.txt │ │ └── saferef.py │ ├── forms │ │ ├── __init__.py │ │ ├── extras │ │ │ ├── __init__.py │ │ │ └── widgets.py │ │ ├── fields.py │ │ ├── forms.py │ │ ├── formsets.py │ │ ├── models.py │ │ ├── util.py │ │ └── widgets.py │ ├── http │ │ ├── __init__.py │ │ ├── cookie.py │ │ ├── multipartparser.py │ │ ├── request.py │ │ ├── response.py │ │ └── utils.py │ ├── middleware │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── clickjacking.py │ │ ├── common.py │ │ ├── csrf.py │ │ ├── doc.py │ │ ├── gzip.py │ │ ├── http.py │ │ ├── locale.py │ │ └── transaction.py │ ├── shortcuts │ │ └── __init__.py │ ├── template │ │ ├── __init__.py │ │ ├── base.py │ │ ├── context.py │ │ ├── debug.py │ │ ├── defaultfilters.py │ │ ├── defaulttags.py │ │ ├── loader.py │ │ ├── loader_tags.py │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ ├── app_directories.py │ │ │ ├── cached.py │ │ │ ├── eggs.py │ │ │ └── filesystem.py │ │ ├── response.py │ │ └── smartif.py │ ├── templatetags │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── future.py │ │ ├── i18n.py │ │ ├── l10n.py │ │ ├── static.py │ │ └── tz.py │ ├── test │ │ ├── __init__.py │ │ ├── _doctest.py │ │ ├── client.py │ │ ├── html.py │ │ ├── signals.py │ │ ├── simple.py │ │ ├── testcases.py │ │ └── utils.py │ ├── utils │ │ ├── 2to3_fixes │ │ │ ├── __init__.py │ │ │ └── fix_unicode.py │ │ ├── __init__.py │ │ ├── _os.py │ │ ├── archive.py │ │ ├── autoreload.py │ │ ├── baseconv.py │ │ ├── cache.py │ │ ├── checksums.py │ │ ├── copycompat.py │ │ ├── crypto.py │ │ ├── daemonize.py │ │ ├── datastructures.py │ │ ├── dateformat.py │ │ ├── dateparse.py │ │ ├── dates.py │ │ ├── datetime_safe.py │ │ ├── decorators.py │ │ ├── dictconfig.py │ │ ├── encoding.py │ │ ├── feedgenerator.py │ │ ├── formats.py │ │ ├── functional.py │ │ ├── hashcompat.py │ │ ├── html.py │ │ ├── html_parser.py │ │ ├── http.py │ │ ├── importlib.py │ │ ├── ipv6.py │ │ ├── itercompat.py │ │ ├── jslex.py │ │ ├── log.py │ │ ├── module_loading.py │ │ ├── numberformat.py │ │ ├── regex_helper.py │ │ ├── safestring.py │ │ ├── simplejson.py │ │ ├── six.py │ │ ├── synch.py │ │ ├── termcolors.py │ │ ├── text.py │ │ ├── timesince.py │ │ ├── timezone.py │ │ ├── translation │ │ │ ├── __init__.py │ │ │ ├── trans_null.py │ │ │ └── trans_real.py │ │ ├── tree.py │ │ ├── tzinfo.py │ │ ├── unittest │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── case.py │ │ │ ├── collector.py │ │ │ ├── compatibility.py │ │ │ ├── loader.py │ │ │ ├── main.py │ │ │ ├── result.py │ │ │ ├── runner.py │ │ │ ├── signals.py │ │ │ ├── suite.py │ │ │ └── util.py │ │ ├── version.py │ │ └── xmlutils.py │ └── views │ │ ├── __init__.py │ │ ├── csrf.py │ │ ├── debug.py │ │ ├── decorators │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── clickjacking.py │ │ ├── csrf.py │ │ ├── debug.py │ │ ├── gzip.py │ │ ├── http.py │ │ └── vary.py │ │ ├── defaults.py │ │ ├── generic │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dates.py │ │ ├── detail.py │ │ ├── edit.py │ │ └── list.py │ │ ├── i18n.py │ │ └── static.py ├── docs │ ├── Makefile │ ├── README │ ├── _ext │ │ ├── applyxrefs.py │ │ ├── djangodocs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── djangodocs │ │ │ ├── genindex.html │ │ │ ├── layout.html │ │ │ ├── modindex.html │ │ │ ├── search.html │ │ │ ├── static │ │ │ ├── default.css │ │ │ ├── djangodocs.css │ │ │ ├── docicons-behindscenes.png │ │ │ ├── docicons-note.png │ │ │ ├── docicons-philosophy.png │ │ │ ├── docicons-warning.png │ │ │ ├── homepage.css │ │ │ └── reset-fonts-grids.css │ │ │ └── theme.conf │ ├── conf.py │ ├── contents.txt │ ├── faq │ │ ├── admin.txt │ │ ├── contributing.txt │ │ ├── general.txt │ │ ├── help.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── models.txt │ │ ├── troubleshooting.txt │ │ └── usage.txt │ ├── glossary.txt │ ├── howto │ │ ├── auth-remote-user.txt │ │ ├── custom-file-storage.txt │ │ ├── custom-management-commands.txt │ │ ├── custom-model-fields.txt │ │ ├── custom-template-tags.txt │ │ ├── deployment │ │ │ ├── fastcgi.txt │ │ │ ├── index.txt │ │ │ └── wsgi │ │ │ │ ├── apache-auth.txt │ │ │ │ ├── gunicorn.txt │ │ │ │ ├── index.txt │ │ │ │ ├── modwsgi.txt │ │ │ │ └── uwsgi.txt │ │ ├── error-reporting.txt │ │ ├── index.txt │ │ ├── initial-data.txt │ │ ├── jython.txt │ │ ├── legacy-databases.txt │ │ ├── outputting-csv.txt │ │ ├── outputting-pdf.txt │ │ ├── static-files │ │ │ ├── deployment.txt │ │ │ └── index.txt │ │ └── upgrade-version.txt │ ├── index.txt │ ├── internals │ │ ├── _images │ │ │ └── djangotickets.png │ │ ├── committers.txt │ │ ├── contributing │ │ │ ├── bugs-and-features.txt │ │ │ ├── committing-code.txt │ │ │ ├── index.txt │ │ │ ├── localizing.txt │ │ │ ├── new-contributors.txt │ │ │ ├── triaging-tickets.txt │ │ │ ├── writing-code │ │ │ │ ├── coding-style.txt │ │ │ │ ├── index.txt │ │ │ │ ├── submitting-patches.txt │ │ │ │ ├── unit-tests.txt │ │ │ │ └── working-with-git.txt │ │ │ └── writing-documentation.txt │ │ ├── deprecation.txt │ │ ├── git.txt │ │ ├── index.txt │ │ ├── release-process.txt │ │ └── security.txt │ ├── intro │ │ ├── _images │ │ │ ├── admin01.png │ │ │ ├── admin02.png │ │ │ ├── admin02t.png │ │ │ ├── admin03.png │ │ │ ├── admin03t.png │ │ │ ├── admin04.png │ │ │ ├── admin04t.png │ │ │ ├── admin05.png │ │ │ ├── admin05t.png │ │ │ ├── admin06.png │ │ │ ├── admin06t.png │ │ │ ├── admin07.png │ │ │ ├── admin08.png │ │ │ ├── admin08t.png │ │ │ ├── admin09.png │ │ │ ├── admin10.png │ │ │ ├── admin11.png │ │ │ ├── admin11t.png │ │ │ ├── admin12.png │ │ │ ├── admin12t.png │ │ │ ├── admin13.png │ │ │ ├── admin13t.png │ │ │ ├── admin14.png │ │ │ ├── admin14t.png │ │ │ └── admin15t.png │ │ ├── contributing.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── overview.txt │ │ ├── reusable-apps.txt │ │ ├── tutorial01.txt │ │ ├── tutorial02.txt │ │ ├── tutorial03.txt │ │ ├── tutorial04.txt │ │ ├── tutorial05.txt │ │ ├── tutorial06.txt │ │ └── whatsnext.txt │ ├── make.bat │ ├── man │ │ ├── daily_cleanup.1 │ │ ├── django-admin.1 │ │ └── gather_profile_stats.1 │ ├── misc │ │ ├── api-stability.txt │ │ ├── design-philosophies.txt │ │ ├── distributions.txt │ │ └── index.txt │ ├── ref │ │ ├── class-based-views │ │ │ ├── base.txt │ │ │ ├── flattened-index.txt │ │ │ ├── generic-date-based.txt │ │ │ ├── generic-display.txt │ │ │ ├── generic-editing.txt │ │ │ ├── index.txt │ │ │ ├── mixins-date-based.txt │ │ │ ├── mixins-editing.txt │ │ │ ├── mixins-multiple-object.txt │ │ │ ├── mixins-simple.txt │ │ │ ├── mixins-single-object.txt │ │ │ └── mixins.txt │ │ ├── clickjacking.txt │ │ ├── contrib │ │ │ ├── admin │ │ │ │ ├── _images │ │ │ │ │ ├── article_actions.png │ │ │ │ │ ├── article_actions_message.png │ │ │ │ │ ├── flatfiles_admin.png │ │ │ │ │ ├── raw_id_fields.png │ │ │ │ │ ├── user_actions.png │ │ │ │ │ └── users_changelist.png │ │ │ │ ├── actions.txt │ │ │ │ ├── admindocs.txt │ │ │ │ └── index.txt │ │ │ ├── auth.txt │ │ │ ├── comments │ │ │ │ ├── custom.txt │ │ │ │ ├── example.txt │ │ │ │ ├── forms.txt │ │ │ │ ├── index.txt │ │ │ │ ├── models.txt │ │ │ │ ├── moderation.txt │ │ │ │ ├── settings.txt │ │ │ │ └── signals.txt │ │ │ ├── contenttypes.txt │ │ │ ├── csrf.txt │ │ │ ├── databrowse.txt │ │ │ ├── flatpages.txt │ │ │ ├── formtools │ │ │ │ ├── form-preview.txt │ │ │ │ ├── form-wizard.txt │ │ │ │ └── index.txt │ │ │ ├── gis │ │ │ │ ├── admin.txt │ │ │ │ ├── commands.txt │ │ │ │ ├── db-api.txt │ │ │ │ ├── deployment.txt │ │ │ │ ├── feeds.txt │ │ │ │ ├── gdal.txt │ │ │ │ ├── geoip.txt │ │ │ │ ├── geoquerysets.txt │ │ │ │ ├── geos.txt │ │ │ │ ├── index.txt │ │ │ │ ├── install │ │ │ │ │ ├── create_template_postgis-1.3.sh │ │ │ │ │ ├── create_template_postgis-1.4.sh │ │ │ │ │ ├── create_template_postgis-1.5.sh │ │ │ │ │ ├── create_template_postgis-debian.sh │ │ │ │ │ ├── geodjango_setup.bat │ │ │ │ │ ├── geolibs.txt │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── postgis.txt │ │ │ │ │ └── spatialite.txt │ │ │ │ ├── layermapping.txt │ │ │ │ ├── measure.txt │ │ │ │ ├── model-api.txt │ │ │ │ ├── ogrinspect.txt │ │ │ │ ├── sitemaps.txt │ │ │ │ ├── testing.txt │ │ │ │ ├── tutorial.txt │ │ │ │ └── utils.txt │ │ │ ├── humanize.txt │ │ │ ├── index.txt │ │ │ ├── localflavor.txt │ │ │ ├── markup.txt │ │ │ ├── messages.txt │ │ │ ├── redirects.txt │ │ │ ├── sitemaps.txt │ │ │ ├── sites.txt │ │ │ ├── staticfiles.txt │ │ │ ├── syndication.txt │ │ │ └── webdesign.txt │ │ ├── databases.txt │ │ ├── django-admin.txt │ │ ├── exceptions.txt │ │ ├── files │ │ │ ├── file.txt │ │ │ ├── index.txt │ │ │ └── storage.txt │ │ ├── forms │ │ │ ├── api.txt │ │ │ ├── fields.txt │ │ │ ├── index.txt │ │ │ ├── models.txt │ │ │ ├── validation.txt │ │ │ └── widgets.txt │ │ ├── index.txt │ │ ├── middleware.txt │ │ ├── models │ │ │ ├── fields.txt │ │ │ ├── index.txt │ │ │ ├── instances.txt │ │ │ ├── options.txt │ │ │ ├── querysets.txt │ │ │ └── relations.txt │ │ ├── request-response.txt │ │ ├── settings.txt │ │ ├── signals.txt │ │ ├── template-response.txt │ │ ├── templates │ │ │ ├── api.txt │ │ │ ├── builtins.txt │ │ │ └── index.txt │ │ ├── unicode.txt │ │ ├── urlresolvers.txt │ │ ├── urls.txt │ │ ├── utils.txt │ │ ├── validators.txt │ │ └── views.txt │ ├── releases │ │ ├── 0.95.txt │ │ ├── 0.96.txt │ │ ├── 1.0-alpha-1.txt │ │ ├── 1.0-alpha-2.txt │ │ ├── 1.0-beta-2.txt │ │ ├── 1.0-beta.txt │ │ ├── 1.0-porting-guide.txt │ │ ├── 1.0.1.txt │ │ ├── 1.0.2.txt │ │ ├── 1.0.txt │ │ ├── 1.1-alpha-1.txt │ │ ├── 1.1-beta-1.txt │ │ ├── 1.1-rc-1.txt │ │ ├── 1.1.2.txt │ │ ├── 1.1.3.txt │ │ ├── 1.1.4.txt │ │ ├── 1.1.txt │ │ ├── 1.2-alpha-1.txt │ │ ├── 1.2-beta-1.txt │ │ ├── 1.2-rc-1.txt │ │ ├── 1.2.1.txt │ │ ├── 1.2.2.txt │ │ ├── 1.2.3.txt │ │ ├── 1.2.4.txt │ │ ├── 1.2.5.txt │ │ ├── 1.2.6.txt │ │ ├── 1.2.7.txt │ │ ├── 1.2.txt │ │ ├── 1.3-alpha-1.txt │ │ ├── 1.3-beta-1.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.3.txt │ │ ├── 1.3.4.txt │ │ ├── 1.3.5.txt │ │ ├── 1.3.6.txt │ │ ├── 1.3.7.txt │ │ ├── 1.3.txt │ │ ├── 1.4-alpha-1.txt │ │ ├── 1.4-beta-1.txt │ │ ├── 1.4.1.txt │ │ ├── 1.4.10.txt │ │ ├── 1.4.11.txt │ │ ├── 1.4.12.txt │ │ ├── 1.4.13.txt │ │ ├── 1.4.2.txt │ │ ├── 1.4.3.txt │ │ ├── 1.4.4.txt │ │ ├── 1.4.5.txt │ │ ├── 1.4.6.txt │ │ ├── 1.4.7.txt │ │ ├── 1.4.8.txt │ │ ├── 1.4.9.txt │ │ ├── 1.4.txt │ │ ├── 1.5-alpha-1.txt │ │ ├── 1.5-beta-1.txt │ │ ├── 1.5.1.txt │ │ ├── 1.5.2.txt │ │ ├── 1.5.3.txt │ │ ├── 1.5.4.txt │ │ ├── 1.5.5.txt │ │ ├── 1.5.6.txt │ │ ├── 1.5.7.txt │ │ ├── 1.5.8.txt │ │ ├── 1.5.txt │ │ ├── index.txt │ │ └── security.txt │ └── topics │ │ ├── auth │ │ ├── customizing.txt │ │ ├── default.txt │ │ ├── index.txt │ │ └── passwords.txt │ │ ├── cache.txt │ │ ├── class-based-views │ │ ├── generic-display.txt │ │ ├── generic-editing.txt │ │ ├── index.txt │ │ ├── intro.txt │ │ └── mixins.txt │ │ ├── conditional-view-processing.txt │ │ ├── db │ │ ├── aggregation.txt │ │ ├── examples │ │ │ ├── index.txt │ │ │ ├── many_to_many.txt │ │ │ ├── many_to_one.txt │ │ │ └── one_to_one.txt │ │ ├── index.txt │ │ ├── managers.txt │ │ ├── models.txt │ │ ├── multi-db.txt │ │ ├── optimization.txt │ │ ├── queries.txt │ │ ├── sql.txt │ │ ├── tablespaces.txt │ │ └── transactions.txt │ │ ├── email.txt │ │ ├── files.txt │ │ ├── forms │ │ ├── formsets.txt │ │ ├── index.txt │ │ ├── media.txt │ │ └── modelforms.txt │ │ ├── http │ │ ├── _images │ │ │ └── middleware.png │ │ ├── decorators.txt │ │ ├── file-uploads.txt │ │ ├── generic-views.txt │ │ ├── index.txt │ │ ├── middleware.txt │ │ ├── sessions.txt │ │ ├── shortcuts.txt │ │ ├── urls.txt │ │ └── views.txt │ │ ├── i18n │ │ ├── formatting.txt │ │ ├── index.txt │ │ ├── timezones.txt │ │ └── translation.txt │ │ ├── index.txt │ │ ├── install.txt │ │ ├── logging.txt │ │ ├── pagination.txt │ │ ├── python3.txt │ │ ├── security.txt │ │ ├── serialization.txt │ │ ├── settings.txt │ │ ├── signals.txt │ │ ├── signing.txt │ │ ├── templates.txt │ │ └── testing │ │ ├── _images │ │ └── django_unittest_classes_hierarchy.png │ │ ├── advanced.txt │ │ ├── doctests.txt │ │ ├── index.txt │ │ └── overview.txt ├── extras │ ├── Makefile │ ├── README.TXT │ ├── csrf_migration_helper.py │ └── django_bash_completion ├── pip-egg-info │ └── Django.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── scripts │ ├── manage_translations.py │ └── rpm-install.sh ├── setup.cfg ├── setup.py └── tests │ ├── .coveragerc │ ├── modeltests │ ├── __init__.py │ ├── aggregation │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── aggregation.json │ │ ├── models.py │ │ └── tests.py │ ├── base │ │ ├── __init__.py │ │ └── models.py │ ├── basic │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── choices │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_columns │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_managers │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_methods │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_pk │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── models.py │ │ └── tests.py │ ├── defer │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── delete │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── distinct_on_fields │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── empty │ │ ├── __init__.py │ │ ├── models.py │ │ ├── no_models │ │ │ ├── __init__.py │ │ │ └── tests.py │ │ └── tests.py │ ├── expressions │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── field_defaults │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── field_subclassing │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── models.py │ │ └── tests.py │ ├── files │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── fixtures │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── db_fixture_1.default.json │ │ │ ├── db_fixture_2.default.json.gz │ │ │ ├── db_fixture_3.nosuchdb.json │ │ │ ├── fixture1.json │ │ │ ├── fixture2.json │ │ │ ├── fixture2.xml │ │ │ ├── fixture3.xml │ │ │ ├── fixture4.json.zip │ │ │ ├── fixture5.json.gz │ │ │ ├── fixture5.json.zip │ │ │ ├── fixture6.json │ │ │ ├── fixture7.xml │ │ │ ├── fixture8.json │ │ │ ├── fixture9.xml │ │ │ ├── initial_data.json │ │ │ └── invalid.json │ │ ├── models.py │ │ └── tests.py │ ├── fixtures_model_package │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── fixture1.json │ │ │ ├── fixture2.json │ │ │ ├── fixture2.xml │ │ │ └── initial_data.json │ │ ├── models │ │ │ └── __init__.py │ │ └── tests.py │ ├── force_insert_update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── generic_relations │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── get_latest │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── get_object_or_404 │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── get_or_create │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── invalid_models │ │ ├── __init__.py │ │ ├── invalid_models │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── models.py │ │ └── tests.py │ ├── known_related_objects │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── tournament.json │ │ ├── models.py │ │ └── tests.py │ ├── lookup │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_and_m2o │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_intermediary │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_multiple │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_recursive │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_signals │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_through │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2o_recursive │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_many │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_one │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_one_null │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_forms │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test.png │ │ ├── test2.png │ │ └── tests.py │ ├── model_formsets │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_inheritance │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_inheritance_same_model_name │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_package │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── article.py │ │ │ └── publication.py │ │ └── tests.py │ ├── mutually_referential │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── one_to_one │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── or_lookups │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── order_with_respect_to │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── prefetch_related │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── properties │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── proxy_model_inheritance │ │ ├── __init__.py │ │ ├── app1 │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── app2 │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── models.py │ │ └── tests.py │ ├── proxy_models │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── mypeople.json │ │ ├── models.py │ │ └── tests.py │ ├── raw_query │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── raw_query_books.json │ │ ├── models.py │ │ └── tests.py │ ├── reserved_names │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── reverse_lookup │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── save_delete_hooks │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_for_update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── serializers │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── signals │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── str │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── tablespaces │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── test_client │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── testdata.json │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── timezones │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fixtures │ │ │ └── tz_users.xml │ │ ├── forms.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── transactions │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── unmanaged_models │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── update │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── update_only_fields │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── user_commands │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── dance.py │ │ ├── models.py │ │ └── tests.py │ ├── validation │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test_custom_messages.py │ │ ├── test_error_messages.py │ │ ├── test_unique.py │ │ ├── tests.py │ │ └── validators.py │ └── validators │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── regressiontests │ ├── __init__.py │ ├── admin_changelist │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_custom_urls │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── actions.json │ │ │ └── users.json │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_filters │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_inlines │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fixtures │ │ │ └── admin-views-users.xml │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_registration │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_scripts │ │ ├── __init__.py │ │ ├── app_with_import │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── broken_app │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── complex_app │ │ │ ├── __init__.py │ │ │ ├── admin │ │ │ │ ├── __init__.py │ │ │ │ └── foo.py │ │ │ └── models │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ └── foo.py │ │ ├── custom_templates │ │ │ ├── app_template │ │ │ │ ├── __init__.py │ │ │ │ ├── api.py │ │ │ │ └── models.py │ │ │ ├── project_template.tgz │ │ │ └── project_template │ │ │ │ ├── additional_dir │ │ │ │ ├── Procfile │ │ │ │ ├── additional_file.py │ │ │ │ ├── extra.py │ │ │ │ └── requirements.txt │ │ │ │ ├── manage.py │ │ │ │ ├── project_name │ │ │ │ ├── __init__.py │ │ │ │ └── settings.py │ │ │ │ ├── ticket-18091-non-ascii-template.txt │ │ │ │ └── ticket-19397-binary-file.ico │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── app_command.py │ │ │ │ ├── base_command.py │ │ │ │ ├── custom_startproject.py │ │ │ │ ├── label_command.py │ │ │ │ └── noargs_command.py │ │ ├── models.py │ │ ├── simple_app │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── admin_util │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_validation │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── admin_views │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── customadmin.py │ │ ├── fixtures │ │ │ ├── admin-views-actions.xml │ │ │ ├── admin-views-books.xml │ │ │ ├── admin-views-colors.xml │ │ │ ├── admin-views-fabrics.xml │ │ │ ├── admin-views-person.xml │ │ │ ├── admin-views-unicode.xml │ │ │ ├── admin-views-users.xml │ │ │ ├── deleted-objects.xml │ │ │ ├── multiple-child-classes.json │ │ │ └── string-primary-key.xml │ │ ├── forms.py │ │ ├── models.py │ │ ├── templates │ │ │ └── custom_filter_template.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── admin_widgets │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── admin-widgets-users.xml │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── widgetadmin.py │ ├── aggregation_regress │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── aggregation_regress.json │ │ ├── models.py │ │ └── tests.py │ ├── app_loading │ │ ├── __init__.py │ │ ├── models.py │ │ ├── not_installed │ │ │ ├── __init__.py │ │ │ └── models.py │ │ └── tests.py │ ├── backends │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── bash_completion │ │ ├── __init__.py │ │ ├── management │ │ │ ├── __init__.py │ │ │ └── commands │ │ │ │ ├── __init__.py │ │ │ │ └── test_command.py │ │ ├── models.py │ │ └── tests.py │ ├── bug639 │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test.jpg │ │ └── tests.py │ ├── bug8245 │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ └── tests.py │ ├── builtin_server │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── bulk_create │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── cache │ │ ├── __init__.py │ │ ├── closeable_cache.py │ │ ├── liberal_backend.py │ │ ├── models.py │ │ └── tests.py │ ├── comment_tests │ │ ├── __init__.py │ │ ├── custom_comments │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── models.py │ │ │ └── views.py │ │ ├── fixtures │ │ │ ├── comment_tests.json │ │ │ └── comment_utils.xml │ │ ├── models.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── app_api_tests.py │ │ │ ├── comment_form_tests.py │ │ │ ├── comment_utils_moderators_tests.py │ │ │ ├── comment_view_tests.py │ │ │ ├── feed_tests.py │ │ │ ├── model_tests.py │ │ │ ├── moderation_view_tests.py │ │ │ └── templatetag_tests.py │ │ ├── urls.py │ │ ├── urls_admin.py │ │ └── urls_default.py │ ├── conditional_processing │ │ ├── __init__.py │ │ ├── models.py │ │ ├── urls.py │ │ └── views.py │ ├── context_processors │ │ ├── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── context_processors │ │ │ │ └── request_attrs.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── createsuperuser │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── csrf_tests │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_columns_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── custom_managers_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── datatypes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── dates │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── db_typecasts │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── decorators │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── defaultfilters │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── defer_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── delete_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── dispatch │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── test_dispatcher.py │ │ │ └── test_saferef.py │ ├── expressions_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── extra_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── file_storage │ │ ├── __init__.py │ │ ├── models.py │ │ ├── test.png │ │ ├── test1.png │ │ └── tests.py │ ├── file_uploads │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── uploadhandler.py │ │ ├── urls.py │ │ └── views.py │ ├── fixtures_regress │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── absolute.json │ │ │ ├── animal.xml │ │ │ ├── bad_fixture1.unkn │ │ │ ├── bad_fixture2.xml │ │ │ ├── big-fixture.json │ │ │ ├── empty.json │ │ │ ├── forward_ref.json │ │ │ ├── forward_ref_bad_data.json │ │ │ ├── forward_ref_lookup.json │ │ │ ├── model-inheritance.json │ │ │ ├── nk-inheritance.json │ │ │ ├── nk-inheritance2.xml │ │ │ ├── non_natural_1.json │ │ │ ├── non_natural_2.xml │ │ │ ├── pretty.xml │ │ │ ├── sequence.json │ │ │ ├── sequence_extra.json │ │ │ └── thingy.json │ │ ├── fixtures_1 │ │ │ └── forward_ref_1.json │ │ ├── fixtures_2 │ │ │ └── forward_ref_2.json │ │ ├── models.py │ │ └── tests.py │ ├── forms │ │ ├── __init__.py │ │ ├── models.py │ │ ├── templates │ │ │ └── forms │ │ │ │ └── article_form.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── error_messages.py │ │ │ ├── extra.py │ │ │ ├── fields.py │ │ │ ├── filepath_test_files │ │ │ │ ├── .dot-file │ │ │ │ ├── directory │ │ │ │ │ └── .keep │ │ │ │ ├── fake-image.jpg │ │ │ │ └── real-text-file.txt │ │ │ ├── forms.py │ │ │ ├── formsets.py │ │ │ ├── input_formats.py │ │ │ ├── media.py │ │ │ ├── models.py │ │ │ ├── regressions.py │ │ │ ├── util.py │ │ │ ├── validators.py │ │ │ └── widgets.py │ │ ├── urls.py │ │ └── views.py │ ├── generic_inline_admin │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── fixtures │ │ │ └── users.xml │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── generic_relations_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── generic_views │ │ ├── __init__.py │ │ ├── base.py │ │ ├── dates.py │ │ ├── detail.py │ │ ├── edit.py │ │ ├── fixtures │ │ │ └── generic-views-test-data.json │ │ ├── forms.py │ │ ├── list.py │ │ ├── models.py │ │ ├── templates │ │ │ ├── generic_views │ │ │ │ ├── about.html │ │ │ │ ├── apple_detail.html │ │ │ │ ├── artist_detail.html │ │ │ │ ├── artist_form.html │ │ │ │ ├── author_confirm_delete.html │ │ │ │ ├── author_detail.html │ │ │ │ ├── author_form.html │ │ │ │ ├── author_list.html │ │ │ │ ├── author_objects.html │ │ │ │ ├── author_view.html │ │ │ │ ├── book_archive.html │ │ │ │ ├── book_archive_day.html │ │ │ │ ├── book_archive_month.html │ │ │ │ ├── book_archive_week.html │ │ │ │ ├── book_archive_year.html │ │ │ │ ├── book_detail.html │ │ │ │ ├── book_list.html │ │ │ │ ├── confirm_delete.html │ │ │ │ ├── detail.html │ │ │ │ ├── form.html │ │ │ │ ├── list.html │ │ │ │ ├── page_template.html │ │ │ │ └── robots.txt │ │ │ └── registration │ │ │ │ └── login.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── get_or_create_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── handlers │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── http_utils │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── httpwrappers │ │ ├── __init__.py │ │ ├── abc.txt │ │ ├── models.py │ │ └── tests.py │ ├── i18n │ │ ├── __init__.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── code.sample │ │ │ ├── compilation.py │ │ │ ├── extraction.py │ │ │ ├── ignore_dir │ │ │ │ └── ignored.html │ │ │ ├── javascript.js │ │ │ ├── locale │ │ │ │ ├── es_AR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ ├── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ └── django.po │ │ │ │ └── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── not_utf8.sample │ │ │ ├── templates │ │ │ │ ├── template_with_error.tpl │ │ │ │ └── test.html │ │ │ └── tests.py │ │ ├── contenttypes │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── fr │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── tests.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── other │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ ├── __init__.py │ │ │ │ ├── de │ │ │ │ ├── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ │ ├── __init__.py │ │ │ │ └── formats.py │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── patterns │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ ├── nl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── django.mo │ │ │ │ │ │ └── django.po │ │ │ │ └── pt_BR │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ ├── templates │ │ │ │ ├── 404.html │ │ │ │ └── dummy.html │ │ │ ├── tests.py │ │ │ └── urls │ │ │ │ ├── __init__.py │ │ │ │ ├── default.py │ │ │ │ ├── disabled.py │ │ │ │ ├── namespace.py │ │ │ │ ├── path_unused.py │ │ │ │ ├── wrong.py │ │ │ │ └── wrong_namespace.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── locale │ │ │ │ └── de │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── django.mo │ │ │ │ │ └── django.po │ │ │ └── models.py │ │ └── tests.py │ ├── indexes │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── initial_sql_regress │ │ ├── __init__.py │ │ ├── models.py │ │ ├── sql │ │ │ └── simple.sql │ │ └── tests.py │ ├── inline_formsets │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── inspectdb │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── introspection │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── localflavor │ │ ├── __init__.py │ │ ├── generic │ │ │ ├── __init__.py │ │ │ └── tests.py │ │ ├── models.py │ │ └── tests.py │ ├── logging_tests │ │ ├── __init__.py │ │ ├── logconfig.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── m2m_through_regress │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── m2m_through.json │ │ ├── models.py │ │ └── tests.py │ ├── mail │ │ ├── __init__.py │ │ ├── custombackend.py │ │ ├── models.py │ │ └── tests.py │ ├── managers_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── many_to_one_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── max_lengths │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── middleware │ │ ├── __init__.py │ │ ├── cond_get_urls.py │ │ ├── extra_urls.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── middleware_exceptions │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── model_fields │ │ ├── 4x8.png │ │ ├── 8x4.png │ │ ├── __init__.py │ │ ├── imagefield.py │ │ ├── models.py │ │ └── tests.py │ ├── model_forms_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_formsets_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_inheritance_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_inheritance_select_related │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── model_permalink │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── urls.py │ ├── model_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── modeladmin │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── multiple_database │ │ ├── __init__.py │ │ ├── fixtures │ │ │ ├── multidb-common.json │ │ │ ├── multidb.default.json │ │ │ ├── multidb.other.json │ │ │ └── pets.json │ │ ├── models.py │ │ └── tests.py │ ├── nested_foreign_keys │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── null_fk │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── null_fk_ordering │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── null_queries │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── one_to_one_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── pagination │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── queries │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── queryset_pickle │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── requests │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── resolve_url │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── reverse_single_related │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related_onetoone │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── select_related_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── serializers_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── servers │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── testdata.json │ │ ├── media │ │ │ └── example_media_file.txt │ │ ├── models.py │ │ ├── static │ │ │ └── example_static_file.txt │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── settings_tests │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── signals_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── signed_cookies_tests │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── signing │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── sites_framework │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── special_headers │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── data.xml │ │ ├── models.py │ │ ├── templates │ │ │ └── special_headers │ │ │ │ └── article_detail.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── staticfiles_tests │ │ ├── __init__.py │ │ ├── apps │ │ │ ├── __init__.py │ │ │ ├── no_label │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ └── static │ │ │ │ │ └── file2.txt │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ ├── models.py │ │ │ │ ├── otherdir │ │ │ │ └── odfile.txt │ │ │ │ └── static │ │ │ │ └── test │ │ │ │ ├── CVS │ │ │ │ ├── file.txt │ │ │ │ ├── file1.txt │ │ │ │ ├── nonascii.css │ │ │ │ ├── test.ignoreme │ │ │ │ └── window.png │ │ ├── models.py │ │ ├── project │ │ │ ├── documents │ │ │ │ ├── cached │ │ │ │ │ ├── absolute.css │ │ │ │ │ ├── css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ │ ├── font.eot │ │ │ │ │ │ │ └── font.svg │ │ │ │ │ │ ├── fragments.css │ │ │ │ │ │ ├── ignored.css │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ └── window.png │ │ │ │ │ │ └── window.css │ │ │ │ │ ├── denorm.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── relative.png │ │ │ │ │ ├── import.css │ │ │ │ │ ├── other.css │ │ │ │ │ ├── relative.css │ │ │ │ │ ├── styles.css │ │ │ │ │ └── url.css │ │ │ │ ├── subdir │ │ │ │ │ └── test.txt │ │ │ │ ├── test.txt │ │ │ │ └── test │ │ │ │ │ ├── camelCase.txt │ │ │ │ │ └── file.txt │ │ │ ├── prefixed │ │ │ │ └── test.txt │ │ │ └── site_media │ │ │ │ ├── media │ │ │ │ └── media-file.txt │ │ │ │ └── static │ │ │ │ └── testfile.txt │ │ ├── storage.py │ │ ├── tests.py │ │ └── urls │ │ │ ├── __init__.py │ │ │ ├── default.py │ │ │ └── helper.py │ ├── string_lookup │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── swappable_models │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── syndication │ │ ├── __init__.py │ │ ├── feeds.py │ │ ├── fixtures │ │ │ └── feeddata.json │ │ ├── models.py │ │ ├── templates │ │ │ └── syndication │ │ │ │ ├── description.html │ │ │ │ └── title.html │ │ ├── tests.py │ │ └── urls.py │ ├── templates │ │ ├── __init__.py │ │ ├── alternate_urls.py │ │ ├── callables.py │ │ ├── context.py │ │ ├── custom.py │ │ ├── filters.py │ │ ├── loaders.py │ │ ├── models.py │ │ ├── nodelist.py │ │ ├── parser.py │ │ ├── response.py │ │ ├── smartif.py │ │ ├── templates │ │ │ ├── broken_base.html │ │ │ ├── first │ │ │ │ └── test.html │ │ │ ├── inclusion.html │ │ │ ├── response.html │ │ │ ├── second │ │ │ │ └── test.html │ │ │ ├── ssi include with spaces.html │ │ │ ├── ssi_include.html │ │ │ ├── test_context.html │ │ │ ├── test_extends_error.html │ │ │ ├── test_incl_tag_current_app.html │ │ │ ├── test_incl_tag_use_l10n.html │ │ │ └── test_include_error.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ ├── bad_tag.py │ │ │ ├── broken_tag.py │ │ │ ├── custom.py │ │ │ └── subpackage │ │ │ │ ├── __init__.py │ │ │ │ ├── echo.py │ │ │ │ └── echo_invalid.py │ │ ├── tests.py │ │ ├── unicode.py │ │ ├── urls.py │ │ └── views.py │ ├── test_client_regress │ │ ├── __init__.py │ │ ├── bad_templates │ │ │ └── 404.html │ │ ├── fixtures │ │ │ └── testdata.json │ │ ├── models.py │ │ ├── session.py │ │ ├── templates │ │ │ ├── request_context.html │ │ │ └── unicode.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── test_runner │ │ ├── __init__.py │ │ ├── deprecation_app │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── invalid_app │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ └── __init__.py │ │ │ └── tests │ │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ └── valid_app │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ └── __init__.py │ │ │ └── tests │ │ │ └── __init__.py │ ├── test_utils │ │ ├── __init__.py │ │ ├── fixtures │ │ │ └── should_not_be_loaded.json │ │ ├── models.py │ │ ├── templates │ │ │ └── template_used │ │ │ │ ├── alternative.html │ │ │ │ ├── base.html │ │ │ │ ├── extends.html │ │ │ │ └── include.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── text │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── transactions_regress │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── urlpatterns_reverse │ │ ├── __init__.py │ │ ├── erroneous_urls.py │ │ ├── erroneous_views_module.py │ │ ├── extra_urls.py │ │ ├── included_named_urls.py │ │ ├── included_named_urls2.py │ │ ├── included_namespace_urls.py │ │ ├── included_urls.py │ │ ├── included_urls2.py │ │ ├── middleware.py │ │ ├── models.py │ │ ├── named_urls.py │ │ ├── namespace_urls.py │ │ ├── no_urls.py │ │ ├── nonimported_module.py │ │ ├── reverse_lazy_urls.py │ │ ├── tests.py │ │ ├── urlconf_inner.py │ │ ├── urlconf_outer.py │ │ ├── urls.py │ │ ├── urls_error_handlers.py │ │ ├── urls_error_handlers_callables.py │ │ ├── urls_without_full_import.py │ │ ├── views.py │ │ └── views_broken.py │ ├── utils │ │ ├── __init__.py │ │ ├── archive.py │ │ ├── archives │ │ │ ├── foobar.tar │ │ │ ├── foobar.tar.bz2 │ │ │ ├── foobar.tar.gz │ │ │ └── foobar.zip │ │ ├── baseconv.py │ │ ├── checksums.py │ │ ├── crypto.py │ │ ├── datastructures.py │ │ ├── dateformat.py │ │ ├── dateparse.py │ │ ├── datetime_safe.py │ │ ├── decorators.py │ │ ├── encoding.py │ │ ├── feedgenerator.py │ │ ├── functional.py │ │ ├── html.py │ │ ├── http.py │ │ ├── ipv6.py │ │ ├── itercompat.py │ │ ├── jslex.py │ │ ├── models.py │ │ ├── module_loading.py │ │ ├── numberformat.py │ │ ├── os_utils.py │ │ ├── regex_helper.py │ │ ├── simplelazyobject.py │ │ ├── termcolors.py │ │ ├── test_module │ │ │ ├── __init__.py │ │ │ ├── bad_module.py │ │ │ └── good_module.py │ │ ├── test_no_submodule.py │ │ ├── tests.py │ │ ├── text.py │ │ ├── timesince.py │ │ ├── timezone.py │ │ └── tzinfo.py │ ├── version │ │ ├── __init__.py │ │ ├── models.py │ │ └── tests.py │ ├── views │ │ ├── __init__.py │ │ ├── app0 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── en │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app1 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app2 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app3 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── app4 │ │ │ ├── __init__.py │ │ │ └── locale │ │ │ │ └── es_AR │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── fixtures │ │ │ └── testdata.json │ │ ├── generic_urls.py │ │ ├── locale │ │ │ ├── de │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── es │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ ├── fr │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── djangojs.mo │ │ │ │ │ └── djangojs.po │ │ │ └── ru │ │ │ │ └── LC_MESSAGES │ │ │ │ ├── djangojs.mo │ │ │ │ └── djangojs.po │ │ ├── media │ │ │ ├── file.txt │ │ │ ├── file.txt.gz │ │ │ └── file.unknown │ │ ├── models.py │ │ ├── templates │ │ │ ├── debug │ │ │ │ ├── render_test.html │ │ │ │ └── template_exception.html │ │ │ └── jsi18n.html │ │ ├── templatetags │ │ │ ├── __init__.py │ │ │ └── debugtags.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── debug.py │ │ │ ├── defaults.py │ │ │ ├── i18n.py │ │ │ ├── shortcuts.py │ │ │ ├── specials.py │ │ │ └── static.py │ │ ├── urls.py │ │ └── views.py │ └── wsgi │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── requirements │ ├── base.txt │ ├── mysql.txt │ ├── oracle.txt │ ├── postgres.txt │ ├── py2.txt │ └── py3.txt │ ├── runtests.py │ ├── templates │ ├── base.html │ ├── comments │ │ └── comment_notification_email.txt │ ├── custom_admin │ │ ├── add_form.html │ │ ├── change_form.html │ │ ├── change_list.html │ │ ├── delete_confirmation.html │ │ ├── delete_selected_confirmation.html │ │ ├── index.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── object_history.html │ │ ├── password_change_done.html │ │ └── password_change_form.html │ ├── extended.html │ ├── form_view.html │ ├── login.html │ └── views │ │ ├── article_archive_day.html │ │ ├── article_archive_month.html │ │ ├── article_confirm_delete.html │ │ ├── article_detail.html │ │ ├── article_form.html │ │ ├── article_list.html │ │ ├── datearticle_archive_month.html │ │ ├── urlarticle_detail.html │ │ └── urlarticle_form.html │ ├── test_sqlite.py │ └── urls.py ├── Jinja2 ├── AUTHORS ├── CHANGES ├── Jinja2.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.rst ├── artwork │ └── jinjalogo.svg ├── docs │ ├── Makefile │ ├── _static │ │ ├── .ignore │ │ └── jinja-small.png │ ├── _templates │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── _themes │ │ ├── LICENSE │ │ ├── README │ │ └── jinja │ │ │ ├── layout.html │ │ │ ├── relations.html │ │ │ ├── static │ │ │ └── jinja.css_t │ │ │ └── theme.conf │ ├── api.rst │ ├── cache_extension.py │ ├── changelog.rst │ ├── conf.py │ ├── contents.rst.inc │ ├── extensions.rst │ ├── faq.rst │ ├── index.rst │ ├── integration.rst │ ├── intro.rst │ ├── jinjaext.py │ ├── jinjastyle.sty │ ├── latexindex.rst │ ├── logo.pdf │ ├── sandbox.rst │ ├── switching.rst │ ├── templates.rst │ └── tricks.rst ├── examples │ ├── basic │ │ ├── cycle.py │ │ ├── debugger.py │ │ ├── inheritance.py │ │ ├── templates │ │ │ ├── broken.html │ │ │ └── subbroken.html │ │ ├── test.py │ │ ├── test_filter_and_linestatements.py │ │ ├── test_loop_filter.py │ │ └── translate.py │ ├── bench.py │ ├── profile.py │ └── rwbench │ │ ├── django │ │ ├── _form.html │ │ ├── _input_field.html │ │ ├── _textarea.html │ │ ├── index.html │ │ └── layout.html │ │ ├── djangoext.py │ │ ├── genshi │ │ ├── helpers.html │ │ ├── index.html │ │ └── layout.html │ │ ├── jinja │ │ ├── helpers.html │ │ ├── index.html │ │ └── layout.html │ │ ├── mako │ │ ├── helpers.html │ │ ├── index.html │ │ └── layout.html │ │ └── rwbench.py ├── ext │ ├── Vim │ │ └── jinja.vim │ ├── django2jinja │ │ ├── django2jinja.py │ │ ├── example.py │ │ └── templates │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ └── subtemplate.html │ ├── djangojinja2.py │ ├── inlinegettext.py │ └── jinja.el ├── jinja2 │ ├── __init__.py │ ├── _compat.py │ ├── _stringdefs.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── testsuite │ │ ├── __init__.py │ │ ├── api.py │ │ ├── bytecode_cache.py │ │ ├── core_tags.py │ │ ├── debug.py │ │ ├── doctests.py │ │ ├── ext.py │ │ ├── filters.py │ │ ├── imports.py │ │ ├── inheritance.py │ │ ├── lexnparse.py │ │ ├── loader.py │ │ ├── regression.py │ │ ├── res │ │ │ ├── __init__.py │ │ │ └── templates │ │ │ │ ├── broken.html │ │ │ │ ├── foo │ │ │ │ └── test.html │ │ │ │ ├── syntaxerror.html │ │ │ │ └── test.html │ │ ├── security.py │ │ ├── tests.py │ │ └── utils.py │ ├── utils.py │ └── visitor.py ├── pip-egg-info │ └── Jinja2.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── run-tests.py ├── setup.cfg └── setup.py ├── PyJWT ├── PyJWT-1.1.0.data │ └── scripts │ │ └── jwt ├── PyJWT-1.1.0.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── jwt │ ├── __init__.py │ ├── algorithms.py │ ├── api.py │ ├── compat.py │ ├── contrib │ ├── __init__.py │ └── algorithms │ │ ├── __init__.py │ │ ├── py_ecdsa.py │ │ └── pycrypto.py │ ├── exceptions.py │ └── utils.py ├── PyYaml ├── CHANGES ├── LICENSE ├── PKG-INFO ├── README ├── examples │ ├── pygments-lexer │ │ ├── example.yaml │ │ └── yaml.py │ └── yaml-highlight │ │ ├── yaml_hl.cfg │ │ └── yaml_hl.py ├── ext │ ├── _yaml.c │ ├── _yaml.h │ ├── _yaml.pxd │ └── _yaml.pyx ├── lib │ └── yaml │ │ ├── __init__.py │ │ ├── composer.py │ │ ├── constructor.py │ │ ├── cyaml.py │ │ ├── dumper.py │ │ ├── emitter.py │ │ ├── error.py │ │ ├── events.py │ │ ├── loader.py │ │ ├── nodes.py │ │ ├── parser.py │ │ ├── reader.py │ │ ├── representer.py │ │ ├── resolver.py │ │ ├── scanner.py │ │ ├── serializer.py │ │ └── tokens.py ├── lib3 │ └── yaml │ │ ├── __init__.py │ │ ├── composer.py │ │ ├── constructor.py │ │ ├── cyaml.py │ │ ├── dumper.py │ │ ├── emitter.py │ │ ├── error.py │ │ ├── events.py │ │ ├── loader.py │ │ ├── nodes.py │ │ ├── parser.py │ │ ├── reader.py │ │ ├── representer.py │ │ ├── resolver.py │ │ ├── scanner.py │ │ ├── serializer.py │ │ └── tokens.py ├── pip-egg-info │ └── PyYAML.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── tests │ ├── data │ ├── a-nasty-libyaml-bug.loader-error │ ├── aliases-cdumper-bug.code │ ├── aliases.events │ ├── bool.data │ ├── bool.detect │ ├── colon-in-flow-context.loader-error │ ├── construct-binary-py2.code │ ├── construct-binary-py2.data │ ├── construct-binary-py3.code │ ├── construct-binary-py3.data │ ├── construct-bool.code │ ├── construct-bool.data │ ├── construct-custom.code │ ├── construct-custom.data │ ├── construct-float.code │ ├── construct-float.data │ ├── construct-int.code │ ├── construct-int.data │ ├── construct-map.code │ ├── construct-map.data │ ├── construct-merge.code │ ├── construct-merge.data │ ├── construct-null.code │ ├── construct-null.data │ ├── construct-omap.code │ ├── construct-omap.data │ ├── construct-pairs.code │ ├── construct-pairs.data │ ├── construct-python-bool.code │ ├── construct-python-bool.data │ ├── construct-python-bytes-py3.code │ ├── construct-python-bytes-py3.data │ ├── construct-python-complex.code │ ├── construct-python-complex.data │ ├── construct-python-float.code │ ├── construct-python-float.data │ ├── construct-python-int.code │ ├── construct-python-int.data │ ├── construct-python-long-short-py2.code │ ├── construct-python-long-short-py2.data │ ├── construct-python-long-short-py3.code │ ├── construct-python-long-short-py3.data │ ├── construct-python-name-module.code │ ├── construct-python-name-module.data │ ├── construct-python-none.code │ ├── construct-python-none.data │ ├── construct-python-object.code │ ├── construct-python-object.data │ ├── construct-python-str-ascii.code │ ├── construct-python-str-ascii.data │ ├── construct-python-str-utf8-py2.code │ ├── construct-python-str-utf8-py2.data │ ├── construct-python-str-utf8-py3.code │ ├── construct-python-str-utf8-py3.data │ ├── construct-python-tuple-list-dict.code │ ├── construct-python-tuple-list-dict.data │ ├── construct-python-unicode-ascii-py2.code │ ├── construct-python-unicode-ascii-py2.data │ ├── construct-python-unicode-ascii-py3.code │ ├── construct-python-unicode-ascii-py3.data │ ├── construct-python-unicode-utf8-py2.code │ ├── construct-python-unicode-utf8-py2.data │ ├── construct-python-unicode-utf8-py3.code │ ├── construct-python-unicode-utf8-py3.data │ ├── construct-seq.code │ ├── construct-seq.data │ ├── construct-set.code │ ├── construct-set.data │ ├── construct-str-ascii.code │ ├── construct-str-ascii.data │ ├── construct-str-utf8-py2.code │ ├── construct-str-utf8-py2.data │ ├── construct-str-utf8-py3.code │ ├── construct-str-utf8-py3.data │ ├── construct-str.code │ ├── construct-str.data │ ├── construct-timestamp.code │ ├── construct-timestamp.data │ ├── construct-value.code │ ├── construct-value.data │ ├── document-separator-in-quoted-scalar.loader-error │ ├── documents.events │ ├── duplicate-anchor-1.loader-error │ ├── duplicate-anchor-2.loader-error │ ├── duplicate-key.former-loader-error.code │ ├── duplicate-key.former-loader-error.data │ ├── duplicate-mapping-key.former-loader-error.code │ ├── duplicate-mapping-key.former-loader-error.data │ ├── duplicate-merge-key.former-loader-error.code │ ├── duplicate-merge-key.former-loader-error.data │ ├── duplicate-tag-directive.loader-error │ ├── duplicate-value-key.former-loader-error.code │ ├── duplicate-value-key.former-loader-error.data │ ├── duplicate-yaml-directive.loader-error │ ├── emit-block-scalar-in-simple-key-context-bug.canonical │ ├── emit-block-scalar-in-simple-key-context-bug.data │ ├── emitting-unacceptable-unicode-character-bug-py2.code │ ├── emitting-unacceptable-unicode-character-bug-py2.data │ ├── emitting-unacceptable-unicode-character-bug-py2.skip-ext │ ├── emitting-unacceptable-unicode-character-bug-py3.code │ ├── emitting-unacceptable-unicode-character-bug-py3.data │ ├── emitting-unacceptable-unicode-character-bug-py3.skip-ext │ ├── empty-anchor.emitter-error │ ├── empty-document-bug.canonical │ ├── empty-document-bug.data │ ├── empty-document-bug.empty │ ├── empty-documents.single-loader-error │ ├── empty-python-module.loader-error │ ├── empty-python-name.loader-error │ ├── empty-tag-handle.emitter-error │ ├── empty-tag-prefix.emitter-error │ ├── empty-tag.emitter-error │ ├── expected-document-end.emitter-error │ ├── expected-document-start.emitter-error │ ├── expected-mapping.loader-error │ ├── expected-node-1.emitter-error │ ├── expected-node-2.emitter-error │ ├── expected-nothing.emitter-error │ ├── expected-scalar.loader-error │ ├── expected-sequence.loader-error │ ├── expected-stream-start.emitter-error │ ├── explicit-document.single-loader-error │ ├── fetch-complex-value-bug.loader-error │ ├── float-representer-2.3-bug.code │ ├── float-representer-2.3-bug.data │ ├── float.data │ ├── float.detect │ ├── forbidden-entry.loader-error │ ├── forbidden-key.loader-error │ ├── forbidden-value.loader-error │ ├── implicit-document.single-loader-error │ ├── int.data │ ├── int.detect │ ├── invalid-anchor-1.loader-error │ ├── invalid-anchor-2.loader-error │ ├── invalid-anchor.emitter-error │ ├── invalid-base64-data-2.loader-error │ ├── invalid-base64-data.loader-error │ ├── invalid-block-scalar-indicator.loader-error │ ├── invalid-character.loader-error │ ├── invalid-character.stream-error │ ├── invalid-directive-line.loader-error │ ├── invalid-directive-name-1.loader-error │ ├── invalid-directive-name-2.loader-error │ ├── invalid-escape-character.loader-error │ ├── invalid-escape-numbers.loader-error │ ├── invalid-indentation-indicator-1.loader-error │ ├── invalid-indentation-indicator-2.loader-error │ ├── invalid-item-without-trailing-break.loader-error │ ├── invalid-merge-1.loader-error │ ├── invalid-merge-2.loader-error │ ├── invalid-omap-1.loader-error │ ├── invalid-omap-2.loader-error │ ├── invalid-omap-3.loader-error │ ├── invalid-pairs-1.loader-error │ ├── invalid-pairs-2.loader-error │ ├── invalid-pairs-3.loader-error │ ├── invalid-python-bytes-2-py3.loader-error │ ├── invalid-python-bytes-py3.loader-error │ ├── invalid-python-module-kind.loader-error │ ├── invalid-python-module-value.loader-error │ ├── invalid-python-module.loader-error │ ├── invalid-python-name-kind.loader-error │ ├── invalid-python-name-module-2.loader-error │ ├── invalid-python-name-module.loader-error │ ├── invalid-python-name-object.loader-error │ ├── invalid-python-name-value.loader-error │ ├── invalid-simple-key.loader-error │ ├── invalid-single-quote-bug.code │ ├── invalid-single-quote-bug.data │ ├── invalid-starting-character.loader-error │ ├── invalid-tag-1.loader-error │ ├── invalid-tag-2.loader-error │ ├── invalid-tag-directive-handle.loader-error │ ├── invalid-tag-directive-prefix.loader-error │ ├── invalid-tag-handle-1.emitter-error │ ├── invalid-tag-handle-1.loader-error │ ├── invalid-tag-handle-2.emitter-error │ ├── invalid-tag-handle-2.loader-error │ ├── invalid-uri-escapes-1.loader-error │ ├── invalid-uri-escapes-2.loader-error │ ├── invalid-uri-escapes-3.loader-error │ ├── invalid-uri.loader-error │ ├── invalid-utf8-byte.loader-error │ ├── invalid-utf8-byte.stream-error │ ├── invalid-yaml-directive-version-1.loader-error │ ├── invalid-yaml-directive-version-2.loader-error │ ├── invalid-yaml-directive-version-3.loader-error │ ├── invalid-yaml-directive-version-4.loader-error │ ├── invalid-yaml-directive-version-5.loader-error │ ├── invalid-yaml-directive-version-6.loader-error │ ├── invalid-yaml-version.loader-error │ ├── latin.unicode │ ├── mappings.events │ ├── merge.data │ ├── merge.detect │ ├── more-floats.code │ ├── more-floats.data │ ├── negative-float-bug.code │ ├── negative-float-bug.data │ ├── no-alias-anchor.emitter-error │ ├── no-alias-anchor.skip-ext │ ├── no-block-collection-end.loader-error │ ├── no-block-mapping-end-2.loader-error │ ├── no-block-mapping-end.loader-error │ ├── no-document-start.loader-error │ ├── no-flow-mapping-end.loader-error │ ├── no-flow-sequence-end.loader-error │ ├── no-node-1.loader-error │ ├── no-node-2.loader-error │ ├── no-tag.emitter-error │ ├── null.data │ ├── null.detect │ ├── odd-utf16.stream-error │ ├── recursive-anchor.former-loader-error │ ├── recursive-dict.recursive │ ├── recursive-list.recursive │ ├── recursive-set.recursive │ ├── recursive-state.recursive │ ├── recursive-tuple.recursive │ ├── recursive.former-dumper-error │ ├── remove-possible-simple-key-bug.loader-error │ ├── resolver.data │ ├── resolver.path │ ├── run-parser-crash-bug.data │ ├── scalars.events │ ├── scan-document-end-bug.canonical │ ├── scan-document-end-bug.data │ ├── scan-line-break-bug.canonical │ ├── scan-line-break-bug.data │ ├── sequences.events │ ├── serializer-is-already-opened.dumper-error │ ├── serializer-is-closed-1.dumper-error │ ├── serializer-is-closed-2.dumper-error │ ├── serializer-is-not-opened-1.dumper-error │ ├── serializer-is-not-opened-2.dumper-error │ ├── single-dot-is-not-float-bug.code │ ├── single-dot-is-not-float-bug.data │ ├── sloppy-indentation.canonical │ ├── sloppy-indentation.data │ ├── spec-02-01.data │ ├── spec-02-01.structure │ ├── spec-02-01.tokens │ ├── spec-02-02.data │ ├── spec-02-02.structure │ ├── spec-02-02.tokens │ ├── spec-02-03.data │ ├── spec-02-03.structure │ ├── spec-02-03.tokens │ ├── spec-02-04.data │ ├── spec-02-04.structure │ ├── spec-02-04.tokens │ ├── spec-02-05.data │ ├── spec-02-05.structure │ ├── spec-02-05.tokens │ ├── spec-02-06.data │ ├── spec-02-06.structure │ ├── spec-02-06.tokens │ ├── spec-02-07.data │ ├── spec-02-07.structure │ ├── spec-02-07.tokens │ ├── spec-02-08.data │ ├── spec-02-08.structure │ ├── spec-02-08.tokens │ ├── spec-02-09.data │ ├── spec-02-09.structure │ ├── spec-02-09.tokens │ ├── spec-02-10.data │ ├── spec-02-10.structure │ ├── spec-02-10.tokens │ ├── spec-02-11.data │ ├── spec-02-11.structure │ ├── spec-02-11.tokens │ ├── spec-02-12.data │ ├── spec-02-12.structure │ ├── spec-02-12.tokens │ ├── spec-02-13.data │ ├── spec-02-13.structure │ ├── spec-02-13.tokens │ ├── spec-02-14.data │ ├── spec-02-14.structure │ ├── spec-02-14.tokens │ ├── spec-02-15.data │ ├── spec-02-15.structure │ ├── spec-02-15.tokens │ ├── spec-02-16.data │ ├── spec-02-16.structure │ ├── spec-02-16.tokens │ ├── spec-02-17.data │ ├── spec-02-17.structure │ ├── spec-02-17.tokens │ ├── spec-02-18.data │ ├── spec-02-18.structure │ ├── spec-02-18.tokens │ ├── spec-02-19.data │ ├── spec-02-19.structure │ ├── spec-02-19.tokens │ ├── spec-02-20.data │ ├── spec-02-20.structure │ ├── spec-02-20.tokens │ ├── spec-02-21.data │ ├── spec-02-21.structure │ ├── spec-02-21.tokens │ ├── spec-02-22.data │ ├── spec-02-22.structure │ ├── spec-02-22.tokens │ ├── spec-02-23.data │ ├── spec-02-23.structure │ ├── spec-02-23.tokens │ ├── spec-02-24.data │ ├── spec-02-24.structure │ ├── spec-02-24.tokens │ ├── spec-02-25.data │ ├── spec-02-25.structure │ ├── spec-02-25.tokens │ ├── spec-02-26.data │ ├── spec-02-26.structure │ ├── spec-02-26.tokens │ ├── spec-02-27.data │ ├── spec-02-27.structure │ ├── spec-02-27.tokens │ ├── spec-02-28.data │ ├── spec-02-28.structure │ ├── spec-02-28.tokens │ ├── spec-05-01-utf16be.data │ ├── spec-05-01-utf16be.empty │ ├── spec-05-01-utf16le.data │ ├── spec-05-01-utf16le.empty │ ├── spec-05-01-utf8.data │ ├── spec-05-01-utf8.empty │ ├── spec-05-02-utf16be.data │ ├── spec-05-02-utf16be.error │ ├── spec-05-02-utf16le.data │ ├── spec-05-02-utf16le.error │ ├── spec-05-02-utf8.data │ ├── spec-05-02-utf8.error │ ├── spec-05-03.canonical │ ├── spec-05-03.data │ ├── spec-05-04.canonical │ ├── spec-05-04.data │ ├── spec-05-05.data │ ├── spec-05-05.empty │ ├── spec-05-06.canonical │ ├── spec-05-06.data │ ├── spec-05-07.canonical │ ├── spec-05-07.data │ ├── spec-05-08.canonical │ ├── spec-05-08.data │ ├── spec-05-09.canonical │ ├── spec-05-09.data │ ├── spec-05-10.data │ ├── spec-05-10.error │ ├── spec-05-11.canonical │ ├── spec-05-11.data │ ├── spec-05-12.data │ ├── spec-05-12.error │ ├── spec-05-13.canonical │ ├── spec-05-13.data │ ├── spec-05-14.canonical │ ├── spec-05-14.data │ ├── spec-05-15.data │ ├── spec-05-15.error │ ├── spec-06-01.canonical │ ├── spec-06-01.data │ ├── spec-06-02.data │ ├── spec-06-02.empty │ ├── spec-06-03.canonical │ ├── spec-06-03.data │ ├── spec-06-04.canonical │ ├── spec-06-04.data │ ├── spec-06-05.canonical │ ├── spec-06-05.data │ ├── spec-06-06.canonical │ ├── spec-06-06.data │ ├── spec-06-07.canonical │ ├── spec-06-07.data │ ├── spec-06-08.canonical │ ├── spec-06-08.data │ ├── spec-07-01.canonical │ ├── spec-07-01.data │ ├── spec-07-01.skip-ext │ ├── spec-07-02.canonical │ ├── spec-07-02.data │ ├── spec-07-02.skip-ext │ ├── spec-07-03.data │ ├── spec-07-03.error │ ├── spec-07-04.canonical │ ├── spec-07-04.data │ ├── spec-07-05.data │ ├── spec-07-05.error │ ├── spec-07-06.canonical │ ├── spec-07-06.data │ ├── spec-07-07a.canonical │ ├── spec-07-07a.data │ ├── spec-07-07b.canonical │ ├── spec-07-07b.data │ ├── spec-07-08.canonical │ ├── spec-07-08.data │ ├── spec-07-09.canonical │ ├── spec-07-09.data │ ├── spec-07-10.canonical │ ├── spec-07-10.data │ ├── spec-07-11.data │ ├── spec-07-11.empty │ ├── spec-07-12a.canonical │ ├── spec-07-12a.data │ ├── spec-07-12b.canonical │ ├── spec-07-12b.data │ ├── spec-07-13.canonical │ ├── spec-07-13.data │ ├── spec-08-01.canonical │ ├── spec-08-01.data │ ├── spec-08-02.canonical │ ├── spec-08-02.data │ ├── spec-08-03.canonical │ ├── spec-08-03.data │ ├── spec-08-04.data │ ├── spec-08-04.error │ ├── spec-08-05.canonical │ ├── spec-08-05.data │ ├── spec-08-06.data │ ├── spec-08-06.error │ ├── spec-08-07.canonical │ ├── spec-08-07.data │ ├── spec-08-08.canonical │ ├── spec-08-08.data │ ├── spec-08-09.canonical │ ├── spec-08-09.data │ ├── spec-08-10.canonical │ ├── spec-08-10.data │ ├── spec-08-11.canonical │ ├── spec-08-11.data │ ├── spec-08-12.canonical │ ├── spec-08-12.data │ ├── spec-08-13.canonical │ ├── spec-08-13.data │ ├── spec-08-13.skip-ext │ ├── spec-08-14.canonical │ ├── spec-08-14.data │ ├── spec-08-15.canonical │ ├── spec-08-15.data │ ├── spec-09-01.canonical │ ├── spec-09-01.data │ ├── spec-09-02.canonical │ ├── spec-09-02.data │ ├── spec-09-03.canonical │ ├── spec-09-03.data │ ├── spec-09-04.canonical │ ├── spec-09-04.data │ ├── spec-09-05.canonical │ ├── spec-09-05.data │ ├── spec-09-06.canonical │ ├── spec-09-06.data │ ├── spec-09-07.canonical │ ├── spec-09-07.data │ ├── spec-09-08.canonical │ ├── spec-09-08.data │ ├── spec-09-09.canonical │ ├── spec-09-09.data │ ├── spec-09-10.canonical │ ├── spec-09-10.data │ ├── spec-09-11.canonical │ ├── spec-09-11.data │ ├── spec-09-12.canonical │ ├── spec-09-12.data │ ├── spec-09-13.canonical │ ├── spec-09-13.data │ ├── spec-09-14.data │ ├── spec-09-14.error │ ├── spec-09-15.canonical │ ├── spec-09-15.data │ ├── spec-09-16.canonical │ ├── spec-09-16.data │ ├── spec-09-17.canonical │ ├── spec-09-17.data │ ├── spec-09-18.canonical │ ├── spec-09-18.data │ ├── spec-09-19.canonical │ ├── spec-09-19.data │ ├── spec-09-20.canonical │ ├── spec-09-20.data │ ├── spec-09-20.skip-ext │ ├── spec-09-21.data │ ├── spec-09-21.error │ ├── spec-09-22.canonical │ ├── spec-09-22.data │ ├── spec-09-23.canonical │ ├── spec-09-23.data │ ├── spec-09-24.canonical │ ├── spec-09-24.data │ ├── spec-09-25.canonical │ ├── spec-09-25.data │ ├── spec-09-26.canonical │ ├── spec-09-26.data │ ├── spec-09-27.canonical │ ├── spec-09-27.data │ ├── spec-09-28.canonical │ ├── spec-09-28.data │ ├── spec-09-29.canonical │ ├── spec-09-29.data │ ├── spec-09-30.canonical │ ├── spec-09-30.data │ ├── spec-09-31.canonical │ ├── spec-09-31.data │ ├── spec-09-32.canonical │ ├── spec-09-32.data │ ├── spec-09-33.canonical │ ├── spec-09-33.data │ ├── spec-10-01.canonical │ ├── spec-10-01.data │ ├── spec-10-02.canonical │ ├── spec-10-02.data │ ├── spec-10-03.canonical │ ├── spec-10-03.data │ ├── spec-10-04.canonical │ ├── spec-10-04.data │ ├── spec-10-05.canonical │ ├── spec-10-05.data │ ├── spec-10-06.canonical │ ├── spec-10-06.data │ ├── spec-10-07.canonical │ ├── spec-10-07.data │ ├── spec-10-08.data │ ├── spec-10-08.error │ ├── spec-10-09.canonical │ ├── spec-10-09.data │ ├── spec-10-10.canonical │ ├── spec-10-10.data │ ├── spec-10-11.canonical │ ├── spec-10-11.data │ ├── spec-10-12.canonical │ ├── spec-10-12.data │ ├── spec-10-13.canonical │ ├── spec-10-13.data │ ├── spec-10-14.canonical │ ├── spec-10-14.data │ ├── spec-10-15.canonical │ ├── spec-10-15.data │ ├── str.data │ ├── str.detect │ ├── tags.events │ ├── test_mark.marks │ ├── timestamp-bugs.code │ ├── timestamp-bugs.data │ ├── timestamp.data │ ├── timestamp.detect │ ├── unacceptable-key.loader-error │ ├── unclosed-bracket.loader-error │ ├── unclosed-quoted-scalar.loader-error │ ├── undefined-anchor.loader-error │ ├── undefined-constructor.loader-error │ ├── undefined-tag-handle.loader-error │ ├── unknown.dumper-error │ ├── unsupported-version.emitter-error │ ├── utf16be.code │ ├── utf16be.data │ ├── utf16le.code │ ├── utf16le.data │ ├── utf8-implicit.code │ ├── utf8-implicit.data │ ├── utf8.code │ ├── utf8.data │ ├── value.data │ ├── value.detect │ ├── yaml.data │ └── yaml.detect │ ├── lib │ ├── canonical.py │ ├── test_all.py │ ├── test_appliance.py │ ├── test_build.py │ ├── test_build_ext.py │ ├── test_canonical.py │ ├── test_constructor.py │ ├── test_emitter.py │ ├── test_errors.py │ ├── test_input_output.py │ ├── test_mark.py │ ├── test_reader.py │ ├── test_recursive.py │ ├── test_representer.py │ ├── test_resolver.py │ ├── test_structure.py │ ├── test_tokens.py │ ├── test_yaml.py │ └── test_yaml_ext.py │ └── lib3 │ ├── canonical.py │ ├── test_all.py │ ├── test_appliance.py │ ├── test_build.py │ ├── test_build_ext.py │ ├── test_canonical.py │ ├── test_constructor.py │ ├── test_emitter.py │ ├── test_errors.py │ ├── test_input_output.py │ ├── test_mark.py │ ├── test_reader.py │ ├── test_recursive.py │ ├── test_representer.py │ ├── test_resolver.py │ ├── test_structure.py │ ├── test_tokens.py │ ├── test_yaml.py │ └── test_yaml_ext.py ├── Pygments ├── AUTHORS ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── Pygments.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ └── top_level.txt ├── TODO ├── docs │ ├── generate.py │ ├── pygmentize.1 │ └── src │ │ ├── api.txt │ │ ├── authors.txt │ │ ├── changelog.txt │ │ ├── cmdline.txt │ │ ├── filterdevelopment.txt │ │ ├── filters.txt │ │ ├── formatterdevelopment.txt │ │ ├── formatters.txt │ │ ├── index.txt │ │ ├── installation.txt │ │ ├── integrate.txt │ │ ├── java.txt │ │ ├── lexerdevelopment.txt │ │ ├── lexers.txt │ │ ├── moinmoin.txt │ │ ├── plugins.txt │ │ ├── quickstart.txt │ │ ├── rstdirective.txt │ │ ├── styles.txt │ │ ├── tokens.txt │ │ └── unicode.txt ├── external │ ├── autopygmentize │ ├── lasso-builtins-generator-9.lasso │ ├── markdown-processor.py │ ├── moin-parser.py │ ├── pygments.bashcomp │ ├── rst-directive-old.py │ └── rst-directive.py ├── ez_setup.py ├── pip-egg-info │ └── Pygments.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── pygmentize ├── pygments │ ├── __init__.py │ ├── cmdline.py │ ├── console.py │ ├── filter.py │ ├── filters │ │ └── __init__.py │ ├── formatter.py │ ├── formatters │ │ ├── __init__.py │ │ ├── _mapping.py │ │ ├── bbcode.py │ │ ├── html.py │ │ ├── img.py │ │ ├── latex.py │ │ ├── other.py │ │ ├── rtf.py │ │ ├── svg.py │ │ ├── terminal.py │ │ └── terminal256.py │ ├── lexer.py │ ├── lexers │ │ ├── __init__.py │ │ ├── _asybuiltins.py │ │ ├── _clbuiltins.py │ │ ├── _lassobuiltins.py │ │ ├── _luabuiltins.py │ │ ├── _mapping.py │ │ ├── _openedgebuiltins.py │ │ ├── _phpbuiltins.py │ │ ├── _postgres_builtins.py │ │ ├── _robotframeworklexer.py │ │ ├── _scilab_builtins.py │ │ ├── _sourcemodbuiltins.py │ │ ├── _stan_builtins.py │ │ ├── _vimbuiltins.py │ │ ├── agile.py │ │ ├── asm.py │ │ ├── compiled.py │ │ ├── dalvik.py │ │ ├── dotnet.py │ │ ├── foxpro.py │ │ ├── functional.py │ │ ├── hdl.py │ │ ├── jvm.py │ │ ├── math.py │ │ ├── other.py │ │ ├── parsers.py │ │ ├── shell.py │ │ ├── special.py │ │ ├── sql.py │ │ ├── templates.py │ │ ├── text.py │ │ └── web.py │ ├── plugin.py │ ├── scanner.py │ ├── style.py │ ├── styles │ │ ├── __init__.py │ │ ├── autumn.py │ │ ├── borland.py │ │ ├── bw.py │ │ ├── colorful.py │ │ ├── default.py │ │ ├── emacs.py │ │ ├── friendly.py │ │ ├── fruity.py │ │ ├── manni.py │ │ ├── monokai.py │ │ ├── murphy.py │ │ ├── native.py │ │ ├── pastie.py │ │ ├── perldoc.py │ │ ├── rrt.py │ │ ├── tango.py │ │ ├── trac.py │ │ ├── vim.py │ │ └── vs.py │ ├── token.py │ ├── unistring.py │ └── util.py ├── scripts │ ├── check_sources.py │ ├── detect_missing_analyse_text.py │ ├── epydoc.css │ ├── find_codetags.py │ ├── find_error.py │ ├── get_vimkw.py │ ├── pylintrc │ ├── reindent.py │ └── vim2pygments.py ├── setup.cfg ├── setup.py └── tests │ ├── dtds │ ├── HTML4-f.dtd │ ├── HTML4-s.dtd │ ├── HTML4.dcl │ ├── HTML4.dtd │ ├── HTML4.soc │ ├── HTMLlat1.ent │ ├── HTMLspec.ent │ └── HTMLsym.ent │ ├── examplefiles │ ├── ANTLRv3.g │ ├── AcidStateAdvanced.hs │ ├── AlternatingGroup.mu │ ├── BOM.js │ ├── CPDictionary.j │ ├── Config.in.cache │ ├── Constants.mo │ ├── DancingSudoku.lhs │ ├── Errors.scala │ ├── File.hy │ ├── Intro.java │ ├── Makefile │ ├── Object.st │ ├── OrderedMap.hx │ ├── SmallCheck.hs │ ├── Sorting.mod │ ├── Sudoku.lhs │ ├── addressbook.proto │ ├── antlr_throws │ ├── apache2.conf │ ├── as3_test.as │ ├── as3_test2.as │ ├── as3_test3.as │ ├── aspx-cs_example │ ├── autoit_submit.au3 │ ├── badcase.java │ ├── batchfile.bat │ ├── bigtest.nsi │ ├── boot-9.scm │ ├── ca65_example │ ├── cbmbas_example │ ├── cells.ps │ ├── ceval.c │ ├── cheetah_example.html │ ├── classes.dylan │ ├── condensed_ruby.rb │ ├── coq_RelationClasses │ ├── database.pytb │ ├── de.MoinMoin.po │ ├── demo.ahk │ ├── demo.cfm │ ├── django_sample.html+django │ ├── dwarf.cw │ ├── erl_session │ ├── escape_semicolon.clj │ ├── evil_regex.js │ ├── example.Rd │ ├── example.bug │ ├── example.c │ ├── example.ceylon │ ├── example.cls │ ├── example.cob │ ├── example.cpp │ ├── example.gs │ ├── example.gst │ ├── example.jag │ ├── example.kt │ ├── example.lua │ ├── example.monkey │ ├── example.moo │ ├── example.moon │ ├── example.msc │ ├── example.nim │ ├── example.ns2 │ ├── example.p │ ├── example.pas │ ├── example.prg │ ├── example.rb │ ├── example.reg │ ├── example.rhtml │ ├── example.rkt │ ├── example.rpf │ ├── example.sh-session │ ├── example.shell-session │ ├── example.sml │ ├── example.snobol │ ├── example.stan │ ├── example.tea │ ├── example.ts │ ├── example.u │ ├── example.weechatlog │ ├── example.xhtml │ ├── example.xtend │ ├── example.yaml │ ├── example2.aspx │ ├── example2.msc │ ├── example_elixir.ex │ ├── example_file.fy │ ├── firefox.mak │ ├── flipflop.sv │ ├── foo.sce │ ├── format.ml │ ├── fucked_up.rb │ ├── function.mu │ ├── functional.rst │ ├── garcia-wachs.kk │ ├── genclass.clj │ ├── genshi_example.xml+genshi │ ├── genshitext_example.genshitext │ ├── glsl.frag │ ├── glsl.vert │ ├── hello.smali │ ├── hello.sp │ ├── html+php_faulty.php │ ├── http_request_example │ ├── http_response_example │ ├── import.hs │ ├── inet_pton6.dg │ ├── intro.ik │ ├── ints.php │ ├── intsyn.fun │ ├── intsyn.sig │ ├── irb_heredoc │ ├── irc.lsp │ ├── java.properties │ ├── jbst_example1.jbst │ ├── jbst_example2.jbst │ ├── jinjadesignerdoc.rst │ ├── json.lasso │ ├── json.lasso9 │ ├── lighttpd_config.conf │ ├── linecontinuation.py │ ├── livescript-demo.ls │ ├── logos_example.xm │ ├── ltmain.sh │ ├── main.cmake │ ├── markdown.lsp │ ├── matlab_noreturn │ ├── matlab_sample │ ├── matlabsession_sample.txt │ ├── metagrammar.treetop │ ├── mg_sample.pro │ ├── minehunt.qml │ ├── minimal.ns2 │ ├── moin_SyntaxReference.txt │ ├── multiline_regexes.rb │ ├── nanomsg.intr │ ├── nasm_aoutso.asm │ ├── nasm_objexe.asm │ ├── nemerle_sample.n │ ├── nginx_nginx.conf │ ├── numbers.c │ ├── objc_example.m │ ├── objc_example2.m │ ├── perl_misc │ ├── perl_perl5db │ ├── perl_regex-delims │ ├── perlfunc.1 │ ├── phpMyAdmin.spec │ ├── phpcomplete.vim │ ├── pleac.in.rb │ ├── postgresql_test.txt │ ├── pppoe.applescript │ ├── psql_session.txt │ ├── py3_test.txt │ ├── pycon_test.pycon │ ├── pytb_test2.pytb │ ├── pytb_test3.pytb │ ├── python25-bsd.mak │ ├── qsort.prolog │ ├── r-console-transcript.Rout │ ├── ragel-cpp_rlscan │ ├── ragel-cpp_snippet │ ├── regex.js │ ├── reversi.lsp │ ├── robotframework.txt │ ├── ruby_func_def.rb │ ├── rust_example.rs │ ├── scilab.sci │ ├── session.dylan-console │ ├── sibling.prolog │ ├── simple.md │ ├── smarty_example.html │ ├── source.lgt │ ├── sources.list │ ├── sphere.pov │ ├── sqlite3.sqlite3-console │ ├── squid.conf │ ├── string.jl │ ├── string_delimiters.d │ ├── stripheredoc.sh │ ├── test.R │ ├── test.adb │ ├── test.asy │ ├── test.awk │ ├── test.bas │ ├── test.bmx │ ├── test.boo │ ├── test.bro │ ├── test.cs │ ├── test.css │ ├── test.cu │ ├── test.d │ ├── test.dart │ ├── test.dtd │ ├── test.ec │ ├── test.ecl │ ├── test.eh │ ├── test.erl │ ├── test.evoque │ ├── test.fan │ ├── test.flx │ ├── test.gdc │ ├── test.groovy │ ├── test.html │ ├── test.ini │ ├── test.java │ ├── test.jsp │ ├── test.maql │ ├── test.mod │ ├── test.moo │ ├── test.myt │ ├── test.nim │ ├── test.opa │ ├── test.pas │ ├── test.php │ ├── test.plot │ ├── test.ps1 │ ├── test.pypylog │ ├── test.r3 │ ├── test.rb │ ├── test.rhtml │ ├── test.scaml │ ├── test.ssp │ ├── test.tcsh │ ├── test.vb │ ├── test.vhdl │ ├── test.xqy │ ├── test.xsl │ ├── test2.pypylog │ ├── truncated.pytb │ ├── type.lisp │ ├── underscore.coffee │ ├── unicode.applescript │ ├── unicodedoc.py │ ├── unix-io.lid │ ├── webkit-transition.css │ ├── while.pov │ ├── wiki.factor │ ├── xml_example │ └── zmlrpc.f90 │ ├── old_run.py │ ├── run.py │ ├── support.py │ ├── support │ └── tags │ ├── test_basic_api.py │ ├── test_clexer.py │ ├── test_cmdline.py │ ├── test_examplefiles.py │ ├── test_html_formatter.py │ ├── test_latex_formatter.py │ ├── test_perllexer.py │ ├── test_regexlexer.py │ ├── test_token.py │ ├── test_using_api.py │ └── test_util.py ├── amqp ├── Changelog ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── amqp.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── amqp │ ├── __init__.py │ ├── abstract_channel.py │ ├── basic_message.py │ ├── channel.py │ ├── connection.py │ ├── exceptions.py │ ├── five.py │ ├── method_framing.py │ ├── protocol.py │ ├── serialization.py │ ├── transport.py │ └── utils.py ├── demo │ ├── amqp_clock.py │ ├── demo_receive.py │ └── demo_send.py ├── docs │ ├── .static │ │ └── .keep │ ├── .templates │ │ ├── page.html │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── Makefile │ ├── _ext │ │ ├── applyxrefs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── celery │ │ │ ├── static │ │ │ └── celery.css_t │ │ │ └── theme.conf │ ├── changelog.rst │ ├── conf.py │ ├── includes │ │ └── intro.txt │ ├── index.rst │ ├── reference │ │ ├── amqp.abstract_channel.rst │ │ ├── amqp.basic_message.rst │ │ ├── amqp.channel.rst │ │ ├── amqp.connection.rst │ │ ├── amqp.exceptions.rst │ │ ├── amqp.five.rst │ │ ├── amqp.method_framing.rst │ │ ├── amqp.protocol.rst │ │ ├── amqp.serialization.rst │ │ ├── amqp.transport.rst │ │ ├── amqp.utils.rst │ │ └── index.rst │ └── templates │ │ └── readme.txt ├── extra │ ├── README │ ├── generate_skeleton_0_8.py │ ├── release │ │ ├── bump_version.py │ │ └── sphinx-to-rst.py │ └── update_comments_from_spec.py ├── funtests │ ├── run_all.py │ ├── settings.py │ ├── test_basic_message.py │ ├── test_channel.py │ ├── test_connection.py │ ├── test_exceptions.py │ ├── test_serialization.py │ └── test_with.py ├── pip-egg-info │ └── amqp.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── requirements │ ├── docs.txt │ ├── pkgutils.txt │ └── test.txt ├── setup.cfg └── setup.py ├── anyjson ├── CHANGELOG ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── anyjson.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── anyjson │ └── __init__.py ├── pip-egg-info │ └── anyjson.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── beautifulsoup4 ├── AUTHORS.txt ├── COPYING.txt ├── NEWS.txt ├── PKG-INFO ├── README.txt ├── TODO.txt ├── bs4 │ ├── __init__.py │ ├── builder │ │ ├── __init__.py │ │ ├── _html5lib.py │ │ ├── _htmlparser.py │ │ └── _lxml.py │ ├── dammit.py │ ├── diagnose.py │ ├── element.py │ ├── testing.py │ └── tests │ │ ├── __init__.py │ │ ├── test_builder_registry.py │ │ ├── test_docs.py │ │ ├── test_html5lib.py │ │ ├── test_htmlparser.py │ │ ├── test_lxml.py │ │ ├── test_soup.py │ │ └── test_tree.py ├── doc │ ├── Makefile │ └── source │ │ ├── 6.1.jpg │ │ ├── conf.py │ │ └── index.rst ├── pip-egg-info │ └── beautifulsoup4.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── scripts │ ├── demonstrate_parser_differences.py │ └── demonstration_markup.txt └── setup.py ├── bleach ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── bleach.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── bleach │ ├── __init__.py │ ├── encoding.py │ ├── sanitizer.py │ └── tests │ │ ├── __init__.py │ │ ├── test_basics.py │ │ ├── test_css.py │ │ ├── test_delinkify.py │ │ ├── test_links.py │ │ ├── test_security.py │ │ └── test_unicode.py ├── pip-egg-info │ └── bleach.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── celery ├── AUTHORS ├── Changelog ├── FAQ ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── README.rst ├── THANKS ├── TODO ├── celery.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── celery │ ├── __init__.py │ ├── app │ │ ├── __init__.py │ │ ├── amqp.py │ │ ├── base.py │ │ ├── defaults.py │ │ └── task │ │ │ └── __init__.py │ ├── apps │ │ ├── __init__.py │ │ ├── beat.py │ │ └── worker.py │ ├── backends │ │ ├── __init__.py │ │ ├── amqp.py │ │ ├── base.py │ │ ├── cache.py │ │ ├── cassandra.py │ │ ├── database.py │ │ ├── mongodb.py │ │ ├── pyredis.py │ │ ├── redis.py │ │ └── tyrant.py │ ├── beat.py │ ├── bin │ │ ├── __init__.py │ │ ├── base.py │ │ ├── camqadm.py │ │ ├── celerybeat.py │ │ ├── celeryctl.py │ │ ├── celeryd.py │ │ ├── celeryd_detach.py │ │ ├── celeryd_multi.py │ │ └── celeryev.py │ ├── concurrency │ │ ├── __init__.py │ │ ├── base.py │ │ ├── eventlet.py │ │ ├── gevent.py │ │ ├── processes │ │ │ ├── __init__.py │ │ │ ├── _win.py │ │ │ └── pool.py │ │ ├── solo.py │ │ └── threads.py │ ├── conf.py │ ├── contrib │ │ ├── __init__.py │ │ ├── abortable.py │ │ ├── batches.py │ │ └── rdb.py │ ├── datastructures.py │ ├── db │ │ ├── __init__.py │ │ ├── a805d4bd.py │ │ ├── dfd042c7.py │ │ ├── models.py │ │ └── session.py │ ├── decorators.py │ ├── events │ │ ├── __init__.py │ │ ├── cursesmon.py │ │ ├── dumper.py │ │ ├── snapshot.py │ │ └── state.py │ ├── exceptions.py │ ├── execute │ │ ├── __init__.py │ │ └── trace.py │ ├── loaders │ │ ├── __init__.py │ │ ├── app.py │ │ ├── base.py │ │ └── default.py │ ├── local.py │ ├── log.py │ ├── messaging.py │ ├── platforms.py │ ├── registry.py │ ├── result.py │ ├── routes.py │ ├── schedules.py │ ├── signals.py │ ├── states.py │ ├── task │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chords.py │ │ ├── control.py │ │ ├── http.py │ │ ├── schedules.py │ │ └── sets.py │ ├── tests │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── config.py │ │ ├── functional │ │ │ ├── __init__.py │ │ │ ├── case.py │ │ │ └── tasks.py │ │ ├── test_app │ │ │ ├── __init__.py │ │ │ ├── test_app_amqp.py │ │ │ ├── test_app_defaults.py │ │ │ ├── test_beat.py │ │ │ ├── test_celery.py │ │ │ ├── test_loaders.py │ │ │ ├── test_log.py │ │ │ └── test_routes.py │ │ ├── test_backends │ │ │ ├── __init__.py │ │ │ ├── test_amqp.py │ │ │ ├── test_base.py │ │ │ ├── test_cache.py │ │ │ ├── test_database.py │ │ │ ├── test_pyredis_compat.py │ │ │ ├── test_redis.py │ │ │ ├── test_redis_unit.py │ │ │ └── test_tyrant.py │ │ ├── test_bin │ │ │ ├── __init__.py │ │ │ ├── test_celerybeat.py │ │ │ ├── test_celeryd.py │ │ │ └── test_celeryev.py │ │ ├── test_compat │ │ │ ├── __init__.py │ │ │ ├── test_decorators.py │ │ │ └── test_messaging.py │ │ ├── test_concurrency │ │ │ ├── __init__.py │ │ │ ├── test_concurrency_eventlet.py │ │ │ ├── test_concurrency_processes.py │ │ │ ├── test_concurrency_solo.py │ │ │ └── test_pool.py │ │ ├── test_events │ │ │ ├── __init__.py │ │ │ ├── test_events_cursesmon.py │ │ │ ├── test_events_snapshot.py │ │ │ └── test_events_state.py │ │ ├── test_slow │ │ │ ├── __init__.py │ │ │ └── test_buckets.py │ │ ├── test_task │ │ │ ├── __init__.py │ │ │ ├── test_chord.py │ │ │ ├── test_context.py │ │ │ ├── test_execute_trace.py │ │ │ ├── test_registry.py │ │ │ ├── test_result.py │ │ │ ├── test_states.py │ │ │ ├── test_task_abortable.py │ │ │ ├── test_task_builtins.py │ │ │ ├── test_task_control.py │ │ │ ├── test_task_http.py │ │ │ └── test_task_sets.py │ │ ├── test_utils │ │ │ ├── __init__.py │ │ │ ├── test_datastructures.py │ │ │ ├── test_pickle.py │ │ │ ├── test_serialization.py │ │ │ ├── test_timer2.py │ │ │ ├── test_utils_encoding.py │ │ │ ├── test_utils_info.py │ │ │ └── test_utils_timeutils.py │ │ ├── test_worker │ │ │ ├── __init__.py │ │ │ ├── test_worker_autoscale.py │ │ │ ├── test_worker_control.py │ │ │ ├── test_worker_heartbeat.py │ │ │ ├── test_worker_job.py │ │ │ ├── test_worker_mediator.py │ │ │ ├── test_worker_revoke.py │ │ │ └── test_worker_state.py │ │ └── utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── dispatch │ │ │ ├── __init__.py │ │ │ ├── saferef.py │ │ │ └── signal.py │ │ ├── encoding.py │ │ ├── functional.py │ │ ├── mail.py │ │ ├── patch.py │ │ ├── serialization.py │ │ ├── term.py │ │ ├── timer2.py │ │ └── timeutils.py │ └── worker │ │ ├── __init__.py │ │ ├── autoscale.py │ │ ├── buckets.py │ │ ├── consumer.py │ │ ├── control │ │ ├── __init__.py │ │ ├── builtins.py │ │ └── registry.py │ │ ├── heartbeat.py │ │ ├── job.py │ │ ├── mediator.py │ │ └── state.py ├── contrib │ ├── centos │ │ ├── celeryd.init │ │ └── celeryd.sysconfig │ ├── debian │ │ ├── README.rst │ │ └── init.d-deprecated │ │ │ ├── celerybeat │ │ │ ├── celeryd │ │ │ └── celeryevcam │ ├── generic-init.d │ │ ├── celerybeat │ │ ├── celeryd │ │ └── celeryevcam │ ├── logtools │ │ ├── find-unprocessed-tasks-debug.sh │ │ ├── find-unprocessed-tasks.sh │ │ └── periodic-task-runtimes.sh │ ├── mac │ │ ├── org.celeryq.celerybeat.plist │ │ ├── org.celeryq.celeryd.plist │ │ ├── org.celeryq.celerymon.plist │ │ └── watch-workers.applescript │ ├── release │ │ ├── core-modules.txt │ │ ├── doc4allmods │ │ ├── flakeplus.py │ │ ├── py3k-run-tests │ │ ├── removepyc.sh │ │ ├── sphinx-to-rst.py │ │ ├── verify-reference-index.sh │ │ └── verify_config_reference.py │ └── supervisord │ │ ├── celerybeat.conf │ │ ├── celeryd.conf │ │ └── supervisord.conf ├── docs │ ├── .static │ │ └── .keep │ ├── .templates │ │ ├── page.html │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── Makefile │ ├── _ext │ │ ├── applyxrefs.py │ │ ├── celerydocs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── celery │ │ │ ├── static │ │ │ └── celery.css_t │ │ │ └── theme.conf │ ├── changelog.rst │ ├── community.rst │ ├── conf.py │ ├── configuration.rst │ ├── contributing.rst │ ├── cookbook │ │ ├── daemonizing.rst │ │ ├── index.rst │ │ └── tasks.rst │ ├── faq.rst │ ├── getting-started │ │ ├── broker-installation.rst │ │ ├── first-steps-with-celery.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ └── resources.rst │ ├── images │ │ ├── Celery-Overview-v4.jpg │ │ ├── Celery1.0-inside-worker.jpg │ │ ├── celery-broker-worker-nodes.jpg │ │ ├── celery-broker-worker-relationship.jpg │ │ ├── celery-icon-128.png │ │ ├── celery-icon-32.png │ │ ├── celery-icon-64.png │ │ ├── celery-worker-bindings.jpg │ │ ├── celery_128.png │ │ ├── celery_512.png │ │ ├── celery_favicon_128.png │ │ ├── celeryevshotsm.jpg │ │ ├── djangoceleryadmin2.jpg │ │ ├── favicon.ico │ │ └── favicon.png │ ├── includes │ │ ├── installation.txt │ │ ├── introduction.txt │ │ └── resources.txt │ ├── index.rst │ ├── internals │ │ ├── app-overview.rst │ │ ├── deprecation.rst │ │ ├── index.rst │ │ ├── protocol.rst │ │ ├── reference │ │ │ ├── celery.backends.amqp.rst │ │ │ ├── celery.backends.base.rst │ │ │ ├── celery.backends.cache.rst │ │ │ ├── celery.backends.cassandra.rst │ │ │ ├── celery.backends.database.rst │ │ │ ├── celery.backends.mongodb.rst │ │ │ ├── celery.backends.redis.rst │ │ │ ├── celery.backends.rst │ │ │ ├── celery.backends.tyrant.rst │ │ │ ├── celery.beat.rst │ │ │ ├── celery.concurrency.base.rst │ │ │ ├── celery.concurrency.eventlet.rst │ │ │ ├── celery.concurrency.gevent.rst │ │ │ ├── celery.concurrency.processes.pool.rst │ │ │ ├── celery.concurrency.processes.rst │ │ │ ├── celery.concurrency.rst │ │ │ ├── celery.concurrency.solo.rst │ │ │ ├── celery.concurrency.threads.rst │ │ │ ├── celery.datastructures.rst │ │ │ ├── celery.db.models.rst │ │ │ ├── celery.db.session.rst │ │ │ ├── celery.events.cursesmon.rst │ │ │ ├── celery.events.dumper.rst │ │ │ ├── celery.events.snapshot.rst │ │ │ ├── celery.execute.trace.rst │ │ │ ├── celery.log.rst │ │ │ ├── celery.platforms.rst │ │ │ ├── celery.routes.rst │ │ │ ├── celery.utils.compat.rst │ │ │ ├── celery.utils.dispatch.rst │ │ │ ├── celery.utils.dispatch.saferef.rst │ │ │ ├── celery.utils.dispatch.signal.rst │ │ │ ├── celery.utils.encoding.rst │ │ │ ├── celery.utils.functional.rst │ │ │ ├── celery.utils.patch.rst │ │ │ ├── celery.utils.rst │ │ │ ├── celery.utils.serialization.rst │ │ │ ├── celery.utils.term.rst │ │ │ ├── celery.utils.timer2.rst │ │ │ ├── celery.utils.timeutils.rst │ │ │ ├── celery.worker.autoscale.rst │ │ │ ├── celery.worker.buckets.rst │ │ │ ├── celery.worker.consumer.rst │ │ │ ├── celery.worker.heartbeat.rst │ │ │ ├── celery.worker.job.rst │ │ │ ├── celery.worker.mediator.rst │ │ │ ├── celery.worker.rst │ │ │ ├── celery.worker.state.rst │ │ │ └── index.rst │ │ └── worker.rst │ ├── reference │ │ ├── celery.app.amqp.rst │ │ ├── celery.app.defaults.rst │ │ ├── celery.app.rst │ │ ├── celery.app.task.rst │ │ ├── celery.apps.beat.rst │ │ ├── celery.apps.worker.rst │ │ ├── celery.bin.base.rst │ │ ├── celery.bin.camqadm.rst │ │ ├── celery.bin.celerybeat.rst │ │ ├── celery.bin.celeryctl.rst │ │ ├── celery.bin.celeryd.rst │ │ ├── celery.bin.celeryd_multi.rst │ │ ├── celery.bin.celeryev.rst │ │ ├── celery.contrib.abortable.rst │ │ ├── celery.contrib.batches.rst │ │ ├── celery.contrib.rdb.rst │ │ ├── celery.events.rst │ │ ├── celery.events.state.rst │ │ ├── celery.exceptions.rst │ │ ├── celery.loaders.app.rst │ │ ├── celery.loaders.base.rst │ │ ├── celery.loaders.default.rst │ │ ├── celery.loaders.rst │ │ ├── celery.registry.rst │ │ ├── celery.result.rst │ │ ├── celery.schedules.rst │ │ ├── celery.signals.rst │ │ ├── celery.states.rst │ │ ├── celery.task.base.rst │ │ ├── celery.task.chords.rst │ │ ├── celery.task.control.rst │ │ ├── celery.task.http.rst │ │ ├── celery.task.rst │ │ ├── celery.task.sets.rst │ │ ├── celery.utils.mail.rst │ │ └── index.rst │ ├── releases │ │ └── 1.0 │ │ │ └── announcement.rst │ ├── slidesource │ │ ├── slide-example1-result.py │ │ └── slide-example1.py │ ├── templates │ │ └── readme.txt │ ├── tutorials │ │ ├── clickcounter.rst │ │ ├── debugging.rst │ │ ├── index.rst │ │ └── otherqueues.rst │ └── userguide │ │ ├── concurrency │ │ ├── eventlet.rst │ │ └── index.rst │ │ ├── executing.rst │ │ ├── index.rst │ │ ├── monitoring.rst │ │ ├── optimizing.rst │ │ ├── overview.rst │ │ ├── periodic-tasks.rst │ │ ├── remote-tasks.rst │ │ ├── routing.rst │ │ ├── signals.rst │ │ ├── tasks.rst │ │ ├── tasksets.rst │ │ └── workers.rst ├── examples │ ├── README.rst │ ├── app │ │ └── myapp.py │ ├── celery_http_gateway │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── manage.py │ │ ├── settings.py │ │ └── urls.py │ ├── eventlet │ │ ├── README.rst │ │ ├── bulk_task_producer.py │ │ ├── celeryconfig.py │ │ ├── tasks.py │ │ └── webcrawler.py │ ├── gevent │ │ ├── celeryconfig.py │ │ └── tasks.py │ ├── httpexample │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── manage.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── views.py │ └── pythonproject │ │ └── demoapp │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── celeryconfig.py │ │ ├── tasks.py │ │ └── test.py ├── funtests │ ├── bench │ │ └── worker.py │ ├── setup.py │ └── suite │ │ ├── __init__.py │ │ ├── config.py │ │ ├── test_basic.py │ │ └── test_leak.py ├── pip-egg-info │ └── celery.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── requirements │ ├── default-py3k.txt │ ├── default.txt │ ├── docs.txt │ ├── pkgutils.txt │ ├── py25.txt │ ├── py26.txt │ ├── test-py3k.txt │ ├── test-pypy.txt │ └── test.txt ├── setup.cfg └── setup.py ├── decorator ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── documentation.py ├── documentation3.py ├── pip-egg-info │ └── decorator.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── src │ ├── decorator.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt │ └── decorator.py ├── distribute ├── .hg │ └── last-message.txt ├── CHANGES.txt ├── CONTRIBUTORS.txt ├── DEVGUIDE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── distribute.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── top_level.txt │ └── zip-safe ├── distribute_setup.py ├── docs │ ├── _theme │ │ └── nature │ │ │ ├── static │ │ │ ├── nature.css_t │ │ │ └── pygments.css │ │ │ └── theme.conf │ ├── conf.py │ ├── easy_install.txt │ ├── index.txt │ ├── pkg_resources.txt │ ├── python3.txt │ ├── roadmap.txt │ ├── setuptools.txt │ └── using.txt ├── easy_install.py ├── launcher.c ├── pip-egg-info │ └── distribute.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── pkg_resources.py ├── release.py ├── setup.cfg ├── setup.py ├── setuptools │ ├── __init__.py │ ├── archive_util.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── depends.py │ ├── dist.py │ ├── extension.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── package_index.py │ ├── sandbox.py │ └── tests │ │ ├── __init__.py │ │ ├── doctest.py │ │ ├── indexes │ │ └── test_links_priority │ │ │ ├── external.html │ │ │ └── simple │ │ │ └── foobar │ │ │ └── index.html │ │ ├── server.py │ │ ├── test_build_ext.py │ │ ├── test_develop.py │ │ ├── test_easy_install.py │ │ ├── test_packageindex.py │ │ ├── test_resources.py │ │ ├── test_sandbox.py │ │ ├── test_upload_docs.py │ │ └── win_script_wrapper.txt ├── site.py └── tests │ ├── api_tests.txt │ ├── install_test.py │ ├── manual_test.py │ ├── shlib_test │ ├── hello.c │ ├── hello.pyx │ ├── hellolib.c │ ├── setup.py │ └── test_hello.py │ └── test_distribute_setup.py ├── dj-database-url ├── PKG-INFO ├── dj_database_url.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── dj_database_url.py ├── pip-egg-info │ └── dj_database_url.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── django-assets ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── django_assets │ ├── __init__.py │ ├── bundle.py │ ├── conf │ │ ├── __init__.py │ │ └── default.py │ ├── filter │ │ ├── __init__.py │ │ ├── clevercss │ │ │ └── __init__.py │ │ ├── cssrewrite │ │ │ ├── __init__.py │ │ │ └── urlpath.py │ │ ├── cssutils │ │ │ └── __init__.py │ │ ├── gzip │ │ │ └── __init__.py │ │ ├── jsmin │ │ │ ├── __init__.py │ │ │ └── jsmin.py │ │ ├── jspacker │ │ │ ├── __init__.py │ │ │ └── jspacker.py │ │ ├── less │ │ │ └── __init__.py │ │ └── yui │ │ │ └── __init__.py │ ├── jinja2 │ │ ├── __init__.py │ │ └── extension.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── assets.py │ ├── merge.py │ ├── models.py │ ├── registry.py │ ├── templatetags │ │ ├── __init__.py │ │ └── assets.py │ └── updater.py ├── docs │ ├── Makefile │ ├── building.rst │ ├── builtin_filters.rst │ ├── bundles.rst │ ├── conf.py │ ├── custom_filters.rst │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ ├── jinja2.rst │ ├── make.bat │ └── settings.rst ├── pip-egg-info │ └── django_assets.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── test │ ├── test_bundle.py │ ├── test_conf.py │ ├── test_filters.py │ ├── test_merge.py │ ├── test_processing.py │ └── test_registry.py ├── django-authopenid ├── ._CHANGES.md ├── ._LICENSE_DJANGO ├── ._MANIFEST.in ├── ._README ├── ._THANKS ├── ._ez_setup.py ├── ._setup.py ├── AUTHORS ├── CHANGES.md ├── LICENSE ├── LICENSE_DJANGO ├── MANIFEST.in ├── NOTICE ├── PKG-INFO ├── README ├── THANKS ├── django_authopenid.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── django_authopenid │ ├── .___init__.py │ ├── ._admin.py │ ├── ._context_processors.py │ ├── ._forms.py │ ├── ._middleware.py │ ├── ._openid_store.py │ ├── ._signals.py │ ├── ._urls.py │ ├── __init__.py │ ├── admin.py │ ├── context_processors.py │ ├── forms.py │ ├── management │ │ ├── .___init__.py │ │ ├── __init__.py │ │ └── commands │ │ │ ├── .___init__.py │ │ │ ├── ._cleanupassociations.py │ │ │ ├── ._cleanupnonces.py │ │ │ ├── __init__.py │ │ │ ├── cleanupassociations.py │ │ │ └── cleanupnonces.py │ ├── middleware.py │ ├── models.py │ ├── openid_store.py │ ├── signals.py │ ├── templates │ │ └── authopenid │ │ │ ├── ._yadis.xrdf │ │ │ └── yadis.xrdf │ ├── tests │ │ ├── .___init__.py │ │ ├── ._test_store.py │ │ ├── __init__.py │ │ └── test_store.py │ ├── urls.py │ ├── utils │ │ ├── .___init__.py │ │ ├── ._importlib.py │ │ ├── ._mimeparse.py │ │ ├── __init__.py │ │ ├── importlib.py │ │ └── mimeparse.py │ └── views.py ├── docs │ ├── ._Makefile │ ├── ._changes.txt │ ├── ._conf.py │ ├── ._forms.txt │ ├── ._gettingstarted.txt │ ├── ._index.txt │ ├── ._installation.txt │ ├── ._models.txt │ ├── ._views.txt │ ├── Makefile │ ├── _build │ │ ├── ._.index │ │ ├── .index │ │ ├── doctrees │ │ │ ├── changes.doctree │ │ │ ├── environment.pickle │ │ │ ├── forms.doctree │ │ │ ├── gettingstarted.doctree │ │ │ ├── index.doctree │ │ │ ├── installation.doctree │ │ │ ├── models.doctree │ │ │ └── views.doctree │ │ └── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ ├── changes.txt │ │ │ ├── forms.txt │ │ │ ├── gettingstarted.txt │ │ │ ├── index.txt │ │ │ ├── installation.txt │ │ │ ├── models.txt │ │ │ └── views.txt │ │ │ ├── _static │ │ │ ├── basic.css │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ └── searchtools.js │ │ │ ├── changes.html │ │ │ ├── forms.html │ │ │ ├── genindex.html │ │ │ ├── gettingstarted.html │ │ │ ├── index.html │ │ │ ├── installation.html │ │ │ ├── models.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ └── views.html │ ├── _static │ │ ├── ._.index │ │ └── .index │ ├── _templates │ │ ├── ._.index │ │ └── .index │ ├── changes.txt │ ├── conf.py │ ├── forms.txt │ ├── gettingstarted.txt │ ├── index.txt │ ├── installation.txt │ ├── models.txt │ └── views.txt ├── example │ ├── .___init__.py │ ├── ._manage.py │ ├── ._settings.py │ ├── ._urls.py │ ├── ._views.py │ ├── __init__.py │ ├── manage.py │ ├── settings.py │ ├── static │ │ ├── .DS_Store │ │ ├── ._.DS_Store │ │ ├── ._demo.html │ │ ├── css │ │ │ ├── ._base.css │ │ │ ├── ._openid.css │ │ │ ├── base.css │ │ │ └── openid.css │ │ ├── demo.html │ │ ├── images │ │ │ ├── ._aol.gif │ │ │ ├── ._blogger.ico │ │ │ ├── ._claimid.ico │ │ │ ├── ._facebook.gif │ │ │ ├── ._flickr.ico │ │ │ ├── ._google.gif │ │ │ ├── ._livejournal.ico │ │ │ ├── ._myopenid.ico │ │ │ ├── ._openid-inputicon.gif │ │ │ ├── ._openid.gif │ │ │ ├── ._technorati.ico │ │ │ ├── ._verisign.ico │ │ │ ├── ._vidoop.ico │ │ │ ├── ._wordpress.ico │ │ │ ├── ._yahoo.gif │ │ │ ├── aol.gif │ │ │ ├── blogger.ico │ │ │ ├── claimid.ico │ │ │ ├── facebook.gif │ │ │ ├── flickr.ico │ │ │ ├── google.gif │ │ │ ├── livejournal.ico │ │ │ ├── myopenid.ico │ │ │ ├── openid-inputicon.gif │ │ │ ├── openid.gif │ │ │ ├── technorati.ico │ │ │ ├── verisign.ico │ │ │ ├── vidoop.ico │ │ │ ├── wordpress.ico │ │ │ └── yahoo.gif │ │ └── js │ │ │ ├── .DS_Store │ │ │ ├── ._.DS_Store │ │ │ ├── ._jquery-1.3.2.min.js │ │ │ ├── ._openid-jquery.js │ │ │ ├── jquery-1.3.2.min.js │ │ │ └── openid-jquery.js │ ├── templates │ │ ├── ._base.html │ │ ├── ._home.html │ │ ├── authopenid │ │ │ ├── ._associate.html │ │ │ ├── ._dissociate.html │ │ │ ├── ._failure.html │ │ │ ├── ._password_change_form.html │ │ │ ├── ._signin.html │ │ │ ├── associate.html │ │ │ ├── associate_email.txt │ │ │ ├── associate_email_subject.txt │ │ │ ├── complete.html │ │ │ ├── dissociate.html │ │ │ ├── failure.html │ │ │ ├── password_change_form.html │ │ │ └── signin.html │ │ ├── base.html │ │ ├── home.html │ │ └── registration │ │ │ ├── ._activate.html │ │ │ ├── ._activation_email.txt │ │ │ ├── ._activation_email_subject.txt │ │ │ ├── ._registration_complete.html │ │ │ ├── ._registration_form.html │ │ │ ├── activate.html │ │ │ ├── activation_email.txt │ │ │ ├── activation_email_subject.txt │ │ │ ├── registration_complete.html │ │ │ └── registration_form.html │ ├── urls.py │ └── views.py ├── ez_setup.py ├── pip-egg-info │ └── django_authopenid.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── pylintrc ├── setup.cfg └── setup.py ├── django-celery ├── AUTHORS ├── Changelog ├── FAQ ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── README.rst ├── THANKS ├── TODO ├── bin │ └── djcelerymon ├── contrib │ ├── release │ │ ├── doc4allmods │ │ ├── flakeplus.py │ │ ├── removepyc.sh │ │ ├── sphinx-to-rst.py │ │ └── verify-reference-index.sh │ └── supervisord │ │ ├── celerybeat.conf │ │ └── celeryd.conf ├── django_celery.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── djcelery │ ├── __init__.py │ ├── admin.py │ ├── admin_utils.py │ ├── app.py │ ├── backends │ │ ├── __init__.py │ │ ├── cache.py │ │ └── database.py │ ├── contrib │ │ ├── __init__.py │ │ └── test_runner.py │ ├── loaders.py │ ├── management │ │ ├── __init__.py │ │ ├── base.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ ├── camqadm.py │ │ │ ├── celerybeat.py │ │ │ ├── celerycam.py │ │ │ ├── celeryctl.py │ │ │ ├── celeryd.py │ │ │ ├── celeryd_detach.py │ │ │ ├── celeryd_multi.py │ │ │ ├── celeryev.py │ │ │ ├── celerymon.py │ │ │ └── djcelerymon.py │ ├── managers.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── mon.py │ ├── monproj │ │ ├── __init__.py │ │ └── urls.py │ ├── schedulers.py │ ├── snapshot.py │ ├── templates │ │ ├── admin │ │ │ └── djcelery │ │ │ │ └── change_list.html │ │ └── djcelery │ │ │ └── confirm_rate_limit.html │ ├── tests │ │ ├── __init__.py │ │ ├── req.py │ │ ├── test_backends │ │ │ ├── __init__.py │ │ │ ├── test_cache.py │ │ │ └── test_database.py │ │ ├── test_conf.py │ │ ├── test_discovery.py │ │ ├── test_loaders.py │ │ ├── test_models.py │ │ ├── test_schedulers.py │ │ ├── test_snapshot.py │ │ ├── test_views.py │ │ ├── test_worker_job.py │ │ └── utils.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── docs │ ├── .static │ │ └── .keep │ ├── .templates │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── Makefile │ ├── _ext │ │ ├── applyxrefs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── celery │ │ │ ├── static │ │ │ └── celery.css_t │ │ │ └── theme.conf │ ├── changelog.rst │ ├── conf.py │ ├── cookbook │ │ ├── index.rst │ │ └── unit-testing.rst │ ├── faq.rst │ ├── getting-started │ │ ├── first-steps-with-django.rst │ │ └── index.rst │ ├── index.rst │ ├── introduction.rst │ └── reference │ │ ├── djcelery.app.rst │ │ ├── djcelery.backends.cache.rst │ │ ├── djcelery.backends.database.rst │ │ ├── djcelery.contrib.test_runner.rst │ │ ├── djcelery.loaders.rst │ │ ├── djcelery.managers.rst │ │ ├── djcelery.models.rst │ │ ├── djcelery.schedulers.rst │ │ ├── djcelery.snapshot.rst │ │ ├── djcelery.urls.rst │ │ ├── djcelery.utils.rst │ │ ├── djcelery.views.rst │ │ └── index.rst ├── examples │ ├── clickcounter │ │ ├── __init__.py │ │ ├── clickmuncher │ │ │ ├── __init__.py │ │ │ ├── actors.py │ │ │ └── models.py │ │ ├── manage.py │ │ ├── settings.py │ │ └── urls.py │ └── demoproject │ │ ├── __init__.py │ │ ├── demoapp │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tasks.py │ │ └── views.py │ │ ├── manage.py │ │ ├── settings.py │ │ ├── twitterfollow │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tasks.py │ │ └── views.py │ │ └── urls.py ├── locale │ └── en │ │ └── LC_MESSAGES │ │ └── django.po ├── pip-egg-info │ └── django_celery.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── requirements │ ├── default.txt │ ├── docs.txt │ └── test.txt ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── manage.py │ ├── settings.py │ ├── someapp │ ├── __init__.py │ ├── models.py │ ├── tasks.py │ └── views.py │ ├── someappwotask │ ├── __init__.py │ ├── models.py │ └── views.py │ └── urls.py ├── django-debug-toolbar ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── debug_toolbar │ ├── __init__.py │ ├── apps.py │ ├── locale │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sv_SE │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── zh_CN │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── debugsqlshell.py │ ├── middleware.py │ ├── models.py │ ├── panels │ │ ├── __init__.py │ │ ├── cache.py │ │ ├── headers.py │ │ ├── logging.py │ │ ├── profiling.py │ │ ├── redirects.py │ │ ├── request.py │ │ ├── settings.py │ │ ├── signals.py │ │ ├── sql │ │ │ ├── __init__.py │ │ │ ├── forms.py │ │ │ ├── panel.py │ │ │ ├── tracking.py │ │ │ ├── utils.py │ │ │ └── views.py │ │ ├── staticfiles.py │ │ ├── templates │ │ │ ├── __init__.py │ │ │ ├── panel.py │ │ │ └── views.py │ │ ├── timer.py │ │ └── versions.py │ ├── settings.py │ ├── static │ │ └── debug_toolbar │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ └── toolbar.css │ │ │ ├── img │ │ │ ├── ajax-loader.gif │ │ │ ├── back.png │ │ │ ├── back_hover.png │ │ │ ├── close.png │ │ │ ├── close_hover.png │ │ │ ├── djdt_vertical.png │ │ │ └── indicator.png │ │ │ └── js │ │ │ ├── toolbar.js │ │ │ ├── toolbar.profiling.js │ │ │ ├── toolbar.sql.js │ │ │ ├── toolbar.template.js │ │ │ └── toolbar.timer.js │ ├── templates │ │ └── debug_toolbar │ │ │ ├── base.html │ │ │ ├── panels │ │ │ ├── cache.html │ │ │ ├── headers.html │ │ │ ├── logging.html │ │ │ ├── profiling.html │ │ │ ├── request.html │ │ │ ├── settings.html │ │ │ ├── signals.html │ │ │ ├── sql.html │ │ │ ├── sql_explain.html │ │ │ ├── sql_profile.html │ │ │ ├── sql_select.html │ │ │ ├── staticfiles.html │ │ │ ├── template_source.html │ │ │ ├── templates.html │ │ │ ├── timer.html │ │ │ └── versions.html │ │ │ └── redirect.html │ ├── toolbar.py │ ├── utils.py │ └── views.py ├── django_debug_toolbar.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── pip-egg-info │ └── django_debug_toolbar.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── tests │ ├── commands │ ├── __init__.py │ └── test_debugsqlshell.py │ └── panels │ ├── __init__.py │ ├── test_cache.py │ ├── test_logging.py │ ├── test_profiling.py │ ├── test_redirects.py │ ├── test_request.py │ ├── test_sql.py │ ├── test_staticfiles.py │ └── test_template.py ├── django-extensions ├── MANIFEST.in ├── PKG-INFO ├── django_extensions.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── django_extensions │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ └── widgets.py │ ├── conf │ │ ├── app_template │ │ │ ├── __init__.py.tmpl │ │ │ ├── forms.py.tmpl │ │ │ ├── models.py.tmpl │ │ │ ├── urls.py.tmpl │ │ │ └── views.py.tmpl │ │ ├── command_template │ │ │ └── management │ │ │ │ ├── __init__.py.tmpl │ │ │ │ └── commands │ │ │ │ ├── __init__.py.tmpl │ │ │ │ └── sample.py.tmpl │ │ └── jobs_template │ │ │ └── jobs │ │ │ ├── __init__.py.tmpl │ │ │ ├── daily │ │ │ └── __init__.py.tmpl │ │ │ ├── hourly │ │ │ └── __init__.py.tmpl │ │ │ ├── monthly │ │ │ └── __init__.py.tmpl │ │ │ ├── sample.py.tmpl │ │ │ ├── weekly │ │ │ └── __init__.py.tmpl │ │ │ └── yearly │ │ │ └── __init__.py.tmpl │ ├── db │ │ ├── __init__.py │ │ ├── fields │ │ │ ├── __init__.py │ │ │ ├── encrypted.py │ │ │ └── json.py │ │ └── models.py │ ├── jobs │ │ ├── __init__.py │ │ ├── daily │ │ │ ├── __init__.py │ │ │ ├── cache_cleanup.py │ │ │ └── daily_cleanup.py │ │ ├── hourly │ │ │ └── __init__.py │ │ ├── monthly │ │ │ └── __init__.py │ │ ├── weekly │ │ │ └── __init__.py │ │ └── yearly │ │ │ └── __init__.py │ ├── management │ │ ├── __init__.py │ │ ├── color.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── clean_pyc.py │ │ │ ├── compile_pyc.py │ │ │ ├── create_app.py │ │ │ ├── create_command.py │ │ │ ├── create_jobs.py │ │ │ ├── describe_form.py │ │ │ ├── dumpscript.py │ │ │ ├── export_emails.py │ │ │ ├── find_template.py │ │ │ ├── generate_secret_key.py │ │ │ ├── graph_models.py │ │ │ ├── mail_debug.py │ │ │ ├── notes.py │ │ │ ├── passwd.py │ │ │ ├── print_user_for_session.py │ │ │ ├── reset_db.py │ │ │ ├── runjob.py │ │ │ ├── runjobs.py │ │ │ ├── runprofileserver.py │ │ │ ├── runscript.py │ │ │ ├── runserver_plus.py │ │ │ ├── set_fake_emails.py │ │ │ ├── set_fake_passwords.py │ │ │ ├── shell_plus.py │ │ │ ├── show_templatetags.py │ │ │ ├── show_urls.py │ │ │ ├── sqlcreate.py │ │ │ ├── sqldiff.py │ │ │ ├── sync_media_s3.py │ │ │ ├── syncdata.py │ │ │ ├── unreferenced_files.py │ │ │ └── update_permissions.py │ │ ├── jobs.py │ │ ├── modelviz.py │ │ ├── signals.py │ │ └── utils.py │ ├── media │ │ └── django_extensions │ │ │ ├── css │ │ │ └── jquery.autocomplete.css │ │ │ ├── img │ │ │ └── indicator.gif │ │ │ └── js │ │ │ ├── jquery.ajaxQueue.js │ │ │ ├── jquery.autocomplete.js │ │ │ ├── jquery.bgiframe.min.js │ │ │ └── jquery.js │ ├── models.py │ ├── mongodb │ │ ├── __init__.py │ │ ├── fields │ │ │ ├── __init__.py │ │ │ ├── encrypted.py │ │ │ └── json.py │ │ └── models.py │ ├── settings.py │ ├── templates │ │ └── django_extensions │ │ │ ├── graph_models │ │ │ ├── body.html │ │ │ ├── head.html │ │ │ ├── rel.html │ │ │ └── tail.html │ │ │ └── widgets │ │ │ └── foreignkey_searchinput.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── highlighting.py │ │ ├── syntax_color.py │ │ ├── truncate_letters.py │ │ └── widont.py │ ├── tests │ │ ├── __init__.py │ │ ├── encrypted_fields.py │ │ ├── models.py │ │ └── utils.py │ └── utils │ │ ├── __init__.py │ │ ├── dia2django.py │ │ ├── text.py │ │ └── uuid.py ├── pip-egg-info │ └── django_extensions.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── django-http-proxy ├── AUTHORS ├── PKG-INFO ├── docs │ ├── Makefile │ ├── _ext │ │ ├── __init__.py │ │ └── django_models.py │ ├── api │ │ ├── exceptions.rst │ │ ├── index.rst │ │ ├── models.rst │ │ ├── recorder.rst │ │ └── views.rst │ ├── changes.rst │ ├── conf.py │ ├── contributing.rst │ ├── credits.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ └── license.rst ├── httpproxy │ ├── __init__.py │ ├── _version.py │ ├── admin.py │ ├── exceptions.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── recorder.py │ └── views.py ├── setup.py └── versioneer.py ├── django-inplaceedit ├── AUTHORS.rst ├── CHANGES.rst ├── COPYING.LGPLv3 ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── django_inplaceedit.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── inplaceeditform │ ├── __init__.py │ ├── adaptors.py │ ├── commons.py │ ├── fields.py │ ├── locale │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── django.po │ │ └── es │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── perms.py │ ├── settings.py │ ├── static │ │ ├── css │ │ │ ├── inplaceedit_structure.css │ │ │ ├── inplaceedit_style.css │ │ │ ├── inplaceedit_toolbar_structure.css │ │ │ └── inplaceedit_toolbar_style.css │ │ ├── img │ │ │ ├── apply.gif │ │ │ ├── cancel.gif │ │ │ ├── false.gif │ │ │ ├── load.png │ │ │ └── true.gif │ │ └── js │ │ │ ├── DateTimeShortcutsInitial.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.init.js │ │ │ ├── jquery.inplaceeditform.hooks.js │ │ │ ├── jquery.inplaceeditform.js │ │ │ └── jquery.json.js │ ├── tag_utils.py │ ├── templates │ │ └── inplaceeditform │ │ │ ├── adaptor_boolean │ │ │ ├── render_field.html │ │ │ ├── render_media_field.html │ │ │ └── render_value.html │ │ │ ├── adaptor_date │ │ │ ├── render_field.html │ │ │ └── render_media_field.html │ │ │ ├── adaptor_datetime │ │ │ ├── render_field.html │ │ │ └── render_media_field.html │ │ │ ├── adaptor_file │ │ │ ├── render_field.html │ │ │ ├── render_media_field.html │ │ │ └── render_value.html │ │ │ ├── adaptor_image │ │ │ ├── render_field.html │ │ │ ├── render_media_field.html │ │ │ └── render_value.html │ │ │ ├── adaptor_m2m │ │ │ └── render_commaseparated_value.html │ │ │ ├── adaptor_url │ │ │ └── render_value.html │ │ │ ├── inc.csrf_token.html │ │ │ ├── inc.inplace_toolbar.html │ │ │ ├── inplace_css.html │ │ │ ├── inplace_edit.html │ │ │ ├── inplace_js.html │ │ │ ├── inplace_static.html │ │ │ ├── render_config.html │ │ │ ├── render_field.html │ │ │ └── render_media_field.html │ ├── templatetags │ │ ├── __init__.py │ │ └── inplace_edit.py │ ├── urls.py │ └── views.py ├── pip-egg-info │ └── django_inplaceedit.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── django-invitation ├── ._AUTHORS ├── ._LICENSE ├── ._setup.py ├── AUTHORS ├── LICENSE ├── PKG-INFO ├── django_invitation.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── docs │ ├── ._overview.txt │ └── overview.txt ├── invitation │ ├── .___init__.py │ ├── ._admin.py │ ├── ._forms.py │ ├── ._models.py │ ├── ._tests.py │ ├── ._urls.py │ ├── ._views.py │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── management │ │ ├── .___init__.py │ │ ├── __init__.py │ │ └── commands │ │ │ ├── .___init__.py │ │ │ ├── ._cleanupinvitation.py │ │ │ ├── __init__.py │ │ │ └── cleanupinvitation.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── pip-egg-info │ └── django_invitation.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── setuptools_hg-0.2.2-py2.7.egg │ ├── EGG-INFO │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── top_level.txt │ └── zip-safe │ └── setuptools_hg.py ├── django-kombu ├── AUTHORS ├── Changelog ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── README.rst ├── THANKS ├── TODO ├── django_kombu.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── djkombu │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── clean_kombu_messages.py │ ├── managers.py │ ├── models.py │ └── transport.py ├── pip-egg-info │ └── django_kombu.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── django-model-utils ├── AUTHORS.rst ├── CHANGES.rst ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── TODO.rst ├── django_model_utils.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── model_utils │ ├── __init__.py │ ├── choices.py │ ├── fields.py │ ├── managers.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── models.py │ │ └── tests.py │ └── tracker.py ├── pip-egg-info │ └── django_model_utils.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── django-picklefield ├── PKG-INFO ├── README ├── pip-egg-info │ └── django_picklefield.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── src │ ├── django_picklefield.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt │ └── picklefield │ ├── __init__.py │ ├── fields.py │ ├── models.py │ └── tests.py ├── django-registration ├── AUTHORS.txt ├── CHANGELOG.txt ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── docs │ ├── forms.txt │ ├── models.txt │ ├── overview.txt │ └── views.txt ├── pip-egg-info │ └── django_registration.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── registration │ ├── __init__.py │ ├── admin.py │ ├── forms.py │ ├── locale │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── bg │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── es_AR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── django.mo │ │ │ │ └── django.po │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── cleanupregistration.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── setup.py ├── django-reversion ├── ._setup.py ├── LICENSE ├── PKG-INFO ├── pip-egg-info │ └── django_reversion.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.py └── src │ └── reversion │ ├── ._admin.py │ ├── ._errors.py │ ├── ._managers.py │ ├── ._middleware.py │ ├── ._models.py │ ├── ._revisions.py │ ├── ._tests.py │ ├── __init__.py │ ├── admin.py │ ├── errors.py │ ├── helpers.py │ ├── locale │ ├── cs │ │ └── LC_MESSAGES │ │ │ ├── ._django.mo │ │ │ ├── ._django.po │ │ │ ├── django.mo │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── management │ ├── __init__.py │ └── commands │ │ ├── .___init__.py │ │ ├── ._createinitialrevisions.py │ │ ├── __init__.py │ │ └── createinitialrevisions.py │ ├── managers.py │ ├── middleware.py │ ├── models.py │ ├── revisions.py │ ├── storage.py │ ├── templates │ └── reversion │ │ ├── change_list.html │ │ ├── object_history.html │ │ ├── recover_form.html │ │ ├── recover_list.html │ │ └── revision_form.html │ ├── templatetags │ ├── __init__.py │ └── reversion_admin.py │ └── tests.py ├── django-tastypie ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── django_tastypie.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── docs │ ├── Makefile │ ├── _build │ │ ├── doctrees │ │ │ ├── api.doctree │ │ │ ├── authentication.doctree │ │ │ ├── authorization.doctree │ │ │ ├── bundles.doctree │ │ │ ├── caching.doctree │ │ │ ├── compatibility_notes.doctree │ │ │ ├── content_types.doctree │ │ │ ├── contributing.doctree │ │ │ ├── cookbook.doctree │ │ │ ├── debugging.doctree │ │ │ ├── environment.pickle │ │ │ ├── fields.doctree │ │ │ ├── geodjango.doctree │ │ │ ├── index.doctree │ │ │ ├── interacting.doctree │ │ │ ├── non_orm_data_sources.doctree │ │ │ ├── paginator.doctree │ │ │ ├── resources.doctree │ │ │ ├── serialization.doctree │ │ │ ├── settings.doctree │ │ │ ├── testing.doctree │ │ │ ├── throttling.doctree │ │ │ ├── toc.doctree │ │ │ ├── tools.doctree │ │ │ ├── tutorial.doctree │ │ │ ├── validation.doctree │ │ │ └── who_uses.doctree │ │ └── html │ │ │ ├── .buildinfo │ │ │ ├── _sources │ │ │ ├── api.txt │ │ │ ├── authentication.txt │ │ │ ├── authorization.txt │ │ │ ├── bundles.txt │ │ │ ├── caching.txt │ │ │ ├── compatibility_notes.txt │ │ │ ├── content_types.txt │ │ │ ├── contributing.txt │ │ │ ├── cookbook.txt │ │ │ ├── debugging.txt │ │ │ ├── fields.txt │ │ │ ├── geodjango.txt │ │ │ ├── index.txt │ │ │ ├── interacting.txt │ │ │ ├── non_orm_data_sources.txt │ │ │ ├── paginator.txt │ │ │ ├── resources.txt │ │ │ ├── serialization.txt │ │ │ ├── settings.txt │ │ │ ├── testing.txt │ │ │ ├── throttling.txt │ │ │ ├── toc.txt │ │ │ ├── tools.txt │ │ │ ├── tutorial.txt │ │ │ ├── validation.txt │ │ │ └── who_uses.txt │ │ │ ├── _static │ │ │ ├── basic.css │ │ │ ├── default.css │ │ │ ├── doctools.js │ │ │ ├── file.png │ │ │ ├── jquery.js │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── pygments.css │ │ │ ├── searchtools.js │ │ │ ├── sidebar.js │ │ │ └── underscore.js │ │ │ ├── api.html │ │ │ ├── authentication.html │ │ │ ├── authorization.html │ │ │ ├── bundles.html │ │ │ ├── caching.html │ │ │ ├── compatibility_notes.html │ │ │ ├── content_types.html │ │ │ ├── contributing.html │ │ │ ├── cookbook.html │ │ │ ├── debugging.html │ │ │ ├── fields.html │ │ │ ├── genindex.html │ │ │ ├── geodjango.html │ │ │ ├── index.html │ │ │ ├── interacting.html │ │ │ ├── non_orm_data_sources.html │ │ │ ├── objects.inv │ │ │ ├── paginator.html │ │ │ ├── py-modindex.html │ │ │ ├── resources.html │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── serialization.html │ │ │ ├── settings.html │ │ │ ├── testing.html │ │ │ ├── throttling.html │ │ │ ├── toc.html │ │ │ ├── tools.html │ │ │ ├── tutorial.html │ │ │ ├── validation.html │ │ │ └── who_uses.html │ ├── api.rst │ ├── authentication.rst │ ├── authorization.rst │ ├── bundles.rst │ ├── caching.rst │ ├── compatibility_notes.rst │ ├── conf.py │ ├── content_types.rst │ ├── contributing.rst │ ├── cookbook.rst │ ├── debugging.rst │ ├── fields.rst │ ├── geodjango.rst │ ├── index.rst │ ├── interacting.rst │ ├── non_orm_data_sources.rst │ ├── paginator.rst │ ├── python3.rst │ ├── release_notes │ │ ├── index.rst │ │ ├── v0.10.0.rst │ │ ├── v0.11.0.rst │ │ ├── v0.11.1.rst │ │ ├── v0.9.13.rst │ │ ├── v0.9.14.rst │ │ ├── v0.9.15.rst │ │ └── v0.9.16.rst │ ├── resources.rst │ ├── serialization.rst │ ├── settings.rst │ ├── testing.rst │ ├── throttling.rst │ ├── toc.rst │ ├── tools.rst │ ├── tutorial.rst │ ├── validation.rst │ └── who_uses.rst ├── pip-egg-info │ └── django_tastypie.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── tastypie │ ├── __init__.py │ ├── admin.py │ ├── api.py │ ├── authentication.py │ ├── authorization.py │ ├── bundle.py │ ├── cache.py │ ├── compat.py │ ├── constants.py │ ├── contrib │ ├── __init__.py │ ├── contenttypes │ │ ├── __init__.py │ │ ├── fields.py │ │ └── resources.py │ └── gis │ │ ├── __init__.py │ │ └── resources.py │ ├── exceptions.py │ ├── fields.py │ ├── http.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── backfill_api_keys.py │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_apikey_index.py │ └── __init__.py │ ├── models.py │ ├── paginator.py │ ├── resources.py │ ├── serializers.py │ ├── templates │ └── tastypie │ │ ├── basic.html │ │ ├── detail.html │ │ └── list.html │ ├── test.py │ ├── throttle.py │ ├── utils │ ├── __init__.py │ ├── dict.py │ ├── formatting.py │ ├── mime.py │ ├── timezone.py │ ├── urls.py │ └── validate_jsonp.py │ └── validation.py ├── django-voting ├── CHANGELOG.txt ├── INSTALL.txt ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── docs │ └── overview.txt ├── pip-egg-info │ └── django_voting.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.py └── voting │ ├── __init__.py │ ├── admin.py │ ├── managers.py │ ├── models.py │ ├── templatetags │ ├── __init__.py │ └── voting_tags.py │ ├── tests │ ├── __init__.py │ ├── models.py │ ├── runtests.py │ ├── settings.py │ └── tests.py │ └── views.py ├── django-webtest ├── AUTHORS.txt ├── CHANGES.txt ├── LICENSE.txt ├── PKG-INFO ├── README.rst ├── django_webtest │ ├── __init__.py │ ├── backends.py │ ├── compat.py │ ├── middleware.py │ └── response.py ├── pip-egg-info │ └── django_webtest.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt └── setup.py ├── docutils ├── BUGS.txt ├── COPYING.txt ├── FAQ.txt ├── HISTORY.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── RELEASE-NOTES.txt ├── THANKS.txt ├── docs │ ├── api │ │ ├── cmdline-tool.txt │ │ ├── publisher.txt │ │ └── runtime-settings.txt │ ├── dev │ │ ├── distributing.txt │ │ ├── enthought-plan.txt │ │ ├── enthought-rfp.txt │ │ ├── hacking.txt │ │ ├── policies.txt │ │ ├── pysource.dtd │ │ ├── pysource.txt │ │ ├── release.txt │ │ ├── repository.txt │ │ ├── rst │ │ │ ├── alternatives.txt │ │ │ └── problems.txt │ │ ├── semantics.txt │ │ ├── testing.txt │ │ ├── todo.txt │ │ └── website.txt │ ├── howto │ │ ├── html-stylesheets.txt │ │ ├── i18n.txt │ │ ├── rst-directives.txt │ │ ├── rst-roles.txt │ │ └── security.txt │ ├── index.txt │ ├── peps │ │ ├── pep-0256.txt │ │ ├── pep-0257.txt │ │ ├── pep-0258.txt │ │ └── pep-0287.txt │ ├── ref │ │ ├── doctree.txt │ │ ├── docutils.dtd │ │ ├── rst │ │ │ ├── definitions.txt │ │ │ ├── directives.txt │ │ │ ├── introduction.txt │ │ │ ├── restructuredtext.txt │ │ │ └── roles.txt │ │ ├── soextblx.dtd │ │ └── transforms.txt │ └── user │ │ ├── Makefile.docutils-update │ │ ├── config.txt │ │ ├── docutils-05-compat.sty.txt │ │ ├── emacs.txt │ │ ├── images │ │ ├── big-black.png │ │ ├── big-white.png │ │ ├── default.png │ │ ├── happy_monkey.png │ │ ├── medium-black.png │ │ ├── medium-white.png │ │ ├── rsp-all.png │ │ ├── rsp-breaks.png │ │ ├── rsp-covers.png │ │ ├── rsp-cuts.png │ │ ├── rsp-empty.png │ │ ├── rsp-objects.png │ │ ├── rsp.svg │ │ ├── s5-files.png │ │ ├── s5-files.svg │ │ ├── small-black.png │ │ └── small-white.png │ │ ├── latex.txt │ │ ├── links.txt │ │ ├── mailing-lists.txt │ │ ├── manpage.txt │ │ ├── odt.txt │ │ ├── rst │ │ ├── cheatsheet.txt │ │ ├── demo.txt │ │ ├── images │ │ │ ├── ball1.gif │ │ │ ├── biohazard-scaling.svg │ │ │ ├── biohazard.png │ │ │ ├── biohazard.svg │ │ │ ├── biohazard.swf │ │ │ ├── title-scaling.svg │ │ │ ├── title.png │ │ │ └── title.svg │ │ ├── quickref.html │ │ └── quickstart.txt │ │ ├── slide-shows.txt │ │ └── tools.txt ├── docutils │ ├── __init__.py │ ├── _compat.py │ ├── core.py │ ├── docutils.conf │ ├── examples.py │ ├── frontend.py │ ├── io.py │ ├── languages │ │ ├── __init__.py │ │ ├── af.py │ │ ├── ca.py │ │ ├── cs.py │ │ ├── da.py │ │ ├── de.py │ │ ├── en.py │ │ ├── eo.py │ │ ├── es.py │ │ ├── fi.py │ │ ├── fr.py │ │ ├── gl.py │ │ ├── he.py │ │ ├── it.py │ │ ├── ja.py │ │ ├── lt.py │ │ ├── nl.py │ │ ├── pl.py │ │ ├── pt_br.py │ │ ├── ru.py │ │ ├── sk.py │ │ ├── sv.py │ │ ├── zh_cn.py │ │ └── zh_tw.py │ ├── nodes.py │ ├── parsers │ │ ├── __init__.py │ │ ├── null.py │ │ └── rst │ │ │ ├── __init__.py │ │ │ ├── directives │ │ │ ├── __init__.py │ │ │ ├── admonitions.py │ │ │ ├── body.py │ │ │ ├── html.py │ │ │ ├── images.py │ │ │ ├── misc.py │ │ │ ├── parts.py │ │ │ ├── references.py │ │ │ └── tables.py │ │ │ ├── include │ │ │ ├── README.txt │ │ │ ├── isoamsa.txt │ │ │ ├── isoamsb.txt │ │ │ ├── isoamsc.txt │ │ │ ├── isoamsn.txt │ │ │ ├── isoamso.txt │ │ │ ├── isoamsr.txt │ │ │ ├── isobox.txt │ │ │ ├── isocyr1.txt │ │ │ ├── isocyr2.txt │ │ │ ├── isodia.txt │ │ │ ├── isogrk1.txt │ │ │ ├── isogrk2.txt │ │ │ ├── isogrk3.txt │ │ │ ├── isogrk4-wide.txt │ │ │ ├── isogrk4.txt │ │ │ ├── isolat1.txt │ │ │ ├── isolat2.txt │ │ │ ├── isomfrk-wide.txt │ │ │ ├── isomfrk.txt │ │ │ ├── isomopf-wide.txt │ │ │ ├── isomopf.txt │ │ │ ├── isomscr-wide.txt │ │ │ ├── isomscr.txt │ │ │ ├── isonum.txt │ │ │ ├── isopub.txt │ │ │ ├── isotech.txt │ │ │ ├── mmlalias.txt │ │ │ ├── mmlextra-wide.txt │ │ │ ├── mmlextra.txt │ │ │ ├── s5defs.txt │ │ │ ├── xhtml1-lat1.txt │ │ │ ├── xhtml1-special.txt │ │ │ └── xhtml1-symbol.txt │ │ │ ├── languages │ │ │ ├── __init__.py │ │ │ ├── af.py │ │ │ ├── ca.py │ │ │ ├── cs.py │ │ │ ├── da.py │ │ │ ├── de.py │ │ │ ├── en.py │ │ │ ├── eo.py │ │ │ ├── es.py │ │ │ ├── fi.py │ │ │ ├── fr.py │ │ │ ├── gl.py │ │ │ ├── he.py │ │ │ ├── it.py │ │ │ ├── ja.py │ │ │ ├── lt.py │ │ │ ├── nl.py │ │ │ ├── pl.py │ │ │ ├── pt_br.py │ │ │ ├── ru.py │ │ │ ├── sk.py │ │ │ ├── sv.py │ │ │ ├── zh_cn.py │ │ │ └── zh_tw.py │ │ │ ├── roles.py │ │ │ ├── states.py │ │ │ └── tableparser.py │ ├── readers │ │ ├── __init__.py │ │ ├── doctree.py │ │ ├── pep.py │ │ └── standalone.py │ ├── statemachine.py │ ├── transforms │ │ ├── __init__.py │ │ ├── components.py │ │ ├── frontmatter.py │ │ ├── misc.py │ │ ├── parts.py │ │ ├── peps.py │ │ ├── references.py │ │ ├── universal.py │ │ └── writer_aux.py │ ├── utils │ │ ├── __init__.py │ │ ├── code_analyzer.py │ │ ├── error_reporting.py │ │ ├── math │ │ │ ├── __init__.py │ │ │ ├── latex2mathml.py │ │ │ ├── math2html.py │ │ │ ├── tex2unichar.py │ │ │ └── unichar2tex.py │ │ ├── punctuation_chars.py │ │ ├── roman.py │ │ ├── smartquotes.py │ │ └── urischemes.py │ └── writers │ │ ├── __init__.py │ │ ├── docutils_xml.py │ │ ├── html4css1 │ │ ├── __init__.py │ │ ├── html4css1.css │ │ ├── math.css │ │ └── template.txt │ │ ├── latex2e │ │ ├── __init__.py │ │ ├── default.tex │ │ ├── docutils-05-compat.sty │ │ ├── titlepage.tex │ │ └── xelatex.tex │ │ ├── manpage.py │ │ ├── null.py │ │ ├── odf_odt │ │ ├── __init__.py │ │ ├── pygmentsformatter.py │ │ └── styles.odt │ │ ├── pep_html │ │ ├── __init__.py │ │ ├── pep.css │ │ └── template.txt │ │ ├── pseudoxml.py │ │ ├── s5_html │ │ ├── __init__.py │ │ └── themes │ │ │ ├── README.txt │ │ │ ├── big-black │ │ │ ├── __base__ │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── big-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── default │ │ │ ├── blank.gif │ │ │ ├── framing.css │ │ │ ├── iepngfix.htc │ │ │ ├── opera.css │ │ │ ├── outline.css │ │ │ ├── pretty.css │ │ │ ├── print.css │ │ │ ├── s5-core.css │ │ │ ├── slides.css │ │ │ └── slides.js │ │ │ ├── medium-black │ │ │ ├── __base__ │ │ │ └── pretty.css │ │ │ ├── medium-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ │ ├── small-black │ │ │ ├── __base__ │ │ │ └── pretty.css │ │ │ └── small-white │ │ │ ├── framing.css │ │ │ └── pretty.css │ │ └── xetex │ │ └── __init__.py ├── install.py ├── licenses │ ├── BSD-2-Clause.txt │ ├── docutils.conf │ ├── gpl-3-0.txt │ └── python-2-1-1.txt ├── pip-egg-info │ └── docutils.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── test │ ├── DocutilsTestSupport.py │ ├── alltests.py │ ├── coverage.sh │ ├── data │ │ ├── config_1.txt │ │ ├── config_2.txt │ │ ├── config_error_handler.txt │ │ ├── config_list.txt │ │ ├── config_list_2.txt │ │ ├── config_old.txt │ │ ├── csv_data.txt │ │ ├── csv_dep.txt │ │ ├── dependencies.txt │ │ ├── full-template.txt │ │ ├── ham.css │ │ ├── ham.tex │ │ ├── include.txt │ │ ├── latin1.txt │ │ ├── raw.txt │ │ └── stylesheet.txt │ ├── docutils.conf │ ├── functional │ │ ├── README.txt │ │ ├── expected │ │ │ ├── compact_lists.html │ │ │ ├── cyrillic.tex │ │ │ ├── dangerous.html │ │ │ ├── field_name_limit.html │ │ │ ├── latex_babel.tex │ │ │ ├── latex_docinfo.tex │ │ │ ├── math_output_html.html │ │ │ ├── math_output_latex.html │ │ │ ├── math_output_mathjax.html │ │ │ ├── math_output_mathml.xhtml │ │ │ ├── misc_rst_html4css1.html │ │ │ ├── odt_basic.odt │ │ │ ├── odt_custom_headfoot.odt │ │ │ ├── odt_tables1.odt │ │ │ ├── pep_html.html │ │ │ ├── standalone_rst_html4css1.html │ │ │ ├── standalone_rst_latex.tex │ │ │ ├── standalone_rst_manpage.man │ │ │ ├── standalone_rst_pseudoxml.txt │ │ │ ├── standalone_rst_s5_html_1.html │ │ │ ├── standalone_rst_s5_html_2.html │ │ │ ├── standalone_rst_xetex.tex │ │ │ ├── ui │ │ │ │ ├── default │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── framing.css │ │ │ │ │ ├── iepngfix.htc │ │ │ │ │ ├── opera.css │ │ │ │ │ ├── outline.css │ │ │ │ │ ├── pretty.css │ │ │ │ │ ├── print.css │ │ │ │ │ ├── s5-core.css │ │ │ │ │ ├── slides.css │ │ │ │ │ └── slides.js │ │ │ │ └── small-black │ │ │ │ │ ├── blank.gif │ │ │ │ │ ├── framing.css │ │ │ │ │ ├── iepngfix.htc │ │ │ │ │ ├── opera.css │ │ │ │ │ ├── outline.css │ │ │ │ │ ├── pretty.css │ │ │ │ │ ├── print.css │ │ │ │ │ ├── s5-core.css │ │ │ │ │ ├── slides.css │ │ │ │ │ └── slides.js │ │ │ └── xetex-cyrillic.tex │ │ ├── input │ │ │ ├── compact_lists.txt │ │ │ ├── cyrillic.txt │ │ │ ├── dangerous.txt │ │ │ ├── data │ │ │ │ ├── custom_roles.txt │ │ │ │ ├── custom_roles_latex.txt │ │ │ │ ├── errors.txt │ │ │ │ ├── header_footer.txt │ │ │ │ ├── html4css1.css │ │ │ │ ├── hyperlinking.txt │ │ │ │ ├── latex.txt │ │ │ │ ├── latex_encoding.txt │ │ │ │ ├── list_table.txt │ │ │ │ ├── math.css │ │ │ │ ├── math.txt │ │ │ │ ├── nonalphanumeric.txt │ │ │ │ ├── option_lists.txt │ │ │ │ ├── section_titles.txt │ │ │ │ ├── standard.txt │ │ │ │ ├── svg_images.txt │ │ │ │ ├── swf_images.txt │ │ │ │ ├── table_colspan.txt │ │ │ │ ├── table_complex.txt │ │ │ │ ├── table_rowspan.txt │ │ │ │ ├── tables_latex.txt │ │ │ │ ├── unicode.txt │ │ │ │ └── urls.txt │ │ │ ├── field_list.txt │ │ │ ├── latex_babel.txt │ │ │ ├── latex_docinfo.txt │ │ │ ├── link_in_substitution.txt │ │ │ ├── odt_basic.txt │ │ │ ├── odt_custom_headfoot.txt │ │ │ ├── odt_tables1.txt │ │ │ ├── pep_html.txt │ │ │ ├── simple.txt │ │ │ ├── standalone_rst_html4css1.txt │ │ │ ├── standalone_rst_latex.txt │ │ │ ├── standalone_rst_manpage.txt │ │ │ ├── standalone_rst_pseudoxml.txt │ │ │ ├── standalone_rst_s5_html.txt │ │ │ └── standalone_rst_xetex.txt │ │ ├── output │ │ │ └── README.txt │ │ └── tests │ │ │ ├── _default.py │ │ │ ├── _standalone_rst_defaults.py │ │ │ ├── compact_lists.py │ │ │ ├── dangerous.py │ │ │ ├── field_name_limit.py │ │ │ ├── latex_babel.py │ │ │ ├── latex_cyrillic.py │ │ │ ├── latex_docinfo.py │ │ │ ├── math_output_html.py │ │ │ ├── math_output_latex.py │ │ │ ├── math_output_mathjax.py │ │ │ ├── math_output_mathml.py │ │ │ ├── misc_rst_html4css1.py │ │ │ ├── pep_html.py │ │ │ ├── standalone_rst_html4css1.py │ │ │ ├── standalone_rst_latex.py │ │ │ ├── standalone_rst_manpage.py │ │ │ ├── standalone_rst_pseudoxml.py │ │ │ ├── standalone_rst_s5_html_1.py │ │ │ ├── standalone_rst_s5_html_2.py │ │ │ ├── standalone_rst_xetex.py │ │ │ └── xetex_cyrillic.py │ ├── local-parser.py │ ├── local-reader.py │ ├── local-writer.py │ ├── local_dummy_lang.py │ ├── package_unittest.py │ ├── test__init__.py │ ├── test_command_line.py │ ├── test_dependencies.py │ ├── test_error_reporting.py │ ├── test_functional.py │ ├── test_io.py │ ├── test_language.py │ ├── test_nodes.py │ ├── test_parsers │ │ ├── __init__.py │ │ ├── test_get_parser_class.py │ │ ├── test_parser.py │ │ └── test_rst │ │ │ ├── __init__.py │ │ │ ├── includes │ │ │ └── include9.txt │ │ │ ├── test_SimpleTableParser.py │ │ │ ├── test_TableParser.py │ │ │ ├── test_block_quotes.py │ │ │ ├── test_bullet_lists.py │ │ │ ├── test_citations.py │ │ │ ├── test_comments.py │ │ │ ├── test_definition_lists.py │ │ │ ├── test_directives │ │ │ ├── __init__.py │ │ │ ├── empty.txt │ │ │ ├── include 11.txt │ │ │ ├── include1.txt │ │ │ ├── include10.txt │ │ │ ├── include12.txt │ │ │ ├── include13.txt │ │ │ ├── include2.txt │ │ │ ├── include3.txt │ │ │ ├── include8.txt │ │ │ ├── include_literal.txt │ │ │ ├── includes │ │ │ │ ├── include4.txt │ │ │ │ ├── include5.txt │ │ │ │ ├── more │ │ │ │ │ └── include6.txt │ │ │ │ └── sibling │ │ │ │ │ └── include7.txt │ │ │ ├── raw1.txt │ │ │ ├── test_admonitions.py │ │ │ ├── test_block_quotes.py │ │ │ ├── test_class.py │ │ │ ├── test_code.py │ │ │ ├── test_code_long.py │ │ │ ├── test_code_none.py │ │ │ ├── test_compound.py │ │ │ ├── test_container.py │ │ │ ├── test_contents.py │ │ │ ├── test_date.py │ │ │ ├── test_decorations.py │ │ │ ├── test_default_role.py │ │ │ ├── test_figures.py │ │ │ ├── test_images.py │ │ │ ├── test_include.py │ │ │ ├── test_line_blocks.py │ │ │ ├── test_math.py │ │ │ ├── test_meta.py │ │ │ ├── test_parsed_literals.py │ │ │ ├── test_raw.py │ │ │ ├── test_replace.py │ │ │ ├── test_replace_fr.py │ │ │ ├── test_role.py │ │ │ ├── test_rubrics.py │ │ │ ├── test_sectnum.py │ │ │ ├── test_sidebars.py │ │ │ ├── test_tables.py │ │ │ ├── test_target_notes.py │ │ │ ├── test_test_directives.py │ │ │ ├── test_title.py │ │ │ ├── test_topics.py │ │ │ ├── test_unicode.py │ │ │ ├── test_unknown.py │ │ │ └── utf-16.csv │ │ │ ├── test_doctest_blocks.py │ │ │ ├── test_east_asian_text.py │ │ │ ├── test_enumerated_lists.py │ │ │ ├── test_field_lists.py │ │ │ ├── test_footnotes.py │ │ │ ├── test_functions.py │ │ │ ├── test_inline_markup.py │ │ │ ├── test_interpreted.py │ │ │ ├── test_interpreted_fr.py │ │ │ ├── test_line_blocks.py │ │ │ ├── test_literal_blocks.py │ │ │ ├── test_option_lists.py │ │ │ ├── test_outdenting.py │ │ │ ├── test_paragraphs.py │ │ │ ├── test_section_headers.py │ │ │ ├── test_substitutions.py │ │ │ ├── test_tables.py │ │ │ ├── test_targets.py │ │ │ └── test_transitions.py │ ├── test_pickle.py │ ├── test_publisher.py │ ├── test_readers │ │ ├── __init__.py │ │ ├── test_get_reader_class.py │ │ └── test_pep │ │ │ ├── __init__.py │ │ │ ├── test_inline_markup.py │ │ │ └── test_rfc2822.py │ ├── test_settings.py │ ├── test_statemachine.py │ ├── test_transforms │ │ ├── __init__.py │ │ ├── test___init__.py │ │ ├── test_class.py │ │ ├── test_contents.py │ │ ├── test_docinfo.py │ │ ├── test_doctitle.py │ │ ├── test_expose_internals.py │ │ ├── test_filter.py │ │ ├── test_footnotes.py │ │ ├── test_hyperlinks.py │ │ ├── test_messages.py │ │ ├── test_peps.py │ │ ├── test_sectnum.py │ │ ├── test_smartquotes.py │ │ ├── test_strip_comments.py │ │ ├── test_strip_elements_with_class.py │ │ ├── test_substitutions.py │ │ ├── test_target_notes.py │ │ ├── test_transitions.py │ │ └── test_writer_aux.py │ ├── test_traversals.py │ ├── test_utils.py │ ├── test_viewlist.py │ └── test_writers │ │ ├── __init__.py │ │ ├── test_docutils_xml.py │ │ ├── test_get_writer_class.py │ │ ├── test_html4css1_misc.py │ │ ├── test_html4css1_parts.py │ │ ├── test_html4css1_template.py │ │ ├── test_latex2e.py │ │ ├── test_manpage.py │ │ ├── test_null.py │ │ ├── test_odt.py │ │ ├── test_pseudoxml.py │ │ └── test_s5.py └── tools │ ├── buildhtml.py │ ├── dev │ ├── README.txt │ ├── create_unimap.py │ ├── profile_docutils.py │ └── unicode2rstsubs.py │ ├── docutils.conf │ ├── editors │ ├── README.txt │ └── emacs │ │ ├── IDEAS.rst │ │ ├── README.txt │ │ ├── docutils.conf │ │ ├── rst.el │ │ └── tests │ │ ├── Makefile │ │ ├── README.txt │ │ ├── adjust-section.el │ │ ├── adornment.el │ │ ├── buffer.el │ │ ├── cl.el │ │ ├── comment.el │ │ ├── ert-buffer.el │ │ ├── fill.el │ │ ├── font-lock.el │ │ ├── imenu.el │ │ ├── indent.el │ │ ├── init.el │ │ ├── items.el │ │ ├── movement.el │ │ ├── re.el │ │ ├── shift.el │ │ ├── toc.el │ │ └── tree.el │ ├── quicktest.py │ ├── rst2html.py │ ├── rst2latex.py │ ├── rst2man.py │ ├── rst2odt.py │ ├── rst2odt_prepstyles.py │ ├── rst2pseudoxml.py │ ├── rst2s5.py │ ├── rst2xetex.py │ ├── rst2xml.py │ ├── rstpep2html.py │ └── test │ └── test_buildhtml.py ├── feedparser ├── LICENSE ├── NEWS ├── PKG-INFO ├── README ├── README-PYTHON3 ├── README-TESTS ├── convert_to_py3.sh ├── feedparser │ ├── feedparser.py │ ├── feedparsertest.py │ ├── sgmllib3.py │ └── tests │ │ ├── illformed │ │ ├── amp │ │ │ ├── amp01.xml │ │ │ ├── amp02.xml │ │ │ ├── amp03.xml │ │ │ ├── amp04.xml │ │ │ ├── amp05.xml │ │ │ ├── amp06.xml │ │ │ ├── amp07.xml │ │ │ ├── amp08.xml │ │ │ ├── amp09.xml │ │ │ ├── amp10.xml │ │ │ ├── amp11.xml │ │ │ ├── amp12.xml │ │ │ ├── amp13.xml │ │ │ ├── amp14.xml │ │ │ ├── amp15.xml │ │ │ ├── amp16.xml │ │ │ ├── amp17.xml │ │ │ ├── amp18.xml │ │ │ ├── amp19.xml │ │ │ ├── amp20.xml │ │ │ ├── amp21.xml │ │ │ ├── amp22.xml │ │ │ ├── amp23.xml │ │ │ ├── amp24.xml │ │ │ ├── amp25.xml │ │ │ ├── amp26.xml │ │ │ ├── amp27.xml │ │ │ ├── amp28.xml │ │ │ ├── amp29.xml │ │ │ ├── amp30.xml │ │ │ ├── amp31.xml │ │ │ ├── amp32.xml │ │ │ ├── amp33.xml │ │ │ ├── amp34.xml │ │ │ ├── amp35.xml │ │ │ ├── amp36.xml │ │ │ ├── amp37.xml │ │ │ ├── amp38.xml │ │ │ ├── amp39.xml │ │ │ ├── amp40.xml │ │ │ ├── amp41.xml │ │ │ ├── amp42.xml │ │ │ ├── amp43.xml │ │ │ ├── amp44.xml │ │ │ ├── amp45.xml │ │ │ ├── amp46.xml │ │ │ ├── amp47.xml │ │ │ ├── amp48.xml │ │ │ ├── amp49.xml │ │ │ ├── amp50.xml │ │ │ ├── amp51.xml │ │ │ ├── amp52.xml │ │ │ ├── amp53.xml │ │ │ ├── amp54.xml │ │ │ ├── amp55.xml │ │ │ ├── amp56.xml │ │ │ ├── amp57.xml │ │ │ ├── amp58.xml │ │ │ ├── amp59.xml │ │ │ ├── amp60.xml │ │ │ ├── amp61.xml │ │ │ ├── amp62.xml │ │ │ ├── amp63.xml │ │ │ ├── amp64.xml │ │ │ ├── attr01.xml │ │ │ ├── attr02.xml │ │ │ ├── attr03.xml │ │ │ ├── attr04.xml │ │ │ ├── attr05.xml │ │ │ └── attr06.xml │ │ ├── atom │ │ │ ├── atom_namespace_1.xml │ │ │ ├── atom_namespace_2.xml │ │ │ ├── atom_namespace_3.xml │ │ │ ├── atom_namespace_4.xml │ │ │ ├── atom_namespace_5.xml │ │ │ ├── entry_author_email.xml │ │ │ ├── entry_author_homepage.xml │ │ │ ├── entry_author_map_author.xml │ │ │ ├── entry_author_map_author_2.xml │ │ │ ├── entry_author_name.xml │ │ │ ├── entry_author_uri.xml │ │ │ ├── entry_author_url.xml │ │ │ ├── entry_content_mode_base64.xml │ │ │ ├── entry_content_mode_escaped.xml │ │ │ ├── entry_content_type.xml │ │ │ ├── entry_content_type_text_plain.xml │ │ │ ├── entry_content_value.xml │ │ │ ├── entry_contributor_email.xml │ │ │ ├── entry_contributor_homepage.xml │ │ │ ├── entry_contributor_multiple.xml │ │ │ ├── entry_contributor_name.xml │ │ │ ├── entry_contributor_uri.xml │ │ │ ├── entry_contributor_url.xml │ │ │ ├── entry_id.xml │ │ │ ├── entry_id_map_guid.xml │ │ │ ├── entry_link_alternate_map_link.xml │ │ │ ├── entry_link_alternate_map_link_2.xml │ │ │ ├── entry_link_href.xml │ │ │ ├── entry_link_multiple.xml │ │ │ ├── entry_link_rel.xml │ │ │ ├── entry_link_title.xml │ │ │ ├── entry_link_type.xml │ │ │ ├── entry_summary.xml │ │ │ ├── entry_summary_base64.xml │ │ │ ├── entry_summary_base64_2.xml │ │ │ ├── entry_summary_content_mode_base64.xml │ │ │ ├── entry_summary_content_mode_escaped.xml │ │ │ ├── entry_summary_content_type.xml │ │ │ ├── entry_summary_content_type_text_plain.xml │ │ │ ├── entry_summary_content_value.xml │ │ │ ├── entry_summary_escaped_markup.xml │ │ │ ├── entry_summary_inline_markup.xml │ │ │ ├── entry_summary_inline_markup_2.xml │ │ │ ├── entry_summary_naked_markup.xml │ │ │ ├── entry_summary_text_plain.xml │ │ │ ├── entry_title.xml │ │ │ ├── entry_title_base64.xml │ │ │ ├── entry_title_base64_2.xml │ │ │ ├── entry_title_content_mode_base64.xml │ │ │ ├── entry_title_content_mode_escaped.xml │ │ │ ├── entry_title_content_type.xml │ │ │ ├── entry_title_content_type_text_plain.xml │ │ │ ├── entry_title_content_value.xml │ │ │ ├── entry_title_escaped_markup.xml │ │ │ ├── entry_title_inline_markup.xml │ │ │ ├── entry_title_inline_markup_2.xml │ │ │ ├── entry_title_naked_markup.xml │ │ │ ├── entry_title_text_plain.xml │ │ │ ├── entry_title_text_plain_brackets.xml │ │ │ ├── feed_author_email.xml │ │ │ ├── feed_author_homepage.xml │ │ │ ├── feed_author_map_author.xml │ │ │ ├── feed_author_map_author_2.xml │ │ │ ├── feed_author_name.xml │ │ │ ├── feed_author_uri.xml │ │ │ ├── feed_author_url.xml │ │ │ ├── feed_contributor_email.xml │ │ │ ├── feed_contributor_homepage.xml │ │ │ ├── feed_contributor_multiple.xml │ │ │ ├── feed_contributor_name.xml │ │ │ ├── feed_contributor_uri.xml │ │ │ ├── feed_contributor_url.xml │ │ │ ├── feed_copyright.xml │ │ │ ├── feed_copyright_base64.xml │ │ │ ├── feed_copyright_base64_2.xml │ │ │ ├── feed_copyright_content_mode_base64.xml │ │ │ ├── feed_copyright_content_mode_escaped.xml │ │ │ ├── feed_copyright_content_type.xml │ │ │ ├── feed_copyright_content_type_text_plain.xml │ │ │ ├── feed_copyright_content_value.xml │ │ │ ├── feed_copyright_escaped_markup.xml │ │ │ ├── feed_copyright_inline_markup.xml │ │ │ ├── feed_copyright_inline_markup_2.xml │ │ │ ├── feed_copyright_naked_markup.xml │ │ │ ├── feed_copyright_text_plain.xml │ │ │ ├── feed_generator.xml │ │ │ ├── feed_generator_name.xml │ │ │ ├── feed_generator_url.xml │ │ │ ├── feed_generator_version.xml │ │ │ ├── feed_id.xml │ │ │ ├── feed_id_map_guid.xml │ │ │ ├── feed_info.xml │ │ │ ├── feed_info_base64.xml │ │ │ ├── feed_info_base64_2.xml │ │ │ ├── feed_info_content_mode_base64.xml │ │ │ ├── feed_info_content_mode_escaped.xml │ │ │ ├── feed_info_content_type.xml │ │ │ ├── feed_info_content_type_text_plain.xml │ │ │ ├── feed_info_content_value.xml │ │ │ ├── feed_info_escaped_markup.xml │ │ │ ├── feed_info_inline_markup.xml │ │ │ ├── feed_info_inline_markup_2.xml │ │ │ ├── feed_info_naked_markup.xml │ │ │ ├── feed_info_text_plain.xml │ │ │ ├── feed_link_alternate_map_link.xml │ │ │ ├── feed_link_alternate_map_link_2.xml │ │ │ ├── feed_link_href.xml │ │ │ ├── feed_link_multiple.xml │ │ │ ├── feed_link_rel.xml │ │ │ ├── feed_link_title.xml │ │ │ ├── feed_link_type.xml │ │ │ ├── feed_tagline.xml │ │ │ ├── feed_tagline_base64.xml │ │ │ ├── feed_tagline_base64_2.xml │ │ │ ├── feed_tagline_content_mode_base64.xml │ │ │ ├── feed_tagline_content_mode_escaped.xml │ │ │ ├── feed_tagline_content_type.xml │ │ │ ├── feed_tagline_content_type_text_plain.xml │ │ │ ├── feed_tagline_content_value.xml │ │ │ ├── feed_tagline_escaped_markup.xml │ │ │ ├── feed_tagline_inline_markup.xml │ │ │ ├── feed_tagline_inline_markup_2.xml │ │ │ ├── feed_tagline_naked_markup.xml │ │ │ ├── feed_tagline_text_plain.xml │ │ │ ├── feed_title.xml │ │ │ ├── feed_title_base64.xml │ │ │ ├── feed_title_base64_2.xml │ │ │ ├── feed_title_content_mode_base64.xml │ │ │ ├── feed_title_content_mode_escaped.xml │ │ │ ├── feed_title_content_type.xml │ │ │ ├── feed_title_content_type_text_plain.xml │ │ │ ├── feed_title_content_value.xml │ │ │ ├── feed_title_escaped_markup.xml │ │ │ ├── feed_title_inline_markup.xml │ │ │ ├── feed_title_inline_markup_2.xml │ │ │ ├── feed_title_naked_markup.xml │ │ │ ├── feed_title_text_plain.xml │ │ │ ├── relative_uri.xml │ │ │ ├── relative_uri_inherit.xml │ │ │ └── relative_uri_inherit_2.xml │ │ ├── atom10 │ │ │ ├── ampersand_in_attr.xml │ │ │ ├── atom10_namespace.xml │ │ │ ├── atom10_version.xml │ │ │ ├── entry_author_email.xml │ │ │ ├── entry_author_map_author.xml │ │ │ ├── entry_author_map_author_2.xml │ │ │ ├── entry_author_name.xml │ │ │ ├── entry_author_uri.xml │ │ │ ├── entry_author_url.xml │ │ │ ├── entry_category_label.xml │ │ │ ├── entry_category_scheme.xml │ │ │ ├── entry_category_term.xml │ │ │ ├── entry_content_application_xml.xml │ │ │ ├── entry_content_base64.xml │ │ │ ├── entry_content_base64_2.xml │ │ │ ├── entry_content_div_escaped_markup.xml │ │ │ ├── entry_content_escaped_markup.xml │ │ │ ├── entry_content_inline_markup.xml │ │ │ ├── entry_content_inline_markup_2.xml │ │ │ ├── entry_content_src.xml │ │ │ ├── entry_content_text_plain.xml │ │ │ ├── entry_content_text_plain_brackets.xml │ │ │ ├── entry_content_type.xml │ │ │ ├── entry_content_type_text.xml │ │ │ ├── entry_content_value.xml │ │ │ ├── entry_contributor_email.xml │ │ │ ├── entry_contributor_multiple.xml │ │ │ ├── entry_contributor_name.xml │ │ │ ├── entry_contributor_uri.xml │ │ │ ├── entry_contributor_url.xml │ │ │ ├── entry_id.xml │ │ │ ├── entry_id_map_guid.xml │ │ │ ├── entry_id_no_normalization_1.xml │ │ │ ├── entry_id_no_normalization_2.xml │ │ │ ├── entry_id_no_normalization_3.xml │ │ │ ├── entry_id_no_normalization_4.xml │ │ │ ├── entry_id_no_normalization_5.xml │ │ │ ├── entry_id_no_normalization_6.xml │ │ │ ├── entry_id_no_normalization_7.xml │ │ │ ├── entry_link_alternate_map_link.xml │ │ │ ├── entry_link_alternate_map_link_2.xml │ │ │ ├── entry_link_alternate_map_link_3.xml │ │ │ ├── entry_link_href.xml │ │ │ ├── entry_link_hreflang.xml │ │ │ ├── entry_link_length.xml │ │ │ ├── entry_link_multiple.xml │ │ │ ├── entry_link_no_rel.xml │ │ │ ├── entry_link_rel.xml │ │ │ ├── entry_link_rel_enclosure.xml │ │ │ ├── entry_link_rel_enclosure_map_enclosure_length.xml │ │ │ ├── entry_link_rel_enclosure_map_enclosure_type.xml │ │ │ ├── entry_link_rel_enclosure_map_enclosure_url.xml │ │ │ ├── entry_link_rel_license.xml │ │ │ ├── entry_link_rel_other.xml │ │ │ ├── entry_link_rel_related.xml │ │ │ ├── entry_link_rel_self.xml │ │ │ ├── entry_link_rel_via.xml │ │ │ ├── entry_link_title.xml │ │ │ ├── entry_link_type.xml │ │ │ ├── entry_rights.xml │ │ │ ├── entry_rights_content_value.xml │ │ │ ├── entry_rights_escaped_markup.xml │ │ │ ├── entry_rights_inline_markup.xml │ │ │ ├── entry_rights_inline_markup_2.xml │ │ │ ├── entry_rights_text_plain.xml │ │ │ ├── entry_rights_text_plain_brackets.xml │ │ │ ├── entry_rights_type_default.xml │ │ │ ├── entry_rights_type_text.xml │ │ │ ├── entry_source_author_email.xml │ │ │ ├── entry_source_author_map_author.xml │ │ │ ├── entry_source_author_map_author_2.xml │ │ │ ├── entry_source_author_name.xml │ │ │ ├── entry_source_author_uri.xml │ │ │ ├── entry_source_category_label.xml │ │ │ ├── entry_source_category_scheme.xml │ │ │ ├── entry_source_category_term.xml │ │ │ ├── entry_source_contributor_email.xml │ │ │ ├── entry_source_contributor_multiple.xml │ │ │ ├── entry_source_contributor_name.xml │ │ │ ├── entry_source_contributor_uri.xml │ │ │ ├── entry_source_generator.xml │ │ │ ├── entry_source_generator_name.xml │ │ │ ├── entry_source_generator_uri.xml │ │ │ ├── entry_source_generator_version.xml │ │ │ ├── entry_source_icon.xml │ │ │ ├── entry_source_id.xml │ │ │ ├── entry_source_link_alternate_map_link.xml │ │ │ ├── entry_source_link_alternate_map_link_2.xml │ │ │ ├── entry_source_link_href.xml │ │ │ ├── entry_source_link_hreflang.xml │ │ │ ├── entry_source_link_length.xml │ │ │ ├── entry_source_link_multiple.xml │ │ │ ├── entry_source_link_no_rel.xml │ │ │ ├── entry_source_link_rel.xml │ │ │ ├── entry_source_link_rel_other.xml │ │ │ ├── entry_source_link_rel_related.xml │ │ │ ├── entry_source_link_rel_self.xml │ │ │ ├── entry_source_link_rel_via.xml │ │ │ ├── entry_source_link_title.xml │ │ │ ├── entry_source_link_type.xml │ │ │ ├── entry_source_logo.xml │ │ │ ├── entry_source_rights.xml │ │ │ ├── entry_source_rights_base64.xml │ │ │ ├── entry_source_rights_base64_2.xml │ │ │ ├── entry_source_rights_content_type.xml │ │ │ ├── entry_source_rights_content_type_text.xml │ │ │ ├── entry_source_rights_content_value.xml │ │ │ ├── entry_source_rights_escaped_markup.xml │ │ │ ├── entry_source_rights_inline_markup.xml │ │ │ ├── entry_source_rights_inline_markup_2.xml │ │ │ ├── entry_source_rights_text_plain.xml │ │ │ ├── entry_source_subittle_content_type_text.xml │ │ │ ├── entry_source_subtitle.xml │ │ │ ├── entry_source_subtitle_base64.xml │ │ │ ├── entry_source_subtitle_base64_2.xml │ │ │ ├── entry_source_subtitle_content_type.xml │ │ │ ├── entry_source_subtitle_content_value.xml │ │ │ ├── entry_source_subtitle_escaped_markup.xml │ │ │ ├── entry_source_subtitle_inline_markup.xml │ │ │ ├── entry_source_subtitle_inline_markup_2.xml │ │ │ ├── entry_source_subtitle_text_plain.xml │ │ │ ├── entry_source_title.xml │ │ │ ├── entry_source_title_base64.xml │ │ │ ├── entry_source_title_base64_2.xml │ │ │ ├── entry_source_title_content_type.xml │ │ │ ├── entry_source_title_content_type_text.xml │ │ │ ├── entry_source_title_content_value.xml │ │ │ ├── entry_source_title_escaped_markup.xml │ │ │ ├── entry_source_title_inline_markup.xml │ │ │ ├── entry_source_title_inline_markup_2.xml │ │ │ ├── entry_source_title_text_plain.xml │ │ │ ├── entry_summary.xml │ │ │ ├── entry_summary_base64.xml │ │ │ ├── entry_summary_base64_2.xml │ │ │ ├── entry_summary_content_value.xml │ │ │ ├── entry_summary_escaped_markup.xml │ │ │ ├── entry_summary_inline_markup.xml │ │ │ ├── entry_summary_inline_markup_2.xml │ │ │ ├── entry_summary_text_plain.xml │ │ │ ├── entry_summary_type_default.xml │ │ │ ├── entry_summary_type_text.xml │ │ │ ├── entry_title.xml │ │ │ ├── entry_title_base64.xml │ │ │ ├── entry_title_base64_2.xml │ │ │ ├── entry_title_content_value.xml │ │ │ ├── entry_title_escaped_markup.xml │ │ │ ├── entry_title_inline_markup.xml │ │ │ ├── entry_title_inline_markup_2.xml │ │ │ ├── entry_title_text_plain.xml │ │ │ ├── entry_title_text_plain_brackets.xml │ │ │ ├── entry_title_type_default.xml │ │ │ ├── entry_title_type_text.xml │ │ │ ├── feed_author_email.xml │ │ │ ├── feed_author_map_author.xml │ │ │ ├── feed_author_map_author_2.xml │ │ │ ├── feed_author_name.xml │ │ │ ├── feed_author_uri.xml │ │ │ ├── feed_author_url.xml │ │ │ ├── feed_contributor_email.xml │ │ │ ├── feed_contributor_multiple.xml │ │ │ ├── feed_contributor_name.xml │ │ │ ├── feed_contributor_uri.xml │ │ │ ├── feed_contributor_url.xml │ │ │ ├── feed_generator.xml │ │ │ ├── feed_generator_name.xml │ │ │ ├── feed_generator_url.xml │ │ │ ├── feed_generator_version.xml │ │ │ ├── feed_icon.xml │ │ │ ├── feed_id.xml │ │ │ ├── feed_id_map_guid.xml │ │ │ ├── feed_link_alternate_map_link.xml │ │ │ ├── feed_link_alternate_map_link_2.xml │ │ │ ├── feed_link_href.xml │ │ │ ├── feed_link_hreflang.xml │ │ │ ├── feed_link_length.xml │ │ │ ├── feed_link_multiple.xml │ │ │ ├── feed_link_no_rel.xml │ │ │ ├── feed_link_rel.xml │ │ │ ├── feed_link_rel_other.xml │ │ │ ├── feed_link_rel_related.xml │ │ │ ├── feed_link_rel_self.xml │ │ │ ├── feed_link_rel_via.xml │ │ │ ├── feed_link_title.xml │ │ │ ├── feed_link_type.xml │ │ │ ├── feed_logo.xml │ │ │ ├── feed_rights.xml │ │ │ ├── feed_rights_base64.xml │ │ │ ├── feed_rights_base64_2.xml │ │ │ ├── feed_rights_content_type.xml │ │ │ ├── feed_rights_content_type_text.xml │ │ │ ├── feed_rights_content_value.xml │ │ │ ├── feed_rights_escaped_markup.xml │ │ │ ├── feed_rights_inline_markup.xml │ │ │ ├── feed_rights_inline_markup_2.xml │ │ │ ├── feed_rights_text_plain.xml │ │ │ ├── feed_subtitle.xml │ │ │ ├── feed_subtitle_base64.xml │ │ │ ├── feed_subtitle_base64_2.xml │ │ │ ├── feed_subtitle_content_type.xml │ │ │ ├── feed_subtitle_content_type_text.xml │ │ │ ├── feed_subtitle_content_value.xml │ │ │ ├── feed_subtitle_escaped_markup.xml │ │ │ ├── feed_subtitle_inline_markup.xml │ │ │ ├── feed_subtitle_inline_markup_2.xml │ │ │ ├── feed_subtitle_text_plain.xml │ │ │ ├── feed_title.xml │ │ │ ├── feed_title_base64.xml │ │ │ ├── feed_title_base64_2.xml │ │ │ ├── feed_title_content_type.xml │ │ │ ├── feed_title_content_type_text.xml │ │ │ ├── feed_title_content_value.xml │ │ │ ├── feed_title_escaped_markup.xml │ │ │ ├── feed_title_inline_markup.xml │ │ │ ├── feed_title_inline_markup_2.xml │ │ │ ├── feed_title_text_plain.xml │ │ │ ├── item_media_category_label.xml │ │ │ ├── item_media_category_multiple.xml │ │ │ ├── item_media_category_scheme1.xml │ │ │ ├── item_media_category_scheme2.xml │ │ │ ├── item_media_category_term.xml │ │ │ ├── missing_quote_in_attr.xml │ │ │ ├── qna.xml │ │ │ ├── quote_in_attr.xml │ │ │ ├── relative_uri.xml │ │ │ ├── relative_uri_inherit.xml │ │ │ ├── relative_uri_inherit_2.xml │ │ │ └── tag_in_attr.xml │ │ ├── base │ │ │ ├── cdf_item_abstract_xml_base.xml │ │ │ ├── entry_content_xml_base.xml │ │ │ ├── entry_content_xml_base_inherit.xml │ │ │ ├── entry_content_xml_base_inherit_2.xml │ │ │ ├── entry_content_xml_base_inherit_3.xml │ │ │ ├── entry_content_xml_base_inherit_4.xml │ │ │ ├── entry_summary_xml_base.xml │ │ │ ├── entry_summary_xml_base_inherit.xml │ │ │ ├── entry_summary_xml_base_inherit_2.xml │ │ │ ├── entry_summary_xml_base_inherit_3.xml │ │ │ ├── entry_summary_xml_base_inherit_4.xml │ │ │ ├── entry_title_xml_base.xml │ │ │ ├── entry_title_xml_base_inherit.xml │ │ │ ├── entry_title_xml_base_inherit_2.xml │ │ │ ├── entry_title_xml_base_inherit_3.xml │ │ │ ├── entry_title_xml_base_inherit_4.xml │ │ │ ├── feed_copyright_xml_base.xml │ │ │ ├── feed_copyright_xml_base_inherit.xml │ │ │ ├── feed_copyright_xml_base_inherit_2.xml │ │ │ ├── feed_copyright_xml_base_inherit_3.xml │ │ │ ├── feed_copyright_xml_base_inherit_4.xml │ │ │ ├── feed_info_xml_base.xml │ │ │ ├── feed_info_xml_base_inherit.xml │ │ │ ├── feed_info_xml_base_inherit_2.xml │ │ │ ├── feed_info_xml_base_inherit_3.xml │ │ │ ├── feed_info_xml_base_inherit_4.xml │ │ │ ├── feed_link_xml_base_iri.xml │ │ │ ├── feed_tagline_xml_base.xml │ │ │ ├── feed_tagline_xml_base_inherit.xml │ │ │ ├── feed_tagline_xml_base_inherit_2.xml │ │ │ ├── feed_tagline_xml_base_inherit_3.xml │ │ │ ├── feed_tagline_xml_base_inherit_4.xml │ │ │ ├── feed_title_xml_base.xml │ │ │ ├── feed_title_xml_base_inherit.xml │ │ │ ├── feed_title_xml_base_inherit_2.xml │ │ │ ├── feed_title_xml_base_inherit_3.xml │ │ │ ├── feed_title_xml_base_inherit_4.xml │ │ │ ├── http_channel_docs_base_content_location.xml │ │ │ ├── http_channel_docs_base_docuri.xml │ │ │ ├── http_channel_link_base_content_location.xml │ │ │ ├── http_channel_link_base_docuri.xml │ │ │ ├── http_entry_author_url_base_content_location.xml │ │ │ ├── http_entry_author_url_base_docuri.xml │ │ │ ├── http_entry_content_base64_base_content_location.xml │ │ │ ├── http_entry_content_base64_base_docuri.xml │ │ │ ├── http_entry_content_base_content_location.xml │ │ │ ├── http_entry_content_base_docuri.xml │ │ │ ├── http_entry_content_inline_base_content_location.xml │ │ │ ├── http_entry_content_inline_base_docuri.xml │ │ │ ├── http_entry_contributor_url_base_content_location.xml │ │ │ ├── http_entry_contributor_url_base_docuri.xml │ │ │ ├── http_entry_id_base_content_location.xml │ │ │ ├── http_entry_id_base_docuri.xml │ │ │ ├── http_entry_link_base_content_location.xml │ │ │ ├── http_entry_link_base_docuri.xml │ │ │ ├── http_entry_summary_base64_base_content_location.xml │ │ │ ├── http_entry_summary_base64_base_docuri.xml │ │ │ ├── http_entry_summary_base_content_location.xml │ │ │ ├── http_entry_summary_base_docuri.xml │ │ │ ├── http_entry_summary_inline_base_content_location.xml │ │ │ ├── http_entry_summary_inline_base_docuri.xml │ │ │ ├── http_entry_title_base64_base_content_location.xml │ │ │ ├── http_entry_title_base64_base_docuri.xml │ │ │ ├── http_entry_title_base_content_location.xml │ │ │ ├── http_entry_title_base_docuri.xml │ │ │ ├── http_entry_title_inline_base_content_location.xml │ │ │ ├── http_entry_title_inline_base_docuri.xml │ │ │ ├── http_feed_author_url_base_content_location.xml │ │ │ ├── http_feed_author_url_base_docuri.xml │ │ │ ├── http_feed_contributor_url_base_content_location.xml │ │ │ ├── http_feed_contributor_url_base_docuri.xml │ │ │ ├── http_feed_copyright_base64_base_content_location.xml │ │ │ ├── http_feed_copyright_base64_base_docuri.xml │ │ │ ├── http_feed_copyright_base_content_location.xml │ │ │ ├── http_feed_copyright_base_docuri.xml │ │ │ ├── http_feed_copyright_inline_base_content_location.xml │ │ │ ├── http_feed_copyright_inline_base_docuri.xml │ │ │ ├── http_feed_generator_url_base_content_location.xml │ │ │ ├── http_feed_generator_url_base_docuri.xml │ │ │ ├── http_feed_id_base_content_location.xml │ │ │ ├── http_feed_id_base_docuri.xml │ │ │ ├── http_feed_info_base64_base_content_location.xml │ │ │ ├── http_feed_info_base64_base_docuri.xml │ │ │ ├── http_feed_info_base_content_location.xml │ │ │ ├── http_feed_info_base_docuri.xml │ │ │ ├── http_feed_info_inline_base_content_location.xml │ │ │ ├── http_feed_info_inline_base_docuri.xml │ │ │ ├── http_feed_link_base_content_location.xml │ │ │ ├── http_feed_link_base_docuri.xml │ │ │ ├── http_feed_tagline_base64_base_content_location.xml │ │ │ ├── http_feed_tagline_base64_base_docuri.xml │ │ │ ├── http_feed_tagline_base_content_location.xml │ │ │ ├── http_feed_tagline_base_docuri.xml │ │ │ ├── http_feed_tagline_inline_base_content_location.xml │ │ │ ├── http_feed_tagline_inline_base_docuri.xml │ │ │ ├── http_feed_title_base64_base_content_location.xml │ │ │ ├── http_feed_title_base64_base_docuri.xml │ │ │ ├── http_feed_title_base_content_location.xml │ │ │ ├── http_feed_title_base_docuri.xml │ │ │ ├── http_feed_title_inline_base_content_location.xml │ │ │ ├── http_feed_title_inline_base_docuri.xml │ │ │ ├── http_item_body_base_content_location.xml │ │ │ ├── http_item_body_base_docuri.xml │ │ │ ├── http_item_comments_base_content_location.xml │ │ │ ├── http_item_comments_base_docuri.xml │ │ │ ├── http_item_content_encoded_base_content_location.xml │ │ │ ├── http_item_content_encoded_base_docuri.xml │ │ │ ├── http_item_description_base_content_location.xml │ │ │ ├── http_item_description_base_docuri.xml │ │ │ ├── http_item_description_spaces.xml │ │ │ ├── http_item_fullitem_base_content_location.xml │ │ │ ├── http_item_fullitem_base_docuri.xml │ │ │ ├── http_item_link_base_content_location.xml │ │ │ ├── http_item_link_base_docuri.xml │ │ │ ├── http_item_wfw_commentRSS_base_content_location.xml │ │ │ ├── http_item_wfw_commentRSS_base_docuri.xml │ │ │ ├── http_item_wfw_comment_base_content_location.xml │ │ │ ├── http_item_wfw_comment_base_docuri.xml │ │ │ ├── http_item_xhtml_body_base_content_location.xml │ │ │ ├── http_item_xhtml_body_base_docuri.xml │ │ │ ├── http_relative_xml_base.xml │ │ │ ├── item_media_title1.xml │ │ │ ├── item_media_title2.xml │ │ │ ├── item_media_title3.xml │ │ │ ├── malformed_base.xml │ │ │ ├── relative_xml_base.xml │ │ │ ├── relative_xml_base_2.xml │ │ │ └── unsafe_base.xml │ │ ├── cdf │ │ │ ├── channel_abstract_map_description.xml │ │ │ ├── channel_abstract_map_tagline.xml │ │ │ ├── channel_href_map_link.xml │ │ │ ├── channel_href_map_links.xml │ │ │ ├── channel_title.xml │ │ │ ├── item_abstract_map_description.xml │ │ │ ├── item_abstract_map_summary.xml │ │ │ ├── item_href_map_link.xml │ │ │ ├── item_href_map_links.xml │ │ │ └── item_title.xml │ │ ├── chardet │ │ │ ├── big5.xml │ │ │ ├── eucjp.xml │ │ │ ├── euckr.xml │ │ │ ├── gb2312.xml │ │ │ ├── koi8r.xml │ │ │ ├── shiftjis.xml │ │ │ ├── tis620.xml │ │ │ └── windows1255.xml │ │ ├── date │ │ │ ├── cdf_channel_lastmod_map_date.xml │ │ │ ├── cdf_channel_lastmod_map_modified.xml │ │ │ ├── cdf_channel_lastmod_map_modified_parsed.xml │ │ │ ├── cdf_item_lastmod_map_date.xml │ │ │ ├── cdf_item_lastmod_map_modified.xml │ │ │ ├── cdf_item_lastmod_map_modified_parsed.xml │ │ │ ├── channel_dc_date.xml │ │ │ ├── channel_dc_date_map_modified.xml │ │ │ ├── channel_dc_date_w3dtf_utc.xml │ │ │ ├── channel_dc_date_w3dtf_utc_map_modified_parsed.xml │ │ │ ├── channel_dcterms_created.xml │ │ │ ├── channel_dcterms_created_w3dtf_utc.xml │ │ │ ├── channel_dcterms_issued.xml │ │ │ ├── channel_dcterms_issued_w3dtf_utc.xml │ │ │ ├── channel_dcterms_modified.xml │ │ │ ├── channel_dcterms_modified_map_date.xml │ │ │ ├── channel_dcterms_modified_w3dtf_utc.xml │ │ │ ├── channel_dcterms_modified_w3dtf_utc_map_date.xml │ │ │ ├── channel_lastBuildDate_map_updated.xml │ │ │ ├── channel_lastBuildDate_map_updated_parsed.xml │ │ │ ├── channel_pubDate.xml │ │ │ ├── channel_pubDate_asctime.xml │ │ │ ├── channel_pubDate_disney.xml │ │ │ ├── channel_pubDate_disney_at.xml │ │ │ ├── channel_pubDate_disney_ct.xml │ │ │ ├── channel_pubDate_disney_mt.xml │ │ │ ├── channel_pubDate_disney_pt.xml │ │ │ ├── channel_pubDate_greek_1.xml │ │ │ ├── channel_pubDate_hungarian_1.xml │ │ │ ├── channel_pubDate_iso8601_ym.xml │ │ │ ├── channel_pubDate_iso8601_ym_2.xml │ │ │ ├── channel_pubDate_iso8601_ymd.xml │ │ │ ├── channel_pubDate_iso8601_ymd_2.xml │ │ │ ├── channel_pubDate_iso8601_yo_2.xml │ │ │ ├── channel_pubDate_korean_nate.xml │ │ │ ├── channel_pubDate_map_modified.xml │ │ │ ├── channel_pubDate_mssql.xml │ │ │ ├── channel_pubDate_mssql_nofraction.xml │ │ │ ├── channel_pubDate_nosecond.xml │ │ │ ├── channel_pubDate_notime.xml │ │ │ ├── channel_pubDate_rfc2822.xml │ │ │ ├── channel_pubDate_rfc2822_rollover_june_31.xml │ │ │ ├── channel_pubDate_rfc822.xml │ │ │ ├── channel_pubDate_w3dtf_rollover_61m.xml │ │ │ ├── channel_pubDate_w3dtf_rollover_61s.xml │ │ │ ├── channel_pubDate_w3dtf_rollover_leapyear.xml │ │ │ ├── channel_pubDate_w3dtf_rollover_leapyear400.xml │ │ │ ├── channel_pubDate_w3dtf_rollover_nonleapyear.xml │ │ │ ├── channel_pubDate_w3dtf_sf.xml │ │ │ ├── channel_pubDate_w3dtf_tokyo.xml │ │ │ ├── channel_pubDate_w3dtf_utc.xml │ │ │ ├── channel_pubDate_w3dtf_y.xml │ │ │ ├── channel_pubDate_w3dtf_ym.xml │ │ │ ├── channel_pubDate_w3dtf_ymd.xml │ │ │ ├── channel_pubDate_w3dtf_ymd_2.xml │ │ │ ├── entry_created.xml │ │ │ ├── entry_created_w3dtf_utc.xml │ │ │ ├── entry_issued.xml │ │ │ ├── entry_issued_w3dtf_utc.xml │ │ │ ├── entry_modified.xml │ │ │ ├── entry_modified_map_date.xml │ │ │ ├── entry_modified_w3dtf_utc.xml │ │ │ ├── entry_published_w3dtf_utc.xml │ │ │ ├── entry_source_updated_w3dtf_utc.xml │ │ │ ├── entry_updated_w3dtf_utc.xml │ │ │ ├── feed_modified.xml │ │ │ ├── feed_modified_asctime.xml │ │ │ ├── feed_modified_disney.xml │ │ │ ├── feed_modified_disney_at.xml │ │ │ ├── feed_modified_disney_ct.xml │ │ │ ├── feed_modified_disney_mt.xml │ │ │ ├── feed_modified_disney_pt.xml │ │ │ ├── feed_modified_google.xml │ │ │ ├── feed_modified_iso8601_ym.xml │ │ │ ├── feed_modified_iso8601_ym_2.xml │ │ │ ├── feed_modified_iso8601_ymd.xml │ │ │ ├── feed_modified_iso8601_ymd_2.xml │ │ │ ├── feed_modified_iso8601_yo_2.xml │ │ │ ├── feed_modified_map_date.xml │ │ │ ├── feed_modified_rfc2822.xml │ │ │ ├── feed_modified_rfc2822_rollover_june_31.xml │ │ │ ├── feed_modified_rfc822.xml │ │ │ ├── feed_modified_w3dtf_rollover_leapyear.xml │ │ │ ├── feed_modified_w3dtf_rollover_leapyear400.xml │ │ │ ├── feed_modified_w3dtf_rollover_nonleapyear.xml │ │ │ ├── feed_modified_w3dtf_sf.xml │ │ │ ├── feed_modified_w3dtf_tokyo.xml │ │ │ ├── feed_modified_w3dtf_utc.xml │ │ │ ├── feed_modified_w3dtf_y.xml │ │ │ ├── feed_modified_w3dtf_ym.xml │ │ │ ├── feed_modified_w3dtf_ymd.xml │ │ │ ├── feed_modified_w3dtf_ymd_2.xml │ │ │ ├── feed_updated_frac_secs.xml │ │ │ ├── feed_updated_w3dtf_utc.xml │ │ │ ├── http_high_bit_date.xml │ │ │ ├── item_dc_date.xml │ │ │ ├── item_dc_date_map_modified.xml │ │ │ ├── item_dc_date_w3dtf_utc.xml │ │ │ ├── item_dc_date_w3dtf_utc_map_modified_parsed.xml │ │ │ ├── item_dcterms_created.xml │ │ │ ├── item_dcterms_created_w3dtf_utc.xml │ │ │ ├── item_dcterms_issued.xml │ │ │ ├── item_dcterms_issued_w3dtf_utc.xml │ │ │ ├── item_dcterms_modified.xml │ │ │ ├── item_dcterms_modified_map_date.xml │ │ │ ├── item_dcterms_modified_w3dtf_utc.xml │ │ │ ├── item_dcterms_modified_w3dtf_utc_map_date.xml │ │ │ ├── item_expirationDate.xml │ │ │ ├── item_expirationDate_rfc2822.xml │ │ │ ├── item_pubDate.xml │ │ │ ├── item_pubDate_euc-kr.xml │ │ │ ├── item_pubDate_map_modified.xml │ │ │ ├── item_pubDate_perforce.xml │ │ │ └── item_pubDate_rfc2822.xml │ │ ├── encoding │ │ │ ├── bogus_encoding.xml │ │ │ ├── demoronize-1.xml │ │ │ ├── demoronize-2.xml │ │ │ ├── demoronize-3.xml │ │ │ ├── double-encoded-html.xml │ │ │ ├── encoding_mismatch_crash.xml │ │ │ ├── http_i18n.xml │ │ │ ├── http_text_plain.xml │ │ │ ├── http_text_plain_charset.xml │ │ │ ├── invalid-bytes-with-bom.xml │ │ │ ├── linenoise.xml │ │ │ ├── utf-16be-autodetect.xml │ │ │ ├── utf-16be-bom.xml │ │ │ ├── utf-16be.xml │ │ │ ├── utf-16le-autodetect.xml │ │ │ ├── utf-16le-bom.xml │ │ │ ├── utf-16le.xml │ │ │ ├── utf-32be-autodetect.xml │ │ │ ├── utf-32be-bom.xml │ │ │ ├── utf-32be.xml │ │ │ ├── utf-32le-autodetect.xml │ │ │ ├── utf-32le-bom.xml │ │ │ ├── utf-32le.xml │ │ │ ├── utf-8-bom.xml │ │ │ ├── x80_437.xml │ │ │ ├── x80_850.xml │ │ │ ├── x80_852.xml │ │ │ ├── x80_855.xml │ │ │ ├── x80_857.xml │ │ │ ├── x80_860.xml │ │ │ ├── x80_861.xml │ │ │ ├── x80_862.xml │ │ │ ├── x80_863.xml │ │ │ ├── x80_865.xml │ │ │ ├── x80_866.xml │ │ │ ├── x80_cp037.xml │ │ │ ├── x80_cp1125.xml │ │ │ ├── x80_cp1250.xml │ │ │ ├── x80_cp1251.xml │ │ │ ├── x80_cp1252.xml │ │ │ ├── x80_cp1253.xml │ │ │ ├── x80_cp1254.xml │ │ │ ├── x80_cp1255.xml │ │ │ ├── x80_cp1256.xml │ │ │ ├── x80_cp1257.xml │ │ │ ├── x80_cp1258.xml │ │ │ ├── x80_cp437.xml │ │ │ ├── x80_cp500.xml │ │ │ ├── x80_cp737.xml │ │ │ ├── x80_cp775.xml │ │ │ ├── x80_cp850.xml │ │ │ ├── x80_cp852.xml │ │ │ ├── x80_cp855.xml │ │ │ ├── x80_cp856.xml │ │ │ ├── x80_cp857.xml │ │ │ ├── x80_cp860.xml │ │ │ ├── x80_cp861.xml │ │ │ ├── x80_cp862.xml │ │ │ ├── x80_cp863.xml │ │ │ ├── x80_cp864.xml │ │ │ ├── x80_cp865.xml │ │ │ ├── x80_cp866.xml │ │ │ ├── x80_cp874.xml │ │ │ ├── x80_cp875.xml │ │ │ ├── x80_cp_is.xml │ │ │ ├── x80_csibm037.xml │ │ │ ├── x80_csibm500.xml │ │ │ ├── x80_csibm855.xml │ │ │ ├── x80_csibm857.xml │ │ │ ├── x80_csibm860.xml │ │ │ ├── x80_csibm861.xml │ │ │ ├── x80_csibm863.xml │ │ │ ├── x80_csibm864.xml │ │ │ ├── x80_csibm865.xml │ │ │ ├── x80_csibm866.xml │ │ │ ├── x80_cskoi8r.xml │ │ │ ├── x80_csmacintosh.xml │ │ │ ├── x80_cspc775baltic.xml │ │ │ ├── x80_cspc850multilingual.xml │ │ │ ├── x80_cspc862latinhebrew.xml │ │ │ ├── x80_cspc8codepage437.xml │ │ │ ├── x80_cspcp852.xml │ │ │ ├── x80_dbcs.xml │ │ │ ├── x80_ebcdic-cp-be.xml │ │ │ ├── x80_ebcdic-cp-ca.xml │ │ │ ├── x80_ebcdic-cp-ch.xml │ │ │ ├── x80_ebcdic-cp-nl.xml │ │ │ ├── x80_ebcdic-cp-us.xml │ │ │ ├── x80_ebcdic-cp-wt.xml │ │ │ ├── x80_ebcdic_cp_be.xml │ │ │ ├── x80_ebcdic_cp_ca.xml │ │ │ ├── x80_ebcdic_cp_ch.xml │ │ │ ├── x80_ebcdic_cp_nl.xml │ │ │ ├── x80_ebcdic_cp_us.xml │ │ │ ├── x80_ebcdic_cp_wt.xml │ │ │ ├── x80_ibm037.xml │ │ │ ├── x80_ibm039.xml │ │ │ ├── x80_ibm1140.xml │ │ │ ├── x80_ibm437.xml │ │ │ ├── x80_ibm500.xml │ │ │ ├── x80_ibm775.xml │ │ │ ├── x80_ibm850.xml │ │ │ ├── x80_ibm852.xml │ │ │ ├── x80_ibm855.xml │ │ │ ├── x80_ibm857.xml │ │ │ ├── x80_ibm860.xml │ │ │ ├── x80_ibm861.xml │ │ │ ├── x80_ibm862.xml │ │ │ ├── x80_ibm863.xml │ │ │ ├── x80_ibm864.xml │ │ │ ├── x80_ibm865.xml │ │ │ ├── x80_ibm866.xml │ │ │ ├── x80_koi8-r.xml │ │ │ ├── x80_koi8-t.xml │ │ │ ├── x80_koi8-u.xml │ │ │ ├── x80_mac-cyrillic.xml │ │ │ ├── x80_mac.xml │ │ │ ├── x80_maccentraleurope.xml │ │ │ ├── x80_maccyrillic.xml │ │ │ ├── x80_macgreek.xml │ │ │ ├── x80_maciceland.xml │ │ │ ├── x80_macintosh.xml │ │ │ ├── x80_maclatin2.xml │ │ │ ├── x80_macroman.xml │ │ │ ├── x80_macturkish.xml │ │ │ ├── x80_ms-ansi.xml │ │ │ ├── x80_ms-arab.xml │ │ │ ├── x80_ms-cyrl.xml │ │ │ ├── x80_ms-ee.xml │ │ │ ├── x80_ms-greek.xml │ │ │ ├── x80_ms-hebr.xml │ │ │ ├── x80_ms-turk.xml │ │ │ ├── x80_tcvn-5712.xml │ │ │ ├── x80_tcvn.xml │ │ │ ├── x80_tcvn5712-1.xml │ │ │ ├── x80_viscii.xml │ │ │ ├── x80_winbaltrim.xml │ │ │ ├── x80_windows-1250.xml │ │ │ ├── x80_windows-1251.xml │ │ │ ├── x80_windows-1252.xml │ │ │ ├── x80_windows-1253.xml │ │ │ ├── x80_windows-1254.xml │ │ │ ├── x80_windows-1255.xml │ │ │ ├── x80_windows-1256.xml │ │ │ ├── x80_windows-1257.xml │ │ │ ├── x80_windows-1258.xml │ │ │ ├── x80_windows_1250.xml │ │ │ ├── x80_windows_1251.xml │ │ │ ├── x80_windows_1252.xml │ │ │ ├── x80_windows_1253.xml │ │ │ ├── x80_windows_1254.xml │ │ │ ├── x80_windows_1255.xml │ │ │ ├── x80_windows_1256.xml │ │ │ ├── x80_windows_1257.xml │ │ │ └── x80_windows_1258.xml │ │ ├── entities │ │ │ ├── 160.xml │ │ │ ├── 732.xml │ │ │ ├── 8216.xml │ │ │ ├── 8217.xml │ │ │ ├── 8220.xml │ │ │ ├── 8221.xml │ │ │ ├── 9830.xml │ │ │ ├── aacute.xml │ │ │ ├── acirc.xml │ │ │ ├── acute.xml │ │ │ ├── aelig.xml │ │ │ ├── agrave.xml │ │ │ ├── alefsym.xml │ │ │ ├── alpha.xml │ │ │ ├── and.xml │ │ │ ├── ang.xml │ │ │ ├── aring.xml │ │ │ ├── asymp.xml │ │ │ ├── atilde.xml │ │ │ ├── attr_amp.xml │ │ │ ├── auml.xml │ │ │ ├── bdquo.xml │ │ │ ├── beta.xml │ │ │ ├── brvbar.xml │ │ │ ├── bull.xml │ │ │ ├── cap.xml │ │ │ ├── ccedil.xml │ │ │ ├── cedil.xml │ │ │ ├── cent.xml │ │ │ ├── chi.xml │ │ │ ├── circ.xml │ │ │ ├── clubs.xml │ │ │ ├── cong.xml │ │ │ ├── copy.xml │ │ │ ├── crarr.xml │ │ │ ├── cup.xml │ │ │ ├── curren.xml │ │ │ ├── dagger.xml │ │ │ ├── darr.xml │ │ │ ├── deg.xml │ │ │ ├── delta.xml │ │ │ ├── diams.xml │ │ │ ├── divide.xml │ │ │ ├── doesnotexist.xml │ │ │ ├── eacute.xml │ │ │ ├── ecirc.xml │ │ │ ├── egrave.xml │ │ │ ├── empty.xml │ │ │ ├── emsp.xml │ │ │ ├── ensp.xml │ │ │ ├── epsilon.xml │ │ │ ├── equiv.xml │ │ │ ├── eta.xml │ │ │ ├── eth.xml │ │ │ ├── euml.xml │ │ │ ├── euro.xml │ │ │ ├── exist.xml │ │ │ ├── fnof.xml │ │ │ ├── forall.xml │ │ │ ├── frac12.xml │ │ │ ├── frac14.xml │ │ │ ├── frac34.xml │ │ │ ├── frasl.xml │ │ │ ├── gamma.xml │ │ │ ├── ge.xml │ │ │ ├── hArr.xml │ │ │ ├── hearts.xml │ │ │ ├── hellip.xml │ │ │ ├── hex_entity_x_lowercase.xml │ │ │ ├── hex_entity_x_uppercase.xml │ │ │ ├── iacute.xml │ │ │ ├── icirc.xml │ │ │ ├── iexcl.xml │ │ │ ├── igrave.xml │ │ │ ├── image.xml │ │ │ ├── infin.xml │ │ │ ├── int.xml │ │ │ ├── iota.xml │ │ │ ├── iquest.xml │ │ │ ├── isin.xml │ │ │ ├── iuml.xml │ │ │ ├── kappa.xml │ │ │ ├── lArr.xml │ │ │ ├── lambda.xml │ │ │ ├── lang.xml │ │ │ ├── laquo.xml │ │ │ ├── lceil.xml │ │ │ ├── ldquo.xml │ │ │ ├── le.xml │ │ │ ├── lfloor.xml │ │ │ ├── lowast.xml │ │ │ ├── loz.xml │ │ │ ├── lrm.xml │ │ │ ├── lsaquo.xml │ │ │ ├── lsquo.xml │ │ │ ├── macr.xml │ │ │ ├── mdash.xml │ │ │ ├── micro.xml │ │ │ ├── middot.xml │ │ │ ├── minus.xml │ │ │ ├── mu.xml │ │ │ ├── nabla.xml │ │ │ ├── nbsp.xml │ │ │ ├── ndash.xml │ │ │ ├── ne.xml │ │ │ ├── ni.xml │ │ │ ├── not.xml │ │ │ ├── notin.xml │ │ │ ├── nsub.xml │ │ │ ├── ntilde.xml │ │ │ ├── nu.xml │ │ │ ├── oacute.xml │ │ │ ├── ocirc.xml │ │ │ ├── oelig.xml │ │ │ ├── ograve.xml │ │ │ ├── oline.xml │ │ │ ├── omega.xml │ │ │ ├── omicron.xml │ │ │ ├── oplus.xml │ │ │ ├── or.xml │ │ │ ├── ordf.xml │ │ │ ├── ordm.xml │ │ │ ├── oslash.xml │ │ │ ├── otilde.xml │ │ │ ├── otimes.xml │ │ │ ├── ouml.xml │ │ │ ├── para.xml │ │ │ ├── part.xml │ │ │ ├── permil.xml │ │ │ ├── perp.xml │ │ │ ├── phi.xml │ │ │ ├── pi.xml │ │ │ ├── piv.xml │ │ │ ├── plusmn.xml │ │ │ ├── pound.xml │ │ │ ├── prime.xml │ │ │ ├── prod.xml │ │ │ ├── prop.xml │ │ │ ├── psi.xml │ │ │ ├── query_variable_entry.xml │ │ │ ├── query_variable_feed.xml │ │ │ ├── radic.xml │ │ │ ├── rang.xml │ │ │ ├── raquo.xml │ │ │ ├── rarr.xml │ │ │ ├── rceil.xml │ │ │ ├── rdquo.xml │ │ │ ├── real.xml │ │ │ ├── reg.xml │ │ │ ├── rfloor.xml │ │ │ ├── rho.xml │ │ │ ├── rlm.xml │ │ │ ├── rsaquo.xml │ │ │ ├── rsquo.xml │ │ │ ├── sbquo.xml │ │ │ ├── scaron.xml │ │ │ ├── sdot.xml │ │ │ ├── sect.xml │ │ │ ├── shy.xml │ │ │ ├── sigma.xml │ │ │ ├── sigmaf.xml │ │ │ ├── sim.xml │ │ │ ├── spades.xml │ │ │ ├── sub.xml │ │ │ ├── sube.xml │ │ │ ├── sum.xml │ │ │ ├── sup.xml │ │ │ ├── sup1.xml │ │ │ ├── sup2.xml │ │ │ ├── sup3.xml │ │ │ ├── supe.xml │ │ │ ├── szlig.xml │ │ │ ├── tau.xml │ │ │ ├── there4.xml │ │ │ ├── theta.xml │ │ │ ├── thetasym.xml │ │ │ ├── thinsp.xml │ │ │ ├── thorn.xml │ │ │ ├── tilde.xml │ │ │ ├── times.xml │ │ │ ├── trade.xml │ │ │ ├── uacute.xml │ │ │ ├── uarr.xml │ │ │ ├── ucirc.xml │ │ │ ├── ugrave.xml │ │ │ ├── uml.xml │ │ │ ├── upper_AElig.xml │ │ │ ├── upper_Aacute.xml │ │ │ ├── upper_Acirc.xml │ │ │ ├── upper_Agrave.xml │ │ │ ├── upper_Alpha.xml │ │ │ ├── upper_Aring.xml │ │ │ ├── upper_Atilde.xml │ │ │ ├── upper_Auml.xml │ │ │ ├── upper_Beta.xml │ │ │ ├── upper_Ccedil.xml │ │ │ ├── upper_Chi.xml │ │ │ ├── upper_Dagger.xml │ │ │ ├── upper_Delta.xml │ │ │ ├── upper_ETH.xml │ │ │ ├── upper_Eacute.xml │ │ │ ├── upper_Ecirc.xml │ │ │ ├── upper_Egrave.xml │ │ │ ├── upper_Epsilon.xml │ │ │ ├── upper_Eta.xml │ │ │ ├── upper_Euml.xml │ │ │ ├── upper_Gamma.xml │ │ │ ├── upper_Iacute.xml │ │ │ ├── upper_Icirc.xml │ │ │ ├── upper_Igrave.xml │ │ │ ├── upper_Iota.xml │ │ │ ├── upper_Iuml.xml │ │ │ ├── upper_Kappa.xml │ │ │ ├── upper_Lambda.xml │ │ │ ├── upper_Mu.xml │ │ │ ├── upper_Ntilde.xml │ │ │ ├── upper_Nu.xml │ │ │ ├── upper_OElig.xml │ │ │ ├── upper_Oacute.xml │ │ │ ├── upper_Ocirc.xml │ │ │ ├── upper_Ograve.xml │ │ │ ├── upper_Omega.xml │ │ │ ├── upper_Omicron.xml │ │ │ ├── upper_Oslash.xml │ │ │ ├── upper_Otilde.xml │ │ │ ├── upper_Ouml.xml │ │ │ ├── upper_Phi.xml │ │ │ ├── upper_Pi.xml │ │ │ ├── upper_Prime.xml │ │ │ ├── upper_Psi.xml │ │ │ ├── upper_Rho.xml │ │ │ ├── upper_Scaron.xml │ │ │ ├── upper_Sigma.xml │ │ │ ├── upper_THORN.xml │ │ │ ├── upper_Tau.xml │ │ │ ├── upper_Theta.xml │ │ │ ├── upper_Uacute.xml │ │ │ ├── upper_Ucirc.xml │ │ │ ├── upper_Ugrave.xml │ │ │ ├── upper_Upsilon.xml │ │ │ ├── upper_Uuml.xml │ │ │ ├── upper_Xi.xml │ │ │ ├── upper_Yacute.xml │ │ │ ├── upper_Yuml.xml │ │ │ ├── upper_Zeta.xml │ │ │ ├── upsih.xml │ │ │ ├── upsilon.xml │ │ │ ├── uuml.xml │ │ │ ├── weierp.xml │ │ │ ├── xi.xml │ │ │ ├── yacute.xml │ │ │ ├── yen.xml │ │ │ ├── yuml.xml │ │ │ ├── zeta.xml │ │ │ ├── zwj.xml │ │ │ └── zwnj.xml │ │ ├── htmlish │ │ │ ├── bool_expr.xml │ │ │ ├── code.xml │ │ │ ├── copy_ascii.xml │ │ │ ├── copy_dec.xml │ │ │ ├── copy_hex.xml │ │ │ ├── copy_name.xml │ │ │ ├── corp_name.xml │ │ │ ├── entity.xml │ │ │ ├── html_a.xml │ │ │ ├── html_b.xml │ │ │ ├── html_i.xml │ │ │ ├── plain_text.xml │ │ │ ├── rss.xml │ │ │ └── url.xml │ │ ├── itunes │ │ │ ├── itunes_channel_block.xml │ │ │ ├── itunes_channel_block_false.xml │ │ │ ├── itunes_channel_block_no.xml │ │ │ ├── itunes_channel_block_true.xml │ │ │ ├── itunes_channel_block_uppercase.xml │ │ │ ├── itunes_channel_block_whitespace.xml │ │ │ ├── itunes_channel_category.xml │ │ │ ├── itunes_channel_category_nested.xml │ │ │ ├── itunes_channel_category_scheme.xml │ │ │ ├── itunes_channel_explicit.xml │ │ │ ├── itunes_channel_explicit_clean.xml │ │ │ ├── itunes_channel_explicit_false.xml │ │ │ ├── itunes_channel_explicit_no.xml │ │ │ ├── itunes_channel_explicit_true.xml │ │ │ ├── itunes_channel_explicit_uppercase.xml │ │ │ ├── itunes_channel_explicit_whitespace.xml │ │ │ ├── itunes_channel_image.xml │ │ │ ├── itunes_channel_image_no_href.xml │ │ │ ├── itunes_channel_keywords.xml │ │ │ ├── itunes_channel_keywords_duplicate.xml │ │ │ ├── itunes_channel_keywords_duplicate_2.xml │ │ │ ├── itunes_channel_keywords_multiple.xml │ │ │ ├── itunes_channel_link_image.xml │ │ │ ├── itunes_channel_owner_email.xml │ │ │ ├── itunes_channel_owner_name.xml │ │ │ ├── itunes_channel_subtitle.xml │ │ │ ├── itunes_channel_summary.xml │ │ │ ├── itunes_core_element_uppercase.xml │ │ │ ├── itunes_item_author_map_author.xml │ │ │ ├── itunes_item_block.xml │ │ │ ├── itunes_item_block_false.xml │ │ │ ├── itunes_item_block_no.xml │ │ │ ├── itunes_item_block_true.xml │ │ │ ├── itunes_item_block_uppercase.xml │ │ │ ├── itunes_item_block_whitespace.xml │ │ │ ├── itunes_item_category.xml │ │ │ ├── itunes_item_category_nested.xml │ │ │ ├── itunes_item_category_scheme.xml │ │ │ ├── itunes_item_duration.xml │ │ │ ├── itunes_item_explicit.xml │ │ │ ├── itunes_item_explicit_clean.xml │ │ │ ├── itunes_item_explicit_false.xml │ │ │ ├── itunes_item_explicit_no.xml │ │ │ ├── itunes_item_explicit_true.xml │ │ │ ├── itunes_item_explicit_uppercase.xml │ │ │ ├── itunes_item_explicit_whitespace.xml │ │ │ ├── itunes_item_image.xml │ │ │ ├── itunes_item_link_image.xml │ │ │ ├── itunes_item_subtitle.xml │ │ │ ├── itunes_item_summary.xml │ │ │ ├── itunes_namespace.xml │ │ │ ├── itunes_namespace_example.xml │ │ │ ├── itunes_namespace_lowercase.xml │ │ │ └── itunes_namespace_uppercase.xml │ │ ├── lang │ │ │ ├── channel_dc_language.xml │ │ │ ├── channel_language.xml │ │ │ ├── entry_content_xml_lang.xml │ │ │ ├── entry_content_xml_lang_blank.xml │ │ │ ├── entry_content_xml_lang_blank_2.xml │ │ │ ├── entry_content_xml_lang_blank_3.xml │ │ │ ├── entry_content_xml_lang_inherit.xml │ │ │ ├── entry_content_xml_lang_inherit_2.xml │ │ │ ├── entry_content_xml_lang_inherit_3.xml │ │ │ ├── entry_content_xml_lang_inherit_4.xml │ │ │ ├── entry_content_xml_lang_underscore.xml │ │ │ ├── entry_summary_xml_lang.xml │ │ │ ├── entry_summary_xml_lang_blank.xml │ │ │ ├── entry_summary_xml_lang_inherit.xml │ │ │ ├── entry_summary_xml_lang_inherit_2.xml │ │ │ ├── entry_summary_xml_lang_inherit_3.xml │ │ │ ├── entry_summary_xml_lang_inherit_4.xml │ │ │ ├── entry_title_xml_lang.xml │ │ │ ├── entry_title_xml_lang_blank.xml │ │ │ ├── entry_title_xml_lang_inherit.xml │ │ │ ├── entry_title_xml_lang_inherit_2.xml │ │ │ ├── entry_title_xml_lang_inherit_3.xml │ │ │ ├── entry_title_xml_lang_inherit_4.xml │ │ │ ├── feed_copyright_xml_lang.xml │ │ │ ├── feed_copyright_xml_lang_blank.xml │ │ │ ├── feed_copyright_xml_lang_inherit.xml │ │ │ ├── feed_copyright_xml_lang_inherit_2.xml │ │ │ ├── feed_copyright_xml_lang_inherit_3.xml │ │ │ ├── feed_copyright_xml_lang_inherit_4.xml │ │ │ ├── feed_info_xml_lang.xml │ │ │ ├── feed_info_xml_lang_blank.xml │ │ │ ├── feed_info_xml_lang_inherit.xml │ │ │ ├── feed_info_xml_lang_inherit_2.xml │ │ │ ├── feed_info_xml_lang_inherit_3.xml │ │ │ ├── feed_info_xml_lang_inherit_4.xml │ │ │ ├── feed_language.xml │ │ │ ├── feed_language_override.xml │ │ │ ├── feed_not_xml_lang.xml │ │ │ ├── feed_not_xml_lang_2.xml │ │ │ ├── feed_tagline_xml_lang.xml │ │ │ ├── feed_tagline_xml_lang_blank.xml │ │ │ ├── feed_tagline_xml_lang_inherit.xml │ │ │ ├── feed_tagline_xml_lang_inherit_2.xml │ │ │ ├── feed_tagline_xml_lang_inherit_3.xml │ │ │ ├── feed_tagline_xml_lang_inherit_4.xml │ │ │ ├── feed_title_xml_lang.xml │ │ │ ├── feed_title_xml_lang_blank.xml │ │ │ ├── feed_title_xml_lang_inherit.xml │ │ │ ├── feed_title_xml_lang_inherit_2.xml │ │ │ ├── feed_title_xml_lang_inherit_3.xml │ │ │ ├── feed_title_xml_lang_inherit_4.xml │ │ │ ├── feed_xml_lang.xml │ │ │ ├── feed_xml_lang_underscore.xml │ │ │ ├── http_content_language.xml │ │ │ ├── http_content_language_entry_title_inherit.xml │ │ │ ├── http_content_language_entry_title_inherit_2.xml │ │ │ ├── http_content_language_feed_language.xml │ │ │ ├── http_content_language_feed_xml_lang.xml │ │ │ ├── item_content_encoded_xml_lang.xml │ │ │ ├── item_content_encoded_xml_lang_inherit.xml │ │ │ ├── item_dc_language.xml │ │ │ ├── item_fullitem_xml_lang.xml │ │ │ ├── item_fullitem_xml_lang_inherit.xml │ │ │ ├── item_xhtml_body_xml_lang.xml │ │ │ └── item_xhtml_body_xml_lang_inherit.xml │ │ ├── mf_hcard │ │ │ ├── 2-4-2-vcard.xml │ │ │ ├── 3-1-1-fn-unicode-char.xml │ │ │ ├── 3-1-1-fn.xml │ │ │ ├── 3-1-2-n-2-plural.xml │ │ │ ├── 3-1-2-n-2-singular.xml │ │ │ ├── 3-1-2-n-plural.xml │ │ │ ├── 3-1-2-n-singular.xml │ │ │ ├── 3-1-3-nickname-2-plural.xml │ │ │ ├── 3-1-3-nickname-2-singular.xml │ │ │ ├── 3-1-3-nickname.xml │ │ │ ├── 3-1-4-photo-inline.xml │ │ │ ├── 3-1-4-photo.xml │ │ │ ├── 3-1-5-bday-2.xml │ │ │ ├── 3-1-5-bday-3.xml │ │ │ ├── 3-1-5-bday.xml │ │ │ ├── 3-2-1-adr.xml │ │ │ ├── 3-2-2-label.xml │ │ │ ├── 3-3-1-tel.xml │ │ │ ├── 3-3-2-email-2.xml │ │ │ ├── 3-3-2-email-3.xml │ │ │ ├── 3-3-2-email.xml │ │ │ ├── 3-3-3-mailer.xml │ │ │ ├── 3-4-1-tz-2.xml │ │ │ ├── 3-4-1-tz.xml │ │ │ ├── 3-4-2-geo.xml │ │ │ ├── 3-5-1-title.xml │ │ │ ├── 3-5-2-role.xml │ │ │ ├── 3-5-3-logo-2.xml │ │ │ ├── 3-5-3-logo.xml │ │ │ ├── 3-5-4-agent-2.xml │ │ │ ├── 3-5-4-agent.xml │ │ │ ├── 3-5-5-org.xml │ │ │ ├── 3-6-1-categories-2-plural.xml │ │ │ ├── 3-6-1-categories-2-singular.xml │ │ │ ├── 3-6-1-categories.xml │ │ │ ├── 3-6-2-note.xml │ │ │ ├── 3-6-4-rev-2.xml │ │ │ ├── 3-6-4-rev.xml │ │ │ ├── 3-6-5-sort-string-2.xml │ │ │ ├── 3-6-5-sort-string-3.xml │ │ │ ├── 3-6-5-sort-string-4.xml │ │ │ ├── 3-6-5-sort-string-5.xml │ │ │ ├── 3-6-5-sort-string.xml │ │ │ ├── 3-6-6-sound-2.xml │ │ │ ├── 3-6-6-sound.xml │ │ │ ├── 3-6-7-uid.xml │ │ │ ├── 3-6-8-url.xml │ │ │ ├── 3-7-1-class-2.xml │ │ │ ├── 3-7-1-class-3.xml │ │ │ ├── 3-7-1-class.xml │ │ │ ├── 3-7-2-key.xml │ │ │ ├── 7-authors.xml │ │ │ └── non-ascii-tag.xml │ │ ├── mf_rel_enclosure │ │ │ ├── rel_enclosure_href.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_avi.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_bin.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_bz2.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_deb.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_dmg.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_exe.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_gz.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_hqx.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_img.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_iso.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_jar.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_m4a.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_m4v.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_mp2.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_mp3.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_mp4.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_msi.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_ogg.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_rar.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_rpm.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_sit.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_sitx.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_tar.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_tbz2.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_tgz.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_wma.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_wmv.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_z.xml │ │ │ ├── rel_enclosure_href_autodetect_by_ext_zip.xml │ │ │ ├── rel_enclosure_href_autodetect_by_type_application_ogg.xml │ │ │ ├── rel_enclosure_href_autodetect_by_type_audio.xml │ │ │ ├── rel_enclosure_href_autodetect_by_type_video.xml │ │ │ ├── rel_enclosure_no_autodetect.xml │ │ │ ├── rel_enclosure_no_autodetect_xml.xml │ │ │ ├── rel_enclosure_title.xml │ │ │ ├── rel_enclosure_title_from_link_text.xml │ │ │ ├── rel_enclosure_title_overrides_link_text.xml │ │ │ └── rel_enclosure_type.xml │ │ ├── mf_rel_tag │ │ │ ├── rel_tag_duplicate.xml │ │ │ ├── rel_tag_label.xml │ │ │ ├── rel_tag_scheme.xml │ │ │ ├── rel_tag_term.xml │ │ │ └── rel_tag_term_trailing_slash.xml │ │ ├── mf_xfn │ │ │ ├── xfn_acquaintance.xml │ │ │ ├── xfn_brother.xml │ │ │ ├── xfn_child.xml │ │ │ ├── xfn_co-resident.xml │ │ │ ├── xfn_co-worker.xml │ │ │ ├── xfn_colleague.xml │ │ │ ├── xfn_contact.xml │ │ │ ├── xfn_coresident.xml │ │ │ ├── xfn_coworker.xml │ │ │ ├── xfn_crush.xml │ │ │ ├── xfn_date.xml │ │ │ ├── xfn_friend.xml │ │ │ ├── xfn_href.xml │ │ │ ├── xfn_husband.xml │ │ │ ├── xfn_kin.xml │ │ │ ├── xfn_me.xml │ │ │ ├── xfn_met.xml │ │ │ ├── xfn_multiple.xml │ │ │ ├── xfn_muse.xml │ │ │ ├── xfn_name.xml │ │ │ ├── xfn_neighbor.xml │ │ │ ├── xfn_parent.xml │ │ │ ├── xfn_relative.xml │ │ │ ├── xfn_sibling.xml │ │ │ ├── xfn_sister.xml │ │ │ ├── xfn_spouse.xml │ │ │ ├── xfn_sweetheart.xml │ │ │ └── xfn_wife.xml │ │ ├── namespace │ │ │ ├── atommathml.xml │ │ │ ├── atomsvg.xml │ │ │ ├── atomsvgdesc.xml │ │ │ ├── atomsvgtitle.xml │ │ │ ├── atomxlink.xml │ │ │ ├── rss1.0withModules.xml │ │ │ ├── rss1.0withModulesNoDefNS.xml │ │ │ ├── rss1.0withModulesNoDefNSLocalNameClash.xml │ │ │ ├── rss2.0NSwithModules.xml │ │ │ ├── rss2.0NSwithModulesNoDefNS.xml │ │ │ ├── rss2.0NSwithModulesNoDefNSLocalNameClash.xml │ │ │ ├── rss2.0mathml.xml │ │ │ ├── rss2.0noNSwithModules.xml │ │ │ ├── rss2.0noNSwithModulesLocalNameClash.xml │ │ │ ├── rss2.0svg.xml │ │ │ ├── rss2.0svg5.xml │ │ │ ├── rss2.0svgtitle.xml │ │ │ ├── rss2.0xlink.xml │ │ │ └── undeclared_namespace.xml │ │ ├── rdf │ │ │ ├── rdf_channel_description.xml │ │ │ ├── rdf_channel_empty_textinput.xml │ │ │ ├── rdf_channel_link.xml │ │ │ ├── rdf_channel_title.xml │ │ │ ├── rdf_item_description.xml │ │ │ ├── rdf_item_link.xml │ │ │ ├── rdf_item_rdf_about.xml │ │ │ ├── rdf_item_title.xml │ │ │ ├── rss090_channel_title.xml │ │ │ ├── rss090_item_title.xml │ │ │ ├── rss_version_10.xml │ │ │ └── rss_version_10_not_default_ns.xml │ │ ├── rss │ │ │ ├── aaa_illformed.xml │ │ │ ├── channel_author.xml │ │ │ ├── channel_author_map_author_detail_email.xml │ │ │ ├── channel_author_map_author_detail_email_2.xml │ │ │ ├── channel_author_map_author_detail_email_3.xml │ │ │ ├── channel_author_map_author_detail_name.xml │ │ │ ├── channel_author_map_author_detail_name_2.xml │ │ │ ├── channel_category.xml │ │ │ ├── channel_category_domain.xml │ │ │ ├── channel_category_multiple.xml │ │ │ ├── channel_category_multiple_2.xml │ │ │ ├── channel_cloud_domain.xml │ │ │ ├── channel_cloud_path.xml │ │ │ ├── channel_cloud_port.xml │ │ │ ├── channel_cloud_protocol.xml │ │ │ ├── channel_cloud_registerProcedure.xml │ │ │ ├── channel_copyright.xml │ │ │ ├── channel_dc_author.xml │ │ │ ├── channel_dc_author_map_author_detail_email.xml │ │ │ ├── channel_dc_author_map_author_detail_name.xml │ │ │ ├── channel_dc_contributor.xml │ │ │ ├── channel_dc_creator.xml │ │ │ ├── channel_dc_creator_map_author_detail_email.xml │ │ │ ├── channel_dc_creator_map_author_detail_name.xml │ │ │ ├── channel_dc_publisher.xml │ │ │ ├── channel_dc_publisher_email.xml │ │ │ ├── channel_dc_publisher_name.xml │ │ │ ├── channel_dc_rights.xml │ │ │ ├── channel_dc_subject.xml │ │ │ ├── channel_dc_subject_2.xml │ │ │ ├── channel_dc_subject_multiple.xml │ │ │ ├── channel_dc_title.xml │ │ │ ├── channel_description.xml │ │ │ ├── channel_description_escaped_markup.xml │ │ │ ├── channel_description_map_tagline.xml │ │ │ ├── channel_description_naked_markup.xml │ │ │ ├── channel_description_shorttag.xml │ │ │ ├── channel_docs.xml │ │ │ ├── channel_generator.xml │ │ │ ├── channel_image_description.xml │ │ │ ├── channel_image_height.xml │ │ │ ├── channel_image_link.xml │ │ │ ├── channel_image_link_bleed.xml │ │ │ ├── channel_image_link_conflict.xml │ │ │ ├── channel_image_title.xml │ │ │ ├── channel_image_title_conflict.xml │ │ │ ├── channel_image_url.xml │ │ │ ├── channel_image_width.xml │ │ │ ├── channel_link.xml │ │ │ ├── channel_managingEditor.xml │ │ │ ├── channel_managingEditor_map_author_detail_email.xml │ │ │ ├── channel_managingEditor_map_author_detail_name.xml │ │ │ ├── channel_textInput_description.xml │ │ │ ├── channel_textInput_description_conflict.xml │ │ │ ├── channel_textInput_link.xml │ │ │ ├── channel_textInput_link_bleed.xml │ │ │ ├── channel_textInput_link_conflict.xml │ │ │ ├── channel_textInput_name.xml │ │ │ ├── channel_textInput_title.xml │ │ │ ├── channel_textInput_title_conflict.xml │ │ │ ├── channel_title.xml │ │ │ ├── channel_title_apos.xml │ │ │ ├── channel_title_gt.xml │ │ │ ├── channel_title_lt.xml │ │ │ ├── channel_ttl.xml │ │ │ ├── channel_webMaster.xml │ │ │ ├── channel_webMaster_email.xml │ │ │ ├── channel_webMaster_name.xml │ │ │ ├── item_author.xml │ │ │ ├── item_author_map_author_detail_email.xml │ │ │ ├── item_author_map_author_detail_email2.xml │ │ │ ├── item_author_map_author_detail_email3.xml │ │ │ ├── item_author_map_author_detail_name.xml │ │ │ ├── item_author_map_author_detail_name2.xml │ │ │ ├── item_author_map_author_detail_name3.xml │ │ │ ├── item_category.xml │ │ │ ├── item_category_domain.xml │ │ │ ├── item_category_multiple.xml │ │ │ ├── item_category_multiple_2.xml │ │ │ ├── item_cc_license.xml │ │ │ ├── item_comments.xml │ │ │ ├── item_content_encoded.xml │ │ │ ├── item_content_encoded_mode.xml │ │ │ ├── item_content_encoded_type.xml │ │ │ ├── item_creativeCommons_license.xml │ │ │ ├── item_dc_author.xml │ │ │ ├── item_dc_author_map_author_detail_email.xml │ │ │ ├── item_dc_author_map_author_detail_name.xml │ │ │ ├── item_dc_contributor.xml │ │ │ ├── item_dc_creator.xml │ │ │ ├── item_dc_creator_map_author_detail_email.xml │ │ │ ├── item_dc_creator_map_author_detail_name.xml │ │ │ ├── item_dc_description.xml │ │ │ ├── item_dc_publisher.xml │ │ │ ├── item_dc_publisher_email.xml │ │ │ ├── item_dc_publisher_name.xml │ │ │ ├── item_dc_rights.xml │ │ │ ├── item_dc_subject.xml │ │ │ ├── item_dc_subject_2.xml │ │ │ ├── item_dc_subject_multiple.xml │ │ │ ├── item_dc_title.xml │ │ │ ├── item_description.xml │ │ │ ├── item_description_and_summary.xml │ │ │ ├── item_description_br.xml │ │ │ ├── item_description_br_shorttag.xml │ │ │ ├── item_description_code_br.xml │ │ │ ├── item_description_escaped_markup.xml │ │ │ ├── item_description_map_summary.xml │ │ │ ├── item_description_naked_markup.xml │ │ │ ├── item_description_not_a_doctype.xml │ │ │ ├── item_enclosure_length.xml │ │ │ ├── item_enclosure_multiple.xml │ │ │ ├── item_enclosure_type.xml │ │ │ ├── item_enclosure_url.xml │ │ │ ├── item_fullitem.xml │ │ │ ├── item_fullitem_mode.xml │ │ │ ├── item_fullitem_type.xml │ │ │ ├── item_guid.xml │ │ │ ├── item_guid_conflict_link.xml │ │ │ ├── item_guid_guidislink.xml │ │ │ ├── item_guid_isPermaLink_conflict_link.xml │ │ │ ├── item_guid_isPermaLink_conflict_link_not_guidislink.xml │ │ │ ├── item_guid_isPermaLink_guidislink.xml │ │ │ ├── item_guid_isPermaLink_map_link.xml │ │ │ ├── item_guid_map_link.xml │ │ │ ├── item_guid_not_permalink.xml │ │ │ ├── item_guid_not_permalink_conflict_link.xml │ │ │ ├── item_guid_not_permalink_not_guidislink.xml │ │ │ ├── item_guid_not_permalink_not_guidislink_2.xml │ │ │ ├── item_guid_not_permalink_not_url.xml │ │ │ ├── item_image_link_bleed.xml │ │ │ ├── item_image_link_conflict.xml │ │ │ ├── item_link.xml │ │ │ ├── item_source.xml │ │ │ ├── item_source_url.xml │ │ │ ├── item_summary_and_description.xml │ │ │ ├── item_title.xml │ │ │ ├── item_xhtml_body.xml │ │ │ ├── item_xhtml_body_mode.xml │ │ │ ├── item_xhtml_body_type.xml │ │ │ ├── newlocation.xml │ │ │ ├── rss_empty_document.xml │ │ │ ├── rss_incomplete_cdata.xml │ │ │ ├── rss_namespace_1.xml │ │ │ ├── rss_namespace_2.xml │ │ │ ├── rss_namespace_3.xml │ │ │ ├── rss_namespace_4.xml │ │ │ ├── rss_version_090.xml │ │ │ ├── rss_version_091_netscape.xml │ │ │ ├── rss_version_092.xml │ │ │ ├── rss_version_093.xml │ │ │ ├── rss_version_094.xml │ │ │ ├── rss_version_20.xml │ │ │ ├── rss_version_201.xml │ │ │ ├── rss_version_21.xml │ │ │ └── rss_version_missing.xml │ │ └── sanitize │ │ │ ├── acceptable_attribute_abbr.xml │ │ │ ├── acceptable_attribute_accept-charset.xml │ │ │ ├── acceptable_attribute_accept.xml │ │ │ ├── acceptable_attribute_accesskey.xml │ │ │ ├── acceptable_attribute_action.xml │ │ │ ├── acceptable_attribute_align.xml │ │ │ ├── acceptable_attribute_alt.xml │ │ │ ├── acceptable_attribute_autocomplete.xml │ │ │ ├── acceptable_attribute_autofocus.xml │ │ │ ├── acceptable_attribute_autoplay.xml │ │ │ ├── acceptable_attribute_axis.xml │ │ │ ├── acceptable_attribute_background.xml │ │ │ ├── acceptable_attribute_balance.xml │ │ │ ├── acceptable_attribute_bgcolor.xml │ │ │ ├── acceptable_attribute_bgproperties.xml │ │ │ ├── acceptable_attribute_border.xml │ │ │ ├── acceptable_attribute_bordercolor.xml │ │ │ ├── acceptable_attribute_bordercolordark.xml │ │ │ ├── acceptable_attribute_bordercolorlight.xml │ │ │ ├── acceptable_attribute_bottompadding.xml │ │ │ ├── acceptable_attribute_cellpadding.xml │ │ │ ├── acceptable_attribute_cellspacing.xml │ │ │ ├── acceptable_attribute_ch.xml │ │ │ ├── acceptable_attribute_challenge.xml │ │ │ ├── acceptable_attribute_char.xml │ │ │ ├── acceptable_attribute_charoff.xml │ │ │ ├── acceptable_attribute_charset.xml │ │ │ ├── acceptable_attribute_checked.xml │ │ │ ├── acceptable_attribute_choff.xml │ │ │ ├── acceptable_attribute_cite.xml │ │ │ ├── acceptable_attribute_class.xml │ │ │ ├── acceptable_attribute_clear.xml │ │ │ ├── acceptable_attribute_color.xml │ │ │ ├── acceptable_attribute_cols.xml │ │ │ ├── acceptable_attribute_colspan.xml │ │ │ ├── acceptable_attribute_compact.xml │ │ │ ├── acceptable_attribute_contenteditable.xml │ │ │ ├── acceptable_attribute_coords.xml │ │ │ ├── acceptable_attribute_data.xml │ │ │ ├── acceptable_attribute_datafld.xml │ │ │ ├── acceptable_attribute_datapagesize.xml │ │ │ ├── acceptable_attribute_datasrc.xml │ │ │ ├── acceptable_attribute_datetime.xml │ │ │ ├── acceptable_attribute_default.xml │ │ │ ├── acceptable_attribute_delay.xml │ │ │ ├── acceptable_attribute_dir.xml │ │ │ ├── acceptable_attribute_disabled.xml │ │ │ ├── acceptable_attribute_draggable.xml │ │ │ ├── acceptable_attribute_dynsrc.xml │ │ │ ├── acceptable_attribute_enctype.xml │ │ │ ├── acceptable_attribute_end.xml │ │ │ ├── acceptable_attribute_face.xml │ │ │ ├── acceptable_attribute_for.xml │ │ │ ├── acceptable_attribute_form.xml │ │ │ ├── acceptable_attribute_frame.xml │ │ │ ├── acceptable_attribute_galleryimg.xml │ │ │ ├── acceptable_attribute_gutter.xml │ │ │ ├── acceptable_attribute_headers.xml │ │ │ ├── acceptable_attribute_height.xml │ │ │ ├── acceptable_attribute_hidden.xml │ │ │ ├── acceptable_attribute_hidefocus.xml │ │ │ ├── acceptable_attribute_high.xml │ │ │ ├── acceptable_attribute_href.xml │ │ │ ├── acceptable_attribute_hreflang.xml │ │ │ ├── acceptable_attribute_hspace.xml │ │ │ ├── acceptable_attribute_icon.xml │ │ │ ├── acceptable_attribute_id.xml │ │ │ ├── acceptable_attribute_inputmode.xml │ │ │ ├── acceptable_attribute_ismap.xml │ │ │ ├── acceptable_attribute_keytype.xml │ │ │ ├── acceptable_attribute_label.xml │ │ │ ├── acceptable_attribute_lang.xml │ │ │ ├── acceptable_attribute_leftspacing.xml │ │ │ ├── acceptable_attribute_list.xml │ │ │ ├── acceptable_attribute_longdesc.xml │ │ │ ├── acceptable_attribute_loop.xml │ │ │ ├── acceptable_attribute_loopcount.xml │ │ │ ├── acceptable_attribute_loopend.xml │ │ │ ├── acceptable_attribute_loopstart.xml │ │ │ ├── acceptable_attribute_low.xml │ │ │ ├── acceptable_attribute_lowsrc.xml │ │ │ ├── acceptable_attribute_max.xml │ │ │ ├── acceptable_attribute_maxlength.xml │ │ │ ├── acceptable_attribute_media.xml │ │ │ ├── acceptable_attribute_method.xml │ │ │ ├── acceptable_attribute_min.xml │ │ │ ├── acceptable_attribute_multiple.xml │ │ │ ├── acceptable_attribute_name.xml │ │ │ ├── acceptable_attribute_nohref.xml │ │ │ ├── acceptable_attribute_noshade.xml │ │ │ ├── acceptable_attribute_nowrap.xml │ │ │ ├── acceptable_attribute_open.xml │ │ │ ├── acceptable_attribute_optimum.xml │ │ │ ├── acceptable_attribute_pattern.xml │ │ │ ├── acceptable_attribute_ping.xml │ │ │ ├── acceptable_attribute_point-size.xml │ │ │ ├── acceptable_attribute_pqg.xml │ │ │ ├── acceptable_attribute_prompt.xml │ │ │ ├── acceptable_attribute_radiogroup.xml │ │ │ ├── acceptable_attribute_readonly.xml │ │ │ ├── acceptable_attribute_rel.xml │ │ │ ├── acceptable_attribute_repeat-max.xml │ │ │ ├── acceptable_attribute_repeat-min.xml │ │ │ ├── acceptable_attribute_replace.xml │ │ │ ├── acceptable_attribute_required.xml │ │ │ ├── acceptable_attribute_rev.xml │ │ │ ├── acceptable_attribute_rightspacing.xml │ │ │ ├── acceptable_attribute_rows.xml │ │ │ ├── acceptable_attribute_rowspan.xml │ │ │ ├── acceptable_attribute_rules.xml │ │ │ ├── acceptable_attribute_scope.xml │ │ │ ├── acceptable_attribute_selected.xml │ │ │ ├── acceptable_attribute_shape.xml │ │ │ ├── acceptable_attribute_size.xml │ │ │ ├── acceptable_attribute_span.xml │ │ │ ├── acceptable_attribute_src.xml │ │ │ ├── acceptable_attribute_start.xml │ │ │ ├── acceptable_attribute_step.xml │ │ │ ├── acceptable_attribute_summary.xml │ │ │ ├── acceptable_attribute_suppress.xml │ │ │ ├── acceptable_attribute_tabindex.xml │ │ │ ├── acceptable_attribute_target.xml │ │ │ ├── acceptable_attribute_template.xml │ │ │ ├── acceptable_attribute_title.xml │ │ │ ├── acceptable_attribute_toppadding.xml │ │ │ ├── acceptable_attribute_type.xml │ │ │ ├── acceptable_attribute_unselectable.xml │ │ │ ├── acceptable_attribute_urn.xml │ │ │ ├── acceptable_attribute_usemap.xml │ │ │ ├── acceptable_attribute_valign.xml │ │ │ ├── acceptable_attribute_value.xml │ │ │ ├── acceptable_attribute_variable.xml │ │ │ ├── acceptable_attribute_volume.xml │ │ │ ├── acceptable_attribute_vrml.xml │ │ │ ├── acceptable_attribute_vspace.xml │ │ │ ├── acceptable_attribute_width.xml │ │ │ ├── acceptable_attribute_wrap.xml │ │ │ ├── acceptable_element_a.xml │ │ │ ├── acceptable_element_abbr.xml │ │ │ ├── acceptable_element_acronym.xml │ │ │ ├── acceptable_element_address.xml │ │ │ ├── acceptable_element_area.xml │ │ │ ├── acceptable_element_article.xml │ │ │ ├── acceptable_element_aside.xml │ │ │ ├── acceptable_element_audio.xml │ │ │ ├── acceptable_element_b.xml │ │ │ ├── acceptable_element_big.xml │ │ │ ├── acceptable_element_blockquote.xml │ │ │ ├── acceptable_element_br.xml │ │ │ ├── acceptable_element_button.xml │ │ │ ├── acceptable_element_canvas.xml │ │ │ ├── acceptable_element_caption.xml │ │ │ ├── acceptable_element_center.xml │ │ │ ├── acceptable_element_cite.xml │ │ │ ├── acceptable_element_code.xml │ │ │ ├── acceptable_element_col.xml │ │ │ ├── acceptable_element_colgroup.xml │ │ │ ├── acceptable_element_command.xml │ │ │ ├── acceptable_element_datagrid.xml │ │ │ ├── acceptable_element_datalist.xml │ │ │ ├── acceptable_element_dd.xml │ │ │ ├── acceptable_element_del.xml │ │ │ ├── acceptable_element_details.xml │ │ │ ├── acceptable_element_dfn.xml │ │ │ ├── acceptable_element_dialog.xml │ │ │ ├── acceptable_element_dir.xml │ │ │ ├── acceptable_element_div.xml │ │ │ ├── acceptable_element_dl.xml │ │ │ ├── acceptable_element_dt.xml │ │ │ ├── acceptable_element_em.xml │ │ │ ├── acceptable_element_event-source.xml │ │ │ ├── acceptable_element_fieldset.xml │ │ │ ├── acceptable_element_figure.xml │ │ │ ├── acceptable_element_font.xml │ │ │ ├── acceptable_element_footer.xml │ │ │ ├── acceptable_element_form.xml │ │ │ ├── acceptable_element_h1.xml │ │ │ ├── acceptable_element_h2.xml │ │ │ ├── acceptable_element_h3.xml │ │ │ ├── acceptable_element_h4.xml │ │ │ ├── acceptable_element_h5.xml │ │ │ ├── acceptable_element_h6.xml │ │ │ ├── acceptable_element_header.xml │ │ │ ├── acceptable_element_hr.xml │ │ │ ├── acceptable_element_i.xml │ │ │ ├── acceptable_element_img.xml │ │ │ ├── acceptable_element_input.xml │ │ │ ├── acceptable_element_ins.xml │ │ │ ├── acceptable_element_kbd.xml │ │ │ ├── acceptable_element_keygen.xml │ │ │ ├── acceptable_element_label.xml │ │ │ ├── acceptable_element_legend.xml │ │ │ ├── acceptable_element_li.xml │ │ │ ├── acceptable_element_m.xml │ │ │ ├── acceptable_element_map.xml │ │ │ ├── acceptable_element_menu.xml │ │ │ ├── acceptable_element_meter.xml │ │ │ ├── acceptable_element_multicol.xml │ │ │ ├── acceptable_element_nav.xml │ │ │ ├── acceptable_element_nextid.xml │ │ │ ├── acceptable_element_noscript.xml │ │ │ ├── acceptable_element_ol.xml │ │ │ ├── acceptable_element_optgroup.xml │ │ │ ├── acceptable_element_option.xml │ │ │ ├── acceptable_element_output.xml │ │ │ ├── acceptable_element_p.xml │ │ │ ├── acceptable_element_pre.xml │ │ │ ├── acceptable_element_progress.xml │ │ │ ├── acceptable_element_q.xml │ │ │ ├── acceptable_element_s.xml │ │ │ ├── acceptable_element_samp.xml │ │ │ ├── acceptable_element_section.xml │ │ │ ├── acceptable_element_select.xml │ │ │ ├── acceptable_element_small.xml │ │ │ ├── acceptable_element_sound.xml │ │ │ ├── acceptable_element_source.xml │ │ │ ├── acceptable_element_spacer.xml │ │ │ ├── acceptable_element_span.xml │ │ │ ├── acceptable_element_strike.xml │ │ │ ├── acceptable_element_strong.xml │ │ │ ├── acceptable_element_sub.xml │ │ │ ├── acceptable_element_sup.xml │ │ │ ├── acceptable_element_table.xml │ │ │ ├── acceptable_element_tbody.xml │ │ │ ├── acceptable_element_td.xml │ │ │ ├── acceptable_element_textarea.xml │ │ │ ├── acceptable_element_tfoot.xml │ │ │ ├── acceptable_element_th.xml │ │ │ ├── acceptable_element_thead.xml │ │ │ ├── acceptable_element_time.xml │ │ │ ├── acceptable_element_tr.xml │ │ │ ├── acceptable_element_tt.xml │ │ │ ├── acceptable_element_u.xml │ │ │ ├── acceptable_element_ul.xml │ │ │ ├── acceptable_element_var.xml │ │ │ ├── acceptable_element_video.xml │ │ │ ├── entry_content_applet.xml │ │ │ ├── entry_content_blink.xml │ │ │ ├── entry_content_crazy.xml │ │ │ ├── entry_content_embed.xml │ │ │ ├── entry_content_frame.xml │ │ │ ├── entry_content_iframe.xml │ │ │ ├── entry_content_link.xml │ │ │ ├── entry_content_meta.xml │ │ │ ├── entry_content_object.xml │ │ │ ├── entry_content_onabort.xml │ │ │ ├── entry_content_onblur.xml │ │ │ ├── entry_content_onchange.xml │ │ │ ├── entry_content_onclick.xml │ │ │ ├── entry_content_ondblclick.xml │ │ │ ├── entry_content_onerror.xml │ │ │ ├── entry_content_onfocus.xml │ │ │ ├── entry_content_onkeydown.xml │ │ │ ├── entry_content_onkeypress.xml │ │ │ ├── entry_content_onkeyup.xml │ │ │ ├── entry_content_onload.xml │ │ │ ├── entry_content_onmousedown.xml │ │ │ ├── entry_content_onmouseout.xml │ │ │ ├── entry_content_onmouseover.xml │ │ │ ├── entry_content_onmouseup.xml │ │ │ ├── entry_content_onreset.xml │ │ │ ├── entry_content_onresize.xml │ │ │ ├── entry_content_onsubmit.xml │ │ │ ├── entry_content_onunload.xml │ │ │ ├── entry_content_script.xml │ │ │ ├── entry_content_script_base64.xml │ │ │ ├── entry_content_script_cdata.xml │ │ │ ├── entry_content_script_inline.xml │ │ │ ├── entry_content_style.xml │ │ │ ├── entry_content_style_tag.xml │ │ │ ├── entry_summary_applet.xml │ │ │ ├── entry_summary_blink.xml │ │ │ ├── entry_summary_crazy.xml │ │ │ ├── entry_summary_embed.xml │ │ │ ├── entry_summary_frame.xml │ │ │ ├── entry_summary_iframe.xml │ │ │ ├── entry_summary_link.xml │ │ │ ├── entry_summary_meta.xml │ │ │ ├── entry_summary_object.xml │ │ │ ├── entry_summary_onabort.xml │ │ │ ├── entry_summary_onblur.xml │ │ │ ├── entry_summary_onchange.xml │ │ │ ├── entry_summary_onclick.xml │ │ │ ├── entry_summary_ondblclick.xml │ │ │ ├── entry_summary_onerror.xml │ │ │ ├── entry_summary_onfocus.xml │ │ │ ├── entry_summary_onkeydown.xml │ │ │ ├── entry_summary_onkeypress.xml │ │ │ ├── entry_summary_onkeyup.xml │ │ │ ├── entry_summary_onload.xml │ │ │ ├── entry_summary_onmousedown.xml │ │ │ ├── entry_summary_onmouseout.xml │ │ │ ├── entry_summary_onmouseover.xml │ │ │ ├── entry_summary_onmouseup.xml │ │ │ ├── entry_summary_onreset.xml │ │ │ ├── entry_summary_onresize.xml │ │ │ ├── entry_summary_onsubmit.xml │ │ │ ├── entry_summary_onunload.xml │ │ │ ├── entry_summary_script.xml │ │ │ ├── entry_summary_script_base64.xml │ │ │ ├── entry_summary_script_cdata.xml │ │ │ ├── entry_summary_script_inline.xml │ │ │ ├── entry_summary_script_map_description.xml │ │ │ ├── entry_summary_style.xml │ │ │ ├── entry_title_applet.xml │ │ │ ├── entry_title_blink.xml │ │ │ ├── entry_title_crazy.xml │ │ │ ├── entry_title_embed.xml │ │ │ ├── entry_title_frame.xml │ │ │ ├── entry_title_iframe.xml │ │ │ ├── entry_title_link.xml │ │ │ ├── entry_title_meta.xml │ │ │ ├── entry_title_object.xml │ │ │ ├── entry_title_onabort.xml │ │ │ ├── entry_title_onblur.xml │ │ │ ├── entry_title_onchange.xml │ │ │ ├── entry_title_onclick.xml │ │ │ ├── entry_title_ondblclick.xml │ │ │ ├── entry_title_onerror.xml │ │ │ ├── entry_title_onfocus.xml │ │ │ ├── entry_title_onkeydown.xml │ │ │ ├── entry_title_onkeypress.xml │ │ │ ├── entry_title_onkeyup.xml │ │ │ ├── entry_title_onload.xml │ │ │ ├── entry_title_onmousedown.xml │ │ │ ├── entry_title_onmouseout.xml │ │ │ ├── entry_title_onmouseover.xml │ │ │ ├── entry_title_onmouseup.xml │ │ │ ├── entry_title_onreset.xml │ │ │ ├── entry_title_onresize.xml │ │ │ ├── entry_title_onsubmit.xml │ │ │ ├── entry_title_onunload.xml │ │ │ ├── entry_title_script.xml │ │ │ ├── entry_title_script_cdata.xml │ │ │ ├── entry_title_script_inline.xml │ │ │ ├── entry_title_style.xml │ │ │ ├── feed_copyright_applet.xml │ │ │ ├── feed_copyright_blink.xml │ │ │ ├── feed_copyright_crazy.xml │ │ │ ├── feed_copyright_embed.xml │ │ │ ├── feed_copyright_frame.xml │ │ │ ├── feed_copyright_iframe.xml │ │ │ ├── feed_copyright_link.xml │ │ │ ├── feed_copyright_meta.xml │ │ │ ├── feed_copyright_object.xml │ │ │ ├── feed_copyright_onabort.xml │ │ │ ├── feed_copyright_onblur.xml │ │ │ ├── feed_copyright_onchange.xml │ │ │ ├── feed_copyright_onclick.xml │ │ │ ├── feed_copyright_ondblclick.xml │ │ │ ├── feed_copyright_onerror.xml │ │ │ ├── feed_copyright_onfocus.xml │ │ │ ├── feed_copyright_onkeydown.xml │ │ │ ├── feed_copyright_onkeypress.xml │ │ │ ├── feed_copyright_onkeyup.xml │ │ │ ├── feed_copyright_onload.xml │ │ │ ├── feed_copyright_onmousedown.xml │ │ │ ├── feed_copyright_onmouseout.xml │ │ │ ├── feed_copyright_onmouseover.xml │ │ │ ├── feed_copyright_onmouseup.xml │ │ │ ├── feed_copyright_onreset.xml │ │ │ ├── feed_copyright_onresize.xml │ │ │ ├── feed_copyright_onsubmit.xml │ │ │ ├── feed_copyright_onunload.xml │ │ │ ├── feed_copyright_script.xml │ │ │ ├── feed_copyright_script_cdata.xml │ │ │ ├── feed_copyright_script_inline.xml │ │ │ ├── feed_copyright_style.xml │ │ │ ├── feed_info_applet.xml │ │ │ ├── feed_info_blink.xml │ │ │ ├── feed_info_crazy.xml │ │ │ ├── feed_info_embed.xml │ │ │ ├── feed_info_frame.xml │ │ │ ├── feed_info_iframe.xml │ │ │ ├── feed_info_link.xml │ │ │ ├── feed_info_meta.xml │ │ │ ├── feed_info_object.xml │ │ │ ├── feed_info_onabort.xml │ │ │ ├── feed_info_onblur.xml │ │ │ ├── feed_info_onchange.xml │ │ │ ├── feed_info_onclick.xml │ │ │ ├── feed_info_ondblclick.xml │ │ │ ├── feed_info_onerror.xml │ │ │ ├── feed_info_onfocus.xml │ │ │ ├── feed_info_onkeydown.xml │ │ │ ├── feed_info_onkeypress.xml │ │ │ ├── feed_info_onkeyup.xml │ │ │ ├── feed_info_onload.xml │ │ │ ├── feed_info_onmousedown.xml │ │ │ ├── feed_info_onmouseout.xml │ │ │ ├── feed_info_onmouseover.xml │ │ │ ├── feed_info_onmouseup.xml │ │ │ ├── feed_info_onreset.xml │ │ │ ├── feed_info_onresize.xml │ │ │ ├── feed_info_onsubmit.xml │ │ │ ├── feed_info_onunload.xml │ │ │ ├── feed_info_script.xml │ │ │ ├── feed_info_script_cdata.xml │ │ │ ├── feed_info_script_inline.xml │ │ │ ├── feed_info_style.xml │ │ │ ├── feed_subtitle_applet.xml │ │ │ ├── feed_subtitle_blink.xml │ │ │ ├── feed_subtitle_crazy.xml │ │ │ ├── feed_subtitle_embed.xml │ │ │ ├── feed_subtitle_frame.xml │ │ │ ├── feed_subtitle_iframe.xml │ │ │ ├── feed_subtitle_link.xml │ │ │ ├── feed_subtitle_meta.xml │ │ │ ├── feed_subtitle_object.xml │ │ │ ├── feed_subtitle_onabort.xml │ │ │ ├── feed_subtitle_onblur.xml │ │ │ ├── feed_subtitle_onchange.xml │ │ │ ├── feed_subtitle_onclick.xml │ │ │ ├── feed_subtitle_ondblclick.xml │ │ │ ├── feed_subtitle_onerror.xml │ │ │ ├── feed_subtitle_onfocus.xml │ │ │ ├── feed_subtitle_onkeydown.xml │ │ │ ├── feed_subtitle_onkeypress.xml │ │ │ ├── feed_subtitle_onkeyup.xml │ │ │ ├── feed_subtitle_onload.xml │ │ │ ├── feed_subtitle_onmousedown.xml │ │ │ ├── feed_subtitle_onmouseout.xml │ │ │ ├── feed_subtitle_onmouseover.xml │ │ │ ├── feed_subtitle_onmouseup.xml │ │ │ ├── feed_subtitle_onreset.xml │ │ │ ├── feed_subtitle_onresize.xml │ │ │ ├── feed_subtitle_onsubmit.xml │ │ │ ├── feed_subtitle_onunload.xml │ │ │ ├── feed_subtitle_script.xml │ │ │ ├── feed_subtitle_script_cdata.xml │ │ │ ├── feed_subtitle_script_inline.xml │ │ │ ├── feed_subtitle_style.xml │ │ │ ├── feed_tagline_applet.xml │ │ │ ├── feed_tagline_blink.xml │ │ │ ├── feed_tagline_crazy.xml │ │ │ ├── feed_tagline_embed.xml │ │ │ ├── feed_tagline_frame.xml │ │ │ ├── feed_tagline_iframe.xml │ │ │ ├── feed_tagline_link.xml │ │ │ ├── feed_tagline_meta.xml │ │ │ ├── feed_tagline_object.xml │ │ │ ├── feed_tagline_onabort.xml │ │ │ ├── feed_tagline_onblur.xml │ │ │ ├── feed_tagline_onchange.xml │ │ │ ├── feed_tagline_onclick.xml │ │ │ ├── feed_tagline_ondblclick.xml │ │ │ ├── feed_tagline_onerror.xml │ │ │ ├── feed_tagline_onfocus.xml │ │ │ ├── feed_tagline_onkeydown.xml │ │ │ ├── feed_tagline_onkeypress.xml │ │ │ ├── feed_tagline_onkeyup.xml │ │ │ ├── feed_tagline_onload.xml │ │ │ ├── feed_tagline_onmousedown.xml │ │ │ ├── feed_tagline_onmouseout.xml │ │ │ ├── feed_tagline_onmouseover.xml │ │ │ ├── feed_tagline_onmouseup.xml │ │ │ ├── feed_tagline_onreset.xml │ │ │ ├── feed_tagline_onresize.xml │ │ │ ├── feed_tagline_onsubmit.xml │ │ │ ├── feed_tagline_onunload.xml │ │ │ ├── feed_tagline_script.xml │ │ │ ├── feed_tagline_script_cdata.xml │ │ │ ├── feed_tagline_script_inline.xml │ │ │ ├── feed_tagline_script_map_description.xml │ │ │ ├── feed_tagline_style.xml │ │ │ ├── feed_title_applet.xml │ │ │ ├── feed_title_blink.xml │ │ │ ├── feed_title_crazy.xml │ │ │ ├── feed_title_embed.xml │ │ │ ├── feed_title_frame.xml │ │ │ ├── feed_title_iframe.xml │ │ │ ├── feed_title_link.xml │ │ │ ├── feed_title_meta.xml │ │ │ ├── feed_title_object.xml │ │ │ ├── feed_title_onabort.xml │ │ │ ├── feed_title_onblur.xml │ │ │ ├── feed_title_onchange.xml │ │ │ ├── feed_title_onclick.xml │ │ │ ├── feed_title_ondblclick.xml │ │ │ ├── feed_title_onerror.xml │ │ │ ├── feed_title_onfocus.xml │ │ │ ├── feed_title_onkeydown.xml │ │ │ ├── feed_title_onkeypress.xml │ │ │ ├── feed_title_onkeyup.xml │ │ │ ├── feed_title_onload.xml │ │ │ ├── feed_title_onmousedown.xml │ │ │ ├── feed_title_onmouseout.xml │ │ │ ├── feed_title_onmouseover.xml │ │ │ ├── feed_title_onmouseup.xml │ │ │ ├── feed_title_onreset.xml │ │ │ ├── feed_title_onresize.xml │ │ │ ├── feed_title_onsubmit.xml │ │ │ ├── feed_title_onunload.xml │ │ │ ├── feed_title_script.xml │ │ │ ├── feed_title_script_cdata.xml │ │ │ ├── feed_title_script_inline.xml │ │ │ ├── feed_title_style.xml │ │ │ ├── item_body_applet.xml │ │ │ ├── item_body_blink.xml │ │ │ ├── item_body_embed.xml │ │ │ ├── item_body_frame.xml │ │ │ ├── item_body_iframe.xml │ │ │ ├── item_body_link.xml │ │ │ ├── item_body_meta.xml │ │ │ ├── item_body_object.xml │ │ │ ├── item_body_onabort.xml │ │ │ ├── item_body_onblur.xml │ │ │ ├── item_body_onchange.xml │ │ │ ├── item_body_onclick.xml │ │ │ ├── item_body_ondblclick.xml │ │ │ ├── item_body_onerror.xml │ │ │ ├── item_body_onfocus.xml │ │ │ ├── item_body_onkeydown.xml │ │ │ ├── item_body_onkeypress.xml │ │ │ ├── item_body_onkeyup.xml │ │ │ ├── item_body_onload.xml │ │ │ ├── item_body_onmousedown.xml │ │ │ ├── item_body_onmouseout.xml │ │ │ ├── item_body_onmouseover.xml │ │ │ ├── item_body_onmouseup.xml │ │ │ ├── item_body_onreset.xml │ │ │ ├── item_body_onresize.xml │ │ │ ├── item_body_onsubmit.xml │ │ │ ├── item_body_onunload.xml │ │ │ ├── item_body_script.xml │ │ │ ├── item_body_script_map_content.xml │ │ │ ├── item_body_style.xml │ │ │ ├── item_content_encoded_applet.xml │ │ │ ├── item_content_encoded_blink.xml │ │ │ ├── item_content_encoded_crazy.xml │ │ │ ├── item_content_encoded_embed.xml │ │ │ ├── item_content_encoded_frame.xml │ │ │ ├── item_content_encoded_iframe.xml │ │ │ ├── item_content_encoded_link.xml │ │ │ ├── item_content_encoded_map_content.xml │ │ │ ├── item_content_encoded_meta.xml │ │ │ ├── item_content_encoded_object.xml │ │ │ ├── item_content_encoded_onabort.xml │ │ │ ├── item_content_encoded_onblur.xml │ │ │ ├── item_content_encoded_onchange.xml │ │ │ ├── item_content_encoded_onclick.xml │ │ │ ├── item_content_encoded_ondblclick.xml │ │ │ ├── item_content_encoded_onerror.xml │ │ │ ├── item_content_encoded_onfocus.xml │ │ │ ├── item_content_encoded_onkeydown.xml │ │ │ ├── item_content_encoded_onkeypress.xml │ │ │ ├── item_content_encoded_onkeyup.xml │ │ │ ├── item_content_encoded_onload.xml │ │ │ ├── item_content_encoded_onmousedown.xml │ │ │ ├── item_content_encoded_onmouseout.xml │ │ │ ├── item_content_encoded_onmouseover.xml │ │ │ ├── item_content_encoded_onmouseup.xml │ │ │ ├── item_content_encoded_onreset.xml │ │ │ ├── item_content_encoded_onresize.xml │ │ │ ├── item_content_encoded_onsubmit.xml │ │ │ ├── item_content_encoded_onunload.xml │ │ │ ├── item_content_encoded_script.xml │ │ │ ├── item_content_encoded_script_cdata.xml │ │ │ ├── item_content_encoded_script_map_content.xml │ │ │ ├── item_content_encoded_script_nested_cdata.xml │ │ │ ├── item_content_encoded_style.xml │ │ │ ├── item_description_applet.xml │ │ │ ├── item_description_blink.xml │ │ │ ├── item_description_crazy.xml │ │ │ ├── item_description_embed.xml │ │ │ ├── item_description_frame.xml │ │ │ ├── item_description_iframe.xml │ │ │ ├── item_description_link.xml │ │ │ ├── item_description_meta.xml │ │ │ ├── item_description_object.xml │ │ │ ├── item_description_onabort.xml │ │ │ ├── item_description_onblur.xml │ │ │ ├── item_description_onchange.xml │ │ │ ├── item_description_onclick.xml │ │ │ ├── item_description_ondblclick.xml │ │ │ ├── item_description_onerror.xml │ │ │ ├── item_description_onfocus.xml │ │ │ ├── item_description_onkeydown.xml │ │ │ ├── item_description_onkeypress.xml │ │ │ ├── item_description_onkeyup.xml │ │ │ ├── item_description_onload.xml │ │ │ ├── item_description_onmousedown.xml │ │ │ ├── item_description_onmouseout.xml │ │ │ ├── item_description_onmouseover.xml │ │ │ ├── item_description_onmouseup.xml │ │ │ ├── item_description_onreset.xml │ │ │ ├── item_description_onresize.xml │ │ │ ├── item_description_onsubmit.xml │ │ │ ├── item_description_onunload.xml │ │ │ ├── item_description_script.xml │ │ │ ├── item_description_script_cdata.xml │ │ │ ├── item_description_script_map_summary.xml │ │ │ ├── item_description_style.xml │ │ │ ├── item_fullitem_applet.xml │ │ │ ├── item_fullitem_blink.xml │ │ │ ├── item_fullitem_crazy.xml │ │ │ ├── item_fullitem_embed.xml │ │ │ ├── item_fullitem_frame.xml │ │ │ ├── item_fullitem_iframe.xml │ │ │ ├── item_fullitem_link.xml │ │ │ ├── item_fullitem_meta.xml │ │ │ ├── item_fullitem_object.xml │ │ │ ├── item_fullitem_onabort.xml │ │ │ ├── item_fullitem_onblur.xml │ │ │ ├── item_fullitem_onchange.xml │ │ │ ├── item_fullitem_onclick.xml │ │ │ ├── item_fullitem_ondblclick.xml │ │ │ ├── item_fullitem_onerror.xml │ │ │ ├── item_fullitem_onfocus.xml │ │ │ ├── item_fullitem_onkeydown.xml │ │ │ ├── item_fullitem_onkeypress.xml │ │ │ ├── item_fullitem_onkeyup.xml │ │ │ ├── item_fullitem_onload.xml │ │ │ ├── item_fullitem_onmousedown.xml │ │ │ ├── item_fullitem_onmouseout.xml │ │ │ ├── item_fullitem_onmouseover.xml │ │ │ ├── item_fullitem_onmouseup.xml │ │ │ ├── item_fullitem_onreset.xml │ │ │ ├── item_fullitem_onresize.xml │ │ │ ├── item_fullitem_onsubmit.xml │ │ │ ├── item_fullitem_onunload.xml │ │ │ ├── item_fullitem_script.xml │ │ │ ├── item_fullitem_script_cdata.xml │ │ │ ├── item_fullitem_script_map_summary.xml │ │ │ ├── item_fullitem_style.xml │ │ │ ├── item_xhtml_body_applet.xml │ │ │ ├── item_xhtml_body_blink.xml │ │ │ ├── item_xhtml_body_embed.xml │ │ │ ├── item_xhtml_body_frame.xml │ │ │ ├── item_xhtml_body_iframe.xml │ │ │ ├── item_xhtml_body_link.xml │ │ │ ├── item_xhtml_body_meta.xml │ │ │ ├── item_xhtml_body_object.xml │ │ │ ├── item_xhtml_body_onabort.xml │ │ │ ├── item_xhtml_body_onblur.xml │ │ │ ├── item_xhtml_body_onchange.xml │ │ │ ├── item_xhtml_body_onclick.xml │ │ │ ├── item_xhtml_body_ondblclick.xml │ │ │ ├── item_xhtml_body_onerror.xml │ │ │ ├── item_xhtml_body_onfocus.xml │ │ │ ├── item_xhtml_body_onkeydown.xml │ │ │ ├── item_xhtml_body_onkeypress.xml │ │ │ ├── item_xhtml_body_onkeyup.xml │ │ │ ├── item_xhtml_body_onload.xml │ │ │ ├── item_xhtml_body_onmousedown.xml │ │ │ ├── item_xhtml_body_onmouseout.xml │ │ │ ├── item_xhtml_body_onmouseover.xml │ │ │ ├── item_xhtml_body_onmouseup.xml │ │ │ ├── item_xhtml_body_onreset.xml │ │ │ ├── item_xhtml_body_onresize.xml │ │ │ ├── item_xhtml_body_onsubmit.xml │ │ │ ├── item_xhtml_body_onunload.xml │ │ │ ├── item_xhtml_body_script.xml │ │ │ ├── item_xhtml_body_script_map_content.xml │ │ │ ├── item_xhtml_body_style.xml │ │ │ ├── style_background_repeat_repeat_x.xml │ │ │ ├── style_background_url.xml │ │ │ ├── style_background_yellow.xml │ │ │ ├── style_border_0.xml │ │ │ ├── style_border_1px_solid_rgb_0_0_0_.xml │ │ │ ├── style_border_3px_solid_ccc.xml │ │ │ ├── style_border_bottom_0pt.xml │ │ │ ├── style_border_bottom_dashed.xml │ │ │ ├── style_border_bottom_dotted.xml │ │ │ ├── style_border_collapse_collapse.xml │ │ │ ├── style_border_left_0pt.xml │ │ │ ├── style_border_medium_none_.xml │ │ │ ├── style_border_none_important.xml │ │ │ ├── style_border_right_0pt.xml │ │ │ ├── style_border_solid_2px_000000.xml │ │ │ ├── style_border_top_0pt.xml │ │ │ ├── style_clear_both.xml │ │ │ ├── style_color_000080.xml │ │ │ ├── style_color_008.xml │ │ │ ├── style_color_999999.xml │ │ │ ├── style_color_blue.xml │ │ │ ├── style_color_maroon.xml │ │ │ ├── style_color_red.xml │ │ │ ├── style_color_rgb_0_128_0_.xml │ │ │ ├── style_color_teal.xml │ │ │ ├── style_cursor_pointer.xml │ │ │ ├── style_display_block.xml │ │ │ ├── style_float_left.xml │ │ │ ├── style_float_right.xml │ │ │ ├── style_font_family__comic_sans_ms.xml │ │ │ ├── style_font_family_arial_sans_serif.xml │ │ │ ├── style_font_family_lucida_console_.xml │ │ │ ├── style_font_family_symbol.xml │ │ │ ├── style_font_size_0_9em.xml │ │ │ ├── style_font_size_10pt.xml │ │ │ ├── style_font_size_10px.xml │ │ │ ├── style_font_size_smaller.xml │ │ │ ├── style_font_style_italic.xml │ │ │ ├── style_font_weight_bold.xml │ │ │ ├── style_height_100px.xml │ │ │ ├── style_height_2px.xml │ │ │ ├── style_letter_spacing_1px.xml │ │ │ ├── style_line_height_normal.xml │ │ │ ├── style_margin_0.xml │ │ │ ├── style_margin_0_15px_0_0.xml │ │ │ ├── style_margin_0px_important.xml │ │ │ ├── style_margin_5px.xml │ │ │ ├── style_margin_99999em.xml │ │ │ ├── style_margin_bottom_0pt.xml │ │ │ ├── style_margin_bottom_10px.xml │ │ │ ├── style_margin_left_5px.xml │ │ │ ├── style_margin_right_0px.xml │ │ │ ├── style_margin_top_0in.xml │ │ │ ├── style_margin_top_10px.xml │ │ │ ├── style_mso_ansi_language_nl.xml │ │ │ ├── style_mso_bidi_font_weight_normal.xml │ │ │ ├── style_mso_highlight_yellow.xml │ │ │ ├── style_mso_layout_grid_align_none.xml │ │ │ ├── style_mso_list_l0_level1_lfo1.xml │ │ │ ├── style_mso_no_proof_yes.xml │ │ │ ├── style_mso_spacerun_yes.xml │ │ │ ├── style_mso_tab_count_3.xml │ │ │ ├── style_overflow_auto.xml │ │ │ ├── style_padding_0.xml │ │ │ ├── style_padding_0_0_12px_12px.xml │ │ │ ├── style_padding_2ex.xml │ │ │ ├── style_padding_99999em.xml │ │ │ ├── style_padding_left_4px.xml │ │ │ ├── style_padding_right_0in.xml │ │ │ ├── style_position_absolute.xml │ │ │ ├── style_tab_stops_list_5in.xml │ │ │ ├── style_text_align_center.xml │ │ │ ├── style_text_align_left.xml │ │ │ ├── style_text_align_right.xml │ │ │ ├── style_text_decoration_underline.xml │ │ │ ├── style_text_indent_0_5in.xml │ │ │ ├── style_vertical_align_bottom.xml │ │ │ ├── style_vertical_align_top.xml │ │ │ ├── style_white_space_nowrap.xml │ │ │ ├── style_white_space_top.xml │ │ │ └── style_width_300px.xml │ │ └── wellformed │ │ ├── amp │ │ ├── amp01.xml │ │ ├── amp02.xml │ │ ├── amp03.xml │ │ ├── amp04.xml │ │ ├── amp05.xml │ │ ├── amp06.xml │ │ ├── amp07.xml │ │ ├── amp08.xml │ │ ├── amp09.xml │ │ ├── amp10.xml │ │ ├── amp11.xml │ │ ├── amp12.xml │ │ ├── amp13.xml │ │ ├── amp14.xml │ │ ├── amp15.xml │ │ ├── amp16.xml │ │ ├── amp17.xml │ │ ├── amp18.xml │ │ ├── amp19.xml │ │ ├── amp20.xml │ │ ├── amp21.xml │ │ ├── amp22.xml │ │ ├── amp23.xml │ │ ├── amp24.xml │ │ ├── amp25.xml │ │ ├── amp26.xml │ │ ├── amp27.xml │ │ ├── amp28.xml │ │ ├── amp29.xml │ │ ├── amp30.xml │ │ ├── amp31.xml │ │ ├── amp32.xml │ │ ├── amp33.xml │ │ ├── amp34.xml │ │ ├── amp35.xml │ │ ├── amp36.xml │ │ ├── amp37.xml │ │ ├── amp38.xml │ │ ├── amp39.xml │ │ ├── amp40.xml │ │ ├── amp41.xml │ │ ├── amp42.xml │ │ ├── amp43.xml │ │ ├── amp44.xml │ │ ├── amp45.xml │ │ ├── amp46.xml │ │ ├── amp47.xml │ │ ├── amp48.xml │ │ ├── amp49.xml │ │ ├── amp50.xml │ │ ├── amp51.xml │ │ ├── amp52.xml │ │ ├── amp53.xml │ │ ├── amp54.xml │ │ ├── amp55.xml │ │ ├── amp56.xml │ │ ├── amp57.xml │ │ ├── amp58.xml │ │ ├── amp59.xml │ │ ├── amp60.xml │ │ ├── amp61.xml │ │ ├── amp62.xml │ │ ├── amp63.xml │ │ ├── amp64.xml │ │ ├── attr01.xml │ │ ├── attr02.xml │ │ ├── attr03.xml │ │ ├── attr04.xml │ │ ├── attr05.xml │ │ └── attr06.xml │ │ ├── atom │ │ ├── atom_namespace_1.xml │ │ ├── atom_namespace_2.xml │ │ ├── atom_namespace_3.xml │ │ ├── atom_namespace_4.xml │ │ ├── atom_namespace_5.xml │ │ ├── entry_author_email.xml │ │ ├── entry_author_homepage.xml │ │ ├── entry_author_map_author.xml │ │ ├── entry_author_map_author_2.xml │ │ ├── entry_author_name.xml │ │ ├── entry_author_uri.xml │ │ ├── entry_author_url.xml │ │ ├── entry_content_mode_base64.xml │ │ ├── entry_content_mode_escaped.xml │ │ ├── entry_content_type.xml │ │ ├── entry_content_type_text_plain.xml │ │ ├── entry_content_value.xml │ │ ├── entry_contributor_email.xml │ │ ├── entry_contributor_homepage.xml │ │ ├── entry_contributor_multiple.xml │ │ ├── entry_contributor_name.xml │ │ ├── entry_contributor_uri.xml │ │ ├── entry_contributor_url.xml │ │ ├── entry_id.xml │ │ ├── entry_id_map_guid.xml │ │ ├── entry_link_alternate_map_link.xml │ │ ├── entry_link_alternate_map_link_2.xml │ │ ├── entry_link_href.xml │ │ ├── entry_link_multiple.xml │ │ ├── entry_link_rel.xml │ │ ├── entry_link_title.xml │ │ ├── entry_link_type.xml │ │ ├── entry_summary.xml │ │ ├── entry_summary_base64.xml │ │ ├── entry_summary_base64_2.xml │ │ ├── entry_summary_content_mode_base64.xml │ │ ├── entry_summary_content_mode_escaped.xml │ │ ├── entry_summary_content_type.xml │ │ ├── entry_summary_content_type_text_plain.xml │ │ ├── entry_summary_content_value.xml │ │ ├── entry_summary_escaped_markup.xml │ │ ├── entry_summary_inline_markup.xml │ │ ├── entry_summary_inline_markup_2.xml │ │ ├── entry_summary_naked_markup.xml │ │ ├── entry_summary_text_plain.xml │ │ ├── entry_title.xml │ │ ├── entry_title_base64.xml │ │ ├── entry_title_base64_2.xml │ │ ├── entry_title_content_mode_base64.xml │ │ ├── entry_title_content_mode_escaped.xml │ │ ├── entry_title_content_type.xml │ │ ├── entry_title_content_type_text_plain.xml │ │ ├── entry_title_content_value.xml │ │ ├── entry_title_escaped_markup.xml │ │ ├── entry_title_inline_markup.xml │ │ ├── entry_title_inline_markup_2.xml │ │ ├── entry_title_naked_markup.xml │ │ ├── entry_title_text_plain.xml │ │ ├── entry_title_text_plain_brackets.xml │ │ ├── feed_author_email.xml │ │ ├── feed_author_homepage.xml │ │ ├── feed_author_map_author.xml │ │ ├── feed_author_map_author_2.xml │ │ ├── feed_author_name.xml │ │ ├── feed_author_uri.xml │ │ ├── feed_author_url.xml │ │ ├── feed_contributor_email.xml │ │ ├── feed_contributor_homepage.xml │ │ ├── feed_contributor_multiple.xml │ │ ├── feed_contributor_name.xml │ │ ├── feed_contributor_uri.xml │ │ ├── feed_contributor_url.xml │ │ ├── feed_copyright.xml │ │ ├── feed_copyright_base64.xml │ │ ├── feed_copyright_base64_2.xml │ │ ├── feed_copyright_content_mode_base64.xml │ │ ├── feed_copyright_content_mode_escaped.xml │ │ ├── feed_copyright_content_type.xml │ │ ├── feed_copyright_content_type_text_plain.xml │ │ ├── feed_copyright_content_value.xml │ │ ├── feed_copyright_escaped_markup.xml │ │ ├── feed_copyright_inline_markup.xml │ │ ├── feed_copyright_inline_markup_2.xml │ │ ├── feed_copyright_naked_markup.xml │ │ ├── feed_copyright_text_plain.xml │ │ ├── feed_generator.xml │ │ ├── feed_generator_name.xml │ │ ├── feed_generator_url.xml │ │ ├── feed_generator_version.xml │ │ ├── feed_id.xml │ │ ├── feed_id_map_guid.xml │ │ ├── feed_info.xml │ │ ├── feed_info_base64.xml │ │ ├── feed_info_base64_2.xml │ │ ├── feed_info_content_mode_base64.xml │ │ ├── feed_info_content_mode_escaped.xml │ │ ├── feed_info_content_type.xml │ │ ├── feed_info_content_type_text_plain.xml │ │ ├── feed_info_content_value.xml │ │ ├── feed_info_escaped_markup.xml │ │ ├── feed_info_inline_markup.xml │ │ ├── feed_info_inline_markup_2.xml │ │ ├── feed_info_naked_markup.xml │ │ ├── feed_info_text_plain.xml │ │ ├── feed_link_alternate_map_link.xml │ │ ├── feed_link_alternate_map_link_2.xml │ │ ├── feed_link_href.xml │ │ ├── feed_link_multiple.xml │ │ ├── feed_link_rel.xml │ │ ├── feed_link_title.xml │ │ ├── feed_link_type.xml │ │ ├── feed_tagline.xml │ │ ├── feed_tagline_base64.xml │ │ ├── feed_tagline_base64_2.xml │ │ ├── feed_tagline_content_mode_base64.xml │ │ ├── feed_tagline_content_mode_escaped.xml │ │ ├── feed_tagline_content_type.xml │ │ ├── feed_tagline_content_type_text_plain.xml │ │ ├── feed_tagline_content_value.xml │ │ ├── feed_tagline_escaped_markup.xml │ │ ├── feed_tagline_inline_markup.xml │ │ ├── feed_tagline_inline_markup_2.xml │ │ ├── feed_tagline_naked_markup.xml │ │ ├── feed_tagline_text_plain.xml │ │ ├── feed_title.xml │ │ ├── feed_title_base64.xml │ │ ├── feed_title_base64_2.xml │ │ ├── feed_title_content_mode_base64.xml │ │ ├── feed_title_content_mode_escaped.xml │ │ ├── feed_title_content_type.xml │ │ ├── feed_title_content_type_text_plain.xml │ │ ├── feed_title_content_value.xml │ │ ├── feed_title_escaped_markup.xml │ │ ├── feed_title_inline_markup.xml │ │ ├── feed_title_inline_markup_2.xml │ │ ├── feed_title_naked_markup.xml │ │ ├── feed_title_text_plain.xml │ │ ├── media_player1.xml │ │ ├── media_player2.xml │ │ ├── media_thumbnail.xml │ │ ├── relative_uri.xml │ │ ├── relative_uri_inherit.xml │ │ └── relative_uri_inherit_2.xml │ │ ├── atom10 │ │ ├── ampersand_in_attr.xml │ │ ├── atom10_namespace.xml │ │ ├── atom10_version.xml │ │ ├── entry_author_email.xml │ │ ├── entry_author_map_author.xml │ │ ├── entry_author_map_author_2.xml │ │ ├── entry_author_name.xml │ │ ├── entry_author_uri.xml │ │ ├── entry_author_url.xml │ │ ├── entry_authors_email.xml │ │ ├── entry_authors_name.xml │ │ ├── entry_authors_uri.xml │ │ ├── entry_authors_url.xml │ │ ├── entry_category_label.xml │ │ ├── entry_category_scheme.xml │ │ ├── entry_category_term.xml │ │ ├── entry_category_term_non_ascii.xml │ │ ├── entry_content_application_xml.xml │ │ ├── entry_content_base64.xml │ │ ├── entry_content_base64_2.xml │ │ ├── entry_content_div_escaped_markup.xml │ │ ├── entry_content_escaped_markup.xml │ │ ├── entry_content_inline_markup.xml │ │ ├── entry_content_inline_markup_2.xml │ │ ├── entry_content_src.xml │ │ ├── entry_content_text_plain.xml │ │ ├── entry_content_text_plain_brackets.xml │ │ ├── entry_content_type.xml │ │ ├── entry_content_type_text.xml │ │ ├── entry_content_value.xml │ │ ├── entry_contributor_email.xml │ │ ├── entry_contributor_multiple.xml │ │ ├── entry_contributor_name.xml │ │ ├── entry_contributor_uri.xml │ │ ├── entry_contributor_url.xml │ │ ├── entry_id.xml │ │ ├── entry_id_map_guid.xml │ │ ├── entry_id_no_normalization_1.xml │ │ ├── entry_id_no_normalization_2.xml │ │ ├── entry_id_no_normalization_3.xml │ │ ├── entry_id_no_normalization_4.xml │ │ ├── entry_id_no_normalization_5.xml │ │ ├── entry_id_no_normalization_6.xml │ │ ├── entry_id_no_normalization_7.xml │ │ ├── entry_link_alternate_map_link.xml │ │ ├── entry_link_alternate_map_link_2.xml │ │ ├── entry_link_alternate_map_link_3.xml │ │ ├── entry_link_href.xml │ │ ├── entry_link_hreflang.xml │ │ ├── entry_link_length.xml │ │ ├── entry_link_multiple.xml │ │ ├── entry_link_no_rel.xml │ │ ├── entry_link_rel.xml │ │ ├── entry_link_rel_enclosure.xml │ │ ├── entry_link_rel_enclosure_map_enclosure_length.xml │ │ ├── entry_link_rel_enclosure_map_enclosure_type.xml │ │ ├── entry_link_rel_enclosure_map_enclosure_url.xml │ │ ├── entry_link_rel_license.xml │ │ ├── entry_link_rel_other.xml │ │ ├── entry_link_rel_related.xml │ │ ├── entry_link_rel_self.xml │ │ ├── entry_link_rel_via.xml │ │ ├── entry_link_title.xml │ │ ├── entry_link_type.xml │ │ ├── entry_rights.xml │ │ ├── entry_rights_content_value.xml │ │ ├── entry_rights_escaped_markup.xml │ │ ├── entry_rights_inline_markup.xml │ │ ├── entry_rights_inline_markup_2.xml │ │ ├── entry_rights_text_plain.xml │ │ ├── entry_rights_text_plain_brackets.xml │ │ ├── entry_rights_type_default.xml │ │ ├── entry_rights_type_text.xml │ │ ├── entry_source_author_email.xml │ │ ├── entry_source_author_map_author.xml │ │ ├── entry_source_author_map_author_2.xml │ │ ├── entry_source_author_name.xml │ │ ├── entry_source_author_uri.xml │ │ ├── entry_source_authors_email.xml │ │ ├── entry_source_authors_name.xml │ │ ├── entry_source_authors_uri.xml │ │ ├── entry_source_authors_url.xml │ │ ├── entry_source_category_label.xml │ │ ├── entry_source_category_scheme.xml │ │ ├── entry_source_category_term.xml │ │ ├── entry_source_category_term_non_ascii.xml │ │ ├── entry_source_contributor_email.xml │ │ ├── entry_source_contributor_multiple.xml │ │ ├── entry_source_contributor_name.xml │ │ ├── entry_source_contributor_uri.xml │ │ ├── entry_source_generator.xml │ │ ├── entry_source_generator_name.xml │ │ ├── entry_source_generator_uri.xml │ │ ├── entry_source_generator_version.xml │ │ ├── entry_source_icon.xml │ │ ├── entry_source_id.xml │ │ ├── entry_source_link_alternate_map_link.xml │ │ ├── entry_source_link_alternate_map_link_2.xml │ │ ├── entry_source_link_href.xml │ │ ├── entry_source_link_hreflang.xml │ │ ├── entry_source_link_length.xml │ │ ├── entry_source_link_multiple.xml │ │ ├── entry_source_link_no_rel.xml │ │ ├── entry_source_link_rel.xml │ │ ├── entry_source_link_rel_other.xml │ │ ├── entry_source_link_rel_related.xml │ │ ├── entry_source_link_rel_self.xml │ │ ├── entry_source_link_rel_via.xml │ │ ├── entry_source_link_title.xml │ │ ├── entry_source_link_type.xml │ │ ├── entry_source_logo.xml │ │ ├── entry_source_rights.xml │ │ ├── entry_source_rights_base64.xml │ │ ├── entry_source_rights_base64_2.xml │ │ ├── entry_source_rights_content_type.xml │ │ ├── entry_source_rights_content_type_text.xml │ │ ├── entry_source_rights_content_value.xml │ │ ├── entry_source_rights_escaped_markup.xml │ │ ├── entry_source_rights_inline_markup.xml │ │ ├── entry_source_rights_inline_markup_2.xml │ │ ├── entry_source_rights_text_plain.xml │ │ ├── entry_source_subittle_content_type_text.xml │ │ ├── entry_source_subtitle.xml │ │ ├── entry_source_subtitle_base64.xml │ │ ├── entry_source_subtitle_base64_2.xml │ │ ├── entry_source_subtitle_content_type.xml │ │ ├── entry_source_subtitle_content_value.xml │ │ ├── entry_source_subtitle_escaped_markup.xml │ │ ├── entry_source_subtitle_inline_markup.xml │ │ ├── entry_source_subtitle_inline_markup_2.xml │ │ ├── entry_source_subtitle_text_plain.xml │ │ ├── entry_source_title.xml │ │ ├── entry_source_title_base64.xml │ │ ├── entry_source_title_base64_2.xml │ │ ├── entry_source_title_content_type.xml │ │ ├── entry_source_title_content_type_text.xml │ │ ├── entry_source_title_content_value.xml │ │ ├── entry_source_title_escaped_markup.xml │ │ ├── entry_source_title_inline_markup.xml │ │ ├── entry_source_title_inline_markup_2.xml │ │ ├── entry_source_title_text_plain.xml │ │ ├── entry_summary.xml │ │ ├── entry_summary_base64.xml │ │ ├── entry_summary_base64_2.xml │ │ ├── entry_summary_content_value.xml │ │ ├── entry_summary_escaped_markup.xml │ │ ├── entry_summary_inline_markup.xml │ │ ├── entry_summary_inline_markup_2.xml │ │ ├── entry_summary_text_plain.xml │ │ ├── entry_summary_type_default.xml │ │ ├── entry_summary_type_text.xml │ │ ├── entry_title.xml │ │ ├── entry_title_base64.xml │ │ ├── entry_title_base64_2.xml │ │ ├── entry_title_content_value.xml │ │ ├── entry_title_escaped_markup.xml │ │ ├── entry_title_inline_markup.xml │ │ ├── entry_title_inline_markup_2.xml │ │ ├── entry_title_text_plain.xml │ │ ├── entry_title_text_plain_brackets.xml │ │ ├── entry_title_type_default.xml │ │ ├── entry_title_type_text.xml │ │ ├── feed_author_email.xml │ │ ├── feed_author_map_author.xml │ │ ├── feed_author_map_author_2.xml │ │ ├── feed_author_name.xml │ │ ├── feed_author_uri.xml │ │ ├── feed_author_url.xml │ │ ├── feed_authors_email.xml │ │ ├── feed_authors_name.xml │ │ ├── feed_authors_uri.xml │ │ ├── feed_authors_url.xml │ │ ├── feed_contributor_email.xml │ │ ├── feed_contributor_multiple.xml │ │ ├── feed_contributor_name.xml │ │ ├── feed_contributor_uri.xml │ │ ├── feed_contributor_url.xml │ │ ├── feed_generator.xml │ │ ├── feed_generator_name.xml │ │ ├── feed_generator_url.xml │ │ ├── feed_generator_version.xml │ │ ├── feed_icon.xml │ │ ├── feed_id.xml │ │ ├── feed_id_map_guid.xml │ │ ├── feed_link_alternate_map_link.xml │ │ ├── feed_link_alternate_map_link_2.xml │ │ ├── feed_link_href.xml │ │ ├── feed_link_hreflang.xml │ │ ├── feed_link_length.xml │ │ ├── feed_link_multiple.xml │ │ ├── feed_link_no_rel.xml │ │ ├── feed_link_rel.xml │ │ ├── feed_link_rel_other.xml │ │ ├── feed_link_rel_related.xml │ │ ├── feed_link_rel_self.xml │ │ ├── feed_link_rel_via.xml │ │ ├── feed_link_title.xml │ │ ├── feed_link_type.xml │ │ ├── feed_logo.xml │ │ ├── feed_rights.xml │ │ ├── feed_rights_base64.xml │ │ ├── feed_rights_base64_2.xml │ │ ├── feed_rights_content_type.xml │ │ ├── feed_rights_content_type_text.xml │ │ ├── feed_rights_content_value.xml │ │ ├── feed_rights_escaped_markup.xml │ │ ├── feed_rights_inline_markup.xml │ │ ├── feed_rights_inline_markup_2.xml │ │ ├── feed_rights_text_plain.xml │ │ ├── feed_subtitle.xml │ │ ├── feed_subtitle_base64.xml │ │ ├── feed_subtitle_base64_2.xml │ │ ├── feed_subtitle_content_type.xml │ │ ├── feed_subtitle_content_type_text.xml │ │ ├── feed_subtitle_content_value.xml │ │ ├── feed_subtitle_escaped_markup.xml │ │ ├── feed_subtitle_inline_markup.xml │ │ ├── feed_subtitle_inline_markup_2.xml │ │ ├── feed_subtitle_text_plain.xml │ │ ├── feed_title.xml │ │ ├── feed_title_base64.xml │ │ ├── feed_title_base64_2.xml │ │ ├── feed_title_content_type.xml │ │ ├── feed_title_content_type_text.xml │ │ ├── feed_title_content_value.xml │ │ ├── feed_title_escaped_markup.xml │ │ ├── feed_title_inline_markup.xml │ │ ├── feed_title_inline_markup_2.xml │ │ ├── feed_title_text_plain.xml │ │ ├── item_media_category_label.xml │ │ ├── item_media_category_multiple.xml │ │ ├── item_media_category_scheme1.xml │ │ ├── item_media_category_scheme2.xml │ │ ├── item_media_category_term.xml │ │ ├── item_media_title_type_plain.xml │ │ ├── missing_quote_in_attr.xml │ │ ├── qna.xml │ │ ├── quote_in_attr.xml │ │ ├── relative_uri.xml │ │ ├── relative_uri_inherit.xml │ │ ├── relative_uri_inherit_2.xml │ │ └── tag_in_attr.xml │ │ ├── base │ │ ├── cdf_item_abstract_xml_base.xml │ │ ├── entry_content_xml_base.xml │ │ ├── entry_content_xml_base_inherit.xml │ │ ├── entry_content_xml_base_inherit_2.xml │ │ ├── entry_content_xml_base_inherit_3.xml │ │ ├── entry_content_xml_base_inherit_4.xml │ │ ├── entry_summary_xml_base.xml │ │ ├── entry_summary_xml_base_inherit.xml │ │ ├── entry_summary_xml_base_inherit_2.xml │ │ ├── entry_summary_xml_base_inherit_3.xml │ │ ├── entry_summary_xml_base_inherit_4.xml │ │ ├── entry_title_xml_base.xml │ │ ├── entry_title_xml_base_inherit.xml │ │ ├── entry_title_xml_base_inherit_2.xml │ │ ├── entry_title_xml_base_inherit_3.xml │ │ ├── entry_title_xml_base_inherit_4.xml │ │ ├── feed_copyright_xml_base.xml │ │ ├── feed_copyright_xml_base_inherit.xml │ │ ├── feed_copyright_xml_base_inherit_2.xml │ │ ├── feed_copyright_xml_base_inherit_3.xml │ │ ├── feed_copyright_xml_base_inherit_4.xml │ │ ├── feed_info_xml_base.xml │ │ ├── feed_info_xml_base_inherit.xml │ │ ├── feed_info_xml_base_inherit_2.xml │ │ ├── feed_info_xml_base_inherit_3.xml │ │ ├── feed_info_xml_base_inherit_4.xml │ │ ├── feed_link_xml_base_iri.xml │ │ ├── feed_tagline_xml_base.xml │ │ ├── feed_tagline_xml_base_inherit.xml │ │ ├── feed_tagline_xml_base_inherit_2.xml │ │ ├── feed_tagline_xml_base_inherit_3.xml │ │ ├── feed_tagline_xml_base_inherit_4.xml │ │ ├── feed_title_xml_base.xml │ │ ├── feed_title_xml_base_inherit.xml │ │ ├── feed_title_xml_base_inherit_2.xml │ │ ├── feed_title_xml_base_inherit_3.xml │ │ ├── feed_title_xml_base_inherit_4.xml │ │ ├── http_channel_docs_base_content_location.xml │ │ ├── http_channel_docs_base_docuri.xml │ │ ├── http_channel_link_base_content_location.xml │ │ ├── http_channel_link_base_docuri.xml │ │ ├── http_entry_author_url_base_content_location.xml │ │ ├── http_entry_author_url_base_docuri.xml │ │ ├── http_entry_content_base64_base_content_location.xml │ │ ├── http_entry_content_base64_base_docuri.xml │ │ ├── http_entry_content_base_content_location.xml │ │ ├── http_entry_content_base_docuri.xml │ │ ├── http_entry_content_inline_base_content_location.xml │ │ ├── http_entry_content_inline_base_docuri.xml │ │ ├── http_entry_contributor_url_base_content_location.xml │ │ ├── http_entry_contributor_url_base_docuri.xml │ │ ├── http_entry_id_base_content_location.xml │ │ ├── http_entry_id_base_docuri.xml │ │ ├── http_entry_link_base_content_location.xml │ │ ├── http_entry_link_base_docuri.xml │ │ ├── http_entry_summary_base64_base_content_location.xml │ │ ├── http_entry_summary_base64_base_docuri.xml │ │ ├── http_entry_summary_base_content_location.xml │ │ ├── http_entry_summary_base_docuri.xml │ │ ├── http_entry_summary_inline_base_content_location.xml │ │ ├── http_entry_summary_inline_base_docuri.xml │ │ ├── http_entry_title_base64_base_content_location.xml │ │ ├── http_entry_title_base64_base_docuri.xml │ │ ├── http_entry_title_base_content_location.xml │ │ ├── http_entry_title_base_docuri.xml │ │ ├── http_entry_title_inline_base_content_location.xml │ │ ├── http_entry_title_inline_base_docuri.xml │ │ ├── http_feed_author_url_base_content_location.xml │ │ ├── http_feed_author_url_base_docuri.xml │ │ ├── http_feed_contributor_url_base_content_location.xml │ │ ├── http_feed_contributor_url_base_docuri.xml │ │ ├── http_feed_copyright_base64_base_content_location.xml │ │ ├── http_feed_copyright_base64_base_docuri.xml │ │ ├── http_feed_copyright_base_content_location.xml │ │ ├── http_feed_copyright_base_docuri.xml │ │ ├── http_feed_copyright_inline_base_content_location.xml │ │ ├── http_feed_copyright_inline_base_docuri.xml │ │ ├── http_feed_generator_url_base_content_location.xml │ │ ├── http_feed_generator_url_base_docuri.xml │ │ ├── http_feed_id_base_content_location.xml │ │ ├── http_feed_id_base_docuri.xml │ │ ├── http_feed_info_base64_base_content_location.xml │ │ ├── http_feed_info_base64_base_docuri.xml │ │ ├── http_feed_info_base_content_location.xml │ │ ├── http_feed_info_base_docuri.xml │ │ ├── http_feed_info_inline_base_content_location.xml │ │ ├── http_feed_info_inline_base_docuri.xml │ │ ├── http_feed_link_base_content_location.xml │ │ ├── http_feed_link_base_docuri.xml │ │ ├── http_feed_tagline_base64_base_content_location.xml │ │ ├── http_feed_tagline_base64_base_docuri.xml │ │ ├── http_feed_tagline_base_content_location.xml │ │ ├── http_feed_tagline_base_docuri.xml │ │ ├── http_feed_tagline_inline_base_content_location.xml │ │ ├── http_feed_tagline_inline_base_docuri.xml │ │ ├── http_feed_title_base64_base_content_location.xml │ │ ├── http_feed_title_base64_base_docuri.xml │ │ ├── http_feed_title_base_content_location.xml │ │ ├── http_feed_title_base_docuri.xml │ │ ├── http_feed_title_inline_base_content_location.xml │ │ ├── http_feed_title_inline_base_docuri.xml │ │ ├── http_item_body_base_content_location.xml │ │ ├── http_item_body_base_docuri.xml │ │ ├── http_item_comments_base_content_location.xml │ │ ├── http_item_comments_base_docuri.xml │ │ ├── http_item_content_encoded_base_content_location.xml │ │ ├── http_item_content_encoded_base_docuri.xml │ │ ├── http_item_description_base_content_location.xml │ │ ├── http_item_description_base_docuri.xml │ │ ├── http_item_description_spaces.xml │ │ ├── http_item_fullitem_base_content_location.xml │ │ ├── http_item_fullitem_base_docuri.xml │ │ ├── http_item_link_base_content_location.xml │ │ ├── http_item_link_base_docuri.xml │ │ ├── http_item_wfw_commentRSS_base_content_location.xml │ │ ├── http_item_wfw_commentRSS_base_docuri.xml │ │ ├── http_item_wfw_comment_base_content_location.xml │ │ ├── http_item_wfw_comment_base_docuri.xml │ │ ├── http_item_xhtml_body_base_content_location.xml │ │ ├── http_item_xhtml_body_base_docuri.xml │ │ ├── http_relative_xml_base.xml │ │ ├── http_relative_xml_base_2.xml │ │ ├── item_media_title1.xml │ │ ├── item_media_title2.xml │ │ ├── item_media_title3.xml │ │ ├── malformed_base.xml │ │ ├── relative_xml_base.xml │ │ ├── relative_xml_base_2.xml │ │ └── unsafe_base.xml │ │ ├── cdf │ │ ├── channel_abstract_map_description.xml │ │ ├── channel_abstract_map_tagline.xml │ │ ├── channel_href_map_link.xml │ │ ├── channel_href_map_links.xml │ │ ├── channel_title.xml │ │ ├── item_abstract_map_description.xml │ │ ├── item_abstract_map_summary.xml │ │ ├── item_href_map_link.xml │ │ ├── item_href_map_links.xml │ │ └── item_title.xml │ │ ├── date │ │ ├── cdf_channel_lastmod_map_date.xml │ │ ├── cdf_channel_lastmod_map_modified.xml │ │ ├── cdf_channel_lastmod_map_modified_parsed.xml │ │ ├── cdf_item_lastmod_map_date.xml │ │ ├── cdf_item_lastmod_map_modified.xml │ │ ├── cdf_item_lastmod_map_modified_parsed.xml │ │ ├── channel_dc_date.xml │ │ ├── channel_dc_date_map_modified.xml │ │ ├── channel_dc_date_w3dtf_utc.xml │ │ ├── channel_dc_date_w3dtf_utc_map_modified_parsed.xml │ │ ├── channel_dcterms_created.xml │ │ ├── channel_dcterms_created_w3dtf_utc.xml │ │ ├── channel_dcterms_issued.xml │ │ ├── channel_dcterms_issued_w3dtf_utc.xml │ │ ├── channel_dcterms_modified.xml │ │ ├── channel_dcterms_modified_map_date.xml │ │ ├── channel_dcterms_modified_w3dtf_utc.xml │ │ ├── channel_dcterms_modified_w3dtf_utc_map_date.xml │ │ ├── channel_lastBuildDate_map_updated.xml │ │ ├── channel_lastBuildDate_map_updated_parsed.xml │ │ ├── channel_pubDate.xml │ │ ├── channel_pubDate_asctime.xml │ │ ├── channel_pubDate_disney.xml │ │ ├── channel_pubDate_disney_at.xml │ │ ├── channel_pubDate_disney_ct.xml │ │ ├── channel_pubDate_disney_mt.xml │ │ ├── channel_pubDate_disney_pt.xml │ │ ├── channel_pubDate_greek_1.xml │ │ ├── channel_pubDate_hungarian_1.xml │ │ ├── channel_pubDate_iso8601_ym.xml │ │ ├── channel_pubDate_iso8601_ym_2.xml │ │ ├── channel_pubDate_iso8601_ymd.xml │ │ ├── channel_pubDate_iso8601_ymd_2.xml │ │ ├── channel_pubDate_iso8601_yo_2.xml │ │ ├── channel_pubDate_korean_nate.xml │ │ ├── channel_pubDate_map_modified.xml │ │ ├── channel_pubDate_mssql.xml │ │ ├── channel_pubDate_mssql_nofraction.xml │ │ ├── channel_pubDate_nosecond.xml │ │ ├── channel_pubDate_notime.xml │ │ ├── channel_pubDate_rfc2822.xml │ │ ├── channel_pubDate_rfc2822_rollover_june_31.xml │ │ ├── channel_pubDate_rfc822.xml │ │ ├── channel_pubDate_rfc822_etcgmt.xml │ │ ├── channel_pubDate_w3dtf_rollover_25h.xml │ │ ├── channel_pubDate_w3dtf_rollover_61m.xml │ │ ├── channel_pubDate_w3dtf_rollover_61s.xml │ │ ├── channel_pubDate_w3dtf_rollover_leapyear.xml │ │ ├── channel_pubDate_w3dtf_rollover_leapyear400.xml │ │ ├── channel_pubDate_w3dtf_rollover_nonleapyear.xml │ │ ├── channel_pubDate_w3dtf_sf.xml │ │ ├── channel_pubDate_w3dtf_tokyo.xml │ │ ├── channel_pubDate_w3dtf_utc.xml │ │ ├── channel_pubDate_w3dtf_y.xml │ │ ├── channel_pubDate_w3dtf_ym.xml │ │ ├── channel_pubDate_w3dtf_ymd.xml │ │ ├── channel_pubDate_w3dtf_ymd_2.xml │ │ ├── entry_created.xml │ │ ├── entry_created_multiple_values.xml │ │ ├── entry_created_w3dtf_fractional_second.xml │ │ ├── entry_created_w3dtf_utc.xml │ │ ├── entry_issued.xml │ │ ├── entry_issued_w3dtf_utc.xml │ │ ├── entry_modified.xml │ │ ├── entry_modified_map_date.xml │ │ ├── entry_modified_w3dtf_utc.xml │ │ ├── entry_published_parsed_date_overwriting.xml │ │ ├── entry_published_w3dtf_utc.xml │ │ ├── entry_source_updated_w3dtf_utc.xml │ │ ├── entry_updated_multiple_values.xml │ │ ├── entry_updated_rfc822_etcgmt.xml │ │ ├── entry_updated_w3dtf_utc.xml │ │ ├── feed_modified.xml │ │ ├── feed_modified_asctime.xml │ │ ├── feed_modified_disney.xml │ │ ├── feed_modified_disney_at.xml │ │ ├── feed_modified_disney_ct.xml │ │ ├── feed_modified_disney_mt.xml │ │ ├── feed_modified_disney_pt.xml │ │ ├── feed_modified_google.xml │ │ ├── feed_modified_iso8601_ym.xml │ │ ├── feed_modified_iso8601_ym_2.xml │ │ ├── feed_modified_iso8601_ymd.xml │ │ ├── feed_modified_iso8601_ymd_2.xml │ │ ├── feed_modified_iso8601_yo_2.xml │ │ ├── feed_modified_map_date.xml │ │ ├── feed_modified_rfc2822.xml │ │ ├── feed_modified_rfc2822_rollover_june_31.xml │ │ ├── feed_modified_rfc822.xml │ │ ├── feed_modified_w3dtf_rollover_leapyear.xml │ │ ├── feed_modified_w3dtf_rollover_leapyear400.xml │ │ ├── feed_modified_w3dtf_rollover_nonleapyear.xml │ │ ├── feed_modified_w3dtf_sf.xml │ │ ├── feed_modified_w3dtf_tokyo.xml │ │ ├── feed_modified_w3dtf_utc.xml │ │ ├── feed_modified_w3dtf_y.xml │ │ ├── feed_modified_w3dtf_ym.xml │ │ ├── feed_modified_w3dtf_ymd.xml │ │ ├── feed_modified_w3dtf_ymd_2.xml │ │ ├── feed_updated_frac_secs.xml │ │ ├── feed_updated_w3dtf_utc.xml │ │ ├── item_dc_date.xml │ │ ├── item_dc_date_map_modified.xml │ │ ├── item_dc_date_w3dtf_utc.xml │ │ ├── item_dc_date_w3dtf_utc_map_modified_parsed.xml │ │ ├── item_dcterms_created.xml │ │ ├── item_dcterms_created_w3dtf_utc.xml │ │ ├── item_dcterms_issued.xml │ │ ├── item_dcterms_issued_w3dtf_utc.xml │ │ ├── item_dcterms_modified.xml │ │ ├── item_dcterms_modified_map_date.xml │ │ ├── item_dcterms_modified_w3dtf_utc.xml │ │ ├── item_dcterms_modified_w3dtf_utc_map_date.xml │ │ ├── item_expirationDate.xml │ │ ├── item_expirationDate_multiple_values.xml │ │ ├── item_expirationDate_rfc2822.xml │ │ ├── item_pubDate.xml │ │ ├── item_pubDate_euc-kr.xml │ │ ├── item_pubDate_map_modified.xml │ │ ├── item_pubDate_perforce.xml │ │ └── item_pubDate_rfc2822.xml │ │ ├── encoding │ │ ├── big5.xml │ │ ├── csucs4.xml │ │ ├── csunicode.xml │ │ ├── demoronize-1.xml │ │ ├── demoronize-2.xml │ │ ├── demoronize-3.xml │ │ ├── double-encoded-html.xml │ │ ├── encoding_attribute_crash.xml │ │ ├── encoding_attribute_crash_2.xml │ │ ├── euc-kr-attribute.xml │ │ ├── euc-kr-item.xml │ │ ├── euc-kr.xml │ │ ├── http_application_atom_xml_charset.xml │ │ ├── http_application_atom_xml_charset_overrides_encoding.xml │ │ ├── http_application_atom_xml_default.xml │ │ ├── http_application_atom_xml_encoding.xml │ │ ├── http_application_atom_xml_gb2312_charset.xml │ │ ├── http_application_atom_xml_gb2312_charset_overrides_encoding.xml │ │ ├── http_application_atom_xml_gb2312_encoding.xml │ │ ├── http_application_rss_xml_charset.xml │ │ ├── http_application_rss_xml_charset_overrides_encoding.xml │ │ ├── http_application_rss_xml_default.xml │ │ ├── http_application_rss_xml_encoding.xml │ │ ├── http_application_xml_charset.xml │ │ ├── http_application_xml_charset_overrides_encoding.xml │ │ ├── http_application_xml_default.xml │ │ ├── http_application_xml_dtd_charset.xml │ │ ├── http_application_xml_dtd_charset_overrides_encoding.xml │ │ ├── http_application_xml_dtd_default.xml │ │ ├── http_application_xml_dtd_encoding.xml │ │ ├── http_application_xml_encoding.xml │ │ ├── http_application_xml_epe_charset.xml │ │ ├── http_application_xml_epe_charset_overrides_encoding.xml │ │ ├── http_application_xml_epe_default.xml │ │ ├── http_application_xml_epe_encoding.xml │ │ ├── http_encoding_attribute_crash.xml │ │ ├── http_i18n.xml │ │ ├── http_text_atom_xml_charset.xml │ │ ├── http_text_atom_xml_charset_overrides_encoding.xml │ │ ├── http_text_atom_xml_default.xml │ │ ├── http_text_atom_xml_encoding.xml │ │ ├── http_text_rss_xml_charset.xml │ │ ├── http_text_rss_xml_charset_overrides_encoding.xml │ │ ├── http_text_rss_xml_default.xml │ │ ├── http_text_rss_xml_encoding.xml │ │ ├── http_text_xml_bogus_charset.xml │ │ ├── http_text_xml_bogus_param.xml │ │ ├── http_text_xml_charset.xml │ │ ├── http_text_xml_charset_2.xml │ │ ├── http_text_xml_charset_overrides_encoding.xml │ │ ├── http_text_xml_charset_overrides_encoding_2.xml │ │ ├── http_text_xml_default.xml │ │ ├── http_text_xml_epe_charset.xml │ │ ├── http_text_xml_epe_charset_overrides_encoding.xml │ │ ├── http_text_xml_epe_default.xml │ │ ├── http_text_xml_epe_encoding.xml │ │ ├── http_text_xml_qs.xml │ │ ├── iso-10646-ucs-2.xml │ │ ├── iso-10646-ucs-4.xml │ │ ├── no_content_type_default.xml │ │ ├── no_content_type_encoding.xml │ │ ├── u16.xml │ │ ├── ucs-2.xml │ │ ├── ucs-4.xml │ │ ├── utf-16be-autodetect.xml │ │ ├── utf-16be-bom.xml │ │ ├── utf-16be.xml │ │ ├── utf-16le-autodetect.xml │ │ ├── utf-16le-bom.xml │ │ ├── utf-16le.xml │ │ ├── utf-32be-autodetect.xml │ │ ├── utf-32be-bom.xml │ │ ├── utf-32be.xml │ │ ├── utf-32le-autodetect.xml │ │ ├── utf-32le-bom.xml │ │ ├── utf-32le.xml │ │ ├── utf-8-bom.xml │ │ ├── utf16.xml │ │ ├── utf_16.xml │ │ ├── utf_32.xml │ │ ├── x80_437.xml │ │ ├── x80_850.xml │ │ ├── x80_852.xml │ │ ├── x80_855.xml │ │ ├── x80_857.xml │ │ ├── x80_860.xml │ │ ├── x80_861.xml │ │ ├── x80_862.xml │ │ ├── x80_863.xml │ │ ├── x80_865.xml │ │ ├── x80_866.xml │ │ ├── x80_cp037.xml │ │ ├── x80_cp1125.xml │ │ ├── x80_cp1250.xml │ │ ├── x80_cp1251.xml │ │ ├── x80_cp1252.xml │ │ ├── x80_cp1253.xml │ │ ├── x80_cp1254.xml │ │ ├── x80_cp1255.xml │ │ ├── x80_cp1256.xml │ │ ├── x80_cp1257.xml │ │ ├── x80_cp1258.xml │ │ ├── x80_cp437.xml │ │ ├── x80_cp500.xml │ │ ├── x80_cp737.xml │ │ ├── x80_cp775.xml │ │ ├── x80_cp850.xml │ │ ├── x80_cp852.xml │ │ ├── x80_cp855.xml │ │ ├── x80_cp856.xml │ │ ├── x80_cp857.xml │ │ ├── x80_cp860.xml │ │ ├── x80_cp861.xml │ │ ├── x80_cp862.xml │ │ ├── x80_cp863.xml │ │ ├── x80_cp864.xml │ │ ├── x80_cp865.xml │ │ ├── x80_cp866.xml │ │ ├── x80_cp874.xml │ │ ├── x80_cp875.xml │ │ ├── x80_cp_is.xml │ │ ├── x80_csibm037.xml │ │ ├── x80_csibm500.xml │ │ ├── x80_csibm855.xml │ │ ├── x80_csibm857.xml │ │ ├── x80_csibm860.xml │ │ ├── x80_csibm861.xml │ │ ├── x80_csibm863.xml │ │ ├── x80_csibm864.xml │ │ ├── x80_csibm865.xml │ │ ├── x80_csibm866.xml │ │ ├── x80_cskoi8r.xml │ │ ├── x80_csmacintosh.xml │ │ ├── x80_cspc775baltic.xml │ │ ├── x80_cspc850multilingual.xml │ │ ├── x80_cspc862latinhebrew.xml │ │ ├── x80_cspc8codepage437.xml │ │ ├── x80_cspcp852.xml │ │ ├── x80_dbcs.xml │ │ ├── x80_ebcdic-cp-be.xml │ │ ├── x80_ebcdic-cp-ca.xml │ │ ├── x80_ebcdic-cp-ch.xml │ │ ├── x80_ebcdic-cp-nl.xml │ │ ├── x80_ebcdic-cp-us.xml │ │ ├── x80_ebcdic-cp-wt.xml │ │ ├── x80_ebcdic_cp_be.xml │ │ ├── x80_ebcdic_cp_ca.xml │ │ ├── x80_ebcdic_cp_ch.xml │ │ ├── x80_ebcdic_cp_nl.xml │ │ ├── x80_ebcdic_cp_us.xml │ │ ├── x80_ebcdic_cp_wt.xml │ │ ├── x80_ibm037.xml │ │ ├── x80_ibm039.xml │ │ ├── x80_ibm1140.xml │ │ ├── x80_ibm437.xml │ │ ├── x80_ibm500.xml │ │ ├── x80_ibm775.xml │ │ ├── x80_ibm850.xml │ │ ├── x80_ibm852.xml │ │ ├── x80_ibm855.xml │ │ ├── x80_ibm857.xml │ │ ├── x80_ibm860.xml │ │ ├── x80_ibm861.xml │ │ ├── x80_ibm862.xml │ │ ├── x80_ibm863.xml │ │ ├── x80_ibm864.xml │ │ ├── x80_ibm865.xml │ │ ├── x80_ibm866.xml │ │ ├── x80_koi8-r.xml │ │ ├── x80_koi8-t.xml │ │ ├── x80_koi8-u.xml │ │ ├── x80_mac-cyrillic.xml │ │ ├── x80_mac.xml │ │ ├── x80_maccentraleurope.xml │ │ ├── x80_maccyrillic.xml │ │ ├── x80_macgreek.xml │ │ ├── x80_maciceland.xml │ │ ├── x80_macintosh.xml │ │ ├── x80_maclatin2.xml │ │ ├── x80_macroman.xml │ │ ├── x80_macturkish.xml │ │ ├── x80_ms-ansi.xml │ │ ├── x80_ms-arab.xml │ │ ├── x80_ms-cyrl.xml │ │ ├── x80_ms-ee.xml │ │ ├── x80_ms-greek.xml │ │ ├── x80_ms-hebr.xml │ │ ├── x80_ms-turk.xml │ │ ├── x80_tcvn-5712.xml │ │ ├── x80_tcvn.xml │ │ ├── x80_tcvn5712-1.xml │ │ ├── x80_viscii.xml │ │ ├── x80_winbaltrim.xml │ │ ├── x80_windows-1250.xml │ │ ├── x80_windows-1251.xml │ │ ├── x80_windows-1252.xml │ │ ├── x80_windows-1253.xml │ │ ├── x80_windows-1254.xml │ │ ├── x80_windows-1255.xml │ │ ├── x80_windows-1256.xml │ │ ├── x80_windows-1257.xml │ │ ├── x80_windows-1258.xml │ │ ├── x80_windows_1250.xml │ │ ├── x80_windows_1251.xml │ │ ├── x80_windows_1252.xml │ │ ├── x80_windows_1253.xml │ │ ├── x80_windows_1254.xml │ │ ├── x80_windows_1255.xml │ │ ├── x80_windows_1256.xml │ │ ├── x80_windows_1257.xml │ │ └── x80_windows_1258.xml │ │ ├── feedburner │ │ └── feedburner_browserfriendly.xml │ │ ├── htmlish │ │ ├── bool_expr.xml │ │ ├── code.xml │ │ ├── copy_ascii.xml │ │ ├── copy_dec.xml │ │ ├── copy_hex.xml │ │ ├── copy_name.xml │ │ ├── corp_name.xml │ │ ├── entity.xml │ │ ├── html_a.xml │ │ ├── html_b.xml │ │ ├── html_i.xml │ │ ├── plain_text.xml │ │ ├── rss.xml │ │ └── url.xml │ │ ├── http │ │ ├── headers_content_location-relative.xml │ │ ├── headers_content_location-unsafe.xml │ │ ├── headers_etag.xml │ │ ├── headers_foo.xml │ │ └── headers_no_etag.xml │ │ ├── itunes │ │ ├── itunes_channel_block.xml │ │ ├── itunes_channel_block_false.xml │ │ ├── itunes_channel_block_no.xml │ │ ├── itunes_channel_block_true.xml │ │ ├── itunes_channel_block_uppercase.xml │ │ ├── itunes_channel_block_whitespace.xml │ │ ├── itunes_channel_category.xml │ │ ├── itunes_channel_category_nested.xml │ │ ├── itunes_channel_category_scheme.xml │ │ ├── itunes_channel_explicit.xml │ │ ├── itunes_channel_explicit_clean.xml │ │ ├── itunes_channel_explicit_false.xml │ │ ├── itunes_channel_explicit_no.xml │ │ ├── itunes_channel_explicit_true.xml │ │ ├── itunes_channel_explicit_uppercase.xml │ │ ├── itunes_channel_explicit_whitespace.xml │ │ ├── itunes_channel_image.xml │ │ ├── itunes_channel_image_no_href.xml │ │ ├── itunes_channel_keywords.xml │ │ ├── itunes_channel_keywords_duplicate.xml │ │ ├── itunes_channel_keywords_duplicate_2.xml │ │ ├── itunes_channel_keywords_multiple.xml │ │ ├── itunes_channel_link_image.xml │ │ ├── itunes_channel_owner_email.xml │ │ ├── itunes_channel_owner_name.xml │ │ ├── itunes_channel_subtitle.xml │ │ ├── itunes_channel_summary.xml │ │ ├── itunes_core_element_uppercase.xml │ │ ├── itunes_item_author_map_author.xml │ │ ├── itunes_item_block.xml │ │ ├── itunes_item_block_false.xml │ │ ├── itunes_item_block_no.xml │ │ ├── itunes_item_block_true.xml │ │ ├── itunes_item_block_uppercase.xml │ │ ├── itunes_item_block_whitespace.xml │ │ ├── itunes_item_category.xml │ │ ├── itunes_item_category_nested.xml │ │ ├── itunes_item_category_scheme.xml │ │ ├── itunes_item_duration.xml │ │ ├── itunes_item_explicit.xml │ │ ├── itunes_item_explicit_clean.xml │ │ ├── itunes_item_explicit_false.xml │ │ ├── itunes_item_explicit_no.xml │ │ ├── itunes_item_explicit_true.xml │ │ ├── itunes_item_explicit_uppercase.xml │ │ ├── itunes_item_explicit_whitespace.xml │ │ ├── itunes_item_image.xml │ │ ├── itunes_item_link_image.xml │ │ ├── itunes_item_subtitle.xml │ │ ├── itunes_item_summary.xml │ │ ├── itunes_namespace.xml │ │ ├── itunes_namespace_example.xml │ │ ├── itunes_namespace_lowercase.xml │ │ └── itunes_namespace_uppercase.xml │ │ ├── lang │ │ ├── channel_dc_language.xml │ │ ├── channel_language.xml │ │ ├── entry_content_xml_lang.xml │ │ ├── entry_content_xml_lang_blank.xml │ │ ├── entry_content_xml_lang_blank_2.xml │ │ ├── entry_content_xml_lang_blank_3.xml │ │ ├── entry_content_xml_lang_inherit.xml │ │ ├── entry_content_xml_lang_inherit_2.xml │ │ ├── entry_content_xml_lang_inherit_3.xml │ │ ├── entry_content_xml_lang_inherit_4.xml │ │ ├── entry_content_xml_lang_underscore.xml │ │ ├── entry_summary_xml_lang.xml │ │ ├── entry_summary_xml_lang_blank.xml │ │ ├── entry_summary_xml_lang_inherit.xml │ │ ├── entry_summary_xml_lang_inherit_2.xml │ │ ├── entry_summary_xml_lang_inherit_3.xml │ │ ├── entry_summary_xml_lang_inherit_4.xml │ │ ├── entry_title_xml_lang.xml │ │ ├── entry_title_xml_lang_blank.xml │ │ ├── entry_title_xml_lang_inherit.xml │ │ ├── entry_title_xml_lang_inherit_2.xml │ │ ├── entry_title_xml_lang_inherit_3.xml │ │ ├── entry_title_xml_lang_inherit_4.xml │ │ ├── feed_copyright_xml_lang.xml │ │ ├── feed_copyright_xml_lang_blank.xml │ │ ├── feed_copyright_xml_lang_inherit.xml │ │ ├── feed_copyright_xml_lang_inherit_2.xml │ │ ├── feed_copyright_xml_lang_inherit_3.xml │ │ ├── feed_copyright_xml_lang_inherit_4.xml │ │ ├── feed_info_xml_lang.xml │ │ ├── feed_info_xml_lang_blank.xml │ │ ├── feed_info_xml_lang_inherit.xml │ │ ├── feed_info_xml_lang_inherit_2.xml │ │ ├── feed_info_xml_lang_inherit_3.xml │ │ ├── feed_info_xml_lang_inherit_4.xml │ │ ├── feed_language.xml │ │ ├── feed_language_override.xml │ │ ├── feed_not_xml_lang.xml │ │ ├── feed_not_xml_lang_2.xml │ │ ├── feed_tagline_xml_lang.xml │ │ ├── feed_tagline_xml_lang_blank.xml │ │ ├── feed_tagline_xml_lang_inherit.xml │ │ ├── feed_tagline_xml_lang_inherit_2.xml │ │ ├── feed_tagline_xml_lang_inherit_3.xml │ │ ├── feed_tagline_xml_lang_inherit_4.xml │ │ ├── feed_title_xml_lang.xml │ │ ├── feed_title_xml_lang_blank.xml │ │ ├── feed_title_xml_lang_inherit.xml │ │ ├── feed_title_xml_lang_inherit_2.xml │ │ ├── feed_title_xml_lang_inherit_3.xml │ │ ├── feed_title_xml_lang_inherit_4.xml │ │ ├── feed_xml_lang.xml │ │ ├── feed_xml_lang_underscore.xml │ │ ├── http_content_language.xml │ │ ├── http_content_language_entry_title_inherit.xml │ │ ├── http_content_language_entry_title_inherit_2.xml │ │ ├── http_content_language_feed_language.xml │ │ ├── http_content_language_feed_xml_lang.xml │ │ ├── item_content_encoded_xml_lang.xml │ │ ├── item_content_encoded_xml_lang_inherit.xml │ │ ├── item_dc_language.xml │ │ ├── item_fullitem_xml_lang.xml │ │ ├── item_fullitem_xml_lang_inherit.xml │ │ ├── item_xhtml_body_xml_lang.xml │ │ └── item_xhtml_body_xml_lang_inherit.xml │ │ ├── mf_hcard │ │ ├── 2-4-2-vcard.xml │ │ ├── 3-1-1-fn-unicode-char.xml │ │ ├── 3-1-1-fn.xml │ │ ├── 3-1-2-n-2-plural.xml │ │ ├── 3-1-2-n-2-singular.xml │ │ ├── 3-1-2-n-plural.xml │ │ ├── 3-1-2-n-singular.xml │ │ ├── 3-1-3-nickname-2-plural.xml │ │ ├── 3-1-3-nickname-2-singular.xml │ │ ├── 3-1-3-nickname.xml │ │ ├── 3-1-4-photo-inline.xml │ │ ├── 3-1-4-photo.xml │ │ ├── 3-1-5-bday-2.xml │ │ ├── 3-1-5-bday-3.xml │ │ ├── 3-1-5-bday.xml │ │ ├── 3-2-1-adr.xml │ │ ├── 3-2-2-label.xml │ │ ├── 3-3-1-tel.xml │ │ ├── 3-3-2-email-2.xml │ │ ├── 3-3-2-email-3.xml │ │ ├── 3-3-2-email.xml │ │ ├── 3-3-3-mailer.xml │ │ ├── 3-4-1-tz-2.xml │ │ ├── 3-4-1-tz.xml │ │ ├── 3-4-2-geo.xml │ │ ├── 3-5-1-title.xml │ │ ├── 3-5-2-role.xml │ │ ├── 3-5-3-logo-2.xml │ │ ├── 3-5-3-logo.xml │ │ ├── 3-5-4-agent-2.xml │ │ ├── 3-5-4-agent.xml │ │ ├── 3-5-5-org.xml │ │ ├── 3-6-1-categories-2-plural.xml │ │ ├── 3-6-1-categories-2-singular.xml │ │ ├── 3-6-1-categories.xml │ │ ├── 3-6-2-note.xml │ │ ├── 3-6-4-rev-2.xml │ │ ├── 3-6-4-rev.xml │ │ ├── 3-6-5-sort-string-2.xml │ │ ├── 3-6-5-sort-string-3.xml │ │ ├── 3-6-5-sort-string-4.xml │ │ ├── 3-6-5-sort-string-5.xml │ │ ├── 3-6-5-sort-string.xml │ │ ├── 3-6-6-sound-2.xml │ │ ├── 3-6-6-sound.xml │ │ ├── 3-6-7-uid.xml │ │ ├── 3-6-8-url.xml │ │ ├── 3-7-1-class-2.xml │ │ ├── 3-7-1-class-3.xml │ │ ├── 3-7-1-class.xml │ │ ├── 3-7-2-key.xml │ │ └── 7-authors.xml │ │ ├── mf_rel_enclosure │ │ ├── rel_enclosure_href.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_avi.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_bin.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_bz2.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_deb.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_dmg.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_exe.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_gz.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_hqx.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_img.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_iso.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_jar.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_m4a.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_m4v.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_mp2.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_mp3.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_mp4.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_msi.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_ogg.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_rar.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_rpm.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_sit.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_sitx.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_tar.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_tbz2.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_tgz.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_wma.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_wmv.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_z.xml │ │ ├── rel_enclosure_href_autodetect_by_ext_zip.xml │ │ ├── rel_enclosure_href_autodetect_by_type_application_ogg.xml │ │ ├── rel_enclosure_href_autodetect_by_type_audio.xml │ │ ├── rel_enclosure_href_autodetect_by_type_video.xml │ │ ├── rel_enclosure_no_autodetect.xml │ │ ├── rel_enclosure_no_autodetect_xml.xml │ │ ├── rel_enclosure_title.xml │ │ ├── rel_enclosure_title_from_link_text.xml │ │ ├── rel_enclosure_title_overrides_link_text.xml │ │ └── rel_enclosure_type.xml │ │ ├── mf_rel_tag │ │ ├── rel_tag_duplicate.xml │ │ ├── rel_tag_label.xml │ │ ├── rel_tag_scheme.xml │ │ ├── rel_tag_term.xml │ │ └── rel_tag_term_trailing_slash.xml │ │ ├── mf_xfn │ │ ├── xfn_acquaintance.xml │ │ ├── xfn_brother.xml │ │ ├── xfn_child.xml │ │ ├── xfn_co-resident.xml │ │ ├── xfn_co-worker.xml │ │ ├── xfn_colleague.xml │ │ ├── xfn_contact.xml │ │ ├── xfn_coresident.xml │ │ ├── xfn_coworker.xml │ │ ├── xfn_crush.xml │ │ ├── xfn_date.xml │ │ ├── xfn_friend.xml │ │ ├── xfn_href.xml │ │ ├── xfn_husband.xml │ │ ├── xfn_kin.xml │ │ ├── xfn_me.xml │ │ ├── xfn_met.xml │ │ ├── xfn_multiple.xml │ │ ├── xfn_muse.xml │ │ ├── xfn_name.xml │ │ ├── xfn_neighbor.xml │ │ ├── xfn_parent.xml │ │ ├── xfn_relative.xml │ │ ├── xfn_sibling.xml │ │ ├── xfn_sister.xml │ │ ├── xfn_spouse.xml │ │ ├── xfn_sweetheart.xml │ │ └── xfn_wife.xml │ │ ├── namespace │ │ ├── atommathml.xml │ │ ├── atomsvg.xml │ │ ├── atomsvgdctitle.xml │ │ ├── atomsvgdesc.xml │ │ ├── atomsvgtitle.xml │ │ ├── atomthreading.xml │ │ ├── atomthreadingwithentry.xml │ │ ├── atomxlink.xml │ │ ├── rss1.0withModules.xml │ │ ├── rss1.0withModulesNoDefNS.xml │ │ ├── rss1.0withModulesNoDefNSLocalNameClash.xml │ │ ├── rss2.0NSwithModules.xml │ │ ├── rss2.0NSwithModulesNoDefNS.xml │ │ ├── rss2.0NSwithModulesNoDefNSLocalNameClash.xml │ │ ├── rss2.0mathml.xml │ │ ├── rss2.0noNSwithModules.xml │ │ ├── rss2.0noNSwithModulesLocalNameClash.xml │ │ ├── rss2.0svg.xml │ │ ├── rss2.0svg5.xml │ │ ├── rss2.0svgtitle.xml │ │ ├── rss2.0withAtomNS.xml │ │ └── rss2.0xlink.xml │ │ ├── rdf │ │ ├── doctype_contains_entity_decl.xml │ │ ├── rdf_channel_description.xml │ │ ├── rdf_channel_link.xml │ │ ├── rdf_channel_title.xml │ │ ├── rdf_item_description.xml │ │ ├── rdf_item_link.xml │ │ ├── rdf_item_rdf_about.xml │ │ ├── rdf_item_title.xml │ │ ├── rss090_channel_title.xml │ │ ├── rss090_item_title.xml │ │ ├── rss_version_10.xml │ │ └── rss_version_10_not_default_ns.xml │ │ ├── rss │ │ ├── aaa_wellformed.xml │ │ ├── channel_author.xml │ │ ├── channel_author_map_author_detail_email.xml │ │ ├── channel_author_map_author_detail_email_2.xml │ │ ├── channel_author_map_author_detail_email_3.xml │ │ ├── channel_author_map_author_detail_name.xml │ │ ├── channel_author_map_author_detail_name_2.xml │ │ ├── channel_category.xml │ │ ├── channel_category_domain.xml │ │ ├── channel_category_multiple.xml │ │ ├── channel_category_multiple_2.xml │ │ ├── channel_cloud_domain.xml │ │ ├── channel_cloud_path.xml │ │ ├── channel_cloud_port.xml │ │ ├── channel_cloud_protocol.xml │ │ ├── channel_cloud_registerProcedure.xml │ │ ├── channel_copyright.xml │ │ ├── channel_dc_author.xml │ │ ├── channel_dc_author_map_author_detail_email.xml │ │ ├── channel_dc_author_map_author_detail_name.xml │ │ ├── channel_dc_contributor.xml │ │ ├── channel_dc_creator.xml │ │ ├── channel_dc_creator_map_author_detail_email.xml │ │ ├── channel_dc_creator_map_author_detail_name.xml │ │ ├── channel_dc_publisher.xml │ │ ├── channel_dc_publisher_email.xml │ │ ├── channel_dc_publisher_name.xml │ │ ├── channel_dc_rights.xml │ │ ├── channel_dc_subject.xml │ │ ├── channel_dc_subject_2.xml │ │ ├── channel_dc_subject_multiple.xml │ │ ├── channel_dc_title.xml │ │ ├── channel_description.xml │ │ ├── channel_description_escaped_markup.xml │ │ ├── channel_description_map_tagline.xml │ │ ├── channel_description_naked_markup.xml │ │ ├── channel_description_shorttag.xml │ │ ├── channel_docs.xml │ │ ├── channel_generator.xml │ │ ├── channel_image_description.xml │ │ ├── channel_image_height.xml │ │ ├── channel_image_link.xml │ │ ├── channel_image_link_bleed.xml │ │ ├── channel_image_link_conflict.xml │ │ ├── channel_image_title.xml │ │ ├── channel_image_title_conflict.xml │ │ ├── channel_image_url.xml │ │ ├── channel_image_width.xml │ │ ├── channel_link.xml │ │ ├── channel_managingEditor.xml │ │ ├── channel_managingEditor_map_author_detail_email.xml │ │ ├── channel_managingEditor_map_author_detail_name.xml │ │ ├── channel_textInput_description.xml │ │ ├── channel_textInput_description_conflict.xml │ │ ├── channel_textInput_link.xml │ │ ├── channel_textInput_link_bleed.xml │ │ ├── channel_textInput_link_conflict.xml │ │ ├── channel_textInput_name.xml │ │ ├── channel_textInput_title.xml │ │ ├── channel_textInput_title_conflict.xml │ │ ├── channel_title.xml │ │ ├── channel_title_apos.xml │ │ ├── channel_title_gt.xml │ │ ├── channel_title_lt.xml │ │ ├── channel_ttl.xml │ │ ├── channel_webMaster.xml │ │ ├── channel_webMaster_email.xml │ │ ├── channel_webMaster_name.xml │ │ ├── item_author.xml │ │ ├── item_author_map_author_detail_email.xml │ │ ├── item_author_map_author_detail_email2.xml │ │ ├── item_author_map_author_detail_email3.xml │ │ ├── item_author_map_author_detail_name.xml │ │ ├── item_author_map_author_detail_name2.xml │ │ ├── item_author_map_author_detail_name3.xml │ │ ├── item_category.xml │ │ ├── item_category_domain.xml │ │ ├── item_category_image.xml │ │ ├── item_category_multiple.xml │ │ ├── item_category_multiple_2.xml │ │ ├── item_cc_license.xml │ │ ├── item_comments.xml │ │ ├── item_content_encoded.xml │ │ ├── item_content_encoded_mode.xml │ │ ├── item_content_encoded_type.xml │ │ ├── item_creativeCommons_license.xml │ │ ├── item_dc_author.xml │ │ ├── item_dc_author_map_author_detail_email.xml │ │ ├── item_dc_author_map_author_detail_name.xml │ │ ├── item_dc_contributor.xml │ │ ├── item_dc_creator.xml │ │ ├── item_dc_creator_map_author_detail_email.xml │ │ ├── item_dc_creator_map_author_detail_name.xml │ │ ├── item_dc_description.xml │ │ ├── item_dc_publisher.xml │ │ ├── item_dc_publisher_email.xml │ │ ├── item_dc_publisher_name.xml │ │ ├── item_dc_rights.xml │ │ ├── item_dc_subject.xml │ │ ├── item_dc_subject_2.xml │ │ ├── item_dc_subject_multiple.xml │ │ ├── item_dc_title.xml │ │ ├── item_description.xml │ │ ├── item_description_and_summary.xml │ │ ├── item_description_br.xml │ │ ├── item_description_br_shorttag.xml │ │ ├── item_description_code_br.xml │ │ ├── item_description_escaped_markup.xml │ │ ├── item_description_map_summary.xml │ │ ├── item_description_naked_markup.xml │ │ ├── item_description_not_a_doctype.xml │ │ ├── item_description_not_a_doctype2.xml │ │ ├── item_enclosure_length.xml │ │ ├── item_enclosure_multiple.xml │ │ ├── item_enclosure_type.xml │ │ ├── item_enclosure_url.xml │ │ ├── item_fullitem.xml │ │ ├── item_fullitem_mode.xml │ │ ├── item_fullitem_type.xml │ │ ├── item_guid.xml │ │ ├── item_guid_conflict_link.xml │ │ ├── item_guid_guidislink.xml │ │ ├── item_guid_isPermaLink_conflict_link.xml │ │ ├── item_guid_isPermaLink_conflict_link_not_guidislink.xml │ │ ├── item_guid_isPermaLink_guidislink.xml │ │ ├── item_guid_isPermaLink_map_link.xml │ │ ├── item_guid_map_link.xml │ │ ├── item_guid_not_permalink.xml │ │ ├── item_guid_not_permalink_conflict_link.xml │ │ ├── item_guid_not_permalink_not_guidislink.xml │ │ ├── item_guid_not_permalink_not_guidislink_2.xml │ │ ├── item_guid_not_permalink_not_url.xml │ │ ├── item_image_link_bleed.xml │ │ ├── item_image_link_conflict.xml │ │ ├── item_link.xml │ │ ├── item_source.xml │ │ ├── item_source_url.xml │ │ ├── item_summary_and_description.xml │ │ ├── item_title.xml │ │ ├── item_xhtml_body.xml │ │ ├── item_xhtml_body_mode.xml │ │ ├── item_xhtml_body_type.xml │ │ ├── newlocation.xml │ │ ├── rss_namespace_1.xml │ │ ├── rss_namespace_2.xml │ │ ├── rss_namespace_3.xml │ │ ├── rss_namespace_4.xml │ │ ├── rss_version_090.xml │ │ ├── rss_version_091_netscape.xml │ │ ├── rss_version_091_userland.xml │ │ ├── rss_version_092.xml │ │ ├── rss_version_093.xml │ │ ├── rss_version_094.xml │ │ ├── rss_version_20.xml │ │ ├── rss_version_201.xml │ │ ├── rss_version_21.xml │ │ └── rss_version_missing.xml │ │ └── sanitize │ │ ├── acceptable_attribute_abbr.xml │ │ ├── acceptable_attribute_accept-charset.xml │ │ ├── acceptable_attribute_accept.xml │ │ ├── acceptable_attribute_accesskey.xml │ │ ├── acceptable_attribute_action.xml │ │ ├── acceptable_attribute_align.xml │ │ ├── acceptable_attribute_alt.xml │ │ ├── acceptable_attribute_autocomplete.xml │ │ ├── acceptable_attribute_autofocus.xml │ │ ├── acceptable_attribute_autoplay.xml │ │ ├── acceptable_attribute_axis.xml │ │ ├── acceptable_attribute_background.xml │ │ ├── acceptable_attribute_balance.xml │ │ ├── acceptable_attribute_bgcolor.xml │ │ ├── acceptable_attribute_bgproperties.xml │ │ ├── acceptable_attribute_border.xml │ │ ├── acceptable_attribute_bordercolor.xml │ │ ├── acceptable_attribute_bordercolordark.xml │ │ ├── acceptable_attribute_bordercolorlight.xml │ │ ├── acceptable_attribute_bottompadding.xml │ │ ├── acceptable_attribute_cellpadding.xml │ │ ├── acceptable_attribute_cellspacing.xml │ │ ├── acceptable_attribute_ch.xml │ │ ├── acceptable_attribute_challenge.xml │ │ ├── acceptable_attribute_char.xml │ │ ├── acceptable_attribute_charoff.xml │ │ ├── acceptable_attribute_charset.xml │ │ ├── acceptable_attribute_checked.xml │ │ ├── acceptable_attribute_choff.xml │ │ ├── acceptable_attribute_cite.xml │ │ ├── acceptable_attribute_class.xml │ │ ├── acceptable_attribute_clear.xml │ │ ├── acceptable_attribute_color.xml │ │ ├── acceptable_attribute_cols.xml │ │ ├── acceptable_attribute_colspan.xml │ │ ├── acceptable_attribute_compact.xml │ │ ├── acceptable_attribute_contenteditable.xml │ │ ├── acceptable_attribute_coords.xml │ │ ├── acceptable_attribute_data.xml │ │ ├── acceptable_attribute_datafld.xml │ │ ├── acceptable_attribute_datapagesize.xml │ │ ├── acceptable_attribute_datasrc.xml │ │ ├── acceptable_attribute_datetime.xml │ │ ├── acceptable_attribute_default.xml │ │ ├── acceptable_attribute_delay.xml │ │ ├── acceptable_attribute_dir.xml │ │ ├── acceptable_attribute_disabled.xml │ │ ├── acceptable_attribute_draggable.xml │ │ ├── acceptable_attribute_dynsrc.xml │ │ ├── acceptable_attribute_enctype.xml │ │ ├── acceptable_attribute_end.xml │ │ ├── acceptable_attribute_face.xml │ │ ├── acceptable_attribute_for.xml │ │ ├── acceptable_attribute_form.xml │ │ ├── acceptable_attribute_frame.xml │ │ ├── acceptable_attribute_galleryimg.xml │ │ ├── acceptable_attribute_gutter.xml │ │ ├── acceptable_attribute_headers.xml │ │ ├── acceptable_attribute_height.xml │ │ ├── acceptable_attribute_hidden.xml │ │ ├── acceptable_attribute_hidefocus.xml │ │ ├── acceptable_attribute_high.xml │ │ ├── acceptable_attribute_href.xml │ │ ├── acceptable_attribute_hreflang.xml │ │ ├── acceptable_attribute_hspace.xml │ │ ├── acceptable_attribute_icon.xml │ │ ├── acceptable_attribute_id.xml │ │ ├── acceptable_attribute_inputmode.xml │ │ ├── acceptable_attribute_ismap.xml │ │ ├── acceptable_attribute_keytype.xml │ │ ├── acceptable_attribute_label.xml │ │ ├── acceptable_attribute_lang.xml │ │ ├── acceptable_attribute_leftspacing.xml │ │ ├── acceptable_attribute_list.xml │ │ ├── acceptable_attribute_longdesc.xml │ │ ├── acceptable_attribute_loop.xml │ │ ├── acceptable_attribute_loopcount.xml │ │ ├── acceptable_attribute_loopend.xml │ │ ├── acceptable_attribute_loopstart.xml │ │ ├── acceptable_attribute_low.xml │ │ ├── acceptable_attribute_lowsrc.xml │ │ ├── acceptable_attribute_max.xml │ │ ├── acceptable_attribute_maxlength.xml │ │ ├── acceptable_attribute_media.xml │ │ ├── acceptable_attribute_method.xml │ │ ├── acceptable_attribute_min.xml │ │ ├── acceptable_attribute_multiple.xml │ │ ├── acceptable_attribute_name.xml │ │ ├── acceptable_attribute_nohref.xml │ │ ├── acceptable_attribute_noshade.xml │ │ ├── acceptable_attribute_nowrap.xml │ │ ├── acceptable_attribute_open.xml │ │ ├── acceptable_attribute_optimum.xml │ │ ├── acceptable_attribute_pattern.xml │ │ ├── acceptable_attribute_ping.xml │ │ ├── acceptable_attribute_point-size.xml │ │ ├── acceptable_attribute_pqg.xml │ │ ├── acceptable_attribute_prompt.xml │ │ ├── acceptable_attribute_radiogroup.xml │ │ ├── acceptable_attribute_readonly.xml │ │ ├── acceptable_attribute_rel.xml │ │ ├── acceptable_attribute_repeat-max.xml │ │ ├── acceptable_attribute_repeat-min.xml │ │ ├── acceptable_attribute_replace.xml │ │ ├── acceptable_attribute_required.xml │ │ ├── acceptable_attribute_rev.xml │ │ ├── acceptable_attribute_rightspacing.xml │ │ ├── acceptable_attribute_rows.xml │ │ ├── acceptable_attribute_rowspan.xml │ │ ├── acceptable_attribute_rules.xml │ │ ├── acceptable_attribute_scope.xml │ │ ├── acceptable_attribute_selected.xml │ │ ├── acceptable_attribute_shape.xml │ │ ├── acceptable_attribute_size.xml │ │ ├── acceptable_attribute_span.xml │ │ ├── acceptable_attribute_src.xml │ │ ├── acceptable_attribute_start.xml │ │ ├── acceptable_attribute_step.xml │ │ ├── acceptable_attribute_summary.xml │ │ ├── acceptable_attribute_suppress.xml │ │ ├── acceptable_attribute_tabindex.xml │ │ ├── acceptable_attribute_target.xml │ │ ├── acceptable_attribute_template.xml │ │ ├── acceptable_attribute_title.xml │ │ ├── acceptable_attribute_toppadding.xml │ │ ├── acceptable_attribute_type.xml │ │ ├── acceptable_attribute_unselectable.xml │ │ ├── acceptable_attribute_urn.xml │ │ ├── acceptable_attribute_usemap.xml │ │ ├── acceptable_attribute_valign.xml │ │ ├── acceptable_attribute_value.xml │ │ ├── acceptable_attribute_variable.xml │ │ ├── acceptable_attribute_volume.xml │ │ ├── acceptable_attribute_vrml.xml │ │ ├── acceptable_attribute_vspace.xml │ │ ├── acceptable_attribute_width.xml │ │ ├── acceptable_attribute_wrap.xml │ │ ├── acceptable_element_a.xml │ │ ├── acceptable_element_abbr.xml │ │ ├── acceptable_element_acronym.xml │ │ ├── acceptable_element_address.xml │ │ ├── acceptable_element_area.xml │ │ ├── acceptable_element_article.xml │ │ ├── acceptable_element_aside.xml │ │ ├── acceptable_element_audio.xml │ │ ├── acceptable_element_b.xml │ │ ├── acceptable_element_big.xml │ │ ├── acceptable_element_blockquote.xml │ │ ├── acceptable_element_br.xml │ │ ├── acceptable_element_button.xml │ │ ├── acceptable_element_canvas.xml │ │ ├── acceptable_element_caption.xml │ │ ├── acceptable_element_center.xml │ │ ├── acceptable_element_cite.xml │ │ ├── acceptable_element_code.xml │ │ ├── acceptable_element_col.xml │ │ ├── acceptable_element_colgroup.xml │ │ ├── acceptable_element_command.xml │ │ ├── acceptable_element_datagrid.xml │ │ ├── acceptable_element_datalist.xml │ │ ├── acceptable_element_dd.xml │ │ ├── acceptable_element_del.xml │ │ ├── acceptable_element_details.xml │ │ ├── acceptable_element_dfn.xml │ │ ├── acceptable_element_dialog.xml │ │ ├── acceptable_element_dir.xml │ │ ├── acceptable_element_div.xml │ │ ├── acceptable_element_dl.xml │ │ ├── acceptable_element_dt.xml │ │ ├── acceptable_element_em.xml │ │ ├── acceptable_element_event-source.xml │ │ ├── acceptable_element_fieldset.xml │ │ ├── acceptable_element_figure.xml │ │ ├── acceptable_element_font.xml │ │ ├── acceptable_element_footer.xml │ │ ├── acceptable_element_form.xml │ │ ├── acceptable_element_h1.xml │ │ ├── acceptable_element_h2.xml │ │ ├── acceptable_element_h3.xml │ │ ├── acceptable_element_h4.xml │ │ ├── acceptable_element_h5.xml │ │ ├── acceptable_element_h6.xml │ │ ├── acceptable_element_header.xml │ │ ├── acceptable_element_hr.xml │ │ ├── acceptable_element_i.xml │ │ ├── acceptable_element_img.xml │ │ ├── acceptable_element_input.xml │ │ ├── acceptable_element_ins.xml │ │ ├── acceptable_element_kbd.xml │ │ ├── acceptable_element_keygen.xml │ │ ├── acceptable_element_label.xml │ │ ├── acceptable_element_legend.xml │ │ ├── acceptable_element_li.xml │ │ ├── acceptable_element_m.xml │ │ ├── acceptable_element_map.xml │ │ ├── acceptable_element_menu.xml │ │ ├── acceptable_element_meter.xml │ │ ├── acceptable_element_multicol.xml │ │ ├── acceptable_element_nav.xml │ │ ├── acceptable_element_nextid.xml │ │ ├── acceptable_element_noscript.xml │ │ ├── acceptable_element_ol.xml │ │ ├── acceptable_element_optgroup.xml │ │ ├── acceptable_element_option.xml │ │ ├── acceptable_element_output.xml │ │ ├── acceptable_element_p.xml │ │ ├── acceptable_element_pre.xml │ │ ├── acceptable_element_progress.xml │ │ ├── acceptable_element_q.xml │ │ ├── acceptable_element_s.xml │ │ ├── acceptable_element_samp.xml │ │ ├── acceptable_element_section.xml │ │ ├── acceptable_element_select.xml │ │ ├── acceptable_element_small.xml │ │ ├── acceptable_element_sound.xml │ │ ├── acceptable_element_source.xml │ │ ├── acceptable_element_spacer.xml │ │ ├── acceptable_element_span.xml │ │ ├── acceptable_element_strike.xml │ │ ├── acceptable_element_strong.xml │ │ ├── acceptable_element_sub.xml │ │ ├── acceptable_element_sup.xml │ │ ├── acceptable_element_table.xml │ │ ├── acceptable_element_tbody.xml │ │ ├── acceptable_element_td.xml │ │ ├── acceptable_element_textarea.xml │ │ ├── acceptable_element_tfoot.xml │ │ ├── acceptable_element_th.xml │ │ ├── acceptable_element_thead.xml │ │ ├── acceptable_element_time.xml │ │ ├── acceptable_element_tr.xml │ │ ├── acceptable_element_tt.xml │ │ ├── acceptable_element_u.xml │ │ ├── acceptable_element_ul.xml │ │ ├── acceptable_element_var.xml │ │ ├── acceptable_element_video.xml │ │ ├── entry_content_applet.xml │ │ ├── entry_content_blink.xml │ │ ├── entry_content_crazy.xml │ │ ├── entry_content_embed.xml │ │ ├── entry_content_frame.xml │ │ ├── entry_content_iframe.xml │ │ ├── entry_content_link.xml │ │ ├── entry_content_meta.xml │ │ ├── entry_content_object.xml │ │ ├── entry_content_onabort.xml │ │ ├── entry_content_onblur.xml │ │ ├── entry_content_onchange.xml │ │ ├── entry_content_onclick.xml │ │ ├── entry_content_ondblclick.xml │ │ ├── entry_content_onerror.xml │ │ ├── entry_content_onfocus.xml │ │ ├── entry_content_onkeydown.xml │ │ ├── entry_content_onkeypress.xml │ │ ├── entry_content_onkeyup.xml │ │ ├── entry_content_onload.xml │ │ ├── entry_content_onmousedown.xml │ │ ├── entry_content_onmouseout.xml │ │ ├── entry_content_onmouseover.xml │ │ ├── entry_content_onmouseup.xml │ │ ├── entry_content_onreset.xml │ │ ├── entry_content_onresize.xml │ │ ├── entry_content_onsubmit.xml │ │ ├── entry_content_onunload.xml │ │ ├── entry_content_script.xml │ │ ├── entry_content_script_base64.xml │ │ ├── entry_content_script_cdata.xml │ │ ├── entry_content_script_inline.xml │ │ ├── entry_content_style.xml │ │ ├── entry_content_style_tag.xml │ │ ├── entry_summary_applet.xml │ │ ├── entry_summary_blink.xml │ │ ├── entry_summary_crazy.xml │ │ ├── entry_summary_embed.xml │ │ ├── entry_summary_frame.xml │ │ ├── entry_summary_iframe.xml │ │ ├── entry_summary_link.xml │ │ ├── entry_summary_meta.xml │ │ ├── entry_summary_object.xml │ │ ├── entry_summary_onabort.xml │ │ ├── entry_summary_onblur.xml │ │ ├── entry_summary_onchange.xml │ │ ├── entry_summary_onclick.xml │ │ ├── entry_summary_ondblclick.xml │ │ ├── entry_summary_onerror.xml │ │ ├── entry_summary_onfocus.xml │ │ ├── entry_summary_onkeydown.xml │ │ ├── entry_summary_onkeypress.xml │ │ ├── entry_summary_onkeyup.xml │ │ ├── entry_summary_onload.xml │ │ ├── entry_summary_onmousedown.xml │ │ ├── entry_summary_onmouseout.xml │ │ ├── entry_summary_onmouseover.xml │ │ ├── entry_summary_onmouseup.xml │ │ ├── entry_summary_onreset.xml │ │ ├── entry_summary_onresize.xml │ │ ├── entry_summary_onsubmit.xml │ │ ├── entry_summary_onunload.xml │ │ ├── entry_summary_script.xml │ │ ├── entry_summary_script_base64.xml │ │ ├── entry_summary_script_cdata.xml │ │ ├── entry_summary_script_inline.xml │ │ ├── entry_summary_script_map_description.xml │ │ ├── entry_summary_style.xml │ │ ├── entry_title_applet.xml │ │ ├── entry_title_blink.xml │ │ ├── entry_title_crazy.xml │ │ ├── entry_title_embed.xml │ │ ├── entry_title_frame.xml │ │ ├── entry_title_iframe.xml │ │ ├── entry_title_link.xml │ │ ├── entry_title_meta.xml │ │ ├── entry_title_object.xml │ │ ├── entry_title_onabort.xml │ │ ├── entry_title_onblur.xml │ │ ├── entry_title_onchange.xml │ │ ├── entry_title_onclick.xml │ │ ├── entry_title_ondblclick.xml │ │ ├── entry_title_onerror.xml │ │ ├── entry_title_onfocus.xml │ │ ├── entry_title_onkeydown.xml │ │ ├── entry_title_onkeypress.xml │ │ ├── entry_title_onkeyup.xml │ │ ├── entry_title_onload.xml │ │ ├── entry_title_onmousedown.xml │ │ ├── entry_title_onmouseout.xml │ │ ├── entry_title_onmouseover.xml │ │ ├── entry_title_onmouseup.xml │ │ ├── entry_title_onreset.xml │ │ ├── entry_title_onresize.xml │ │ ├── entry_title_onsubmit.xml │ │ ├── entry_title_onunload.xml │ │ ├── entry_title_script.xml │ │ ├── entry_title_script_cdata.xml │ │ ├── entry_title_script_inline.xml │ │ ├── entry_title_style.xml │ │ ├── feed_copyright_applet.xml │ │ ├── feed_copyright_blink.xml │ │ ├── feed_copyright_crazy.xml │ │ ├── feed_copyright_embed.xml │ │ ├── feed_copyright_frame.xml │ │ ├── feed_copyright_iframe.xml │ │ ├── feed_copyright_link.xml │ │ ├── feed_copyright_meta.xml │ │ ├── feed_copyright_object.xml │ │ ├── feed_copyright_onabort.xml │ │ ├── feed_copyright_onblur.xml │ │ ├── feed_copyright_onchange.xml │ │ ├── feed_copyright_onclick.xml │ │ ├── feed_copyright_ondblclick.xml │ │ ├── feed_copyright_onerror.xml │ │ ├── feed_copyright_onfocus.xml │ │ ├── feed_copyright_onkeydown.xml │ │ ├── feed_copyright_onkeypress.xml │ │ ├── feed_copyright_onkeyup.xml │ │ ├── feed_copyright_onload.xml │ │ ├── feed_copyright_onmousedown.xml │ │ ├── feed_copyright_onmouseout.xml │ │ ├── feed_copyright_onmouseover.xml │ │ ├── feed_copyright_onmouseup.xml │ │ ├── feed_copyright_onreset.xml │ │ ├── feed_copyright_onresize.xml │ │ ├── feed_copyright_onsubmit.xml │ │ ├── feed_copyright_onunload.xml │ │ ├── feed_copyright_script.xml │ │ ├── feed_copyright_script_cdata.xml │ │ ├── feed_copyright_script_inline.xml │ │ ├── feed_copyright_style.xml │ │ ├── feed_info_applet.xml │ │ ├── feed_info_blink.xml │ │ ├── feed_info_crazy.xml │ │ ├── feed_info_embed.xml │ │ ├── feed_info_frame.xml │ │ ├── feed_info_iframe.xml │ │ ├── feed_info_link.xml │ │ ├── feed_info_meta.xml │ │ ├── feed_info_object.xml │ │ ├── feed_info_onabort.xml │ │ ├── feed_info_onblur.xml │ │ ├── feed_info_onchange.xml │ │ ├── feed_info_onclick.xml │ │ ├── feed_info_ondblclick.xml │ │ ├── feed_info_onerror.xml │ │ ├── feed_info_onfocus.xml │ │ ├── feed_info_onkeydown.xml │ │ ├── feed_info_onkeypress.xml │ │ ├── feed_info_onkeyup.xml │ │ ├── feed_info_onload.xml │ │ ├── feed_info_onmousedown.xml │ │ ├── feed_info_onmouseout.xml │ │ ├── feed_info_onmouseover.xml │ │ ├── feed_info_onmouseup.xml │ │ ├── feed_info_onreset.xml │ │ ├── feed_info_onresize.xml │ │ ├── feed_info_onsubmit.xml │ │ ├── feed_info_onunload.xml │ │ ├── feed_info_script.xml │ │ ├── feed_info_script_cdata.xml │ │ ├── feed_info_script_inline.xml │ │ ├── feed_info_style.xml │ │ ├── feed_subtitle_applet.xml │ │ ├── feed_subtitle_blink.xml │ │ ├── feed_subtitle_crazy.xml │ │ ├── feed_subtitle_embed.xml │ │ ├── feed_subtitle_frame.xml │ │ ├── feed_subtitle_iframe.xml │ │ ├── feed_subtitle_link.xml │ │ ├── feed_subtitle_meta.xml │ │ ├── feed_subtitle_object.xml │ │ ├── feed_subtitle_onabort.xml │ │ ├── feed_subtitle_onblur.xml │ │ ├── feed_subtitle_onchange.xml │ │ ├── feed_subtitle_onclick.xml │ │ ├── feed_subtitle_ondblclick.xml │ │ ├── feed_subtitle_onerror.xml │ │ ├── feed_subtitle_onfocus.xml │ │ ├── feed_subtitle_onkeydown.xml │ │ ├── feed_subtitle_onkeypress.xml │ │ ├── feed_subtitle_onkeyup.xml │ │ ├── feed_subtitle_onload.xml │ │ ├── feed_subtitle_onmousedown.xml │ │ ├── feed_subtitle_onmouseout.xml │ │ ├── feed_subtitle_onmouseover.xml │ │ ├── feed_subtitle_onmouseup.xml │ │ ├── feed_subtitle_onreset.xml │ │ ├── feed_subtitle_onresize.xml │ │ ├── feed_subtitle_onsubmit.xml │ │ ├── feed_subtitle_onunload.xml │ │ ├── feed_subtitle_script.xml │ │ ├── feed_subtitle_script_cdata.xml │ │ ├── feed_subtitle_script_inline.xml │ │ ├── feed_subtitle_style.xml │ │ ├── feed_tagline_applet.xml │ │ ├── feed_tagline_blink.xml │ │ ├── feed_tagline_crazy.xml │ │ ├── feed_tagline_embed.xml │ │ ├── feed_tagline_frame.xml │ │ ├── feed_tagline_iframe.xml │ │ ├── feed_tagline_link.xml │ │ ├── feed_tagline_meta.xml │ │ ├── feed_tagline_object.xml │ │ ├── feed_tagline_onabort.xml │ │ ├── feed_tagline_onblur.xml │ │ ├── feed_tagline_onchange.xml │ │ ├── feed_tagline_onclick.xml │ │ ├── feed_tagline_ondblclick.xml │ │ ├── feed_tagline_onerror.xml │ │ ├── feed_tagline_onfocus.xml │ │ ├── feed_tagline_onkeydown.xml │ │ ├── feed_tagline_onkeypress.xml │ │ ├── feed_tagline_onkeyup.xml │ │ ├── feed_tagline_onload.xml │ │ ├── feed_tagline_onmousedown.xml │ │ ├── feed_tagline_onmouseout.xml │ │ ├── feed_tagline_onmouseover.xml │ │ ├── feed_tagline_onmouseup.xml │ │ ├── feed_tagline_onreset.xml │ │ ├── feed_tagline_onresize.xml │ │ ├── feed_tagline_onsubmit.xml │ │ ├── feed_tagline_onunload.xml │ │ ├── feed_tagline_script.xml │ │ ├── feed_tagline_script_cdata.xml │ │ ├── feed_tagline_script_inline.xml │ │ ├── feed_tagline_script_map_description.xml │ │ ├── feed_tagline_style.xml │ │ ├── feed_title_applet.xml │ │ ├── feed_title_blink.xml │ │ ├── feed_title_crazy.xml │ │ ├── feed_title_embed.xml │ │ ├── feed_title_frame.xml │ │ ├── feed_title_iframe.xml │ │ ├── feed_title_link.xml │ │ ├── feed_title_meta.xml │ │ ├── feed_title_object.xml │ │ ├── feed_title_onabort.xml │ │ ├── feed_title_onblur.xml │ │ ├── feed_title_onchange.xml │ │ ├── feed_title_onclick.xml │ │ ├── feed_title_ondblclick.xml │ │ ├── feed_title_onerror.xml │ │ ├── feed_title_onfocus.xml │ │ ├── feed_title_onkeydown.xml │ │ ├── feed_title_onkeypress.xml │ │ ├── feed_title_onkeyup.xml │ │ ├── feed_title_onload.xml │ │ ├── feed_title_onmousedown.xml │ │ ├── feed_title_onmouseout.xml │ │ ├── feed_title_onmouseover.xml │ │ ├── feed_title_onmouseup.xml │ │ ├── feed_title_onreset.xml │ │ ├── feed_title_onresize.xml │ │ ├── feed_title_onsubmit.xml │ │ ├── feed_title_onunload.xml │ │ ├── feed_title_script.xml │ │ ├── feed_title_script_cdata.xml │ │ ├── feed_title_script_inline.xml │ │ ├── feed_title_style.xml │ │ ├── feed_title_unacceptable_uri.xml │ │ ├── item_body_applet.xml │ │ ├── item_body_blink.xml │ │ ├── item_body_embed.xml │ │ ├── item_body_frame.xml │ │ ├── item_body_iframe.xml │ │ ├── item_body_link.xml │ │ ├── item_body_meta.xml │ │ ├── item_body_object.xml │ │ ├── item_body_onabort.xml │ │ ├── item_body_onblur.xml │ │ ├── item_body_onchange.xml │ │ ├── item_body_onclick.xml │ │ ├── item_body_ondblclick.xml │ │ ├── item_body_onerror.xml │ │ ├── item_body_onfocus.xml │ │ ├── item_body_onkeydown.xml │ │ ├── item_body_onkeypress.xml │ │ ├── item_body_onkeyup.xml │ │ ├── item_body_onload.xml │ │ ├── item_body_onmousedown.xml │ │ ├── item_body_onmouseout.xml │ │ ├── item_body_onmouseover.xml │ │ ├── item_body_onmouseup.xml │ │ ├── item_body_onreset.xml │ │ ├── item_body_onresize.xml │ │ ├── item_body_onsubmit.xml │ │ ├── item_body_onunload.xml │ │ ├── item_body_script.xml │ │ ├── item_body_script_map_content.xml │ │ ├── item_body_style.xml │ │ ├── item_content_encoded_applet.xml │ │ ├── item_content_encoded_blink.xml │ │ ├── item_content_encoded_crazy.xml │ │ ├── item_content_encoded_embed.xml │ │ ├── item_content_encoded_frame.xml │ │ ├── item_content_encoded_iframe.xml │ │ ├── item_content_encoded_link.xml │ │ ├── item_content_encoded_map_content.xml │ │ ├── item_content_encoded_meta.xml │ │ ├── item_content_encoded_object.xml │ │ ├── item_content_encoded_onabort.xml │ │ ├── item_content_encoded_onblur.xml │ │ ├── item_content_encoded_onchange.xml │ │ ├── item_content_encoded_onclick.xml │ │ ├── item_content_encoded_ondblclick.xml │ │ ├── item_content_encoded_onerror.xml │ │ ├── item_content_encoded_onfocus.xml │ │ ├── item_content_encoded_onkeydown.xml │ │ ├── item_content_encoded_onkeypress.xml │ │ ├── item_content_encoded_onkeyup.xml │ │ ├── item_content_encoded_onload.xml │ │ ├── item_content_encoded_onmousedown.xml │ │ ├── item_content_encoded_onmouseout.xml │ │ ├── item_content_encoded_onmouseover.xml │ │ ├── item_content_encoded_onmouseup.xml │ │ ├── item_content_encoded_onreset.xml │ │ ├── item_content_encoded_onresize.xml │ │ ├── item_content_encoded_onsubmit.xml │ │ ├── item_content_encoded_onunload.xml │ │ ├── item_content_encoded_script.xml │ │ ├── item_content_encoded_script_cdata.xml │ │ ├── item_content_encoded_script_map_content.xml │ │ ├── item_content_encoded_script_nested_cdata.xml │ │ ├── item_content_encoded_style.xml │ │ ├── item_description_applet.xml │ │ ├── item_description_blink.xml │ │ ├── item_description_crazy.xml │ │ ├── item_description_embed.xml │ │ ├── item_description_frame.xml │ │ ├── item_description_iframe.xml │ │ ├── item_description_link.xml │ │ ├── item_description_meta.xml │ │ ├── item_description_object.xml │ │ ├── item_description_onabort.xml │ │ ├── item_description_onblur.xml │ │ ├── item_description_onchange.xml │ │ ├── item_description_onclick.xml │ │ ├── item_description_ondblclick.xml │ │ ├── item_description_onerror.xml │ │ ├── item_description_onfocus.xml │ │ ├── item_description_onkeydown.xml │ │ ├── item_description_onkeypress.xml │ │ ├── item_description_onkeyup.xml │ │ ├── item_description_onload.xml │ │ ├── item_description_onmousedown.xml │ │ ├── item_description_onmouseout.xml │ │ ├── item_description_onmouseover.xml │ │ ├── item_description_onmouseup.xml │ │ ├── item_description_onreset.xml │ │ ├── item_description_onresize.xml │ │ ├── item_description_onsubmit.xml │ │ ├── item_description_onunload.xml │ │ ├── item_description_script.xml │ │ ├── item_description_script_cdata.xml │ │ ├── item_description_script_map_summary.xml │ │ ├── item_description_style.xml │ │ ├── item_fullitem_applet.xml │ │ ├── item_fullitem_blink.xml │ │ ├── item_fullitem_crazy.xml │ │ ├── item_fullitem_embed.xml │ │ ├── item_fullitem_frame.xml │ │ ├── item_fullitem_iframe.xml │ │ ├── item_fullitem_link.xml │ │ ├── item_fullitem_meta.xml │ │ ├── item_fullitem_object.xml │ │ ├── item_fullitem_onabort.xml │ │ ├── item_fullitem_onblur.xml │ │ ├── item_fullitem_onchange.xml │ │ ├── item_fullitem_onclick.xml │ │ ├── item_fullitem_ondblclick.xml │ │ ├── item_fullitem_onerror.xml │ │ ├── item_fullitem_onfocus.xml │ │ ├── item_fullitem_onkeydown.xml │ │ ├── item_fullitem_onkeypress.xml │ │ ├── item_fullitem_onkeyup.xml │ │ ├── item_fullitem_onload.xml │ │ ├── item_fullitem_onmousedown.xml │ │ ├── item_fullitem_onmouseout.xml │ │ ├── item_fullitem_onmouseover.xml │ │ ├── item_fullitem_onmouseup.xml │ │ ├── item_fullitem_onreset.xml │ │ ├── item_fullitem_onresize.xml │ │ ├── item_fullitem_onsubmit.xml │ │ ├── item_fullitem_onunload.xml │ │ ├── item_fullitem_script.xml │ │ ├── item_fullitem_script_cdata.xml │ │ ├── item_fullitem_script_map_summary.xml │ │ ├── item_fullitem_style.xml │ │ ├── item_xhtml_body_applet.xml │ │ ├── item_xhtml_body_blink.xml │ │ ├── item_xhtml_body_embed.xml │ │ ├── item_xhtml_body_frame.xml │ │ ├── item_xhtml_body_iframe.xml │ │ ├── item_xhtml_body_link.xml │ │ ├── item_xhtml_body_meta.xml │ │ ├── item_xhtml_body_object.xml │ │ ├── item_xhtml_body_onabort.xml │ │ ├── item_xhtml_body_onblur.xml │ │ ├── item_xhtml_body_onchange.xml │ │ ├── item_xhtml_body_onclick.xml │ │ ├── item_xhtml_body_ondblclick.xml │ │ ├── item_xhtml_body_onerror.xml │ │ ├── item_xhtml_body_onfocus.xml │ │ ├── item_xhtml_body_onkeydown.xml │ │ ├── item_xhtml_body_onkeypress.xml │ │ ├── item_xhtml_body_onkeyup.xml │ │ ├── item_xhtml_body_onload.xml │ │ ├── item_xhtml_body_onmousedown.xml │ │ ├── item_xhtml_body_onmouseout.xml │ │ ├── item_xhtml_body_onmouseover.xml │ │ ├── item_xhtml_body_onmouseup.xml │ │ ├── item_xhtml_body_onreset.xml │ │ ├── item_xhtml_body_onresize.xml │ │ ├── item_xhtml_body_onsubmit.xml │ │ ├── item_xhtml_body_onunload.xml │ │ ├── item_xhtml_body_script.xml │ │ ├── item_xhtml_body_script_map_content.xml │ │ ├── item_xhtml_body_style.xml │ │ ├── large_atom_feed_that_needs_css_sanitisation.xml │ │ ├── style_background_repeat_repeat_x.xml │ │ ├── style_background_url.xml │ │ ├── style_background_yellow.xml │ │ ├── style_border_0.xml │ │ ├── style_border_1px_solid_rgb_0_0_0_.xml │ │ ├── style_border_3px_solid_ccc.xml │ │ ├── style_border_bottom_0pt.xml │ │ ├── style_border_bottom_dashed.xml │ │ ├── style_border_bottom_dotted.xml │ │ ├── style_border_collapse_collapse.xml │ │ ├── style_border_left_0pt.xml │ │ ├── style_border_medium_none_.xml │ │ ├── style_border_none_important.xml │ │ ├── style_border_right_0pt.xml │ │ ├── style_border_solid_2px_000000.xml │ │ ├── style_border_top_0pt.xml │ │ ├── style_clear_both.xml │ │ ├── style_color_000080.xml │ │ ├── style_color_008.xml │ │ ├── style_color_999999.xml │ │ ├── style_color_blue.xml │ │ ├── style_color_maroon.xml │ │ ├── style_color_red.xml │ │ ├── style_color_rgb_0_128_0_.xml │ │ ├── style_color_teal.xml │ │ ├── style_cursor_pointer.xml │ │ ├── style_display_block.xml │ │ ├── style_float_left.xml │ │ ├── style_float_right.xml │ │ ├── style_font_family__comic_sans_ms.xml │ │ ├── style_font_family_arial_sans_serif.xml │ │ ├── style_font_family_lucida_console_.xml │ │ ├── style_font_family_symbol.xml │ │ ├── style_font_size_0_9em.xml │ │ ├── style_font_size_10pt.xml │ │ ├── style_font_size_10px.xml │ │ ├── style_font_size_smaller.xml │ │ ├── style_font_style_italic.xml │ │ ├── style_font_weight_bold.xml │ │ ├── style_height_100px.xml │ │ ├── style_height_2px.xml │ │ ├── style_letter_spacing_1px.xml │ │ ├── style_line_height_normal.xml │ │ ├── style_margin_0.xml │ │ ├── style_margin_0_15px_0_0.xml │ │ ├── style_margin_0px_important.xml │ │ ├── style_margin_5px.xml │ │ ├── style_margin_99999em.xml │ │ ├── style_margin_bottom_0pt.xml │ │ ├── style_margin_bottom_10px.xml │ │ ├── style_margin_left_5px.xml │ │ ├── style_margin_right_0px.xml │ │ ├── style_margin_top_0in.xml │ │ ├── style_margin_top_10px.xml │ │ ├── style_moz_background_clip_initial.xml │ │ ├── style_mso_ansi_language_nl.xml │ │ ├── style_mso_bidi_font_weight_normal.xml │ │ ├── style_mso_highlight_yellow.xml │ │ ├── style_mso_layout_grid_align_none.xml │ │ ├── style_mso_list_l0_level1_lfo1.xml │ │ ├── style_mso_no_proof_yes.xml │ │ ├── style_mso_spacerun_yes.xml │ │ ├── style_mso_tab_count_3.xml │ │ ├── style_overflow_auto.xml │ │ ├── style_padding_0.xml │ │ ├── style_padding_0_0_12px_12px.xml │ │ ├── style_padding_2ex.xml │ │ ├── style_padding_99999em.xml │ │ ├── style_padding_left_4px.xml │ │ ├── style_padding_right_0in.xml │ │ ├── style_position_absolute.xml │ │ ├── style_tab_stops_list_5in.xml │ │ ├── style_text_align_center.xml │ │ ├── style_text_align_left.xml │ │ ├── style_text_align_right.xml │ │ ├── style_text_decoration_underline.xml │ │ ├── style_text_indent_0_5in.xml │ │ ├── style_vertical_align_bottom.xml │ │ ├── style_vertical_align_top.xml │ │ ├── style_white_space_nowrap.xml │ │ ├── style_white_space_top.xml │ │ ├── style_width_300px.xml │ │ ├── xml_declaration_unexpected_character.xml │ │ ├── xml_malicious_comment.xml │ │ └── xml_unclosed_comment.xml ├── pip-egg-info │ └── feedparser.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt └── setup.py ├── gdata ├── INSTALL.txt ├── PKG-INFO ├── README.txt ├── RELEASE_NOTES.txt ├── pip-egg-info │ └── gdata.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── pydocs │ ├── atom.auth.html │ ├── atom.client.html │ ├── atom.core.html │ ├── atom.data.html │ ├── atom.html │ ├── atom.http.html │ ├── atom.http_core.html │ ├── atom.http_interface.html │ ├── atom.mock_http.html │ ├── atom.mock_http_core.html │ ├── atom.mock_service.html │ ├── atom.service.html │ ├── atom.token_store.html │ ├── atom.url.html │ ├── gdata.Crypto.Cipher.html │ ├── gdata.Crypto.Hash.HMAC.html │ ├── gdata.Crypto.Hash.MD5.html │ ├── gdata.Crypto.Hash.SHA.html │ ├── gdata.Crypto.Hash.html │ ├── gdata.Crypto.Protocol.AllOrNothing.html │ ├── gdata.Crypto.Protocol.Chaffing.html │ ├── gdata.Crypto.Protocol.html │ ├── gdata.Crypto.PublicKey.DSA.html │ ├── gdata.Crypto.PublicKey.ElGamal.html │ ├── gdata.Crypto.PublicKey.RSA.html │ ├── gdata.Crypto.PublicKey.html │ ├── gdata.Crypto.PublicKey.pubkey.html │ ├── gdata.Crypto.PublicKey.qNEW.html │ ├── gdata.Crypto.Util.RFC1751.html │ ├── gdata.Crypto.Util.html │ ├── gdata.Crypto.Util.number.html │ ├── gdata.Crypto.Util.randpool.html │ ├── gdata.Crypto.html │ ├── gdata.acl.data.html │ ├── gdata.acl.html │ ├── gdata.alt.app_engine.html │ ├── gdata.alt.appengine.html │ ├── gdata.alt.html │ ├── gdata.analytics.client.html │ ├── gdata.analytics.data.html │ ├── gdata.analytics.html │ ├── gdata.analytics.service.html │ ├── gdata.apps.adminsettings.html │ ├── gdata.apps.adminsettings.service.html │ ├── gdata.apps.audit.html │ ├── gdata.apps.audit.service.html │ ├── gdata.apps.emailsettings.client.html │ ├── gdata.apps.emailsettings.data.html │ ├── gdata.apps.emailsettings.html │ ├── gdata.apps.emailsettings.service.html │ ├── gdata.apps.groups.html │ ├── gdata.apps.groups.service.html │ ├── gdata.apps.html │ ├── gdata.apps.migration.html │ ├── gdata.apps.migration.service.html │ ├── gdata.apps.multidomain.client.html │ ├── gdata.apps.multidomain.data.html │ ├── gdata.apps.multidomain.html │ ├── gdata.apps.organization.html │ ├── gdata.apps.organization.service.html │ ├── gdata.apps.service.html │ ├── gdata.apps_property.html │ ├── gdata.auth.html │ ├── gdata.blogger.client.html │ ├── gdata.blogger.data.html │ ├── gdata.blogger.html │ ├── gdata.blogger.service.html │ ├── gdata.books.data.html │ ├── gdata.books.html │ ├── gdata.books.service.html │ ├── gdata.calendar.client.html │ ├── gdata.calendar.data.html │ ├── gdata.calendar.html │ ├── gdata.calendar.service.html │ ├── gdata.calendar_resource.client.html │ ├── gdata.calendar_resource.data.html │ ├── gdata.calendar_resource.html │ ├── gdata.client.html │ ├── gdata.codesearch.html │ ├── gdata.codesearch.service.html │ ├── gdata.contacts.client.html │ ├── gdata.contacts.data.html │ ├── gdata.contacts.html │ ├── gdata.contacts.service.html │ ├── gdata.contentforshopping.client.html │ ├── gdata.contentforshopping.data.html │ ├── gdata.contentforshopping.html │ ├── gdata.core.html │ ├── gdata.data.html │ ├── gdata.docs.client.html │ ├── gdata.docs.data.html │ ├── gdata.docs.html │ ├── gdata.docs.service.html │ ├── gdata.dublincore.data.html │ ├── gdata.dublincore.html │ ├── gdata.exif.html │ ├── gdata.finance.data.html │ ├── gdata.finance.html │ ├── gdata.finance.service.html │ ├── gdata.gauth.html │ ├── gdata.geo.data.html │ ├── gdata.geo.html │ ├── gdata.health.html │ ├── gdata.health.service.html │ ├── gdata.html │ ├── gdata.maps.client.html │ ├── gdata.maps.html │ ├── gdata.marketplace.client.html │ ├── gdata.marketplace.data.html │ ├── gdata.marketplace.html │ ├── gdata.media.data.html │ ├── gdata.media.html │ ├── gdata.notebook.data.html │ ├── gdata.notebook.html │ ├── gdata.oauth.html │ ├── gdata.oauth.rsa.html │ ├── gdata.opensearch.data.html │ ├── gdata.opensearch.html │ ├── gdata.photos.html │ ├── gdata.photos.service.html │ ├── gdata.projecthosting.client.html │ ├── gdata.projecthosting.data.html │ ├── gdata.projecthosting.html │ ├── gdata.sample_util.html │ ├── gdata.service.html │ ├── gdata.sites.client.html │ ├── gdata.sites.data.html │ ├── gdata.sites.html │ ├── gdata.spreadsheet.html │ ├── gdata.spreadsheet.service.html │ ├── gdata.spreadsheet.text_db.html │ ├── gdata.spreadsheets.client.html │ ├── gdata.spreadsheets.data.html │ ├── gdata.spreadsheets.html │ ├── gdata.test_config.html │ ├── gdata.test_config_template.html │ ├── gdata.test_data.html │ ├── gdata.tlslite.BaseDB.html │ ├── gdata.tlslite.Checker.html │ ├── gdata.tlslite.FileObject.html │ ├── gdata.tlslite.HandshakeSettings.html │ ├── gdata.tlslite.Session.html │ ├── gdata.tlslite.SessionCache.html │ ├── gdata.tlslite.SharedKeyDB.html │ ├── gdata.tlslite.TLSConnection.html │ ├── gdata.tlslite.TLSRecordLayer.html │ ├── gdata.tlslite.VerifierDB.html │ ├── gdata.tlslite.X509.html │ ├── gdata.tlslite.X509CertChain.html │ ├── gdata.tlslite.api.html │ ├── gdata.tlslite.constants.html │ ├── gdata.tlslite.errors.html │ ├── gdata.tlslite.html │ ├── gdata.tlslite.integration.AsyncStateMachine.html │ ├── gdata.tlslite.integration.ClientHelper.html │ ├── gdata.tlslite.integration.HTTPTLSConnection.html │ ├── gdata.tlslite.integration.IMAP4_TLS.html │ ├── gdata.tlslite.integration.IntegrationHelper.html │ ├── gdata.tlslite.integration.POP3_TLS.html │ ├── gdata.tlslite.integration.SMTP_TLS.html │ ├── gdata.tlslite.integration.TLSAsyncDispatcherMixIn.html │ ├── gdata.tlslite.integration.TLSSocketServerMixIn.html │ ├── gdata.tlslite.integration.TLSTwistedProtocolWrapper.html │ ├── gdata.tlslite.integration.XMLRPCTransport.html │ ├── gdata.tlslite.integration.html │ ├── gdata.tlslite.mathtls.html │ ├── gdata.tlslite.messages.html │ ├── gdata.tlslite.utils.AES.html │ ├── gdata.tlslite.utils.ASN1Parser.html │ ├── gdata.tlslite.utils.Cryptlib_AES.html │ ├── gdata.tlslite.utils.Cryptlib_RC4.html │ ├── gdata.tlslite.utils.Cryptlib_TripleDES.html │ ├── gdata.tlslite.utils.OpenSSL_AES.html │ ├── gdata.tlslite.utils.OpenSSL_RC4.html │ ├── gdata.tlslite.utils.OpenSSL_RSAKey.html │ ├── gdata.tlslite.utils.OpenSSL_TripleDES.html │ ├── gdata.tlslite.utils.PyCrypto_AES.html │ ├── gdata.tlslite.utils.PyCrypto_RC4.html │ ├── gdata.tlslite.utils.PyCrypto_RSAKey.html │ ├── gdata.tlslite.utils.PyCrypto_TripleDES.html │ ├── gdata.tlslite.utils.Python_AES.html │ ├── gdata.tlslite.utils.Python_RC4.html │ ├── gdata.tlslite.utils.Python_RSAKey.html │ ├── gdata.tlslite.utils.RC4.html │ ├── gdata.tlslite.utils.RSAKey.html │ ├── gdata.tlslite.utils.TripleDES.html │ ├── gdata.tlslite.utils.cipherfactory.html │ ├── gdata.tlslite.utils.codec.html │ ├── gdata.tlslite.utils.compat.html │ ├── gdata.tlslite.utils.cryptomath.html │ ├── gdata.tlslite.utils.dateFuncs.html │ ├── gdata.tlslite.utils.hmac.html │ ├── gdata.tlslite.utils.html │ ├── gdata.tlslite.utils.jython_compat.html │ ├── gdata.tlslite.utils.keyfactory.html │ ├── gdata.tlslite.utils.rijndael.html │ ├── gdata.tlslite.utils.xmltools.html │ ├── gdata.urlfetch.html │ ├── gdata.webmastertools.data.html │ ├── gdata.webmastertools.html │ ├── gdata.webmastertools.service.html │ ├── gdata.youtube.client.html │ ├── gdata.youtube.data.html │ ├── gdata.youtube.html │ ├── gdata.youtube.service.html │ └── generate_docs ├── samples │ ├── analytics │ │ ├── account_feed_demo.py │ │ ├── data_feed_demo.py │ │ └── mgmt_feed_demo.py │ ├── apps │ │ ├── adminsettings_example.py │ │ ├── emailsettings_example.py │ │ ├── migration_example.py │ │ ├── org_unit_sites.py │ │ ├── provisioning_oauth2_example.py │ │ └── provisioning_oauth_example │ │ │ ├── app.yaml │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── images │ │ │ └── google-small.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── index.js │ │ │ ├── login.html │ │ │ └── main.py │ ├── authsub │ │ └── secure_authsub.py │ ├── blogger │ │ ├── BloggerExample.py │ │ ├── BloggerExampleV1.py │ │ ├── app │ │ │ ├── app.yaml │ │ │ ├── auth_required.html │ │ │ ├── blogapp.py │ │ │ ├── list_blogs.html │ │ │ ├── post_editor.html │ │ │ └── welcome.html │ │ └── oauth-appengine │ │ │ ├── app.yaml │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── index.html │ │ │ ├── index.yaml │ │ │ ├── main.py │ │ │ └── oauth.py │ ├── calendar │ │ └── calendarExample.py │ ├── calendar_resource │ │ └── calendar_resource_example.py │ ├── codesearch │ │ └── CodesearchExample.py │ ├── contacts │ │ ├── contacts_example.py │ │ ├── profiles_example.py │ │ └── unshare_profiles.py │ ├── contentforshopping │ │ ├── add_batch_products.py │ │ ├── add_product.py │ │ ├── ca_insert.py │ │ ├── ca_list.py │ │ └── list_products.py │ ├── docs │ │ ├── docs_example.py │ │ ├── docs_v3_example.py │ │ └── samplerunner.py │ ├── finance │ │ └── test_finance.py │ ├── mashups │ │ └── birthdaySample.py │ ├── oauth │ │ ├── 2_legged_oauth.py │ │ ├── TwoLeggedOAuthExample.py │ │ ├── oauth_example.py │ │ └── oauth_on_appengine │ │ │ ├── README.txt │ │ │ ├── app.yaml │ │ │ ├── appengine_utilities │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── cron.py │ │ │ ├── event.py │ │ │ ├── flash.py │ │ │ ├── paginator.py │ │ │ ├── rotmodel.py │ │ │ └── sessions.py │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── images │ │ │ ├── icon_document.gif │ │ │ ├── icon_folder.gif │ │ │ ├── icon_pdf.gif │ │ │ ├── icon_presentation.gif │ │ │ ├── icon_spreadsheet.gif │ │ │ ├── icon_starred.png │ │ │ └── icon_trashed.png │ │ │ ├── index.html │ │ │ ├── index.yaml │ │ │ ├── js │ │ │ └── jquery.corners.min.js │ │ │ ├── main_hmac.py │ │ │ └── main_rsa.py │ ├── sites │ │ └── sites_example.py │ ├── spreadsheets │ │ └── spreadsheetExample.py │ └── webmastertools │ │ ├── AddDeleteExampleDotCom.py │ │ ├── SitemapsFeedSummary.py │ │ └── SitesFeedSummary.py ├── setup.py ├── src │ ├── atom │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── core.py │ │ ├── data.py │ │ ├── http.py │ │ ├── http_core.py │ │ ├── http_interface.py │ │ ├── mock_http.py │ │ ├── mock_http_core.py │ │ ├── mock_service.py │ │ ├── service.py │ │ ├── token_store.py │ │ └── url.py │ └── gdata │ │ ├── Crypto │ │ ├── Cipher │ │ │ ├── AES.pyd │ │ │ ├── ARC2.pyd │ │ │ ├── ARC4.pyd │ │ │ ├── Blowfish.pyd │ │ │ ├── CAST.pyd │ │ │ ├── DES.pyd │ │ │ ├── DES3.pyd │ │ │ ├── IDEA.pyd │ │ │ ├── RC5.pyd │ │ │ ├── XOR.pyd │ │ │ └── __init__.py │ │ ├── Hash │ │ │ ├── HMAC.py │ │ │ ├── MD2.pyd │ │ │ ├── MD4.pyd │ │ │ ├── MD5.py │ │ │ ├── RIPEMD.pyd │ │ │ ├── SHA.py │ │ │ ├── SHA256.pyd │ │ │ └── __init__.py │ │ ├── Protocol │ │ │ ├── AllOrNothing.py │ │ │ ├── Chaffing.py │ │ │ └── __init__.py │ │ ├── PublicKey │ │ │ ├── DSA.py │ │ │ ├── ElGamal.py │ │ │ ├── RSA.py │ │ │ ├── __init__.py │ │ │ ├── pubkey.py │ │ │ └── qNEW.py │ │ ├── Util │ │ │ ├── RFC1751.py │ │ │ ├── __init__.py │ │ │ ├── number.py │ │ │ ├── randpool.py │ │ │ └── test.py │ │ ├── __init__.py │ │ └── test.py │ │ ├── __init__.py │ │ ├── acl │ │ ├── __init__.py │ │ └── data.py │ │ ├── alt │ │ ├── __init__.py │ │ ├── app_engine.py │ │ └── appengine.py │ │ ├── analytics │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ │ ├── apps │ │ ├── __init__.py │ │ ├── adminsettings │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── audit │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── emailsettings │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ ├── data.py │ │ │ └── service.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── migration │ │ │ ├── __init__.py │ │ │ └── service.py │ │ ├── multidomain │ │ │ ├── __init__.py │ │ │ ├── client.py │ │ │ └── data.py │ │ ├── organization │ │ │ ├── __init__.py │ │ │ └── service.py │ │ └── service.py │ │ ├── apps_property.py │ │ ├── auth.py │ │ ├── blogger │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ │ ├── books │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ │ ├── calendar │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ │ ├── calendar_resource │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── client.py │ │ ├── codesearch │ │ ├── __init__.py │ │ └── service.py │ │ ├── contacts │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ │ ├── contentforshopping │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── core.py │ │ ├── data.py │ │ ├── docs │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py │ │ ├── dublincore │ │ ├── __init__.py │ │ └── data.py │ │ ├── exif │ │ └── __init__.py │ │ ├── finance │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ │ ├── gauth.py │ │ ├── geo │ │ ├── __init__.py │ │ └── data.py │ │ ├── health │ │ ├── __init__.py │ │ └── service.py │ │ ├── marketplace │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── media │ │ ├── __init__.py │ │ └── data.py │ │ ├── notebook │ │ ├── __init__.py │ │ └── data.py │ │ ├── oauth │ │ ├── CHANGES.txt │ │ ├── __init__.py │ │ └── rsa.py │ │ ├── opensearch │ │ ├── __init__.py │ │ └── data.py │ │ ├── photos │ │ ├── __init__.py │ │ └── service.py │ │ ├── projecthosting │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── sample_util.py │ │ ├── service.py │ │ ├── sites │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── spreadsheet │ │ ├── __init__.py │ │ ├── service.py │ │ └── text_db.py │ │ ├── spreadsheets │ │ ├── __init__.py │ │ ├── client.py │ │ └── data.py │ │ ├── test_config.py │ │ ├── test_data.py │ │ ├── tlslite │ │ ├── BaseDB.py │ │ ├── Checker.py │ │ ├── FileObject.py │ │ ├── HandshakeSettings.py │ │ ├── Session.py │ │ ├── SessionCache.py │ │ ├── SharedKeyDB.py │ │ ├── TLSConnection.py │ │ ├── TLSRecordLayer.py │ │ ├── VerifierDB.py │ │ ├── X509.py │ │ ├── X509CertChain.py │ │ ├── __init__.py │ │ ├── api.py │ │ ├── constants.py │ │ ├── errors.py │ │ ├── integration │ │ │ ├── AsyncStateMachine.py │ │ │ ├── ClientHelper.py │ │ │ ├── HTTPTLSConnection.py │ │ │ ├── IMAP4_TLS.py │ │ │ ├── IntegrationHelper.py │ │ │ ├── POP3_TLS.py │ │ │ ├── SMTP_TLS.py │ │ │ ├── TLSAsyncDispatcherMixIn.py │ │ │ ├── TLSSocketServerMixIn.py │ │ │ ├── TLSTwistedProtocolWrapper.py │ │ │ ├── XMLRPCTransport.py │ │ │ └── __init__.py │ │ ├── mathtls.py │ │ ├── messages.py │ │ └── utils │ │ │ ├── AES.py │ │ │ ├── ASN1Parser.py │ │ │ ├── Cryptlib_AES.py │ │ │ ├── Cryptlib_RC4.py │ │ │ ├── Cryptlib_TripleDES.py │ │ │ ├── OpenSSL_AES.py │ │ │ ├── OpenSSL_RC4.py │ │ │ ├── OpenSSL_RSAKey.py │ │ │ ├── OpenSSL_TripleDES.py │ │ │ ├── PyCrypto_AES.py │ │ │ ├── PyCrypto_RC4.py │ │ │ ├── PyCrypto_RSAKey.py │ │ │ ├── PyCrypto_TripleDES.py │ │ │ ├── Python_AES.py │ │ │ ├── Python_RC4.py │ │ │ ├── Python_RSAKey.py │ │ │ ├── RC4.py │ │ │ ├── RSAKey.py │ │ │ ├── TripleDES.py │ │ │ ├── __init__.py │ │ │ ├── cipherfactory.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── cryptomath.py │ │ │ ├── dateFuncs.py │ │ │ ├── entropy.c │ │ │ ├── hmac.py │ │ │ ├── jython_compat.py │ │ │ ├── keyfactory.py │ │ │ ├── rijndael.py │ │ │ ├── win32prng.c │ │ │ └── xmltools.py │ │ ├── urlfetch.py │ │ ├── webmastertools │ │ ├── __init__.py │ │ ├── data.py │ │ └── service.py │ │ └── youtube │ │ ├── __init__.py │ │ ├── client.py │ │ ├── data.py │ │ └── service.py └── tests │ ├── __init__.py │ ├── all_tests.py │ ├── all_tests_cached.py │ ├── all_tests_clear_cache.py │ ├── all_tests_coverage.py │ ├── all_tests_local.py │ ├── atom_test.py │ ├── atom_tests │ ├── __init__.py │ ├── auth_test.py │ ├── client_test.py │ ├── core_test.py │ ├── data_test.py │ ├── http_core_test.py │ ├── http_interface_test.py │ ├── mock_client_test.py │ ├── mock_http_core_test.py │ ├── mock_http_test.py │ ├── mock_server_test.py │ ├── service_test.py │ ├── token_store_test.py │ └── url_test.py │ ├── coverage.py │ ├── files │ └── testimage.jpg │ ├── gdata_test.py │ ├── gdata_tests │ ├── __init__.py │ ├── analytics │ │ ├── __init__.py │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── query_test.py │ ├── apps │ │ ├── AppsServiceTestForGetGeneratorForAllEmailLists.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllNicknames.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllRecipients.pickle │ │ ├── AppsServiceTestForGetGeneratorForAllUsers.pickle │ │ ├── TestDataForGeneratorTest.p │ │ ├── __init__.py │ │ ├── emailsettings │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ ├── groups │ │ │ ├── __init__.py │ │ │ └── service_test.py │ │ ├── migration │ │ │ ├── __init__.py │ │ │ └── service_test.py │ │ ├── multidomain │ │ │ ├── __init__.py │ │ │ ├── data_test.py │ │ │ └── live_client_test.py │ │ ├── organization │ │ │ ├── __init__.py │ │ │ └── service_test.py │ │ ├── service_test.py │ │ └── service_test_using_mock.py │ ├── apps_test.py │ ├── auth_test.py │ ├── blogger │ │ ├── __init__.py │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── service_test.py │ ├── blogger_test.py │ ├── books │ │ ├── __init__.py │ │ └── service_test.py │ ├── books_test.py │ ├── calendar │ │ ├── __init__.py │ │ ├── calendar_acl_test.py │ │ └── service_test.py │ ├── calendar_resource │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── calendar_test.py │ ├── client_smoke_test.py │ ├── client_test.py │ ├── codesearch_test.py │ ├── contacts │ │ ├── __init__.py │ │ ├── live_client_test.py │ │ ├── profiles │ │ │ ├── __init__.py │ │ │ ├── live_client_test.py │ │ │ └── service_test.py │ │ └── service_test.py │ ├── contacts_test.py │ ├── contentforshopping_test.py │ ├── core_test.py │ ├── data_smoke_test.py │ ├── data_test.py │ ├── docs │ │ ├── __init__.py │ │ ├── data │ │ │ ├── test.0.bin │ │ │ ├── test.0.csv │ │ │ ├── test.0.doc │ │ │ ├── test.0.pdf │ │ │ ├── test.0.ppt │ │ │ ├── test.0.wmf │ │ │ ├── test.1.bin │ │ │ ├── test.1.csv │ │ │ ├── test.1.doc │ │ │ ├── test.1.pdf │ │ │ ├── test.1.ppt │ │ │ └── test.1.wmf │ │ ├── data_test.py │ │ ├── live_client_test.py │ │ └── service_test.py │ ├── docs_test.py │ ├── gauth_test.py │ ├── health │ │ ├── __init__.py │ │ └── service_test.py │ ├── health_test.py │ ├── live_client_test.py │ ├── marketplace │ │ ├── __init__.py │ │ └── live_client_test.py │ ├── oauth │ │ ├── __init__.py │ │ └── data_test.py │ ├── photos │ │ ├── __init__.py │ │ └── service_test.py │ ├── photos_test.py │ ├── projecthosting │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── resumable_upload_test.py │ ├── sample_util_test.py │ ├── service_test.py │ ├── sites │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── spreadsheet │ │ ├── __init__.py │ │ ├── service_test.py │ │ └── text_db_test.py │ ├── spreadsheet_test.py │ ├── spreadsheets │ │ ├── __init__.py │ │ ├── data_test.py │ │ └── live_client_test.py │ ├── webmastertools_test.py │ ├── youtube │ │ ├── __init__.py │ │ ├── live_client_test.py │ │ └── service_test.py │ └── youtube_test.py │ ├── module_test_runner.py │ ├── run_all_tests.py │ ├── run_data_tests.py │ ├── run_service_tests.py │ └── testimage.jpg ├── ghettoq ├── AUTHORS ├── Changelog ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── TODO ├── docs │ ├── Makefile │ ├── _ext │ │ ├── applyxrefs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── nature │ │ │ ├── static │ │ │ ├── nature.css_t │ │ │ └── pygments.css │ │ │ └── theme.conf │ ├── changelog.rst │ ├── conf.py │ ├── index.rst │ └── introduction.rst ├── ghettoq.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── ghettoq │ ├── __init__.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── beanstalk.py │ │ ├── couch_db.py │ │ ├── database.py │ │ ├── mongodb.py │ │ └── pyredis.py │ ├── managers.py │ ├── messaging.py │ ├── models.py │ ├── simple.py │ ├── taproot.py │ └── tests │ │ ├── __init__.py │ │ ├── runners.py │ │ ├── test_beanstalk.py │ │ ├── test_couchdb.py │ │ ├── test_database.py │ │ ├── test_mongodb.py │ │ └── test_redis.py ├── pip-egg-info │ └── ghettoq.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── html2text ├── PKG-INFO ├── html2text.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── html2text.py ├── pip-egg-info │ └── html2text.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── html5lib ├── MANIFEST.in ├── PKG-INFO ├── README ├── html5lib.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── html5lib │ ├── __init__.py │ ├── constants.py │ ├── filters │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── formfiller.py │ │ ├── inject_meta_charset.py │ │ ├── lint.py │ │ ├── optionaltags.py │ │ ├── sanitizer.py │ │ └── whitespace.py │ ├── html5parser.py │ ├── ihatexml.py │ ├── inputstream.py │ ├── sanitizer.py │ ├── serializer │ │ ├── __init__.py │ │ ├── htmlserializer.py │ │ └── xhtmlserializer.py │ ├── tests │ │ ├── __init__.py │ │ ├── mockParser.py │ │ ├── runparsertests.py │ │ ├── runtests.py │ │ ├── support.py │ │ ├── test_encoding.py │ │ ├── test_formfiller.py │ │ ├── test_parser.py │ │ ├── test_parser2.py │ │ ├── test_sanitizer.py │ │ ├── test_serializer.py │ │ ├── test_stream.py │ │ ├── test_tokenizer.py │ │ ├── test_treewalkers.py │ │ ├── test_whitespace_filter.py │ │ ├── testdata │ │ │ ├── encoding │ │ │ │ ├── test-yahoo-jp.dat │ │ │ │ ├── tests1.dat │ │ │ │ └── tests2.dat │ │ │ ├── sanitizer │ │ │ │ └── tests1.dat │ │ │ ├── serializer │ │ │ │ ├── core.test │ │ │ │ ├── injectmeta.test │ │ │ │ ├── optionaltags.test │ │ │ │ ├── options.test │ │ │ │ └── whitespace.test │ │ │ ├── sniffer │ │ │ │ └── htmlOrFeed.json │ │ │ ├── tokenizer │ │ │ │ ├── contentModelFlags.test │ │ │ │ ├── domjs.test │ │ │ │ ├── entities.test │ │ │ │ ├── escapeFlag.test │ │ │ │ ├── namedEntities.test │ │ │ │ ├── numericEntities.test │ │ │ │ ├── pendingSpecChanges.test │ │ │ │ ├── test1.test │ │ │ │ ├── test2.test │ │ │ │ ├── test3.test │ │ │ │ ├── test4.test │ │ │ │ ├── unicodeChars.test │ │ │ │ ├── unicodeCharsProblematic.test │ │ │ │ └── xmlViolation.test │ │ │ └── tree-construction │ │ │ │ ├── adoption01.dat │ │ │ │ ├── adoption02.dat │ │ │ │ ├── comments01.dat │ │ │ │ ├── doctype01.dat │ │ │ │ ├── domjs-unsafe.dat │ │ │ │ ├── entities01.dat │ │ │ │ ├── entities02.dat │ │ │ │ ├── html5test-com.dat │ │ │ │ ├── inbody01.dat │ │ │ │ ├── isindex.dat │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ ├── pending-spec-changes.dat │ │ │ │ ├── plain-text-unsafe.dat │ │ │ │ ├── scriptdata01.dat │ │ │ │ ├── tables01.dat │ │ │ │ ├── tests1.dat │ │ │ │ ├── tests10.dat │ │ │ │ ├── tests11.dat │ │ │ │ ├── tests12.dat │ │ │ │ ├── tests14.dat │ │ │ │ ├── tests15.dat │ │ │ │ ├── tests16.dat │ │ │ │ ├── tests17.dat │ │ │ │ ├── tests18.dat │ │ │ │ ├── tests19.dat │ │ │ │ ├── tests2.dat │ │ │ │ ├── tests20.dat │ │ │ │ ├── tests21.dat │ │ │ │ ├── tests22.dat │ │ │ │ ├── tests23.dat │ │ │ │ ├── tests24.dat │ │ │ │ ├── tests25.dat │ │ │ │ ├── tests26.dat │ │ │ │ ├── tests3.dat │ │ │ │ ├── tests4.dat │ │ │ │ ├── tests5.dat │ │ │ │ ├── tests6.dat │ │ │ │ ├── tests7.dat │ │ │ │ ├── tests8.dat │ │ │ │ ├── tests9.dat │ │ │ │ ├── tests_innerHTML_1.dat │ │ │ │ ├── tricky01.dat │ │ │ │ ├── webkit01.dat │ │ │ │ └── webkit02.dat │ │ └── tokenizertotree.py │ ├── tokenizer.py │ ├── treebuilders │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── dom.py │ │ ├── etree.py │ │ ├── etree_lxml.py │ │ ├── simpletree.py │ │ └── soup.py │ ├── treewalkers │ │ ├── __init__.py │ │ ├── _base.py │ │ ├── dom.py │ │ ├── etree.py │ │ ├── genshistream.py │ │ ├── lxmletree.py │ │ ├── pulldom.py │ │ ├── simpletree.py │ │ └── soup.py │ └── utils.py ├── pip-egg-info │ └── html5lib.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── importlib ├── PKG-INFO ├── README ├── importlib │ └── __init__.py ├── pip-egg-info │ └── importlib.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt └── setup.py ├── irc ├── CHANGES.rst ├── COPYING ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── hgtools-5.3-py2.7.egg ├── irc.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── irc │ ├── __init__.py │ ├── bot.py │ ├── buffer.py │ ├── client.py │ ├── connection.py │ ├── dict.py │ ├── events.py │ ├── features.py │ ├── functools.py │ ├── logging.py │ ├── modes.py │ ├── rfc.py │ ├── rfc2812.txt │ ├── schedule.py │ ├── server.py │ ├── strings.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_bot.py │ │ ├── test_client.py │ │ └── test_schedule.py │ └── util.py ├── pavement.py ├── pip-egg-info │ └── irc.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt ├── pytest_runner-2.0-py2.7.egg ├── scripts │ ├── dccreceive.py │ ├── dccsend.py │ ├── irccat.py │ ├── irccat2.py │ ├── servermap.py │ ├── ssl-cat.py │ └── testbot.py ├── setup.cfg └── setup.py ├── jsmin ├── PKG-INFO ├── jsmin.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── jsmin │ ├── __init__.py │ └── test.py ├── pip-egg-info │ └── jsmin.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── kombu ├── AUTHORS ├── Changelog ├── FAQ ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── THANKS ├── TODO ├── docs │ ├── .static │ │ └── .keep │ ├── .templates │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── Makefile │ ├── _ext │ │ ├── applyxrefs.py │ │ └── literals_to_xrefs.py │ ├── _theme │ │ └── celery │ │ │ ├── static │ │ │ └── celery.css_t │ │ │ └── theme.conf │ ├── changelog.rst │ ├── conf.py │ ├── faq.rst │ ├── images │ │ ├── kombu.jpg │ │ └── kombusmall.jpg │ ├── index.rst │ ├── introduction.rst │ ├── reference │ │ ├── index.rst │ │ ├── kombu.abstract.rst │ │ ├── kombu.async.debug.rst │ │ ├── kombu.async.hub.rst │ │ ├── kombu.async.rst │ │ ├── kombu.async.semaphore.rst │ │ ├── kombu.async.timer.rst │ │ ├── kombu.clocks.rst │ │ ├── kombu.common.rst │ │ ├── kombu.compat.rst │ │ ├── kombu.compression.rst │ │ ├── kombu.connection.rst │ │ ├── kombu.exceptions.rst │ │ ├── kombu.five.rst │ │ ├── kombu.log.rst │ │ ├── kombu.message.rst │ │ ├── kombu.mixins.rst │ │ ├── kombu.pidbox.rst │ │ ├── kombu.pools.rst │ │ ├── kombu.rst │ │ ├── kombu.serialization.rst │ │ ├── kombu.simple.rst │ │ ├── kombu.syn.rst │ │ ├── kombu.transport.SLMQ.rst │ │ ├── kombu.transport.SQS.rst │ │ ├── kombu.transport.amqplib.rst │ │ ├── kombu.transport.base.rst │ │ ├── kombu.transport.beanstalk.rst │ │ ├── kombu.transport.couchdb.rst │ │ ├── kombu.transport.django.management.commands.clean_kombu_messages.rst │ │ ├── kombu.transport.django.managers.rst │ │ ├── kombu.transport.django.models.rst │ │ ├── kombu.transport.django.rst │ │ ├── kombu.transport.filesystem.rst │ │ ├── kombu.transport.librabbitmq.rst │ │ ├── kombu.transport.memory.rst │ │ ├── kombu.transport.mongodb.rst │ │ ├── kombu.transport.pyamqp.rst │ │ ├── kombu.transport.pyro.rst │ │ ├── kombu.transport.redis.rst │ │ ├── kombu.transport.rst │ │ ├── kombu.transport.sqlalchemy.models.rst │ │ ├── kombu.transport.sqlalchemy.rst │ │ ├── kombu.transport.virtual.exchange.rst │ │ ├── kombu.transport.virtual.rst │ │ ├── kombu.transport.virtual.scheduling.rst │ │ ├── kombu.transport.zmq.rst │ │ ├── kombu.transport.zookeeper.rst │ │ ├── kombu.utils.amq_manager.rst │ │ ├── kombu.utils.compat.rst │ │ ├── kombu.utils.debug.rst │ │ ├── kombu.utils.encoding.rst │ │ ├── kombu.utils.eventio.rst │ │ ├── kombu.utils.functional.rst │ │ ├── kombu.utils.limits.rst │ │ ├── kombu.utils.rst │ │ ├── kombu.utils.text.rst │ │ └── kombu.utils.url.rst │ └── userguide │ │ ├── connections.rst │ │ ├── consumers.rst │ │ ├── examples.rst │ │ ├── index.rst │ │ ├── introduction.rst │ │ ├── pools.rst │ │ ├── producers.rst │ │ ├── serialization.rst │ │ └── simple.rst ├── examples │ ├── complete_receive.py │ ├── complete_send.py │ ├── experimental │ │ └── async_consume.py │ ├── hello_consumer.py │ ├── hello_publisher.py │ ├── simple_eventlet_receive.py │ ├── simple_eventlet_send.py │ ├── simple_receive.py │ ├── simple_send.py │ └── simple_task_queue │ │ ├── __init__.py │ │ ├── client.py │ │ ├── queues.py │ │ ├── tasks.py │ │ └── worker.py ├── extra │ ├── doc2ghpages │ └── release │ │ ├── bump_version.py │ │ ├── doc4allmods │ │ ├── flakeplus.py │ │ ├── removepyc.sh │ │ └── verify-reference-index.sh ├── funtests │ ├── __init__.py │ ├── setup.cfg │ ├── setup.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_SLMQ.py │ │ ├── test_SQS.py │ │ ├── test_amqp.py │ │ ├── test_amqplib.py │ │ ├── test_beanstalk.py │ │ ├── test_couchdb.py │ │ ├── test_django.py │ │ ├── test_librabbitmq.py │ │ ├── test_mongodb.py │ │ ├── test_pyamqp.py │ │ ├── test_redis.py │ │ ├── test_sqla.py │ │ └── test_zookeeper.py │ └── transport.py ├── kombu.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── kombu │ ├── __init__.py │ ├── abstract.py │ ├── async │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── hub.py │ │ ├── semaphore.py │ │ └── timer.py │ ├── clocks.py │ ├── common.py │ ├── compat.py │ ├── compression.py │ ├── connection.py │ ├── entity.py │ ├── exceptions.py │ ├── five.py │ ├── log.py │ ├── message.py │ ├── messaging.py │ ├── mixins.py │ ├── pidbox.py │ ├── pools.py │ ├── serialization.py │ ├── simple.py │ ├── syn.py │ ├── tests │ │ ├── __init__.py │ │ ├── async │ │ │ ├── __init__.py │ │ │ ├── test_hub.py │ │ │ └── test_semaphore.py │ │ ├── case.py │ │ ├── mocks.py │ │ ├── test_clocks.py │ │ ├── test_common.py │ │ ├── test_compat.py │ │ ├── test_compression.py │ │ ├── test_connection.py │ │ ├── test_entities.py │ │ ├── test_log.py │ │ ├── test_messaging.py │ │ ├── test_mixins.py │ │ ├── test_pidbox.py │ │ ├── test_pools.py │ │ ├── test_serialization.py │ │ ├── test_simple.py │ │ ├── test_syn.py │ │ ├── transport │ │ │ ├── __init__.py │ │ │ ├── test_SQS.py │ │ │ ├── test_amqplib.py │ │ │ ├── test_base.py │ │ │ ├── test_filesystem.py │ │ │ ├── test_librabbitmq.py │ │ │ ├── test_memory.py │ │ │ ├── test_mongodb.py │ │ │ ├── test_pyamqp.py │ │ │ ├── test_redis.py │ │ │ ├── test_sqlalchemy.py │ │ │ ├── test_transport.py │ │ │ └── virtual │ │ │ │ ├── __init__.py │ │ │ │ ├── test_base.py │ │ │ │ ├── test_exchange.py │ │ │ │ └── test_scheduling.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── test_amq_manager.py │ │ │ ├── test_debug.py │ │ │ ├── test_encoding.py │ │ │ ├── test_functional.py │ │ │ └── test_utils.py │ ├── transport │ │ ├── SLMQ.py │ │ ├── SQS.py │ │ ├── __init__.py │ │ ├── amqplib.py │ │ ├── base.py │ │ ├── beanstalk.py │ │ ├── couchdb.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── management │ │ │ │ ├── __init__.py │ │ │ │ └── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── clean_kombu_messages.py │ │ │ ├── managers.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── models.py │ │ ├── filesystem.py │ │ ├── librabbitmq.py │ │ ├── memory.py │ │ ├── mongodb.py │ │ ├── pyamqp.py │ │ ├── pyro.py │ │ ├── redis.py │ │ ├── sqlalchemy │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── virtual │ │ │ ├── __init__.py │ │ │ ├── exchange.py │ │ │ └── scheduling.py │ │ ├── zmq.py │ │ └── zookeeper.py │ └── utils │ │ ├── __init__.py │ │ ├── amq_manager.py │ │ ├── compat.py │ │ ├── debug.py │ │ ├── encoding.py │ │ ├── eventio.py │ │ ├── functional.py │ │ ├── limits.py │ │ ├── text.py │ │ └── url.py ├── pip-egg-info │ └── kombu.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── requirements │ ├── default.txt │ ├── dev.txt │ ├── docs.txt │ ├── extras │ │ ├── beanstalk.txt │ │ ├── couchdb.txt │ │ ├── kazoo.txt │ │ ├── librabbitmq.txt │ │ ├── mongodb.txt │ │ ├── msgpack.txt │ │ ├── pyro.txt │ │ ├── redis.txt │ │ ├── slmq.txt │ │ ├── sqlalchemy.txt │ │ ├── sqs.txt │ │ ├── yaml.txt │ │ ├── zeromq.txt │ │ └── zookeeper.txt │ ├── funtest.txt │ ├── pkgutils.txt │ ├── py26.txt │ ├── test-ci.txt │ ├── test-ci3.txt │ ├── test.txt │ └── test3.txt ├── setup.cfg └── setup.py ├── markupsafe ├── AUTHORS ├── LICENSE ├── MANIFEST.in ├── MarkupSafe.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── PKG-INFO ├── README.rst ├── markupsafe │ ├── __init__.py │ ├── _compat.py │ ├── _constants.py │ ├── _native.py │ ├── _speedups.c │ └── tests.py ├── pip-egg-info │ └── MarkupSafe.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── mechanize ├── COPYING.txt ├── INSTALL.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── docs │ ├── development.txt │ ├── doc.txt │ ├── documentation.txt │ ├── download.txt │ ├── faq.txt │ ├── forms.txt │ ├── hints.txt │ ├── html │ │ ├── ChangeLog.txt │ │ ├── development.html │ │ ├── doc.html │ │ ├── documentation.html │ │ ├── download.html │ │ ├── faq.html │ │ ├── forms.html │ │ ├── hints.html │ │ ├── index.html │ │ └── support.html │ ├── index.txt │ ├── styles │ │ ├── ie6.js │ │ ├── maxwidth.css │ │ └── style.css │ └── support.txt ├── examples │ ├── forms │ │ ├── data.dat │ │ ├── data.txt │ │ ├── echo.cgi │ │ ├── example.html │ │ ├── example.py │ │ └── simple.py │ ├── hack21.py │ └── pypi.py ├── ez_setup.py ├── mechanize.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── top_level.txt │ └── zip-safe ├── mechanize │ ├── __init__.py │ ├── _auth.py │ ├── _beautifulsoup.py │ ├── _clientcookie.py │ ├── _debug.py │ ├── _firefox3cookiejar.py │ ├── _form.py │ ├── _gzip.py │ ├── _headersutil.py │ ├── _html.py │ ├── _http.py │ ├── _lwpcookiejar.py │ ├── _markupbase.py │ ├── _mechanize.py │ ├── _mozillacookiejar.py │ ├── _msiecookiejar.py │ ├── _opener.py │ ├── _pullparser.py │ ├── _request.py │ ├── _response.py │ ├── _rfc3986.py │ ├── _sgmllib_copy.py │ ├── _sockettimeout.py │ ├── _testcase.py │ ├── _urllib2.py │ ├── _urllib2_fork.py │ ├── _useragent.py │ ├── _util.py │ └── _version.py ├── pip-egg-info │ └── mechanize.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── release.py ├── setup.cfg ├── setup.py ├── test-tools │ ├── cookietest.cgi │ ├── doctest.py │ ├── functools_copy.py │ ├── linecache_copy.py │ ├── testprogram.py │ ├── twisted-ftpserver.py │ ├── twisted-localserver.py │ └── unittest │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── case.py │ │ ├── loader.py │ │ ├── main.py │ │ ├── result.py │ │ ├── runner.py │ │ ├── suite.py │ │ └── util.py ├── test.py └── test │ ├── __init__.py │ ├── functional_tests_golden │ ├── FormsExamplesTests.test_example │ │ └── output │ └── FormsExamplesTests.test_simple │ │ └── output │ ├── test_api.py │ ├── test_browser.doctest │ ├── test_browser.py │ ├── test_cookie.py │ ├── test_cookies.py │ ├── test_date.py │ ├── test_form.py │ ├── test_form_data │ ├── Auth.html │ ├── FullSearch.html │ ├── GeneralSearch.html │ ├── MarkedRecords.html │ ├── MarkedResults.html │ ├── Results.html │ └── SearchType.html │ ├── test_form_mutation.py │ ├── test_forms.doctest │ ├── test_functional.py │ ├── test_headers.py │ ├── test_history.doctest │ ├── test_html.doctest │ ├── test_html.py │ ├── test_import.py │ ├── test_opener.doctest │ ├── test_opener.py │ ├── test_password_manager.special_doctest │ ├── test_performance.py │ ├── test_pickle.py │ ├── test_pullparser.py │ ├── test_request.doctest │ ├── test_response.doctest │ ├── test_response.py │ ├── test_rfc3986.doctest │ ├── test_robotfileparser.doctest │ ├── test_unittest.py │ ├── test_urllib2.py │ ├── test_urllib2_localnet.py │ └── test_useragent.py ├── mimeparse ├── PKG-INFO ├── README ├── mimeparse.py ├── mimeparse_test.py ├── pip-egg-info │ └── mimeparse.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── setup.py └── testdata.json ├── mock ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── docs │ ├── _static │ │ ├── adctheme.css │ │ ├── breadcrumb_background.png │ │ ├── documentation.png │ │ ├── header_sm_mid.png │ │ ├── mobile.css │ │ ├── scrn1.png │ │ ├── scrn2.png │ │ ├── searchfield_leftcap.png │ │ ├── searchfield_repeat.png │ │ ├── searchfield_rightcap.png │ │ ├── title_background.png │ │ ├── triangle_closed.png │ │ ├── triangle_left.png │ │ └── triangle_open.png │ ├── _templates │ │ └── layout.html │ ├── changelog.txt │ ├── compare.txt │ ├── conf.py │ ├── examples.txt │ ├── getting-started.txt │ ├── index.txt │ ├── magicmock.txt │ ├── mock.txt │ ├── mocksignature.txt │ ├── patch.txt │ └── sentinel.txt ├── html │ ├── .doctrees │ │ ├── changelog.doctree │ │ ├── compare.doctree │ │ ├── examples.doctree │ │ ├── getting-started.doctree │ │ ├── index.doctree │ │ ├── magicmock.doctree │ │ ├── mock.doctree │ │ ├── mocksignature.doctree │ │ ├── patch.doctree │ │ └── sentinel.doctree │ ├── _sources │ │ ├── changelog.txt │ │ ├── compare.txt │ │ ├── examples.txt │ │ ├── getting-started.txt │ │ ├── index.txt │ │ ├── magicmock.txt │ │ ├── mock.txt │ │ ├── mocksignature.txt │ │ ├── patch.txt │ │ └── sentinel.txt │ ├── _static │ │ ├── adctheme.css │ │ ├── basic.css │ │ ├── breadcrumb_background.png │ │ ├── default.css │ │ ├── doctools.js │ │ ├── documentation.png │ │ ├── file.png │ │ ├── header_sm_mid.png │ │ ├── jquery.js │ │ ├── minus.png │ │ ├── mobile.css │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── scrn1.png │ │ ├── scrn2.png │ │ ├── searchfield_leftcap.png │ │ ├── searchfield_repeat.png │ │ ├── searchfield_rightcap.png │ │ ├── searchtools.js │ │ ├── sidebar.js │ │ ├── title_background.png │ │ ├── toc.js │ │ ├── triangle_closed.png │ │ ├── triangle_left.png │ │ ├── triangle_open.png │ │ └── underscore.js │ ├── changelog.html │ ├── compare.html │ ├── examples.html │ ├── genindex.html │ ├── getting-started.html │ ├── index.html │ ├── magicmock.html │ ├── mock.html │ ├── mocksignature.html │ ├── objects.inv │ ├── output.txt │ ├── patch.html │ ├── search.html │ ├── searchindex.js │ └── sentinel.html ├── mock.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── mock.py ├── pip-egg-info │ └── mock.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── _testwith.py │ ├── support.py │ ├── support_with.py │ ├── testmagicmethods.py │ ├── testmock.py │ ├── testmocksignature.py │ ├── testpatch.py │ ├── testsentinel.py │ └── testwith.py ├── oauthlib ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── oauthlib.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── oauthlib │ ├── __init__.py │ ├── common.py │ ├── oauth1 │ │ ├── __init__.py │ │ └── rfc5849 │ │ │ ├── __init__.py │ │ │ ├── endpoints │ │ │ ├── __init__.py │ │ │ ├── access_token.py │ │ │ ├── authorization.py │ │ │ ├── base.py │ │ │ ├── pre_configured.py │ │ │ ├── request_token.py │ │ │ ├── resource.py │ │ │ └── signature_only.py │ │ │ ├── errors.py │ │ │ ├── parameters.py │ │ │ ├── request_validator.py │ │ │ ├── signature.py │ │ │ └── utils.py │ ├── oauth2 │ │ ├── __init__.py │ │ └── rfc6749 │ │ │ ├── __init__.py │ │ │ ├── clients │ │ │ ├── __init__.py │ │ │ ├── backend_application.py │ │ │ ├── base.py │ │ │ ├── legacy_application.py │ │ │ ├── mobile_application.py │ │ │ ├── service_application.py │ │ │ └── web_application.py │ │ │ ├── endpoints │ │ │ ├── __init__.py │ │ │ ├── authorization.py │ │ │ ├── base.py │ │ │ ├── pre_configured.py │ │ │ ├── resource.py │ │ │ ├── revocation.py │ │ │ └── token.py │ │ │ ├── errors.py │ │ │ ├── grant_types │ │ │ ├── __init__.py │ │ │ ├── authorization_code.py │ │ │ ├── base.py │ │ │ ├── client_credentials.py │ │ │ ├── implicit.py │ │ │ ├── refresh_token.py │ │ │ └── resource_owner_password_credentials.py │ │ │ ├── parameters.py │ │ │ ├── request_validator.py │ │ │ ├── tokens.py │ │ │ └── utils.py │ ├── signals.py │ └── uri_validate.py ├── pip-egg-info │ └── oauthlib.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── tests │ ├── __init__.py │ ├── oauth1 │ ├── __init__.py │ └── rfc5849 │ │ ├── __init__.py │ │ ├── endpoints │ │ ├── __init__.py │ │ ├── test_access_token.py │ │ ├── test_authorization.py │ │ ├── test_base.py │ │ ├── test_request_token.py │ │ ├── test_resource.py │ │ └── test_signature_only.py │ │ ├── test_client.py │ │ ├── test_parameters.py │ │ ├── test_request_validator.py │ │ ├── test_signatures.py │ │ └── test_utils.py │ ├── oauth2 │ ├── __init__.py │ └── rfc6749 │ │ ├── __init__.py │ │ ├── clients │ │ ├── __init__.py │ │ ├── test_backend_application.py │ │ ├── test_base.py │ │ ├── test_legacy_application.py │ │ ├── test_mobile_application.py │ │ ├── test_service_application.py │ │ └── test_web_application.py │ │ ├── endpoints │ │ ├── __init__.py │ │ ├── test_base_endpoint.py │ │ ├── test_client_authentication.py │ │ ├── test_credentials_preservation.py │ │ ├── test_error_responses.py │ │ ├── test_extra_credentials.py │ │ ├── test_resource_owner_association.py │ │ ├── test_revocation_endpoint.py │ │ ├── test_scope_handling.py │ │ └── test_utils.py │ │ ├── grant_types │ │ ├── __init__.py │ │ ├── test_authorization_code.py │ │ ├── test_client_credentials.py │ │ ├── test_implicit.py │ │ ├── test_refresh_token.py │ │ └── test_resource_owner_password.py │ │ ├── test_parameters.py │ │ ├── test_request_validator.py │ │ ├── test_server.py │ │ ├── test_tokens.py │ │ └── test_utils.py │ ├── test_common.py │ └── unittest │ └── __init__.py ├── odict ├── LICENSE.rst ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── pip-egg-info │ └── odict.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── namespace_packages.txt │ │ ├── requires.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── setup.cfg ├── setup.py └── src │ ├── odict.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── namespace_packages.txt │ ├── requires.txt │ ├── top_level.txt │ └── zip-safe │ └── odict │ ├── __init__.py │ ├── bench.py │ ├── pyodict.py │ └── tests.py ├── ordereddict ├── LICENSE ├── PKG-INFO ├── ordereddict.py ├── pip-egg-info │ └── ordereddict.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt └── setup.py ├── python-dateutil ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS ├── PKG-INFO ├── README ├── dateutil │ ├── __init__.py │ ├── easter.py │ ├── parser.py │ ├── relativedelta.py │ ├── rrule.py │ ├── tz.py │ ├── tzwin.py │ └── zoneinfo │ │ ├── __init__.py │ │ └── zoneinfo-2010g.tar.gz ├── example.py ├── pip-egg-info │ └── python_dateutil.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── python_dateutil.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt ├── sandbox │ ├── rrulewrapper.py │ └── scheduler.py ├── setup.cfg ├── setup.py ├── test.py └── updatezinfo.py ├── python-memcached ├── ChangeLog ├── PKG-INFO ├── README ├── memcache.html ├── memcache.py ├── pip-egg-info │ └── python_memcached.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── python-mimeparse ├── LICENSE ├── PKG-INFO ├── README ├── mimeparse.py ├── mimeparse_test.py ├── pip-egg-info │ └── python_mimeparse.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── testdata.json ├── python-openid ├── ._LICENSE ├── ._MANIFEST.in ├── ._NEWS ├── ._NOTICE ├── ._README ├── ._background-associations.txt ├── ._setup.cfg ├── ._setup.py ├── LICENSE ├── MANIFEST.in ├── NEWS ├── NOTICE ├── PKG-INFO ├── README ├── admin │ ├── ._builddiscover.py │ ├── ._fixperms │ ├── ._gettlds.py │ ├── ._makechangelog │ ├── ._makedoc │ ├── ._pythonsource │ ├── ._runtests │ ├── ._setversion │ ├── ._tagrelease │ ├── builddiscover.py │ ├── fixperms │ ├── gettlds.py │ ├── makechangelog │ ├── makedoc │ ├── pythonsource │ ├── runtests │ ├── setversion │ └── tagrelease ├── background-associations.txt ├── contrib │ ├── ._associate │ ├── ._openid-parse │ ├── ._upgrade-store-1.1-to-2.0 │ ├── associate │ ├── openid-parse │ └── upgrade-store-1.1-to-2.0 ├── examples │ ├── ._README │ ├── .___init__.py │ ├── ._consumer.py │ ├── ._discover │ ├── ._server.py │ ├── README │ ├── __init__.py │ ├── consumer.py │ ├── discover │ ├── djopenid │ │ ├── ._README │ │ ├── .___init__.py │ │ ├── ._manage.py │ │ ├── ._settings.py │ │ ├── ._urls.py │ │ ├── ._util.py │ │ ├── ._views.py │ │ ├── README │ │ ├── __init__.py │ │ ├── consumer │ │ │ ├── .___init__.py │ │ │ ├── ._models.py │ │ │ ├── ._urls.py │ │ │ ├── ._views.py │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── manage.py │ │ ├── server │ │ │ ├── .___init__.py │ │ │ ├── ._models.py │ │ │ ├── ._tests.py │ │ │ ├── ._urls.py │ │ │ ├── ._views.py │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ ├── tests.py │ │ │ ├── urls.py │ │ │ └── views.py │ │ ├── settings.py │ │ ├── templates │ │ │ ├── ._index.html │ │ │ ├── ._xrds.xml │ │ │ ├── consumer │ │ │ │ ├── ._index.html │ │ │ │ ├── ._request_form.html │ │ │ │ ├── index.html │ │ │ │ └── request_form.html │ │ │ ├── index.html │ │ │ ├── server │ │ │ │ ├── ._endpoint.html │ │ │ │ ├── ._idPage.html │ │ │ │ ├── ._index.html │ │ │ │ ├── ._pape_request_info.html │ │ │ │ ├── ._trust.html │ │ │ │ ├── endpoint.html │ │ │ │ ├── idPage.html │ │ │ │ ├── index.html │ │ │ │ ├── pape_request_info.html │ │ │ │ └── trust.html │ │ │ └── xrds.xml │ │ ├── urls.py │ │ ├── util.py │ │ └── views.py │ └── server.py ├── openid │ ├── .___init__.py │ ├── ._association.py │ ├── ._cryptutil.py │ ├── ._dh.py │ ├── ._extension.py │ ├── ._fetchers.py │ ├── ._kvform.py │ ├── ._message.py │ ├── ._oidutil.py │ ├── ._sreg.py │ ├── ._urinorm.py │ ├── __init__.py │ ├── association.py │ ├── consumer │ │ ├── .___init__.py │ │ ├── ._consumer.py │ │ ├── ._discover.py │ │ ├── ._html_parse.py │ │ ├── __init__.py │ │ ├── consumer.py │ │ ├── discover.py │ │ └── html_parse.py │ ├── cryptutil.py │ ├── dh.py │ ├── extension.py │ ├── extensions │ │ ├── .___init__.py │ │ ├── ._ax.py │ │ ├── ._sreg.py │ │ ├── __init__.py │ │ ├── ax.py │ │ ├── draft │ │ │ ├── .___init__.py │ │ │ ├── ._pape2.py │ │ │ ├── ._pape5.py │ │ │ ├── __init__.py │ │ │ ├── pape2.py │ │ │ └── pape5.py │ │ └── sreg.py │ ├── fetchers.py │ ├── kvform.py │ ├── message.py │ ├── oidutil.py │ ├── server │ │ ├── .___init__.py │ │ ├── ._server.py │ │ ├── ._trustroot.py │ │ ├── __init__.py │ │ ├── server.py │ │ └── trustroot.py │ ├── sreg.py │ ├── store │ │ ├── .___init__.py │ │ ├── ._filestore.py │ │ ├── ._interface.py │ │ ├── ._memstore.py │ │ ├── ._nonce.py │ │ ├── ._sqlstore.py │ │ ├── __init__.py │ │ ├── filestore.py │ │ ├── interface.py │ │ ├── memstore.py │ │ ├── nonce.py │ │ └── sqlstore.py │ ├── test │ │ ├── .___init__.py │ │ ├── ._cryptutil.py │ │ ├── ._datadriven.py │ │ ├── ._dh.py │ │ ├── ._dhpriv │ │ ├── ._discoverdata.py │ │ ├── ._kvform.py │ │ ├── ._linkparse.py │ │ ├── ._linkparse.txt │ │ ├── ._n2b64 │ │ ├── ._oidutil.py │ │ ├── ._storetest.py │ │ ├── ._support.py │ │ ├── ._test_accept.py │ │ ├── ._test_association.py │ │ ├── ._test_association_response.py │ │ ├── ._test_auth_request.py │ │ ├── ._test_ax.py │ │ ├── ._test_consumer.py │ │ ├── ._test_discover.py │ │ ├── ._test_etxrd.py │ │ ├── ._test_examples.py │ │ ├── ._test_extension.py │ │ ├── ._test_fetchers.py │ │ ├── ._test_htmldiscover.py │ │ ├── ._test_message.py │ │ ├── ._test_negotiation.py │ │ ├── ._test_nonce.py │ │ ├── ._test_openidyadis.py │ │ ├── ._test_pape.py │ │ ├── ._test_pape_draft2.py │ │ ├── ._test_pape_draft5.py │ │ ├── ._test_parsehtml.py │ │ ├── ._test_rpverify.py │ │ ├── ._test_server.py │ │ ├── ._test_services.py │ │ ├── ._test_sreg.py │ │ ├── ._test_symbol.py │ │ ├── ._test_urinorm.py │ │ ├── ._test_verifydisco.py │ │ ├── ._test_xri.py │ │ ├── ._test_xrires.py │ │ ├── ._test_yadis_discover.py │ │ ├── ._trustroot.py │ │ ├── ._urinorm.txt │ │ ├── __init__.py │ │ ├── cryptutil.py │ │ ├── data │ │ │ ├── ._accept.txt │ │ │ ├── ._example-xrds.xml │ │ │ ├── ._openid-1.2-consumer-sqlitestore.db │ │ │ ├── ._test1-discover.txt │ │ │ ├── ._test1-parsehtml.txt │ │ │ ├── ._trustroot.txt │ │ │ ├── accept.txt │ │ │ ├── example-xrds.xml │ │ │ ├── openid-1.2-consumer-sqlitestore.db │ │ │ ├── test1-discover.txt │ │ │ ├── test1-parsehtml.txt │ │ │ ├── test_discover │ │ │ │ ├── ._openid.html │ │ │ │ ├── ._openid2.html │ │ │ │ ├── ._openid2_xrds.xml │ │ │ │ ├── ._openid2_xrds_no_local_id.xml │ │ │ │ ├── ._openid_1_and_2.html │ │ │ │ ├── ._openid_1_and_2_xrds.xml │ │ │ │ ├── ._openid_1_and_2_xrds_bad_delegate.xml │ │ │ │ ├── ._openid_and_yadis.html │ │ │ │ ├── ._openid_no_delegate.html │ │ │ │ ├── ._yadis_0entries.xml │ │ │ │ ├── ._yadis_2_bad_local_id.xml │ │ │ │ ├── ._yadis_2entries_delegate.xml │ │ │ │ ├── ._yadis_2entries_idp.xml │ │ │ │ ├── ._yadis_another_delegate.xml │ │ │ │ ├── ._yadis_idp.xml │ │ │ │ ├── ._yadis_idp_delegate.xml │ │ │ │ ├── ._yadis_no_delegate.xml │ │ │ │ ├── openid.html │ │ │ │ ├── openid2.html │ │ │ │ ├── openid2_xrds.xml │ │ │ │ ├── openid2_xrds_no_local_id.xml │ │ │ │ ├── openid_1_and_2.html │ │ │ │ ├── openid_1_and_2_xrds.xml │ │ │ │ ├── openid_1_and_2_xrds_bad_delegate.xml │ │ │ │ ├── openid_and_yadis.html │ │ │ │ ├── openid_no_delegate.html │ │ │ │ ├── yadis_0entries.xml │ │ │ │ ├── yadis_2_bad_local_id.xml │ │ │ │ ├── yadis_2entries_delegate.xml │ │ │ │ ├── yadis_2entries_idp.xml │ │ │ │ ├── yadis_another_delegate.xml │ │ │ │ ├── yadis_idp.xml │ │ │ │ ├── yadis_idp_delegate.xml │ │ │ │ └── yadis_no_delegate.xml │ │ │ ├── test_etxrd │ │ │ │ ├── ._README │ │ │ │ ├── ._delegated-20060809-r1.xrds │ │ │ │ ├── ._delegated-20060809-r2.xrds │ │ │ │ ├── ._delegated-20060809.xrds │ │ │ │ ├── ._no-xrd.xml │ │ │ │ ├── ._not-xrds.xml │ │ │ │ ├── ._prefixsometimes.xrds │ │ │ │ ├── ._ref.xrds │ │ │ │ ├── ._sometimesprefix.xrds │ │ │ │ ├── ._spoof1.xrds │ │ │ │ ├── ._spoof2.xrds │ │ │ │ ├── ._spoof3.xrds │ │ │ │ ├── ._status222.xrds │ │ │ │ ├── ._subsegments.xrds │ │ │ │ ├── ._valid-populated-xrds.xml │ │ │ │ ├── README │ │ │ │ ├── delegated-20060809-r1.xrds │ │ │ │ ├── delegated-20060809-r2.xrds │ │ │ │ ├── delegated-20060809.xrds │ │ │ │ ├── no-xrd.xml │ │ │ │ ├── not-xrds.xml │ │ │ │ ├── prefixsometimes.xrds │ │ │ │ ├── ref.xrds │ │ │ │ ├── sometimesprefix.xrds │ │ │ │ ├── spoof1.xrds │ │ │ │ ├── spoof2.xrds │ │ │ │ ├── spoof3.xrds │ │ │ │ ├── status222.xrds │ │ │ │ ├── subsegments.xrds │ │ │ │ └── valid-populated-xrds.xml │ │ │ └── trustroot.txt │ │ ├── datadriven.py │ │ ├── dh.py │ │ ├── dhpriv │ │ ├── discoverdata.py │ │ ├── kvform.py │ │ ├── linkparse.py │ │ ├── linkparse.txt │ │ ├── n2b64 │ │ ├── oidutil.py │ │ ├── storetest.py │ │ ├── support.py │ │ ├── test_accept.py │ │ ├── test_association.py │ │ ├── test_association_response.py │ │ ├── test_auth_request.py │ │ ├── test_ax.py │ │ ├── test_consumer.py │ │ ├── test_discover.py │ │ ├── test_etxrd.py │ │ ├── test_examples.py │ │ ├── test_extension.py │ │ ├── test_fetchers.py │ │ ├── test_htmldiscover.py │ │ ├── test_message.py │ │ ├── test_negotiation.py │ │ ├── test_nonce.py │ │ ├── test_openidyadis.py │ │ ├── test_pape.py │ │ ├── test_pape_draft2.py │ │ ├── test_pape_draft5.py │ │ ├── test_parsehtml.py │ │ ├── test_rpverify.py │ │ ├── test_server.py │ │ ├── test_services.py │ │ ├── test_sreg.py │ │ ├── test_symbol.py │ │ ├── test_urinorm.py │ │ ├── test_verifydisco.py │ │ ├── test_xri.py │ │ ├── test_xrires.py │ │ ├── test_yadis_discover.py │ │ ├── trustroot.py │ │ └── urinorm.txt │ ├── urinorm.py │ └── yadis │ │ ├── .___init__.py │ │ ├── ._accept.py │ │ ├── ._constants.py │ │ ├── ._discover.py │ │ ├── ._etxrd.py │ │ ├── ._filters.py │ │ ├── ._manager.py │ │ ├── ._parsehtml.py │ │ ├── ._services.py │ │ ├── ._xri.py │ │ ├── ._xrires.py │ │ ├── __init__.py │ │ ├── accept.py │ │ ├── constants.py │ │ ├── discover.py │ │ ├── etxrd.py │ │ ├── filters.py │ │ ├── manager.py │ │ ├── parsehtml.py │ │ ├── services.py │ │ ├── xri.py │ │ └── xrires.py ├── pip-egg-info │ └── python_openid.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg └── setup.py ├── python-otp ├── MANIFEST.in ├── PKG-INFO ├── README ├── otp.moin ├── otp │ ├── __init__.py │ ├── dict.py │ ├── dictgen.py │ ├── format.py │ ├── hash.py │ ├── otp.py │ └── test.py ├── pip-egg-info │ └── python_otp.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── rfc2289.txt ├── setup.cfg ├── setup.py └── test.py ├── python-patch ├── README └── patch.py ├── python-social-auth ├── python_social_auth-0.2.9.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── social │ ├── __init__.py │ ├── actions.py │ ├── apps │ ├── __init__.py │ ├── cherrypy_app │ │ ├── __init__.py │ │ ├── models.py │ │ ├── utils.py │ │ └── views.py │ ├── django_app │ │ ├── __init__.py │ │ ├── context_processors.py │ │ ├── default │ │ │ ├── __init__.py │ │ │ ├── admin.py │ │ │ ├── config.py │ │ │ ├── fields.py │ │ │ ├── migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ ├── 0002_add_related_name.py │ │ │ │ ├── 0003_alter_email_max_length.py │ │ │ │ └── __init__.py │ │ │ ├── models.py │ │ │ ├── south_migrations │ │ │ │ ├── 0001_initial.py │ │ │ │ └── __init__.py │ │ │ └── tests.py │ │ ├── me │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ ├── models.py │ │ │ └── tests.py │ │ ├── middleware.py │ │ ├── tests.py │ │ ├── urls.py │ │ ├── utils.py │ │ └── views.py │ ├── flask_app │ │ ├── __init__.py │ │ ├── default │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── me │ │ │ ├── __init__.py │ │ │ └── models.py │ │ ├── routes.py │ │ ├── template_filters.py │ │ └── utils.py │ ├── pyramid_app │ │ ├── __init__.py │ │ ├── models.py │ │ ├── utils.py │ │ └── views.py │ ├── tornado_app │ │ ├── __init__.py │ │ ├── handlers.py │ │ ├── models.py │ │ ├── routes.py │ │ └── utils.py │ └── webpy_app │ │ ├── __init__.py │ │ ├── app.py │ │ ├── models.py │ │ └── utils.py │ ├── backends │ ├── __init__.py │ ├── amazon.py │ ├── angel.py │ ├── aol.py │ ├── appsfuel.py │ ├── base.py │ ├── battlenet.py │ ├── beats.py │ ├── behance.py │ ├── belgiumeid.py │ ├── bitbucket.py │ ├── box.py │ ├── changetip.py │ ├── clef.py │ ├── coinbase.py │ ├── coursera.py │ ├── dailymotion.py │ ├── disqus.py │ ├── docker.py │ ├── douban.py │ ├── dribbble.py │ ├── dropbox.py │ ├── email.py │ ├── eveonline.py │ ├── evernote.py │ ├── exacttarget.py │ ├── facebook.py │ ├── fedora.py │ ├── fitbit.py │ ├── flickr.py │ ├── foursquare.py │ ├── gae.py │ ├── github.py │ ├── goclio.py │ ├── google.py │ ├── instagram.py │ ├── jawbone.py │ ├── kakao.py │ ├── khanacademy.py │ ├── lastfm.py │ ├── launchpad.py │ ├── legacy.py │ ├── linkedin.py │ ├── live.py │ ├── livejournal.py │ ├── loginradius.py │ ├── mailru.py │ ├── mapmyfitness.py │ ├── mendeley.py │ ├── mineid.py │ ├── mixcloud.py │ ├── moves.py │ ├── nationbuilder.py │ ├── nk.py │ ├── oauth.py │ ├── odnoklassniki.py │ ├── open_id.py │ ├── openstreetmap.py │ ├── persona.py │ ├── pixelpin.py │ ├── pocket.py │ ├── podio.py │ ├── professionali.py │ ├── pushbullet.py │ ├── qiita.py │ ├── qq.py │ ├── rdio.py │ ├── readability.py │ ├── reddit.py │ ├── runkeeper.py │ ├── salesforce.py │ ├── shopify.py │ ├── skyrock.py │ ├── slack.py │ ├── soundcloud.py │ ├── spotify.py │ ├── stackoverflow.py │ ├── steam.py │ ├── stocktwits.py │ ├── strava.py │ ├── stripe.py │ ├── suse.py │ ├── taobao.py │ ├── thisismyjam.py │ ├── trello.py │ ├── tripit.py │ ├── tumblr.py │ ├── twilio.py │ ├── twitch.py │ ├── twitter.py │ ├── ubuntu.py │ ├── username.py │ ├── utils.py │ ├── vend.py │ ├── vimeo.py │ ├── vk.py │ ├── weibo.py │ ├── wunderlist.py │ ├── xing.py │ ├── yahoo.py │ ├── yammer.py │ ├── yandex.py │ └── zotero.py │ ├── exceptions.py │ ├── p3.py │ ├── pipeline │ ├── __init__.py │ ├── debug.py │ ├── disconnect.py │ ├── mail.py │ ├── partial.py │ ├── social_auth.py │ ├── user.py │ └── utils.py │ ├── storage │ ├── __init__.py │ ├── base.py │ ├── django_orm.py │ ├── mongoengine_orm.py │ └── sqlalchemy_orm.py │ ├── store.py │ ├── strategies │ ├── __init__.py │ ├── base.py │ ├── cherrypy_strategy.py │ ├── django_strategy.py │ ├── flask_strategy.py │ ├── pyramid_strategy.py │ ├── tornado_strategy.py │ ├── utils.py │ └── webpy_strategy.py │ ├── tests │ ├── __init__.py │ ├── actions │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── test_associate.py │ │ ├── test_disconnect.py │ │ └── test_login.py │ ├── backends │ │ ├── __init__.py │ │ ├── base.py │ │ ├── legacy.py │ │ ├── oauth.py │ │ ├── open_id.py │ │ ├── test_amazon.py │ │ ├── test_angel.py │ │ ├── test_behance.py │ │ ├── test_bitbucket.py │ │ ├── test_box.py │ │ ├── test_broken.py │ │ ├── test_clef.py │ │ ├── test_coinbase.py │ │ ├── test_coursera.py │ │ ├── test_dailymotion.py │ │ ├── test_disqus.py │ │ ├── test_dribbble.py │ │ ├── test_dropbox.py │ │ ├── test_dummy.py │ │ ├── test_email.py │ │ ├── test_evernote.py │ │ ├── test_facebook.py │ │ ├── test_fitbit.py │ │ ├── test_flickr.py │ │ ├── test_foursquare.py │ │ ├── test_github.py │ │ ├── test_google.py │ │ ├── test_instagram.py │ │ ├── test_kakao.py │ │ ├── test_khanacademy.py │ │ ├── test_linkedin.py │ │ ├── test_live.py │ │ ├── test_livejournal.py │ │ ├── test_mapmyfitness.py │ │ ├── test_mineid.py │ │ ├── test_mixcloud.py │ │ ├── test_nationbuilder.py │ │ ├── test_podio.py │ │ ├── test_qiita.py │ │ ├── test_readability.py │ │ ├── test_reddit.py │ │ ├── test_skyrock.py │ │ ├── test_soundcloud.py │ │ ├── test_stackoverflow.py │ │ ├── test_steam.py │ │ ├── test_stocktwits.py │ │ ├── test_strava.py │ │ ├── test_stripe.py │ │ ├── test_taobao.py │ │ ├── test_thisismyjam.py │ │ ├── test_tripit.py │ │ ├── test_tumblr.py │ │ ├── test_twitch.py │ │ ├── test_twitter.py │ │ ├── test_username.py │ │ ├── test_utils.py │ │ ├── test_vk.py │ │ ├── test_wunderlist.py │ │ ├── test_xing.py │ │ ├── test_yahoo.py │ │ ├── test_yammer.py │ │ ├── test_yandex.py │ │ └── test_zotero.py │ ├── models.py │ ├── pipeline.py │ ├── requirements-python3.txt │ ├── requirements.txt │ ├── strategy.py │ ├── test_exceptions.py │ ├── test_pipeline.py │ ├── test_storage.py │ └── test_utils.py │ └── utils.py ├── pytz ├── CHANGES.txt ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── pip-egg-info │ └── pytz.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── pytz.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── top_level.txt │ └── zip-safe ├── pytz │ ├── __init__.py │ ├── exceptions.py │ ├── reference.py │ ├── tests │ │ ├── test_docs.py │ │ └── test_tzinfo.py │ ├── tzfile.py │ ├── tzinfo.py │ └── zoneinfo │ │ ├── Africa │ │ ├── Abidjan │ │ ├── Accra │ │ ├── Addis_Ababa │ │ ├── Algiers │ │ ├── Asmara │ │ ├── Asmera │ │ ├── Bamako │ │ ├── Bangui │ │ ├── Banjul │ │ ├── Bissau │ │ ├── Blantyre │ │ ├── Brazzaville │ │ ├── Bujumbura │ │ ├── Cairo │ │ ├── Casablanca │ │ ├── Ceuta │ │ ├── Conakry │ │ ├── Dakar │ │ ├── Dar_es_Salaam │ │ ├── Djibouti │ │ ├── Douala │ │ ├── El_Aaiun │ │ ├── Freetown │ │ ├── Gaborone │ │ ├── Harare │ │ ├── Johannesburg │ │ ├── Juba │ │ ├── Kampala │ │ ├── Khartoum │ │ ├── Kigali │ │ ├── Kinshasa │ │ ├── Lagos │ │ ├── Libreville │ │ ├── Lome │ │ ├── Luanda │ │ ├── Lubumbashi │ │ ├── Lusaka │ │ ├── Malabo │ │ ├── Maputo │ │ ├── Maseru │ │ ├── Mbabane │ │ ├── Mogadishu │ │ ├── Monrovia │ │ ├── Nairobi │ │ ├── Ndjamena │ │ ├── Niamey │ │ ├── Nouakchott │ │ ├── Ouagadougou │ │ ├── Porto-Novo │ │ ├── Sao_Tome │ │ ├── Timbuktu │ │ ├── Tripoli │ │ ├── Tunis │ │ └── Windhoek │ │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ └── Ushuaia │ │ ├── Aruba │ │ ├── Asuncion │ │ ├── Atikokan │ │ ├── Atka │ │ ├── Bahia │ │ ├── Bahia_Banderas │ │ ├── Barbados │ │ ├── Belem │ │ ├── Belize │ │ ├── Blanc-Sablon │ │ ├── Boa_Vista │ │ ├── Bogota │ │ ├── Boise │ │ ├── Buenos_Aires │ │ ├── Cambridge_Bay │ │ ├── Campo_Grande │ │ ├── Cancun │ │ ├── Caracas │ │ ├── Catamarca │ │ ├── Cayenne │ │ ├── Cayman │ │ ├── Chicago │ │ ├── Chihuahua │ │ ├── Coral_Harbour │ │ ├── Cordoba │ │ ├── Costa_Rica │ │ ├── Cuiaba │ │ ├── Curacao │ │ ├── Danmarkshavn │ │ ├── Dawson │ │ ├── Dawson_Creek │ │ ├── Denver │ │ ├── Detroit │ │ ├── Dominica │ │ ├── Edmonton │ │ ├── Eirunepe │ │ ├── El_Salvador │ │ ├── Ensenada │ │ ├── Fort_Wayne │ │ ├── Fortaleza │ │ ├── Glace_Bay │ │ ├── Godthab │ │ ├── Goose_Bay │ │ ├── Grand_Turk │ │ ├── Grenada │ │ ├── Guadeloupe │ │ ├── Guatemala │ │ ├── Guayaquil │ │ ├── Guyana │ │ ├── Halifax │ │ ├── Havana │ │ ├── Hermosillo │ │ ├── Indiana │ │ │ ├── Indianapolis │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ └── Winamac │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── Knox_IN │ │ ├── Kralendijk │ │ ├── La_Paz │ │ ├── Lima │ │ ├── Los_Angeles │ │ ├── Louisville │ │ ├── Lower_Princes │ │ ├── Maceio │ │ ├── Managua │ │ ├── Manaus │ │ ├── Marigot │ │ ├── Martinique │ │ ├── Matamoros │ │ ├── Mazatlan │ │ ├── Mendoza │ │ ├── Menominee │ │ ├── Merida │ │ ├── Metlakatla │ │ ├── Mexico_City │ │ ├── Miquelon │ │ ├── Moncton │ │ ├── Monterrey │ │ ├── Montevideo │ │ ├── Montreal │ │ ├── Montserrat │ │ ├── Nassau │ │ ├── New_York │ │ ├── Nipigon │ │ ├── Nome │ │ ├── Noronha │ │ ├── North_Dakota │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── Ojinaga │ │ ├── Panama │ │ ├── Pangnirtung │ │ ├── Paramaribo │ │ ├── Phoenix │ │ ├── Port-au-Prince │ │ ├── Port_of_Spain │ │ ├── Porto_Acre │ │ ├── Porto_Velho │ │ ├── Puerto_Rico │ │ ├── Rainy_River │ │ ├── Rankin_Inlet │ │ ├── Recife │ │ ├── Regina │ │ ├── Resolute │ │ ├── Rio_Branco │ │ ├── Rosario │ │ ├── Santa_Isabel │ │ ├── Santarem │ │ ├── Santiago │ │ ├── Santo_Domingo │ │ ├── Sao_Paulo │ │ ├── Scoresbysund │ │ ├── Shiprock │ │ ├── Sitka │ │ ├── St_Barthelemy │ │ ├── St_Johns │ │ ├── St_Kitts │ │ ├── St_Lucia │ │ ├── St_Thomas │ │ ├── St_Vincent │ │ ├── Swift_Current │ │ ├── Tegucigalpa │ │ ├── Thule │ │ ├── Thunder_Bay │ │ ├── Tijuana │ │ ├── Toronto │ │ ├── Tortola │ │ ├── Vancouver │ │ ├── Virgin │ │ ├── Whitehorse │ │ ├── Winnipeg │ │ ├── Yakutat │ │ └── Yellowknife │ │ ├── Antarctica │ │ ├── Casey │ │ ├── Davis │ │ ├── DumontDUrville │ │ ├── Macquarie │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── South_Pole │ │ ├── Syowa │ │ └── Vostok │ │ ├── Arctic │ │ └── Longyearbyen │ │ ├── Asia │ │ ├── Aden │ │ ├── Almaty │ │ ├── Amman │ │ ├── Anadyr │ │ ├── Aqtau │ │ ├── Aqtobe │ │ ├── Ashgabat │ │ ├── Ashkhabad │ │ ├── Baghdad │ │ ├── Bahrain │ │ ├── Baku │ │ ├── Bangkok │ │ ├── Beirut │ │ ├── Bishkek │ │ ├── Brunei │ │ ├── Calcutta │ │ ├── Choibalsan │ │ ├── Chongqing │ │ ├── Chungking │ │ ├── Colombo │ │ ├── Dacca │ │ ├── Damascus │ │ ├── Dhaka │ │ ├── Dili │ │ ├── Dubai │ │ ├── Dushanbe │ │ ├── Gaza │ │ ├── Harbin │ │ ├── Hebron │ │ ├── Ho_Chi_Minh │ │ ├── Hong_Kong │ │ ├── Hovd │ │ ├── Irkutsk │ │ ├── Istanbul │ │ ├── Jakarta │ │ ├── Jayapura │ │ ├── Jerusalem │ │ ├── Kabul │ │ ├── Kamchatka │ │ ├── Karachi │ │ ├── Kashgar │ │ ├── Kathmandu │ │ ├── Katmandu │ │ ├── Kolkata │ │ ├── Krasnoyarsk │ │ ├── Kuala_Lumpur │ │ ├── Kuching │ │ ├── Kuwait │ │ ├── Macao │ │ ├── Macau │ │ ├── Magadan │ │ ├── Makassar │ │ ├── Manila │ │ ├── Muscat │ │ ├── Nicosia │ │ ├── Novokuznetsk │ │ ├── Novosibirsk │ │ ├── Omsk │ │ ├── Oral │ │ ├── Phnom_Penh │ │ ├── Pontianak │ │ ├── Pyongyang │ │ ├── Qatar │ │ ├── Qyzylorda │ │ ├── Rangoon │ │ ├── Riyadh │ │ ├── Riyadh87 │ │ ├── Riyadh88 │ │ ├── Riyadh89 │ │ ├── Saigon │ │ ├── Sakhalin │ │ ├── Samarkand │ │ ├── Seoul │ │ ├── Shanghai │ │ ├── Singapore │ │ ├── Taipei │ │ ├── Tashkent │ │ ├── Tbilisi │ │ ├── Tehran │ │ ├── Tel_Aviv │ │ ├── Thimbu │ │ ├── Thimphu │ │ ├── Tokyo │ │ ├── Ujung_Pandang │ │ ├── Ulaanbaatar │ │ ├── Ulan_Bator │ │ ├── Urumqi │ │ ├── Vientiane │ │ ├── Vladivostok │ │ ├── Yakutsk │ │ ├── Yekaterinburg │ │ └── Yerevan │ │ ├── Atlantic │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Cape_Verde │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Jan_Mayen │ │ ├── Madeira │ │ ├── Reykjavik │ │ ├── South_Georgia │ │ ├── St_Helena │ │ └── Stanley │ │ ├── Australia │ │ ├── ACT │ │ ├── Adelaide │ │ ├── Brisbane │ │ ├── Broken_Hill │ │ ├── Canberra │ │ ├── Currie │ │ ├── Darwin │ │ ├── Eucla │ │ ├── Hobart │ │ ├── LHI │ │ ├── Lindeman │ │ ├── Lord_Howe │ │ ├── Melbourne │ │ ├── NSW │ │ ├── North │ │ ├── Perth │ │ ├── Queensland │ │ ├── South │ │ ├── Sydney │ │ ├── Tasmania │ │ ├── Victoria │ │ ├── West │ │ └── Yancowinna │ │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── East-Saskatchewan │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ └── Yukon │ │ ├── Chile │ │ ├── Continental │ │ └── EasterIsland │ │ ├── Cuba │ │ ├── EET │ │ ├── EST │ │ ├── EST5EDT │ │ ├── Egypt │ │ ├── Eire │ │ ├── Etc │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT+1 │ │ ├── GMT+10 │ │ ├── GMT+11 │ │ ├── GMT+12 │ │ ├── GMT+2 │ │ ├── GMT+3 │ │ ├── GMT+4 │ │ ├── GMT+5 │ │ ├── GMT+6 │ │ ├── GMT+7 │ │ ├── GMT+8 │ │ ├── GMT+9 │ │ ├── GMT-0 │ │ ├── GMT-1 │ │ ├── GMT-10 │ │ ├── GMT-11 │ │ ├── GMT-12 │ │ ├── GMT-13 │ │ ├── GMT-14 │ │ ├── GMT-2 │ │ ├── GMT-3 │ │ ├── GMT-4 │ │ ├── GMT-5 │ │ ├── GMT-6 │ │ ├── GMT-7 │ │ ├── GMT-8 │ │ ├── GMT-9 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── UCT │ │ ├── UTC │ │ ├── Universal │ │ └── Zulu │ │ ├── Europe │ │ ├── Amsterdam │ │ ├── Andorra │ │ ├── Athens │ │ ├── Belfast │ │ ├── Belgrade │ │ ├── Berlin │ │ ├── Bratislava │ │ ├── Brussels │ │ ├── Bucharest │ │ ├── Budapest │ │ ├── Chisinau │ │ ├── Copenhagen │ │ ├── Dublin │ │ ├── Gibraltar │ │ ├── Guernsey │ │ ├── Helsinki │ │ ├── Isle_of_Man │ │ ├── Istanbul │ │ ├── Jersey │ │ ├── Kaliningrad │ │ ├── Kiev │ │ ├── Lisbon │ │ ├── Ljubljana │ │ ├── London │ │ ├── Luxembourg │ │ ├── Madrid │ │ ├── Malta │ │ ├── Mariehamn │ │ ├── Minsk │ │ ├── Monaco │ │ ├── Moscow │ │ ├── Nicosia │ │ ├── Oslo │ │ ├── Paris │ │ ├── Podgorica │ │ ├── Prague │ │ ├── Riga │ │ ├── Rome │ │ ├── Samara │ │ ├── San_Marino │ │ ├── Sarajevo │ │ ├── Simferopol │ │ ├── Skopje │ │ ├── Sofia │ │ ├── Stockholm │ │ ├── Tallinn │ │ ├── Tirane │ │ ├── Tiraspol │ │ ├── Uzhgorod │ │ ├── Vaduz │ │ ├── Vatican │ │ ├── Vienna │ │ ├── Vilnius │ │ ├── Volgograd │ │ ├── Warsaw │ │ ├── Zagreb │ │ ├── Zaporozhye │ │ └── Zurich │ │ ├── Factory │ │ ├── GB │ │ ├── GB-Eire │ │ ├── GMT │ │ ├── GMT+0 │ │ ├── GMT-0 │ │ ├── GMT0 │ │ ├── Greenwich │ │ ├── HST │ │ ├── Hongkong │ │ ├── Iceland │ │ ├── Indian │ │ ├── Antananarivo │ │ ├── Chagos │ │ ├── Christmas │ │ ├── Cocos │ │ ├── Comoro │ │ ├── Kerguelen │ │ ├── Mahe │ │ ├── Maldives │ │ ├── Mauritius │ │ ├── Mayotte │ │ └── Reunion │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ │ ├── Mideast │ │ ├── Riyadh87 │ │ ├── Riyadh88 │ │ └── Riyadh89 │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── Kiritimati │ │ ├── Kosrae │ │ ├── Kwajalein │ │ ├── Majuro │ │ ├── Marquesas │ │ ├── Midway │ │ ├── Nauru │ │ ├── Niue │ │ ├── Norfolk │ │ ├── Noumea │ │ ├── Pago_Pago │ │ ├── Palau │ │ ├── Pitcairn │ │ ├── Pohnpei │ │ ├── Ponape │ │ ├── Port_Moresby │ │ ├── Rarotonga │ │ ├── Saipan │ │ ├── Samoa │ │ ├── Tahiti │ │ ├── Tarawa │ │ ├── Tongatapu │ │ ├── Truk │ │ ├── Wake │ │ ├── Wallis │ │ └── Yap │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Pacific-New │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ ├── Zulu │ │ ├── iso3166.tab │ │ ├── localtime │ │ ├── posixrules │ │ └── zone.tab ├── setup.cfg └── setup.py ├── requests-oauthlib ├── requests_oauthlib-0.5.0.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── requests_oauthlib │ ├── __init__.py │ ├── compliance_fixes │ ├── __init__.py │ ├── douban.py │ ├── facebook.py │ ├── linkedin.py │ └── weibo.py │ ├── oauth1_auth.py │ ├── oauth1_session.py │ ├── oauth2_auth.py │ └── oauth2_session.py ├── requests ├── requests-2.7.0.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── requests │ ├── __init__.py │ ├── adapters.py │ ├── api.py │ ├── auth.py │ ├── cacert.pem │ ├── certs.py │ ├── compat.py │ ├── cookies.py │ ├── exceptions.py │ ├── hooks.py │ ├── models.py │ ├── packages │ ├── __init__.py │ ├── chardet │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardetect.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── constants.py │ │ ├── cp949prober.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ └── utf8prober.py │ └── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── ntlmpool.py │ │ └── pyopenssl.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── ordered_dict.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── connection.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── timeout.py │ │ └── url.py │ ├── sessions.py │ ├── status_codes.py │ ├── structures.py │ └── utils.py ├── scrapy ├── AUTHORS ├── INSTALL ├── LICENSE ├── MANIFEST.in ├── PKG-INFO ├── README ├── Scrapy.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt ├── docs │ ├── Makefile │ ├── README │ ├── _ext │ │ └── scrapydocs.py │ ├── _static │ │ ├── scrapydoc.css │ │ └── selectors-sample1.html │ ├── conf.py │ ├── contributing.rst │ ├── experimental │ │ ├── djangoitems.rst │ │ └── index.rst │ ├── faq.rst │ ├── index.rst │ ├── intro │ │ ├── examples.rst │ │ ├── install.rst │ │ ├── overview.rst │ │ └── tutorial.rst │ ├── topics │ │ ├── _images │ │ │ ├── firebug1.png │ │ │ ├── firebug2.png │ │ │ ├── firebug3.png │ │ │ ├── scrapy_architecture.odg │ │ │ └── scrapy_architecture.png │ │ ├── architecture.rst │ │ ├── commands.rst │ │ ├── downloader-middleware.rst │ │ ├── email.rst │ │ ├── exceptions.rst │ │ ├── exporters.rst │ │ ├── extensions.rst │ │ ├── feed-exports.rst │ │ ├── firebug.rst │ │ ├── firefox.rst │ │ ├── images.rst │ │ ├── item-pipeline.rst │ │ ├── items.rst │ │ ├── jobs.rst │ │ ├── leaks.rst │ │ ├── link-extractors.rst │ │ ├── loaders.rst │ │ ├── logging.rst │ │ ├── request-response.rst │ │ ├── scrapyd.rst │ │ ├── selectors.rst │ │ ├── settings.rst │ │ ├── shell.rst │ │ ├── signals.rst │ │ ├── spider-middleware.rst │ │ ├── spiders.rst │ │ ├── stats.rst │ │ ├── telnetconsole.rst │ │ ├── ubuntu.rst │ │ └── webservice.rst │ └── versioning.rst ├── extras │ ├── coverage-report.sh │ ├── makedeb.py │ ├── rpm-install.sh │ ├── scrapy-ws.py │ ├── scrapy.1 │ ├── scrapy.bat │ ├── scrapy_bash_completion │ ├── scrapyd.tac │ ├── setup_wininst.bmp │ └── test-scrapyd.sh ├── pip-egg-info │ └── Scrapy.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt ├── scrapy │ ├── __init__.py │ ├── cmdline.py │ ├── command.py │ ├── commands │ │ ├── __init__.py │ │ ├── crawl.py │ │ ├── deploy.py │ │ ├── edit.py │ │ ├── fetch.py │ │ ├── genspider.py │ │ ├── list.py │ │ ├── parse.py │ │ ├── runspider.py │ │ ├── server.py │ │ ├── settings.py │ │ ├── shell.py │ │ ├── startproject.py │ │ ├── version.py │ │ └── view.py │ ├── conf.py │ ├── contrib │ │ ├── __init__.py │ │ ├── closespider.py │ │ ├── corestats.py │ │ ├── debug.py │ │ ├── downloadermiddleware │ │ │ ├── __init__.py │ │ │ ├── chunked.py │ │ │ ├── cookies.py │ │ │ ├── defaultheaders.py │ │ │ ├── downloadtimeout.py │ │ │ ├── httpauth.py │ │ │ ├── httpcache.py │ │ │ ├── httpcompression.py │ │ │ ├── httpproxy.py │ │ │ ├── redirect.py │ │ │ ├── retry.py │ │ │ ├── robotstxt.py │ │ │ ├── stats.py │ │ │ └── useragent.py │ │ ├── exporter │ │ │ ├── __init__.py │ │ │ └── jsonlines.py │ │ ├── feedexport.py │ │ ├── httpcache.py │ │ ├── linkextractors │ │ │ ├── __init__.py │ │ │ ├── htmlparser.py │ │ │ ├── image.py │ │ │ ├── lxmlhtml.py │ │ │ ├── regex.py │ │ │ └── sgml.py │ │ ├── loader │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── processor.py │ │ ├── logstats.py │ │ ├── memdebug.py │ │ ├── memusage.py │ │ ├── pipeline │ │ │ ├── __init__.py │ │ │ ├── images.py │ │ │ └── media.py │ │ ├── spidermiddleware │ │ │ ├── __init__.py │ │ │ ├── depth.py │ │ │ ├── httperror.py │ │ │ ├── offsite.py │ │ │ ├── referer.py │ │ │ └── urllength.py │ │ ├── spiders │ │ │ ├── __init__.py │ │ │ ├── crawl.py │ │ │ ├── feed.py │ │ │ ├── init.py │ │ │ └── sitemap.py │ │ ├── spiderstate.py │ │ ├── statsmailer.py │ │ ├── throttle.py │ │ └── webservice │ │ │ ├── __init__.py │ │ │ ├── crawler.py │ │ │ ├── enginestatus.py │ │ │ └── stats.py │ ├── contrib_exp │ │ ├── __init__.py │ │ ├── djangoitem.py │ │ ├── downloadermiddleware │ │ │ ├── __init__.py │ │ │ └── decompression.py │ │ └── iterators.py │ ├── core │ │ ├── __init__.py │ │ ├── downloader │ │ │ ├── __init__.py │ │ │ ├── handlers │ │ │ │ ├── __init__.py │ │ │ │ ├── file.py │ │ │ │ ├── http.py │ │ │ │ └── s3.py │ │ │ ├── middleware.py │ │ │ └── webclient.py │ │ ├── engine.py │ │ ├── scheduler.py │ │ ├── scraper.py │ │ └── spidermw.py │ ├── crawler.py │ ├── dupefilter.py │ ├── exceptions.py │ ├── extension.py │ ├── http │ │ ├── __init__.py │ │ ├── common.py │ │ ├── cookies.py │ │ ├── headers.py │ │ ├── request │ │ │ ├── __init__.py │ │ │ ├── form.py │ │ │ └── rpc.py │ │ └── response │ │ │ ├── __init__.py │ │ │ ├── dammit.py │ │ │ ├── html.py │ │ │ ├── text.py │ │ │ └── xml.py │ ├── interfaces.py │ ├── item.py │ ├── link.py │ ├── linkextractor.py │ ├── log.py │ ├── logformatter.py │ ├── mail.py │ ├── middleware.py │ ├── mime.types │ ├── project.py │ ├── resolver.py │ ├── responsetypes.py │ ├── selector │ │ ├── __init__.py │ │ ├── document.py │ │ ├── dummysel.py │ │ ├── factories.py │ │ ├── libxml2sel.py │ │ ├── list.py │ │ └── lxmlsel.py │ ├── settings │ │ ├── __init__.py │ │ └── default_settings.py │ ├── shell.py │ ├── signals.py │ ├── spider.py │ ├── spidermanager.py │ ├── squeue.py │ ├── stats.py │ ├── statscol.py │ ├── telnet.py │ ├── templates │ │ ├── project │ │ │ ├── module │ │ │ │ ├── __init__.py │ │ │ │ ├── items.py.tmpl │ │ │ │ ├── pipelines.py.tmpl │ │ │ │ ├── settings.py.tmpl │ │ │ │ └── spiders │ │ │ │ │ └── __init__.py │ │ │ └── scrapy.cfg │ │ └── spiders │ │ │ ├── basic.tmpl │ │ │ ├── crawl.tmpl │ │ │ ├── csvfeed.tmpl │ │ │ └── xmlfeed.tmpl │ ├── tests │ │ ├── __init__.py │ │ ├── sample_data │ │ │ ├── compressed │ │ │ │ ├── feed-sample1.tar │ │ │ │ ├── feed-sample1.xml │ │ │ │ ├── feed-sample1.xml.bz2 │ │ │ │ ├── feed-sample1.xml.gz │ │ │ │ ├── feed-sample1.zip │ │ │ │ ├── html-gzip.bin │ │ │ │ ├── html-rawdeflate.bin │ │ │ │ ├── html-zlibdeflate.bin │ │ │ │ └── truncated-crc-error.gz │ │ │ ├── feeds │ │ │ │ ├── feed-sample1.xml │ │ │ │ ├── feed-sample2.xml │ │ │ │ ├── feed-sample3.csv │ │ │ │ ├── feed-sample4.csv │ │ │ │ └── feed-sample5.csv │ │ │ ├── link_extractor │ │ │ │ ├── image_linkextractor.html │ │ │ │ ├── linkextractor_latin1.html │ │ │ │ ├── linkextractor_noenc.html │ │ │ │ └── sgml_linkextractor.html │ │ │ └── test_site │ │ │ │ ├── index.html │ │ │ │ ├── item1.html │ │ │ │ └── item2.html │ │ ├── test_clientform.py │ │ ├── test_cmdline │ │ │ ├── __init__.py │ │ │ ├── extensions.py │ │ │ └── settings.py │ │ ├── test_command_fetch.py │ │ ├── test_command_shell.py │ │ ├── test_command_version.py │ │ ├── test_commands.py │ │ ├── test_contrib_exporter.py │ │ ├── test_contrib_feedexport.py │ │ ├── test_contrib_linkextractors.py │ │ ├── test_contrib_loader.py │ │ ├── test_contrib_spiderstate.py │ │ ├── test_dependencies.py │ │ ├── test_djangoitem │ │ │ ├── __init__.py │ │ │ ├── models.py │ │ │ └── settings.py │ │ ├── test_downloader_handlers.py │ │ ├── test_downloadermiddleware_cookies.py │ │ ├── test_downloadermiddleware_decompression.py │ │ ├── test_downloadermiddleware_defaultheaders.py │ │ ├── test_downloadermiddleware_downloadtimeout.py │ │ ├── test_downloadermiddleware_httpauth.py │ │ ├── test_downloadermiddleware_httpcache.py │ │ ├── test_downloadermiddleware_httpcompression.py │ │ ├── test_downloadermiddleware_httpproxy.py │ │ ├── test_downloadermiddleware_redirect.py │ │ ├── test_downloadermiddleware_retry.py │ │ ├── test_downloadermiddleware_stats.py │ │ ├── test_downloadermiddleware_useragent.py │ │ ├── test_dupefilter.py │ │ ├── test_engine.py │ │ ├── test_http_cookies.py │ │ ├── test_http_headers.py │ │ ├── test_http_request.py │ │ ├── test_http_response.py │ │ ├── test_item.py │ │ ├── test_libxml2.py │ │ ├── test_link.py │ │ ├── test_log.py │ │ ├── test_logformatter.py │ │ ├── test_mail.py │ │ ├── test_middleware.py │ │ ├── test_pipeline_images.py │ │ ├── test_pipeline_media.py │ │ ├── test_responsetypes.py │ │ ├── test_selector.py │ │ ├── test_selector_dummy.py │ │ ├── test_selector_libxml2.py │ │ ├── test_selector_lxml.py │ │ ├── test_settings.py │ │ ├── test_spider.py │ │ ├── test_spidermanager │ │ │ ├── __init__.py │ │ │ └── test_spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── spider0.py │ │ │ │ ├── spider1.py │ │ │ │ ├── spider2.py │ │ │ │ └── spider3.py │ │ ├── test_spidermiddleware_depth.py │ │ ├── test_spidermiddleware_httperror.py │ │ ├── test_spidermiddleware_offsite.py │ │ ├── test_spidermiddleware_referer.py │ │ ├── test_spidermiddleware_urllength.py │ │ ├── test_squeue.py │ │ ├── test_stats.py │ │ ├── test_urlparse_monkeypatches.py │ │ ├── test_utils_conf.py │ │ ├── test_utils_datatypes.py │ │ ├── test_utils_defer.py │ │ ├── test_utils_encoding.py │ │ ├── test_utils_gz.py │ │ ├── test_utils_http.py │ │ ├── test_utils_httpobj.py │ │ ├── test_utils_iterators.py │ │ ├── test_utils_jsonrpc.py │ │ ├── test_utils_memory.py │ │ ├── test_utils_misc │ │ │ ├── __init__.py │ │ │ ├── test.egg │ │ │ └── test_walk_modules │ │ │ │ ├── __init__.py │ │ │ │ ├── mod │ │ │ │ ├── __init__.py │ │ │ │ └── mod0.py │ │ │ │ └── mod1.py │ │ ├── test_utils_pqueue.py │ │ ├── test_utils_python.py │ │ ├── test_utils_queue.py │ │ ├── test_utils_reqser.py │ │ ├── test_utils_request.py │ │ ├── test_utils_response.py │ │ ├── test_utils_serialize.py │ │ ├── test_utils_signal.py │ │ ├── test_utils_sitemap.py │ │ ├── test_utils_spider.py │ │ ├── test_utils_template.py │ │ ├── test_utils_url.py │ │ └── test_webclient.py │ ├── utils │ │ ├── __init__.py │ │ ├── conf.py │ │ ├── console.py │ │ ├── datatypes.py │ │ ├── decorator.py │ │ ├── defer.py │ │ ├── deprecate.py │ │ ├── display.py │ │ ├── encoding.py │ │ ├── engine.py │ │ ├── ftp.py │ │ ├── gz.py │ │ ├── http.py │ │ ├── httpobj.py │ │ ├── iterators.py │ │ ├── job.py │ │ ├── jsonrpc.py │ │ ├── markup.py │ │ ├── memory.py │ │ ├── misc.py │ │ ├── multipart.py │ │ ├── ossignal.py │ │ ├── pqueue.py │ │ ├── project.py │ │ ├── py26.py │ │ ├── py27.py │ │ ├── python.py │ │ ├── queue.py │ │ ├── reactor.py │ │ ├── reqser.py │ │ ├── request.py │ │ ├── response.py │ │ ├── serialize.py │ │ ├── signal.py │ │ ├── sitemap.py │ │ ├── spider.py │ │ ├── template.py │ │ ├── test.py │ │ ├── testproc.py │ │ ├── testsite.py │ │ ├── trackref.py │ │ ├── txweb.py │ │ └── url.py │ ├── webservice.py │ └── xlib │ │ ├── BeautifulSoup.py │ │ ├── ClientForm.py │ │ ├── __init__.py │ │ ├── lsprofcalltree.py │ │ ├── ordereddict.py │ │ ├── pydispatch │ │ ├── __init__.py │ │ ├── dispatcher.py │ │ ├── errors.py │ │ ├── license.txt │ │ ├── robust.py │ │ ├── robustapply.py │ │ └── saferef.py │ │ ├── twisted_250_monkeypatches.py │ │ └── urlparse_monkeypatches.py ├── scrapyd │ ├── __init__.py │ ├── app.py │ ├── config.py │ ├── default_scrapyd.conf │ ├── eggstorage.py │ ├── eggutils.py │ ├── environ.py │ ├── interfaces.py │ ├── launcher.py │ ├── poller.py │ ├── runner.py │ ├── scheduler.py │ ├── script.py │ ├── spiderqueue.py │ ├── sqlite.py │ ├── tests │ │ ├── __init__.py │ │ ├── mybot.egg │ │ ├── test_dont_load_settings.py │ │ ├── test_eggstorage.py │ │ ├── test_environ.py │ │ ├── test_poller.py │ │ ├── test_scheduler.py │ │ ├── test_spiderqueue.py │ │ ├── test_sqlite.py │ │ └── test_utils.py │ ├── utils.py │ ├── webservice.py │ └── website.py ├── setup.cfg └── setup.py ├── sessionprofile ├── PKG-INFO ├── README.txt ├── pip-egg-info │ └── sessionprofile.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── sessionprofile.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── sessionprofile │ ├── __init__.py │ ├── cleanup_inactive_sessions.py │ ├── middleware.py │ ├── models.py │ └── tests.py ├── setup.cfg └── setup.py ├── six ├── six-1.9.0.dist-info │ ├── DESCRIPTION.rst │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt └── six.py ├── south ├── PKG-INFO ├── README ├── South.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── pip-egg-info │ └── South.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── south │ ├── __init__.py │ ├── creator │ ├── __init__.py │ ├── actions.py │ ├── changes.py │ └── freezer.py │ ├── db │ ├── __init__.py │ ├── firebird.py │ ├── generic.py │ ├── mysql.py │ ├── oracle.py │ ├── postgresql_psycopg2.py │ ├── sql_server │ │ ├── __init__.py │ │ └── pyodbc.py │ └── sqlite3.py │ ├── exceptions.py │ ├── hacks │ ├── __init__.py │ └── django_1_0.py │ ├── introspection_plugins │ ├── __init__.py │ ├── annoying_autoonetoone.py │ ├── django_audit_log.py │ ├── django_objectpermissions.py │ ├── django_tagging.py │ ├── django_taggit.py │ ├── django_timezones.py │ └── geodjango.py │ ├── logger.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── convert_to_south.py │ │ ├── datamigration.py │ │ ├── graphmigrations.py │ │ ├── migrate.py │ │ ├── migrationcheck.py │ │ ├── schemamigration.py │ │ ├── startmigration.py │ │ ├── syncdb.py │ │ ├── test.py │ │ └── testserver.py │ ├── migration │ ├── __init__.py │ ├── base.py │ ├── migrators.py │ └── utils.py │ ├── models.py │ ├── modelsinspector.py │ ├── orm.py │ ├── signals.py │ ├── test_shim.py │ ├── tests │ ├── __init__.py │ ├── autodetection.py │ ├── brokenapp │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_depends_on_unmigrated.py │ │ │ ├── 0002_depends_on_unknown.py │ │ │ ├── 0003_depends_on_higher.py │ │ │ ├── 0004_higher.py │ │ │ └── __init__.py │ │ └── models.py │ ├── circular_a │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_first.py │ │ │ └── __init__.py │ │ └── models.py │ ├── circular_b │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_first.py │ │ │ └── __init__.py │ │ └── models.py │ ├── db.py │ ├── db_firebird.py │ ├── db_mysql.py │ ├── deps_a │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_a.py │ │ │ ├── 0002_a.py │ │ │ ├── 0003_a.py │ │ │ ├── 0004_a.py │ │ │ ├── 0005_a.py │ │ │ └── __init__.py │ │ └── models.py │ ├── deps_b │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_b.py │ │ │ ├── 0002_b.py │ │ │ ├── 0003_b.py │ │ │ ├── 0004_b.py │ │ │ ├── 0005_b.py │ │ │ └── __init__.py │ │ └── models.py │ ├── deps_c │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_c.py │ │ │ ├── 0002_c.py │ │ │ ├── 0003_c.py │ │ │ ├── 0004_c.py │ │ │ ├── 0005_c.py │ │ │ └── __init__.py │ │ └── models.py │ ├── emptyapp │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── models.py │ ├── fakeapp │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_spam.py │ │ │ ├── 0002_eggs.py │ │ │ ├── 0003_alter_spam.py │ │ │ └── __init__.py │ │ └── models.py │ ├── freezer.py │ ├── inspector.py │ ├── logger.py │ ├── logic.py │ ├── non_managed │ │ ├── __init__.py │ │ ├── migrations │ │ │ └── __init__.py │ │ └── models.py │ └── otherfakeapp │ │ ├── __init__.py │ │ ├── migrations │ │ ├── 0001_first.py │ │ ├── 0002_second.py │ │ ├── 0003_third.py │ │ └── __init__.py │ │ └── models.py │ ├── utils │ ├── __init__.py │ ├── datetime_utils.py │ └── py3.py │ └── v2.py ├── sphinx ├── AUTHORS ├── CHANGES ├── EXAMPLES ├── LICENSE ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.rst ├── Sphinx.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── TODO ├── babel.cfg ├── custom_fixers │ ├── __init__.py │ └── fix_alt_unicode.py ├── doc │ ├── Makefile │ ├── _static │ │ ├── bookcover.png │ │ ├── pocoo.png │ │ └── sphinx.png │ ├── _templates │ │ ├── index.html │ │ └── indexsidebar.html │ ├── _themes │ │ └── sphinx13 │ │ │ ├── layout.html │ │ │ ├── static │ │ │ ├── bodybg.png │ │ │ ├── footerbg.png │ │ │ ├── headerbg.png │ │ │ ├── listitem.png │ │ │ ├── relbg.png │ │ │ ├── sphinx13.css │ │ │ └── sphinxheader.png │ │ │ └── theme.conf │ ├── builders.rst │ ├── changes.rst │ ├── conf.py │ ├── config.rst │ ├── contents.rst │ ├── develop.rst │ ├── devguide.rst │ ├── domains.rst │ ├── examples.rst │ ├── ext │ │ ├── appapi.rst │ │ ├── autodoc.rst │ │ ├── autosummary.rst │ │ ├── builderapi.rst │ │ ├── coverage.rst │ │ ├── doctest.rst │ │ ├── extlinks.rst │ │ ├── graphviz.rst │ │ ├── ifconfig.rst │ │ ├── inheritance.rst │ │ ├── intersphinx.rst │ │ ├── linkcode.rst │ │ ├── math.rst │ │ ├── oldcmarkup.rst │ │ ├── refcounting.rst │ │ ├── todo.rst │ │ ├── tutorial.rst │ │ └── viewcode.rst │ ├── extensions.rst │ ├── faq.rst │ ├── glossary.rst │ ├── install.rst │ ├── installpython.jpg │ ├── intl.rst │ ├── intro.rst │ ├── invocation.rst │ ├── man │ │ ├── sphinx-apidoc.rst │ │ ├── sphinx-build.rst │ │ └── sphinx-quickstart.rst │ ├── markup │ │ ├── code.rst │ │ ├── index.rst │ │ ├── inline.rst │ │ ├── misc.rst │ │ ├── para.rst │ │ └── toctree.rst │ ├── more.png │ ├── pythonorg.png │ ├── rest.rst │ ├── templating.rst │ ├── themes │ │ ├── agogo.png │ │ ├── default.png │ │ ├── fullsize │ │ │ ├── agogo.png │ │ │ ├── default.png │ │ │ ├── haiku.png │ │ │ ├── nature.png │ │ │ ├── pyramid.png │ │ │ ├── scrolls.png │ │ │ ├── sphinxdoc.png │ │ │ └── traditional.png │ │ ├── haiku.png │ │ ├── nature.png │ │ ├── pyramid.png │ │ ├── scrolls.png │ │ ├── sphinxdoc.png │ │ └── traditional.png │ ├── theming.rst │ ├── translation.png │ ├── tutorial.rst │ ├── web │ │ ├── api.rst │ │ ├── quickstart.rst │ │ ├── searchadapters.rst │ │ └── storagebackends.rst │ └── websupport.rst ├── ez_setup.py ├── pip-egg-info │ └── Sphinx.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── sphinx-apidoc.py ├── sphinx-autogen.py ├── sphinx-build.py ├── sphinx-quickstart.py ├── sphinx │ ├── __init__.py │ ├── addnodes.py │ ├── apidoc.py │ ├── application.py │ ├── builders │ │ ├── __init__.py │ │ ├── changes.py │ │ ├── devhelp.py │ │ ├── epub.py │ │ ├── gettext.py │ │ ├── html.py │ │ ├── htmlhelp.py │ │ ├── latex.py │ │ ├── linkcheck.py │ │ ├── manpage.py │ │ ├── qthelp.py │ │ ├── texinfo.py │ │ ├── text.py │ │ ├── websupport.py │ │ └── xml.py │ ├── cmdline.py │ ├── config.py │ ├── directives │ │ ├── __init__.py │ │ ├── code.py │ │ └── other.py │ ├── domains │ │ ├── __init__.py │ │ ├── c.py │ │ ├── cpp.py │ │ ├── javascript.py │ │ ├── python.py │ │ ├── rst.py │ │ └── std.py │ ├── environment.py │ ├── errors.py │ ├── ext │ │ ├── __init__.py │ │ ├── autodoc.py │ │ ├── autosummary │ │ │ ├── __init__.py │ │ │ ├── generate.py │ │ │ └── templates │ │ │ │ └── autosummary │ │ │ │ ├── base.rst │ │ │ │ ├── class.rst │ │ │ │ └── module.rst │ │ ├── coverage.py │ │ ├── doctest.py │ │ ├── extlinks.py │ │ ├── graphviz.py │ │ ├── ifconfig.py │ │ ├── inheritance_diagram.py │ │ ├── intersphinx.py │ │ ├── jsmath.py │ │ ├── linkcode.py │ │ ├── mathbase.py │ │ ├── mathjax.py │ │ ├── oldcmarkup.py │ │ ├── pngmath.py │ │ ├── refcounting.py │ │ ├── todo.py │ │ └── viewcode.py │ ├── highlighting.py │ ├── jinja2glue.py │ ├── locale │ │ ├── .tx │ │ │ └── config │ │ ├── __init__.py │ │ ├── bn │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ca │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── eu │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── hr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── id │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── lt │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── lv │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── mk │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── nb_NO │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ne │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── si │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── sl │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── sphinx.pot │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── uk_UA │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ ├── zh_CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── sphinx.js │ │ │ │ ├── sphinx.mo │ │ │ │ └── sphinx.po │ │ └── zh_TW │ │ │ └── LC_MESSAGES │ │ │ ├── sphinx.js │ │ │ ├── sphinx.mo │ │ │ └── sphinx.po │ ├── pycode │ │ ├── Grammar.txt │ │ ├── __init__.py │ │ ├── nodes.py │ │ └── pgen2 │ │ │ ├── __init__.py │ │ │ ├── driver.py │ │ │ ├── grammar.py │ │ │ ├── literals.py │ │ │ ├── parse.py │ │ │ ├── pgen.py │ │ │ ├── token.py │ │ │ └── tokenize.py │ ├── pygments_styles.py │ ├── quickstart.py │ ├── roles.py │ ├── search │ │ ├── __init__.py │ │ ├── en.py │ │ └── ja.py │ ├── setup_command.py │ ├── texinputs │ │ ├── Makefile │ │ ├── fncychap.sty │ │ ├── python.ist │ │ ├── sphinx.sty │ │ ├── sphinxhowto.cls │ │ ├── sphinxmanual.cls │ │ └── tabulary.sty │ ├── themes │ │ ├── agogo │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── agogo.css_t │ │ │ │ ├── bgfooter.png │ │ │ │ └── bgtop.png │ │ │ └── theme.conf │ │ ├── basic │ │ │ ├── changes │ │ │ │ ├── frameset.html │ │ │ │ ├── rstsource.html │ │ │ │ └── versionchanges.html │ │ │ ├── defindex.html │ │ │ ├── domainindex.html │ │ │ ├── genindex-single.html │ │ │ ├── genindex-split.html │ │ │ ├── genindex.html │ │ │ ├── globaltoc.html │ │ │ ├── layout.html │ │ │ ├── localtoc.html │ │ │ ├── opensearch.xml │ │ │ ├── page.html │ │ │ ├── relations.html │ │ │ ├── search.html │ │ │ ├── searchbox.html │ │ │ ├── searchresults.html │ │ │ ├── sourcelink.html │ │ │ ├── static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css_t │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── searchtools.js_t │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ └── theme.conf │ │ ├── default │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── default.css_t │ │ │ │ └── sidebar.js_t │ │ │ └── theme.conf │ │ ├── epub │ │ │ ├── epub-cover.html │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ └── epub.css │ │ │ └── theme.conf │ │ ├── haiku │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── alert_info_32.png │ │ │ │ ├── alert_warning_32.png │ │ │ │ ├── bg-page.png │ │ │ │ ├── bullet_orange.png │ │ │ │ └── haiku.css_t │ │ │ └── theme.conf │ │ ├── nature │ │ │ ├── static │ │ │ │ └── nature.css_t │ │ │ └── theme.conf │ │ ├── pyramid │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── dialog-note.png │ │ │ │ ├── dialog-seealso.png │ │ │ │ ├── dialog-todo.png │ │ │ │ ├── dialog-topic.png │ │ │ │ ├── dialog-warning.png │ │ │ │ ├── epub.css │ │ │ │ ├── footerbg.png │ │ │ │ ├── headerbg.png │ │ │ │ ├── ie6.css │ │ │ │ ├── middlebg.png │ │ │ │ ├── pyramid.css_t │ │ │ │ └── transparent.gif │ │ │ └── theme.conf │ │ ├── scrolls │ │ │ ├── artwork │ │ │ │ └── logo.svg │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── darkmetal.png │ │ │ │ ├── headerbg.png │ │ │ │ ├── logo.png │ │ │ │ ├── metal.png │ │ │ │ ├── navigation.png │ │ │ │ ├── print.css │ │ │ │ ├── scrolls.css_t │ │ │ │ ├── theme_extras.js │ │ │ │ ├── watermark.png │ │ │ │ └── watermark_blur.png │ │ │ └── theme.conf │ │ ├── sphinxdoc │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── contents.png │ │ │ │ ├── navigation.png │ │ │ │ └── sphinxdoc.css_t │ │ │ └── theme.conf │ │ └── traditional │ │ │ ├── static │ │ │ └── traditional.css_t │ │ │ └── theme.conf │ ├── theming.py │ ├── transforms.py │ ├── util │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── console.py │ │ ├── docfields.py │ │ ├── docstrings.py │ │ ├── inspect.py │ │ ├── jsdump.py │ │ ├── jsonimpl.py │ │ ├── matching.py │ │ ├── nodes.py │ │ ├── osutil.py │ │ ├── png.py │ │ ├── pycompat.py │ │ ├── smartypants.py │ │ ├── stemmer.py │ │ ├── tags.py │ │ ├── texescape.py │ │ └── websupport.py │ ├── versioning.py │ ├── websupport │ │ ├── __init__.py │ │ ├── errors.py │ │ ├── search │ │ │ ├── __init__.py │ │ │ ├── nullsearch.py │ │ │ ├── whooshsearch.py │ │ │ └── xapiansearch.py │ │ └── storage │ │ │ ├── __init__.py │ │ │ ├── differ.py │ │ │ ├── sqlalchemy_db.py │ │ │ └── sqlalchemystorage.py │ └── writers │ │ ├── __init__.py │ │ ├── html.py │ │ ├── latex.py │ │ ├── manpage.py │ │ ├── texinfo.py │ │ ├── text.py │ │ ├── websupport.py │ │ └── xml.py ├── tests │ ├── coverage.py │ ├── etree13 │ │ ├── ElementPath.py │ │ ├── ElementTree.py │ │ ├── HTMLTreeBuilder.py │ │ └── __init__.py │ ├── path.py │ ├── root │ │ ├── Makefile │ │ ├── _static │ │ │ ├── README │ │ │ ├── excluded.css │ │ │ └── subdir │ │ │ │ └── foo.css │ │ ├── _templates │ │ │ ├── contentssb.html │ │ │ ├── customsb.html │ │ │ └── layout.html │ │ ├── autodoc.txt │ │ ├── autodoc_fodder.py │ │ ├── autosummary.txt │ │ ├── bom.po │ │ ├── bom.txt │ │ ├── conf.py │ │ ├── contents.txt │ │ ├── doctest.txt │ │ ├── ext.py │ │ ├── extapi.txt │ │ ├── extensions.txt │ │ ├── footnote.txt │ │ ├── images.txt │ │ ├── img.gif │ │ ├── img.pdf │ │ ├── img.png │ │ ├── includes.txt │ │ ├── lists.txt │ │ ├── literal.inc │ │ ├── markup.txt │ │ ├── math.txt │ │ ├── metadata.txt │ │ ├── objects.txt │ │ ├── quotes.inc │ │ ├── rimg.png │ │ ├── robots.txt │ │ ├── special │ │ │ ├── api.h │ │ │ └── code.py │ │ ├── subdir.po │ │ ├── subdir │ │ │ ├── excluded.txt │ │ │ ├── images.txt │ │ │ ├── img.png │ │ │ ├── include.inc │ │ │ ├── includes.txt │ │ │ └── simg.png │ │ ├── svgimg.pdf │ │ ├── svgimg.svg │ │ ├── tabs.inc │ │ ├── templated.css_t │ │ ├── test.inc │ │ ├── testtheme │ │ │ ├── layout.html │ │ │ ├── static │ │ │ │ ├── staticimg.png │ │ │ │ └── statictmpl.html_t │ │ │ └── theme.conf │ │ ├── versioning │ │ │ ├── added.txt │ │ │ ├── deleted.txt │ │ │ ├── deleted_end.txt │ │ │ ├── index.txt │ │ │ ├── insert.txt │ │ │ ├── insert_beginning.txt │ │ │ ├── insert_similar.txt │ │ │ ├── modified.txt │ │ │ └── original.txt │ │ ├── wrongenc.inc │ │ └── ziptheme.zip │ ├── roots │ │ ├── test-docutilsconf │ │ │ ├── conf.py │ │ │ ├── contents.txt │ │ │ └── docutils.conf │ │ ├── test-intl │ │ │ ├── _templates │ │ │ │ └── index.html │ │ │ ├── admonitions.po │ │ │ ├── admonitions.txt │ │ │ ├── bom.po │ │ │ ├── bom.txt │ │ │ ├── conf.py │ │ │ ├── contents.txt │ │ │ ├── definition_terms.po │ │ │ ├── definition_terms.txt │ │ │ ├── docfields.po │ │ │ ├── docfields.txt │ │ │ ├── external_links.po │ │ │ ├── external_links.txt │ │ │ ├── figure_caption.po │ │ │ ├── figure_caption.txt │ │ │ ├── footnote.po │ │ │ ├── footnote.txt │ │ │ ├── glossary_terms.po │ │ │ ├── glossary_terms.txt │ │ │ ├── glossary_terms_inconsistency.po │ │ │ ├── glossary_terms_inconsistency.txt │ │ │ ├── i18n.png │ │ │ ├── index_entries.po │ │ │ ├── index_entries.txt │ │ │ ├── label_target.po │ │ │ ├── label_target.txt │ │ │ ├── literalblock.po │ │ │ ├── literalblock.txt │ │ │ ├── refs_inconsistency.po │ │ │ ├── refs_inconsistency.txt │ │ │ ├── role_xref.po │ │ │ ├── role_xref.txt │ │ │ ├── seealso.po │ │ │ ├── seealso.txt │ │ │ ├── sphinx.po │ │ │ ├── subdir │ │ │ │ └── contents.txt │ │ │ ├── versionchange.po │ │ │ ├── versionchange.txt │ │ │ ├── warnings.po │ │ │ └── warnings.txt │ │ ├── test-only-directive │ │ │ ├── conf.py │ │ │ ├── contents.rst │ │ │ └── only.rst │ │ └── test-setup │ │ │ ├── doc │ │ │ ├── conf.py │ │ │ └── contents.txt │ │ │ ├── setup.cfg │ │ │ └── setup.py │ ├── run.py │ ├── test_application.py │ ├── test_autodoc.py │ ├── test_autosummary.py │ ├── test_build.py │ ├── test_build_gettext.py │ ├── test_build_html.py │ ├── test_build_latex.py │ ├── test_build_texinfo.py │ ├── test_build_text.py │ ├── test_config.py │ ├── test_coverage.py │ ├── test_cpp_domain.py │ ├── test_doctest.py │ ├── test_docutilsconf.py │ ├── test_env.py │ ├── test_footnote.py │ ├── test_highlighting.py │ ├── test_i18n.py │ ├── test_intersphinx.py │ ├── test_intl.py │ ├── test_linkcode.py │ ├── test_markup.py │ ├── test_metadata.py │ ├── test_only_directive.py │ ├── test_quickstart.py │ ├── test_rst_domain.py │ ├── test_search.py │ ├── test_searchadapters.py │ ├── test_setup_command.py │ ├── test_theming.py │ ├── test_versioning.py │ ├── test_websupport.py │ └── util.py └── utils │ ├── check_sources.py │ ├── convert.py │ ├── pylintrc │ └── reindent.py ├── sqlparse ├── AUTHORS ├── CHANGES ├── COPYING ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.rst ├── TODO ├── docs │ ├── Makefile │ ├── source │ │ ├── analyzing.rst │ │ ├── api.rst │ │ ├── changes.rst │ │ ├── conf.py │ │ ├── index.rst │ │ ├── indices.rst │ │ ├── intro.rst │ │ └── ui.rst │ └── sqlformat.1 ├── pip-egg-info │ └── sqlparse.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── pytest.ini ├── setup.cfg ├── setup.py ├── sqlparse.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── sqlparse │ ├── __init__.py │ ├── engine │ │ ├── __init__.py │ │ ├── filter.py │ │ └── grouping.py │ ├── exceptions.py │ ├── filters.py │ ├── formatter.py │ ├── functions.py │ ├── keywords.py │ ├── lexer.py │ ├── pipeline.py │ ├── sql.py │ ├── tokens.py │ └── utils.py ├── tests │ ├── __init__.py │ ├── files │ │ ├── _Make_DirEntry.sql │ │ ├── begintag.sql │ │ ├── begintag_2.sql │ │ ├── dashcomment.sql │ │ ├── function.sql │ │ ├── function_psql.sql │ │ ├── function_psql2.sql │ │ ├── function_psql3.sql │ │ ├── huge_select.sql │ │ └── test_cp1251.sql │ ├── test_filters.py │ ├── test_format.py │ ├── test_functions.py │ ├── test_grouping.py │ ├── test_parse.py │ ├── test_pipeline.py │ ├── test_regressions.py │ ├── test_split.py │ ├── test_tokenize.py │ └── utils.py └── tox.ini ├── staticgenerator ├── CHANGELOG.txt ├── LICENSE ├── PKG-INFO ├── pip-egg-info │ └── staticgenerator.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.py └── staticgenerator │ ├── __init__.py │ ├── filesystem.py │ ├── handlers.py │ └── middleware.py ├── twill ├── PKG-INFO ├── README.txt ├── pip-egg-info │ └── twill.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── twill-fork ├── twill.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ └── top_level.txt └── twill │ ├── __init__.py │ ├── _browser.py │ ├── browser.py │ ├── commands.py │ ├── errors.py │ ├── extensions │ ├── __init__.py │ ├── argparse.py │ ├── check_links.py │ ├── csv_iterate.py │ ├── dirstack.py │ ├── dns_check.py │ ├── formfill.py │ ├── mailman_sf.py │ ├── match_parse │ │ ├── __init__.py │ │ └── test-match_parse.py │ ├── require.py │ └── test_extensions.py │ ├── namespaces.py │ ├── other_packages │ ├── __init__.py │ ├── _mechanize_dist │ │ ├── ClientForm.py │ │ ├── __init__.py │ │ ├── _auth.py │ │ ├── _beautifulsoup.py │ │ ├── _clientcookie.py │ │ ├── _debug.py │ │ ├── _gzip.py │ │ ├── _headersutil.py │ │ ├── _html.py │ │ ├── _http.py │ │ ├── _lwpcookiejar.py │ │ ├── _mechanize.py │ │ ├── _mozillacookiejar.py │ │ ├── _msiecookiejar.py │ │ ├── _opener.py │ │ ├── _pullparser.py │ │ ├── _request.py │ │ ├── _response.py │ │ ├── _rfc3986.py │ │ ├── _seek.py │ │ ├── _upgrade.py │ │ ├── _urllib2.py │ │ ├── _useragent.py │ │ └── _util.py │ ├── pyparsing.py │ └── subprocess.py │ ├── parse.py │ ├── shell.py │ ├── unit.py │ ├── utils.py │ └── wsgi_intercept.py ├── twisted ├── INSTALL ├── LICENSE ├── NEWS ├── README ├── doc │ ├── conch │ │ ├── benchmarks │ │ │ ├── README │ │ │ └── buffering_mixin.py │ │ ├── examples │ │ │ ├── demo.tac │ │ │ ├── demo_draw.tac │ │ │ ├── demo_insults.tac │ │ │ ├── demo_manhole.tac │ │ │ ├── demo_recvline.tac │ │ │ ├── demo_scroll.tac │ │ │ ├── index.html │ │ │ ├── sshsimpleclient.py │ │ │ ├── sshsimpleserver.py │ │ │ ├── telnet_echo.tac │ │ │ └── window.tac │ │ ├── howto │ │ │ ├── conch_client.html │ │ │ └── index.html │ │ ├── index.html │ │ └── man │ │ │ ├── cftp-man.html │ │ │ ├── cftp.1 │ │ │ ├── ckeygen-man.html │ │ │ ├── ckeygen.1 │ │ │ ├── conch-man.html │ │ │ ├── conch.1 │ │ │ ├── tkconch-man.html │ │ │ └── tkconch.1 │ ├── core │ │ ├── benchmarks │ │ │ ├── banana.py │ │ │ ├── deferreds.py │ │ │ ├── failure.py │ │ │ ├── linereceiver.py │ │ │ ├── netstringreceiver.py │ │ │ ├── task.py │ │ │ ├── timer.py │ │ │ ├── tpclient.py │ │ │ ├── tpclient_nt.py │ │ │ ├── tpserver.py │ │ │ └── tpserver_nt.py │ │ ├── development │ │ │ ├── index.html │ │ │ ├── listings │ │ │ │ └── new_module_template.py │ │ │ ├── naming.html │ │ │ ├── philosophy.html │ │ │ ├── policy │ │ │ │ ├── coding-standard.html │ │ │ │ ├── doc-standard.html │ │ │ │ ├── index.html │ │ │ │ ├── svn-dev.html │ │ │ │ ├── test-standard.html │ │ │ │ └── writing-standard.html │ │ │ └── security.html │ │ ├── examples │ │ │ ├── ampclient.py │ │ │ ├── ampserver.py │ │ │ ├── bananabench.py │ │ │ ├── chatserver.py │ │ │ ├── courier.py │ │ │ ├── cred.py │ │ │ ├── dbcred.py │ │ │ ├── echoclient.py │ │ │ ├── echoclient_ssl.py │ │ │ ├── echoclient_udp.py │ │ │ ├── echoserv.py │ │ │ ├── echoserv_ssl.py │ │ │ ├── echoserv_udp.py │ │ │ ├── filewatch.py │ │ │ ├── ftpclient.py │ │ │ ├── ftpserver.py │ │ │ ├── gpsfix.py │ │ │ ├── index.html │ │ │ ├── longex.py │ │ │ ├── longex2.py │ │ │ ├── mouse.py │ │ │ ├── pb_exceptions.py │ │ │ ├── pbbenchclient.py │ │ │ ├── pbbenchserver.py │ │ │ ├── pbecho.py │ │ │ ├── pbechoclient.py │ │ │ ├── pbgtk2.py │ │ │ ├── pbgtk2login.glade │ │ │ ├── pbinterop.py │ │ │ ├── pbsimple.py │ │ │ ├── pbsimpleclient.py │ │ │ ├── postfix.py │ │ │ ├── ptyserv.py │ │ │ ├── pyui_bg.png │ │ │ ├── pyuidemo.py │ │ │ ├── rotatinglog.py │ │ │ ├── row_example.py │ │ │ ├── row_schema.sql │ │ │ ├── row_util.py │ │ │ ├── server.pem │ │ │ ├── shaper.py │ │ │ ├── shoutcast.py │ │ │ ├── simple.tac │ │ │ ├── simpleclient.py │ │ │ ├── simpleserv.py │ │ │ ├── stdin.py │ │ │ ├── stdiodemo.py │ │ │ ├── testlogging.py │ │ │ ├── threadedselect │ │ │ │ ├── Cocoa │ │ │ │ │ └── SimpleWebClient │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── MainMenu.nib │ │ │ │ │ │ │ ├── classes.nib │ │ │ │ │ │ │ ├── info.nib │ │ │ │ │ │ │ └── keyedobjects.nib │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── Twistzilla.py │ │ │ │ │ │ └── setup.py │ │ │ │ ├── README │ │ │ │ ├── blockingdemo.py │ │ │ │ └── pygamedemo.py │ │ │ ├── twistd-logging.tac │ │ │ ├── wxacceptance.py │ │ │ └── wxdemo.py │ │ ├── howto │ │ │ ├── application.html │ │ │ ├── basics.html │ │ │ ├── book.tex │ │ │ ├── choosing-reactor.html │ │ │ ├── clients.html │ │ │ ├── components.html │ │ │ ├── cred.html │ │ │ ├── debug-with-emacs.html │ │ │ ├── defer.html │ │ │ ├── deferredindepth.html │ │ │ ├── design.html │ │ │ ├── dirdbm.html │ │ │ ├── endpoints.html │ │ │ ├── gendefer.html │ │ │ ├── glossary.html │ │ │ ├── howto.tidyrc │ │ │ ├── index.html │ │ │ ├── internet-overview.html │ │ │ ├── listings │ │ │ │ ├── TwistedQuotes │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── pbquote.py │ │ │ │ │ ├── pbquoteclient.py │ │ │ │ │ ├── quoteproto.py │ │ │ │ │ ├── quoters.py │ │ │ │ │ ├── quotes.txt │ │ │ │ │ ├── quotetap.py │ │ │ │ │ ├── quotetap2.py │ │ │ │ │ └── webquote.rpy │ │ │ │ ├── application │ │ │ │ │ └── service.tac │ │ │ │ ├── deferred │ │ │ │ │ ├── deferred_ex.py │ │ │ │ │ ├── deferred_ex1a.py │ │ │ │ │ ├── deferred_ex1b.py │ │ │ │ │ ├── deferred_ex2.py │ │ │ │ │ ├── deferred_ex3.py │ │ │ │ │ ├── deferred_ex4.py │ │ │ │ │ ├── deferred_ex5.py │ │ │ │ │ ├── deferred_ex6.py │ │ │ │ │ ├── deferred_ex7.py │ │ │ │ │ ├── deferred_ex8.py │ │ │ │ │ └── synch-validation.py │ │ │ │ ├── pb │ │ │ │ │ ├── cache_classes.py │ │ │ │ │ ├── cache_receiver.py │ │ │ │ │ ├── cache_sender.py │ │ │ │ │ ├── chatclient.py │ │ │ │ │ ├── chatserver.py │ │ │ │ │ ├── copy2_classes.py │ │ │ │ │ ├── copy2_receiver.py │ │ │ │ │ ├── copy2_sender.py │ │ │ │ │ ├── copy_receiver.tac │ │ │ │ │ ├── copy_sender.py │ │ │ │ │ ├── exc_client.py │ │ │ │ │ ├── exc_server.py │ │ │ │ │ ├── pb1client.py │ │ │ │ │ ├── pb1server.py │ │ │ │ │ ├── pb2client.py │ │ │ │ │ ├── pb2server.py │ │ │ │ │ ├── pb3client.py │ │ │ │ │ ├── pb3server.py │ │ │ │ │ ├── pb4client.py │ │ │ │ │ ├── pb5client.py │ │ │ │ │ ├── pb5server.py │ │ │ │ │ ├── pb6client1.py │ │ │ │ │ ├── pb6client2.py │ │ │ │ │ ├── pb6server.py │ │ │ │ │ ├── pb7client.py │ │ │ │ │ ├── pbAnonClient.py │ │ │ │ │ ├── pbAnonServer.py │ │ │ │ │ ├── trap_client.py │ │ │ │ │ └── trap_server.py │ │ │ │ ├── process │ │ │ │ │ ├── process.py │ │ │ │ │ ├── quotes.py │ │ │ │ │ └── trueandfalse.py │ │ │ │ └── udp │ │ │ │ │ ├── MulticastClient.py │ │ │ │ │ └── MulticastServer.py │ │ │ ├── logging.html │ │ │ ├── options.html │ │ │ ├── overview.html │ │ │ ├── pb-clients.html │ │ │ ├── pb-copyable.html │ │ │ ├── pb-cred.html │ │ │ ├── pb-intro.html │ │ │ ├── pb-limits.html │ │ │ ├── pb-usage.html │ │ │ ├── pb.html │ │ │ ├── plugin.html │ │ │ ├── process.html │ │ │ ├── producers.html │ │ │ ├── quotes.html │ │ │ ├── rdbms.html │ │ │ ├── reactor-basics.html │ │ │ ├── row.html │ │ │ ├── servers.html │ │ │ ├── ssl.html │ │ │ ├── stylesheet-unprocessed.css │ │ │ ├── stylesheet.css │ │ │ ├── tap.html │ │ │ ├── telnet.html │ │ │ ├── template.tpl │ │ │ ├── testing.html │ │ │ ├── threading.html │ │ │ ├── time.html │ │ │ ├── tutorial │ │ │ │ ├── backends.html │ │ │ │ ├── client.html │ │ │ │ ├── components.html │ │ │ │ ├── configuration.html │ │ │ │ ├── factory.html │ │ │ │ ├── index.html │ │ │ │ ├── intro.html │ │ │ │ ├── library.html │ │ │ │ ├── listings │ │ │ │ │ └── finger │ │ │ │ │ │ ├── etc.users │ │ │ │ │ │ ├── finger │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── finger.py │ │ │ │ │ │ └── tap.py │ │ │ │ │ │ ├── finger01.py │ │ │ │ │ │ ├── finger02.py │ │ │ │ │ │ ├── finger03.py │ │ │ │ │ │ ├── finger04.py │ │ │ │ │ │ ├── finger05.py │ │ │ │ │ │ ├── finger06.py │ │ │ │ │ │ ├── finger07.py │ │ │ │ │ │ ├── finger08.py │ │ │ │ │ │ ├── finger09.py │ │ │ │ │ │ ├── finger10.py │ │ │ │ │ │ ├── finger11.tac │ │ │ │ │ │ ├── finger12.tac │ │ │ │ │ │ ├── finger13.tac │ │ │ │ │ │ ├── finger14.tac │ │ │ │ │ │ ├── finger15.tac │ │ │ │ │ │ ├── finger16.tac │ │ │ │ │ │ ├── finger17.tac │ │ │ │ │ │ ├── finger18.tac │ │ │ │ │ │ ├── finger19.tac │ │ │ │ │ │ ├── finger19a.tac │ │ │ │ │ │ ├── finger19a_changes.py │ │ │ │ │ │ ├── finger19b.tac │ │ │ │ │ │ ├── finger19b_changes.py │ │ │ │ │ │ ├── finger19c.tac │ │ │ │ │ │ ├── finger19c_changes.py │ │ │ │ │ │ ├── finger20.tac │ │ │ │ │ │ ├── finger21.tac │ │ │ │ │ │ ├── finger22.py │ │ │ │ │ │ ├── fingerPBclient.py │ │ │ │ │ │ ├── fingerXRclient.py │ │ │ │ │ │ ├── finger_config.py │ │ │ │ │ │ ├── fingerproxy.tac │ │ │ │ │ │ ├── organized-finger.tac │ │ │ │ │ │ ├── simple-finger.tac │ │ │ │ │ │ └── twisted │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── finger_tutorial.py │ │ │ │ ├── pb.html │ │ │ │ ├── protocol.html │ │ │ │ ├── style.html │ │ │ │ └── web.html │ │ │ ├── udp.html │ │ │ ├── upgrading.html │ │ │ ├── vision.html │ │ │ └── website-template.tpl │ │ ├── img │ │ │ ├── TwistedLogo.bmp │ │ │ ├── cred-login.dia │ │ │ ├── cred-login.png │ │ │ ├── deferred-attach.dia │ │ │ ├── deferred-attach.png │ │ │ ├── deferred-process.dia │ │ │ ├── deferred-process.png │ │ │ ├── deferred-states.svg │ │ │ ├── deferred.dia │ │ │ ├── deferred.png │ │ │ ├── twisted-overview.dia │ │ │ └── twisted-overview.png │ │ ├── index.html │ │ ├── man │ │ │ ├── manhole-man.html │ │ │ ├── manhole.1 │ │ │ ├── mktap-man.html │ │ │ ├── mktap.1 │ │ │ ├── pyhtmlizer-man.html │ │ │ ├── pyhtmlizer.1 │ │ │ ├── tap2deb-man.html │ │ │ ├── tap2deb.1 │ │ │ ├── tap2rpm-man.html │ │ │ ├── tap2rpm.1 │ │ │ ├── tapconvert-man.html │ │ │ ├── tapconvert.1 │ │ │ ├── trial-man.html │ │ │ ├── trial.1 │ │ │ ├── twistd-man.html │ │ │ └── twistd.1 │ │ ├── specifications │ │ │ ├── banana.html │ │ │ └── index.html │ │ └── upgrades │ │ │ ├── 2.0 │ │ │ ├── components.html │ │ │ ├── index.html │ │ │ └── split.html │ │ │ └── index.html │ ├── fun │ │ ├── Twisted.Quotes │ │ ├── lightbulb │ │ └── register.html │ ├── historic │ │ ├── 2002 │ │ │ └── ipc10 │ │ │ │ └── twisted-network-framework │ │ │ │ ├── errata.html │ │ │ │ └── index.html │ │ ├── 2003 │ │ │ ├── europython │ │ │ │ ├── doanddont.html │ │ │ │ ├── index.html │ │ │ │ ├── lore.html │ │ │ │ ├── slides-template.tpl │ │ │ │ ├── tw-deploy.html │ │ │ │ ├── twisted.html │ │ │ │ └── webclients.html │ │ │ ├── haifux │ │ │ │ ├── haifux.html │ │ │ │ └── notes.html │ │ │ └── pycon │ │ │ │ ├── applications │ │ │ │ ├── applications │ │ │ │ ├── applications.html │ │ │ │ └── pynfo-chart.png │ │ │ │ ├── conch │ │ │ │ ├── conch │ │ │ │ ├── conch.html │ │ │ │ ├── conchtalk.txt │ │ │ │ ├── smalltwisted.png │ │ │ │ └── twistedlogo.png │ │ │ │ ├── deferex │ │ │ │ ├── deferex-bad-adding.py │ │ │ │ ├── deferex-chaining.py │ │ │ │ ├── deferex-complex-failure.py │ │ │ │ ├── deferex-complex-raise.py │ │ │ │ ├── deferex-forwarding.py │ │ │ │ ├── deferex-listing0.py │ │ │ │ ├── deferex-listing1.py │ │ │ │ ├── deferex-listing2.py │ │ │ │ ├── deferex-simple-failure.py │ │ │ │ ├── deferex-simple-raise.py │ │ │ │ ├── deferex.html │ │ │ │ └── deferexex.py │ │ │ │ ├── intrinsics-lightning │ │ │ │ └── intrinsics-lightning │ │ │ │ ├── lore │ │ │ │ ├── lore-presentation │ │ │ │ ├── lore-slides.html │ │ │ │ └── lore.html │ │ │ │ ├── pb │ │ │ │ ├── pb-client1.py │ │ │ │ ├── pb-server1.py │ │ │ │ ├── pb-slides.py │ │ │ │ └── pb.html │ │ │ │ ├── releasing │ │ │ │ ├── releasing-twisted │ │ │ │ └── releasing.html │ │ │ │ ├── tw-deploy │ │ │ │ ├── tw-deploy │ │ │ │ ├── twisted-overview.png │ │ │ │ └── twistedlogo.png │ │ │ │ ├── twisted-internet │ │ │ │ └── twisted-internet.py │ │ │ │ └── twisted-reality │ │ │ │ ├── componentized.svg │ │ │ │ └── twisted-reality.html │ │ ├── 2004 │ │ │ └── ibm │ │ │ │ └── talk.html │ │ ├── index.html │ │ ├── ipc10errata.html │ │ ├── ipc10paper.html │ │ ├── stylesheet.css │ │ ├── template-notoc.tpl │ │ ├── template.tpl │ │ └── twisted-debian.html │ ├── lore │ │ ├── examples │ │ │ ├── example.html │ │ │ ├── index.html │ │ │ └── slides-template.tpl │ │ ├── howto │ │ │ ├── extend-lore.html │ │ │ ├── index.html │ │ │ ├── listings │ │ │ │ └── lore │ │ │ │ │ ├── 1st_example.html │ │ │ │ │ ├── a_lore_plugin.py │ │ │ │ │ ├── factory.py-1 │ │ │ │ │ ├── factory.py-2 │ │ │ │ │ ├── factory.py-3 │ │ │ │ │ ├── spitters.py-1 │ │ │ │ │ └── spitters.py-2 │ │ │ └── lore.html │ │ ├── img │ │ │ └── myhtml-output.png │ │ ├── index.html │ │ └── man │ │ │ ├── lore-man.html │ │ │ └── lore.1 │ ├── mail │ │ ├── examples │ │ │ ├── emailserver.tac │ │ │ ├── imap4client.py │ │ │ ├── index.html │ │ │ ├── smtpclient_simple.py │ │ │ └── smtpclient_tls.py │ │ ├── index.html │ │ ├── man │ │ │ ├── mailmail-man.html │ │ │ └── mailmail.1 │ │ └── tutorial │ │ │ ├── smtpclient │ │ │ ├── smtpclient-1.tac │ │ │ ├── smtpclient-10.tac │ │ │ ├── smtpclient-11.tac │ │ │ ├── smtpclient-2.tac │ │ │ ├── smtpclient-3.tac │ │ │ ├── smtpclient-4.tac │ │ │ ├── smtpclient-5.tac │ │ │ ├── smtpclient-6.tac │ │ │ ├── smtpclient-7.tac │ │ │ ├── smtpclient-8.tac │ │ │ ├── smtpclient-9.tac │ │ │ └── smtpclient.html │ │ │ └── smtpserver │ │ │ ├── smtpserver-1.tac │ │ │ ├── smtpserver-2.tac │ │ │ ├── smtpserver-3.tac │ │ │ ├── smtpserver-4.tac │ │ │ ├── smtpserver-5.tac │ │ │ ├── smtpserver-6.tac │ │ │ ├── smtpserver-7.tac │ │ │ └── smtpserver-8.tac │ ├── names │ │ ├── examples │ │ │ ├── dns-service.py │ │ │ ├── gethostbyname.py │ │ │ ├── index.html │ │ │ └── testdns.py │ │ ├── howto │ │ │ ├── index.html │ │ │ ├── listings │ │ │ │ └── names │ │ │ │ │ └── example-domain.com │ │ │ └── names.html │ │ └── index.html │ ├── pair │ │ ├── examples │ │ │ ├── index.html │ │ │ └── pairudp.py │ │ ├── howto │ │ │ ├── index.html │ │ │ └── twisted-pair.html │ │ └── index.html │ ├── web │ │ ├── examples │ │ │ ├── advogato.py │ │ │ ├── dlpage.py │ │ │ ├── fortune.rpy.py │ │ │ ├── getpage.py │ │ │ ├── google.py │ │ │ ├── hello.rpy.py │ │ │ ├── httpclient.py │ │ │ ├── index.html │ │ │ ├── lj.rpy.py │ │ │ ├── proxy.py │ │ │ ├── report.rpy.py │ │ │ ├── rootscript.py │ │ │ ├── silly-web.py │ │ │ ├── simple.rtl │ │ │ ├── soap.py │ │ │ ├── users.rpy.py │ │ │ ├── vhost.rpy.py │ │ │ ├── web.py │ │ │ ├── webguard.py │ │ │ ├── xmlrpc.py │ │ │ └── xmlrpcclient.py │ │ ├── howto │ │ │ ├── client.html │ │ │ ├── glossary.html │ │ │ ├── index.html │ │ │ ├── listings │ │ │ │ ├── client │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── sendbody.py │ │ │ │ │ └── stringprod.py │ │ │ │ ├── element_1.py │ │ │ │ ├── element_2.py │ │ │ │ ├── element_3.py │ │ │ │ ├── output-1.html │ │ │ │ ├── output-2.html │ │ │ │ ├── output-3.html │ │ │ │ ├── quoting-output.html │ │ │ │ ├── quoting_element.py │ │ │ │ ├── render_1.py │ │ │ │ ├── render_2.py │ │ │ │ ├── render_3.py │ │ │ │ ├── render_quoting.py │ │ │ │ ├── render_slots_attrs.py │ │ │ │ ├── render_transparent.py │ │ │ │ ├── slots-attributes-1.xml │ │ │ │ ├── slots-attributes-output.html │ │ │ │ ├── slots_attributes_1.py │ │ │ │ ├── soap.rpy │ │ │ │ ├── template-1.xml │ │ │ │ ├── transparent-1.xml │ │ │ │ ├── transparent-output.html │ │ │ │ ├── transparent_element.py │ │ │ │ ├── wait_for_it.py │ │ │ │ ├── waited-for-it.html │ │ │ │ ├── waited-for-it.txt │ │ │ │ ├── webquote.rtl │ │ │ │ ├── xmlAndSoapQuote.py │ │ │ │ └── xmlquote.rpy │ │ │ ├── resource-templates.html │ │ │ ├── twisted-templates.html │ │ │ ├── using-twistedweb.html │ │ │ ├── web-development.html │ │ │ ├── web-in-60 │ │ │ │ ├── asynchronous-deferred.html │ │ │ │ ├── asynchronous.html │ │ │ │ ├── custom-codes.html │ │ │ │ ├── dynamic-content.html │ │ │ │ ├── dynamic-dispatch.html │ │ │ │ ├── error-handling.html │ │ │ │ ├── handling-posts.html │ │ │ │ ├── http-auth.html │ │ │ │ ├── index.html │ │ │ │ ├── interrupted.html │ │ │ │ ├── logging-errors.html │ │ │ │ ├── rpy-scripts.html │ │ │ │ ├── session-basics.html │ │ │ │ ├── session-endings.html │ │ │ │ ├── session-store.html │ │ │ │ ├── static-content.html │ │ │ │ ├── static-dispatch.html │ │ │ │ └── wsgi.html │ │ │ ├── web-overview.html │ │ │ └── xmlrpc.html │ │ ├── img │ │ │ ├── controller.png │ │ │ ├── livepage.png │ │ │ ├── model.png │ │ │ ├── plone_root_model.png │ │ │ ├── view.png │ │ │ ├── web-overview.dia │ │ │ ├── web-overview.png │ │ │ ├── web-process.png │ │ │ ├── web-process.svg │ │ │ ├── web-session.png │ │ │ ├── web-widgets.dia │ │ │ └── web-widgets.png │ │ └── index.html │ └── words │ │ ├── examples │ │ ├── cursesclient.py │ │ ├── index.html │ │ ├── ircLogBot.py │ │ ├── jabber_client.py │ │ ├── minchat.py │ │ ├── msn_example.py │ │ ├── oscardemo.py │ │ ├── pb_client.py │ │ └── xmpp_client.py │ │ ├── howto │ │ ├── im.html │ │ └── index.html │ │ ├── index.html │ │ └── man │ │ ├── im-man.html │ │ └── im.1 ├── pip-egg-info │ └── Twisted.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.py └── twisted │ ├── __init__.py │ ├── _version.py │ ├── application │ ├── __init__.py │ ├── app.py │ ├── internet.py │ ├── reactors.py │ ├── service.py │ ├── strports.py │ └── test │ │ ├── __init__.py │ │ └── test_internet.py │ ├── conch │ ├── __init__.py │ ├── _version.py │ ├── avatar.py │ ├── checkers.py │ ├── client │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── connect.py │ │ ├── default.py │ │ ├── direct.py │ │ ├── knownhosts.py │ │ └── options.py │ ├── error.py │ ├── insults │ │ ├── __init__.py │ │ ├── client.py │ │ ├── colors.py │ │ ├── helper.py │ │ ├── insults.py │ │ ├── text.py │ │ └── window.py │ ├── interfaces.py │ ├── ls.py │ ├── manhole.py │ ├── manhole_ssh.py │ ├── manhole_tap.py │ ├── mixin.py │ ├── openssh_compat │ │ ├── __init__.py │ │ ├── factory.py │ │ └── primes.py │ ├── recvline.py │ ├── scripts │ │ ├── __init__.py │ │ ├── cftp.py │ │ ├── ckeygen.py │ │ ├── conch.py │ │ └── tkconch.py │ ├── ssh │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── channel.py │ │ ├── common.py │ │ ├── connection.py │ │ ├── factory.py │ │ ├── filetransfer.py │ │ ├── forwarding.py │ │ ├── keys.py │ │ ├── service.py │ │ ├── session.py │ │ ├── sexpy.py │ │ ├── transport.py │ │ └── userauth.py │ ├── stdio.py │ ├── tap.py │ ├── telnet.py │ ├── test │ │ ├── __init__.py │ │ ├── keydata.py │ │ ├── test_agent.py │ │ ├── test_cftp.py │ │ ├── test_channel.py │ │ ├── test_checkers.py │ │ ├── test_ckeygen.py │ │ ├── test_conch.py │ │ ├── test_connection.py │ │ ├── test_default.py │ │ ├── test_filetransfer.py │ │ ├── test_helper.py │ │ ├── test_insults.py │ │ ├── test_keys.py │ │ ├── test_knownhosts.py │ │ ├── test_manhole.py │ │ ├── test_mixin.py │ │ ├── test_openssh_compat.py │ │ ├── test_recvline.py │ │ ├── test_session.py │ │ ├── test_ssh.py │ │ ├── test_tap.py │ │ ├── test_telnet.py │ │ ├── test_text.py │ │ ├── test_transport.py │ │ ├── test_userauth.py │ │ └── test_window.py │ ├── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── ttymodes.py │ ├── ui │ │ ├── __init__.py │ │ ├── ansi.py │ │ └── tkvt100.py │ └── unix.py │ ├── copyright.py │ ├── cred │ ├── __init__.py │ ├── _digest.py │ ├── checkers.py │ ├── credentials.py │ ├── error.py │ ├── pamauth.py │ ├── portal.py │ └── strcred.py │ ├── enterprise │ ├── __init__.py │ ├── adbapi.py │ ├── reflector.py │ ├── row.py │ ├── sqlreflector.py │ └── util.py │ ├── internet │ ├── __init__.py │ ├── _baseprocess.py │ ├── _dumbwin32proc.py │ ├── _pollingfile.py │ ├── _posixserialport.py │ ├── _posixstdio.py │ ├── _sigchld.c │ ├── _signals.py │ ├── _sslverify.py │ ├── _threadedselect.py │ ├── _win32serialport.py │ ├── _win32stdio.py │ ├── abstract.py │ ├── address.py │ ├── base.py │ ├── cfreactor.py │ ├── default.py │ ├── defer.py │ ├── endpoints.py │ ├── epollreactor.py │ ├── error.py │ ├── fdesc.py │ ├── glib2reactor.py │ ├── gtk2reactor.py │ ├── gtkreactor.py │ ├── inotify.py │ ├── interfaces.py │ ├── iocpreactor │ │ ├── __init__.py │ │ ├── abstract.py │ │ ├── build.bat │ │ ├── const.py │ │ ├── interfaces.py │ │ ├── iocpsupport │ │ │ ├── acceptex.pxi │ │ │ ├── connectex.pxi │ │ │ ├── iocpsupport.c │ │ │ ├── iocpsupport.pyx │ │ │ ├── winsock_pointers.c │ │ │ ├── winsock_pointers.h │ │ │ ├── wsarecv.pxi │ │ │ └── wsasend.pxi │ │ ├── notes.txt │ │ ├── reactor.py │ │ ├── setup.py │ │ ├── tcp.py │ │ └── udp.py │ ├── kqreactor.py │ ├── main.py │ ├── pollreactor.py │ ├── posixbase.py │ ├── process.py │ ├── protocol.py │ ├── pyuisupport.py │ ├── qtreactor.py │ ├── reactor.py │ ├── selectreactor.py │ ├── serialport.py │ ├── ssl.py │ ├── stdio.py │ ├── task.py │ ├── tcp.py │ ├── test │ │ ├── __init__.py │ │ ├── fake_CAs │ │ │ ├── not-a-certificate │ │ │ ├── thing1.pem │ │ │ ├── thing2-duplicate.pem │ │ │ └── thing2.pem │ │ ├── fakeendpoint.py │ │ ├── inlinecb_tests.py │ │ ├── process_helper.py │ │ ├── reactormixins.py │ │ ├── test_address.py │ │ ├── test_base.py │ │ ├── test_baseprocess.py │ │ ├── test_core.py │ │ ├── test_endpoints.py │ │ ├── test_fdset.py │ │ ├── test_gtkreactor.py │ │ ├── test_inlinecb.py │ │ ├── test_inotify.py │ │ ├── test_iocp.py │ │ ├── test_main.py │ │ ├── test_pollingfile.py │ │ ├── test_posixbase.py │ │ ├── test_posixprocess.py │ │ ├── test_process.py │ │ ├── test_protocol.py │ │ ├── test_qtreactor.py │ │ ├── test_sigchld.py │ │ ├── test_tcp.py │ │ ├── test_threads.py │ │ ├── test_time.py │ │ ├── test_tls.py │ │ ├── test_udp.py │ │ ├── test_unix.py │ │ └── test_win32events.py │ ├── threads.py │ ├── tksupport.py │ ├── udp.py │ ├── unix.py │ ├── utils.py │ ├── win32eventreactor.py │ ├── wxreactor.py │ └── wxsupport.py │ ├── lore │ ├── __init__.py │ ├── _version.py │ ├── default.py │ ├── docbook.py │ ├── htmlbook.py │ ├── indexer.py │ ├── latex.py │ ├── lint.py │ ├── lmath.py │ ├── man2lore.py │ ├── numberer.py │ ├── process.py │ ├── scripts │ │ ├── __init__.py │ │ └── lore.py │ ├── slides.py │ ├── template.mgp │ ├── test │ │ ├── __init__.py │ │ ├── lore_index_file_out.html │ │ ├── lore_index_file_out_multiple.html │ │ ├── lore_index_file_unnumbered_out.html │ │ ├── lore_index_test.xhtml │ │ ├── lore_index_test2.xhtml │ │ ├── lore_numbering_test_out.html │ │ ├── lore_numbering_test_out2.html │ │ ├── simple.html │ │ ├── simple3.html │ │ ├── simple4.html │ │ ├── template.tpl │ │ ├── test_docbook.py │ │ ├── test_latex.py │ │ ├── test_lint.py │ │ ├── test_lmath.py │ │ ├── test_lore.py │ │ ├── test_man2lore.py │ │ └── test_slides.py │ ├── texi.py │ ├── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── tree.py │ ├── xhtml-lat1.ent │ ├── xhtml-special.ent │ ├── xhtml-symbol.ent │ ├── xhtml1-strict.dtd │ └── xhtml1-transitional.dtd │ ├── mail │ ├── __init__.py │ ├── _version.py │ ├── alias.py │ ├── bounce.py │ ├── imap4.py │ ├── mail.py │ ├── maildir.py │ ├── pb.py │ ├── pop3.py │ ├── pop3client.py │ ├── protocols.py │ ├── relay.py │ ├── relaymanager.py │ ├── scripts │ │ ├── __init__.py │ │ └── mailmail.py │ ├── smtp.py │ ├── tap.py │ ├── test │ │ ├── __init__.py │ │ ├── pop3testserver.py │ │ ├── rfc822.message │ │ ├── test_bounce.py │ │ ├── test_imap.py │ │ ├── test_mail.py │ │ ├── test_mailmail.py │ │ ├── test_options.py │ │ ├── test_pop3.py │ │ ├── test_pop3client.py │ │ └── test_smtp.py │ └── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── manhole │ ├── __init__.py │ ├── _inspectro.py │ ├── explorer.py │ ├── gladereactor.glade │ ├── gladereactor.py │ ├── inspectro.glade │ ├── logview.glade │ ├── service.py │ ├── telnet.py │ └── ui │ │ ├── __init__.py │ │ ├── gtk2manhole.glade │ │ ├── gtk2manhole.py │ │ └── test │ │ ├── __init__.py │ │ └── test_gtk2manhole.py │ ├── names │ ├── __init__.py │ ├── _version.py │ ├── authority.py │ ├── cache.py │ ├── client.py │ ├── common.py │ ├── dns.py │ ├── error.py │ ├── hosts.py │ ├── resolve.py │ ├── root.py │ ├── secondary.py │ ├── server.py │ ├── srvconnect.py │ ├── tap.py │ ├── test │ │ ├── __init__.py │ │ ├── test_cache.py │ │ ├── test_client.py │ │ ├── test_common.py │ │ ├── test_dns.py │ │ ├── test_names.py │ │ ├── test_rootresolve.py │ │ └── test_srvconnect.py │ └── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── news │ ├── __init__.py │ ├── _version.py │ ├── database.py │ ├── news.py │ ├── nntp.py │ ├── tap.py │ ├── test │ │ ├── __init__.py │ │ ├── test_database.py │ │ ├── test_news.py │ │ └── test_nntp.py │ └── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── pair │ ├── __init__.py │ ├── _version.py │ ├── ethernet.py │ ├── ip.py │ ├── raw.py │ ├── rawudp.py │ ├── test │ │ ├── __init__.py │ │ ├── test_ethernet.py │ │ ├── test_ip.py │ │ └── test_rawudp.py │ ├── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ └── tuntap.py │ ├── persisted │ ├── __init__.py │ ├── aot.py │ ├── crefutil.py │ ├── dirdbm.py │ ├── journal │ │ ├── __init__.py │ │ ├── base.py │ │ ├── picklelog.py │ │ └── rowjournal.py │ ├── sob.py │ └── styles.py │ ├── plugin.py │ ├── plugins │ ├── __init__.py │ ├── cred_anonymous.py │ ├── cred_file.py │ ├── cred_memory.py │ ├── cred_unix.py │ ├── twisted_conch.py │ ├── twisted_ftp.py │ ├── twisted_inet.py │ ├── twisted_lore.py │ ├── twisted_mail.py │ ├── twisted_manhole.py │ ├── twisted_names.py │ ├── twisted_news.py │ ├── twisted_portforward.py │ ├── twisted_qtstub.py │ ├── twisted_reactors.py │ ├── twisted_runner.py │ ├── twisted_socks.py │ ├── twisted_telnet.py │ ├── twisted_trial.py │ ├── twisted_web.py │ └── twisted_words.py │ ├── protocols │ ├── __init__.py │ ├── amp.py │ ├── basic.py │ ├── dict.py │ ├── finger.py │ ├── ftp.py │ ├── gps │ │ ├── __init__.py │ │ ├── nmea.py │ │ └── rockwell.py │ ├── htb.py │ ├── ident.py │ ├── loopback.py │ ├── memcache.py │ ├── mice │ │ ├── __init__.py │ │ └── mouseman.py │ ├── pcp.py │ ├── policies.py │ ├── portforward.py │ ├── postfix.py │ ├── shoutcast.py │ ├── sip.py │ ├── socks.py │ ├── stateful.py │ ├── telnet.py │ ├── test │ │ ├── __init__.py │ │ └── test_tls.py │ ├── tls.py │ └── wire.py │ ├── python │ ├── __init__.py │ ├── _epoll.c │ ├── _epoll.pyx │ ├── _initgroups.c │ ├── _inotify.py │ ├── _release.py │ ├── _twisted_zsh_stub │ ├── compat.py │ ├── components.py │ ├── context.py │ ├── deprecate.py │ ├── dispatch.py │ ├── dist.py │ ├── failure.py │ ├── fakepwd.py │ ├── filepath.py │ ├── finalize.py │ ├── formmethod.py │ ├── hashlib.py │ ├── hook.py │ ├── htmlizer.py │ ├── lockfile.py │ ├── log.py │ ├── logfile.py │ ├── modules.py │ ├── monkey.py │ ├── otp.py │ ├── procutils.py │ ├── randbytes.py │ ├── rebuild.py │ ├── reflect.py │ ├── release.py │ ├── roots.py │ ├── runtime.py │ ├── shortcut.py │ ├── syslog.py │ ├── test │ │ ├── __init__.py │ │ ├── deprecatedattributes.py │ │ ├── test_components.py │ │ ├── test_deprecate.py │ │ ├── test_dist.py │ │ ├── test_fakepwd.py │ │ ├── test_hashlib.py │ │ ├── test_htmlizer.py │ │ ├── test_inotify.py │ │ ├── test_release.py │ │ ├── test_runtime.py │ │ ├── test_syslog.py │ │ ├── test_util.py │ │ ├── test_versions.py │ │ ├── test_win32.py │ │ └── test_zipstream.py │ ├── text.py │ ├── threadable.py │ ├── threadpool.py │ ├── urlpath.py │ ├── usage.py │ ├── util.py │ ├── versions.py │ ├── win32.py │ ├── zippath.py │ ├── zipstream.py │ ├── zsh │ │ ├── README │ │ ├── _cftp │ │ ├── _ckeygen │ │ ├── _conch │ │ ├── _lore │ │ ├── _manhole │ │ ├── _mktap │ │ ├── _pyhtmlizer │ │ ├── _tap2deb │ │ ├── _tap2rpm │ │ ├── _tapconvert │ │ ├── _tkconch │ │ ├── _tkmktap │ │ ├── _trial │ │ ├── _twistd │ │ └── _websetroot │ └── zshcomp.py │ ├── runner │ ├── __init__.py │ ├── _version.py │ ├── inetd.py │ ├── inetdconf.py │ ├── inetdtap.py │ ├── portmap.c │ ├── procmon.py │ ├── procmontap.py │ ├── procutils.py │ ├── test │ │ ├── __init__.py │ │ ├── test_procmon.py │ │ └── test_procmontap.py │ └── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── scripts │ ├── __init__.py │ ├── _twistd_unix.py │ ├── _twistw.py │ ├── htmlizer.py │ ├── manhole.py │ ├── mktap.py │ ├── tap2deb.py │ ├── tap2rpm.py │ ├── tapconvert.py │ ├── test │ │ ├── __init__.py │ │ ├── test_mktap.py │ │ └── test_tap2rpm.py │ ├── tkunzip.py │ ├── trial.py │ └── twistd.py │ ├── spread │ ├── __init__.py │ ├── banana.py │ ├── flavors.py │ ├── interfaces.py │ ├── jelly.py │ ├── pb.py │ ├── publish.py │ ├── refpath.py │ ├── ui │ │ ├── __init__.py │ │ ├── gtk2util.py │ │ ├── login2.glade │ │ ├── tktree.py │ │ └── tkutil.py │ └── util.py │ ├── tap │ ├── __init__.py │ ├── ftp.py │ ├── manhole.py │ ├── portforward.py │ ├── socks.py │ └── telnet.py │ ├── test │ ├── __init__.py │ ├── crash_test_dummy.py │ ├── generator_failure_tests.py │ ├── iosim.py │ ├── mock_win32process.py │ ├── myrebuilder1.py │ ├── myrebuilder2.py │ ├── plugin_basic.py │ ├── plugin_extra1.py │ ├── plugin_extra2.py │ ├── process_cmdline.py │ ├── process_echoer.py │ ├── process_fds.py │ ├── process_linger.py │ ├── process_reader.py │ ├── process_signal.py │ ├── process_stdinreader.py │ ├── process_tester.py │ ├── process_tty.py │ ├── process_twisted.py │ ├── proto_helpers.py │ ├── raiser.c │ ├── raiser.pyx │ ├── reflect_helper_IE.py │ ├── reflect_helper_VE.py │ ├── reflect_helper_ZDE.py │ ├── server.pem │ ├── ssl_helpers.py │ ├── stdio_test_consumer.py │ ├── stdio_test_halfclose.py │ ├── stdio_test_hostpeer.py │ ├── stdio_test_lastwrite.py │ ├── stdio_test_loseconn.py │ ├── stdio_test_producer.py │ ├── stdio_test_write.py │ ├── stdio_test_writeseq.py │ ├── test_abstract.py │ ├── test_adbapi.py │ ├── test_amp.py │ ├── test_application.py │ ├── test_banana.py │ ├── test_compat.py │ ├── test_context.py │ ├── test_cooperator.py │ ├── test_defer.py │ ├── test_defgen.py │ ├── test_dict.py │ ├── test_digestauth.py │ ├── test_dirdbm.py │ ├── test_doc.py │ ├── test_enterprise.py │ ├── test_epoll.py │ ├── test_error.py │ ├── test_explorer.py │ ├── test_factories.py │ ├── test_failure.py │ ├── test_fdesc.py │ ├── test_finger.py │ ├── test_formmethod.py │ ├── test_ftp.py │ ├── test_hook.py │ ├── test_htb.py │ ├── test_ident.py │ ├── test_import.py │ ├── test_internet.py │ ├── test_iutils.py │ ├── test_jelly.py │ ├── test_journal.py │ ├── test_lockfile.py │ ├── test_log.py │ ├── test_logfile.py │ ├── test_loopback.py │ ├── test_manhole.py │ ├── test_memcache.py │ ├── test_modules.py │ ├── test_monkey.py │ ├── test_newcred.py │ ├── test_nmea.py │ ├── test_paths.py │ ├── test_pb.py │ ├── test_pbfailure.py │ ├── test_pcp.py │ ├── test_persisted.py │ ├── test_plugin.py │ ├── test_policies.py │ ├── test_postfix.py │ ├── test_process.py │ ├── test_protocols.py │ ├── test_randbytes.py │ ├── test_rebuild.py │ ├── test_reflect.py │ ├── test_reflector.py │ ├── test_roots.py │ ├── test_shortcut.py │ ├── test_sip.py │ ├── test_sob.py │ ├── test_socks.py │ ├── test_ssl.py │ ├── test_sslverify.py │ ├── test_stateful.py │ ├── test_stdio.py │ ├── test_strcred.py │ ├── test_strerror.py │ ├── test_stringtransport.py │ ├── test_strports.py │ ├── test_task.py │ ├── test_tcp.py │ ├── test_tcp_internals.py │ ├── test_text.py │ ├── test_threadable.py │ ├── test_threadpool.py │ ├── test_threads.py │ ├── test_timehelpers.py │ ├── test_tpfile.py │ ├── test_twistd.py │ ├── test_udp.py │ ├── test_unix.py │ ├── test_usage.py │ ├── test_zshcomp.py │ ├── testutils.py │ └── time_helpers.py │ ├── topfiles │ ├── CREDITS │ ├── ChangeLog.Old │ ├── NEWS │ ├── README │ └── setup.py │ ├── trial │ ├── __init__.py │ ├── itrial.py │ ├── reporter.py │ ├── runner.py │ ├── test │ │ ├── __init__.py │ │ ├── detests.py │ │ ├── erroneous.py │ │ ├── mockcustomsuite.py │ │ ├── mockcustomsuite2.py │ │ ├── mockcustomsuite3.py │ │ ├── mockdoctest.py │ │ ├── moduleself.py │ │ ├── moduletest.py │ │ ├── notpython │ │ ├── novars.py │ │ ├── packages.py │ │ ├── sample.py │ │ ├── scripttest.py │ │ ├── suppression.py │ │ ├── test_assertions.py │ │ ├── test_deferred.py │ │ ├── test_doctest.py │ │ ├── test_keyboard.py │ │ ├── test_loader.py │ │ ├── test_log.py │ │ ├── test_output.py │ │ ├── test_plugins.py │ │ ├── test_pyunitcompat.py │ │ ├── test_reporter.py │ │ ├── test_runner.py │ │ ├── test_script.py │ │ ├── test_test_visitor.py │ │ ├── test_testcase.py │ │ ├── test_tests.py │ │ ├── test_util.py │ │ ├── test_warning.py │ │ └── weird.py │ ├── unittest.py │ └── util.py │ ├── web │ ├── __init__.py │ ├── _auth │ │ ├── __init__.py │ │ ├── basic.py │ │ ├── digest.py │ │ └── wrapper.py │ ├── _element.py │ ├── _flatten.py │ ├── _newclient.py │ ├── _stan.py │ ├── _version.py │ ├── client.py │ ├── demo.py │ ├── distrib.py │ ├── domhelpers.py │ ├── error.py │ ├── google.py │ ├── guard.py │ ├── html.py │ ├── http.py │ ├── http_headers.py │ ├── iweb.py │ ├── microdom.py │ ├── proxy.py │ ├── resource.py │ ├── rewrite.py │ ├── script.py │ ├── server.py │ ├── soap.py │ ├── static.py │ ├── sux.py │ ├── tap.py │ ├── template.py │ ├── test │ │ ├── __init__.py │ │ ├── _util.py │ │ ├── test_cgi.py │ │ ├── test_distrib.py │ │ ├── test_domhelpers.py │ │ ├── test_error.py │ │ ├── test_flatten.py │ │ ├── test_http.py │ │ ├── test_http_headers.py │ │ ├── test_httpauth.py │ │ ├── test_newclient.py │ │ ├── test_proxy.py │ │ ├── test_resource.py │ │ ├── test_script.py │ │ ├── test_soap.py │ │ ├── test_stan.py │ │ ├── test_static.py │ │ ├── test_tap.py │ │ ├── test_template.py │ │ ├── test_util.py │ │ ├── test_vhost.py │ │ ├── test_web.py │ │ ├── test_webclient.py │ │ ├── test_wsgi.py │ │ ├── test_xml.py │ │ └── test_xmlrpc.py │ ├── topfiles │ │ ├── NEWS │ │ ├── README │ │ └── setup.py │ ├── twcgi.py │ ├── util.py │ ├── vhost.py │ ├── wsgi.py │ └── xmlrpc.py │ └── words │ ├── __init__.py │ ├── _version.py │ ├── ewords.py │ ├── im │ ├── __init__.py │ ├── baseaccount.py │ ├── basechat.py │ ├── basesupport.py │ ├── instancemessenger.glade │ ├── interfaces.py │ ├── ircsupport.py │ ├── locals.py │ └── pbsupport.py │ ├── iwords.py │ ├── protocols │ ├── __init__.py │ ├── irc.py │ ├── jabber │ │ ├── __init__.py │ │ ├── client.py │ │ ├── component.py │ │ ├── error.py │ │ ├── ijabber.py │ │ ├── jid.py │ │ ├── jstrports.py │ │ ├── sasl.py │ │ ├── sasl_mechanisms.py │ │ ├── xmlstream.py │ │ └── xmpp_stringprep.py │ ├── msn.py │ └── oscar.py │ ├── service.py │ ├── tap.py │ ├── test │ ├── __init__.py │ ├── test_basechat.py │ ├── test_basesupport.py │ ├── test_domish.py │ ├── test_irc.py │ ├── test_irc_service.py │ ├── test_ircsupport.py │ ├── test_jabberclient.py │ ├── test_jabbercomponent.py │ ├── test_jabbererror.py │ ├── test_jabberjid.py │ ├── test_jabberjstrports.py │ ├── test_jabbersasl.py │ ├── test_jabbersaslmechanisms.py │ ├── test_jabberxmlstream.py │ ├── test_jabberxmppstringprep.py │ ├── test_msn.py │ ├── test_oscar.py │ ├── test_service.py │ ├── test_tap.py │ ├── test_xishutil.py │ ├── test_xmlstream.py │ ├── test_xmpproutertap.py │ └── test_xpath.py │ ├── topfiles │ ├── NEWS │ ├── README │ └── setup.py │ ├── xish │ ├── __init__.py │ ├── domish.py │ ├── utility.py │ ├── xmlstream.py │ ├── xpath.py │ ├── xpathparser.g │ └── xpathparser.py │ └── xmpproutertap.py ├── typecheck ├── CHANGELOG ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── ez_setup.py ├── pip-egg-info │ └── typecheck.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── test.py ├── tests │ ├── __init__.py │ ├── benchmark.py │ ├── doctests.py │ ├── support.py │ ├── test_bwcompat_1-6.py │ ├── test_examples.py │ ├── test_internals.py │ ├── test_mixins.py │ ├── test_public.py │ ├── test_sets.py │ ├── test_typeclasses.py │ └── test_utility_classes.py ├── typecheck.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ └── top_level.txt └── typecheck │ ├── __init__.py │ ├── doctest_support.py │ ├── mixins.py │ ├── sets.py │ └── typeclasses.py ├── unicodecsv ├── PKG-INFO ├── README ├── pip-egg-info │ └── unicodecsv.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── unicodecsv.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt └── unicodecsv │ ├── __init__.py │ └── test.py ├── unittest-xml-reporting ├── MANIFEST.in ├── PKG-INFO ├── pip-egg-info │ └── unittest_xml_reporting.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── not-zip-safe │ │ └── top_level.txt ├── setup.cfg ├── setup.py └── src │ ├── unittest_xml_reporting.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── not-zip-safe │ └── top_level.txt │ └── xmlrunner │ ├── __init__.py │ ├── extra │ ├── __init__.py │ └── djangotestrunner.py │ └── tests │ ├── __init__.py │ ├── fixtures │ ├── errord_test_case.xml │ ├── failed_test_case.xml │ ├── mixed_test_case.xml │ ├── successful_test_case.xml │ ├── unicode_error_diff.xml │ └── unicode_error_nodiff.xml │ ├── testsuite.py │ └── testsuite_cases.py ├── webob ├── .gitignore ├── .travis.yml ├── MANIFEST.in ├── PKG-INFO ├── docs │ ├── comment-example-code │ │ └── example.py │ ├── comment-example.txt │ ├── conf.py │ ├── differences.txt │ ├── do-it-yourself.txt │ ├── doctests.py │ ├── file-example.txt │ ├── index.txt │ ├── jsonrpc-example-code │ │ └── jsonrpc.py │ ├── jsonrpc-example.txt │ ├── license.txt │ ├── modules │ │ ├── client.txt │ │ ├── dec.txt │ │ ├── static.txt │ │ └── webob.txt │ ├── news.txt │ ├── pycon2011 │ │ ├── pycon-py3k-sprint.txt │ │ ├── request_table.rst │ │ └── response_table.rst │ ├── reference.txt │ ├── todo.txt │ ├── wiki-example-code │ │ └── example.py │ └── wiki-example.txt ├── setup.cfg ├── setup.py ├── tox.ini ├── toxfast.ini └── webob │ ├── __init__.py │ ├── acceptparse.py │ ├── byterange.py │ ├── cachecontrol.py │ ├── client.py │ ├── compat.py │ ├── cookies.py │ ├── datetime_utils.py │ ├── dec.py │ ├── descriptors.py │ ├── etag.py │ ├── exc.py │ ├── headers.py │ ├── multidict.py │ ├── request.py │ ├── response.py │ ├── static.py │ └── util.py ├── webtest ├── CHANGELOG.rst ├── MANIFEST.in ├── PKG-INFO ├── README.rst ├── WebTest.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── docs │ ├── Makefile │ ├── api.rst │ ├── changelog.rst │ ├── conf.py │ ├── contributing.rst │ ├── debugapp.rst │ ├── form.html │ ├── forms.rst │ ├── forms_fixt.py │ ├── http.rst │ ├── index.rst │ ├── index_fixt.py │ ├── license.rst │ ├── testapp.rst │ ├── testapp_fixt.py │ ├── testresponse.rst │ ├── testresponse_fixt.py │ └── webtest.rst ├── pip-egg-info │ └── WebTest.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── not-zip-safe │ │ ├── requires.txt │ │ └── top_level.txt ├── setup.cfg ├── setup.py ├── tests │ ├── __init__.py │ ├── compat.py │ ├── deploy.ini │ ├── html │ │ ├── 404.html │ │ ├── app.js │ │ ├── form_inputs.html │ │ ├── form_inputs_with_defaults.html │ │ ├── form_unicode_inputs.html │ │ ├── index.html │ │ └── message.html │ ├── test_app.py │ ├── test_authorisation.py │ ├── test_debugapp.py │ ├── test_ext.py │ ├── test_forms.py │ ├── test_http.py │ ├── test_lint.py │ ├── test_response.py │ ├── test_sel.py │ └── test_utils.py ├── tox.ini └── webtest │ ├── __init__.py │ ├── app.py │ ├── compat.py │ ├── debugapp.py │ ├── ext.py │ ├── forms.py │ ├── http.py │ ├── lint.py │ ├── response.py │ ├── sel.py │ └── utils.py ├── whoosh ├── LICENSE.txt ├── MANIFEST.in ├── PKG-INFO ├── README.txt ├── benchmark │ ├── dcvgr10.txt.gz │ ├── dictionary.py │ ├── enron.py │ ├── reuters.py │ └── reuters21578.txt.gz ├── docs │ └── source │ │ ├── analysis.rst │ │ ├── api │ │ ├── analysis.rst │ │ ├── api.rst │ │ ├── fields.rst │ │ ├── formats.rst │ │ ├── highlight.rst │ │ ├── index.rst │ │ ├── lang │ │ │ ├── morph_en.rst │ │ │ ├── porter.rst │ │ │ └── wordnet.rst │ │ ├── matching.rst │ │ ├── qparser.rst │ │ ├── query.rst │ │ ├── reading.rst │ │ ├── scoring.rst │ │ ├── searching.rst │ │ ├── sorting.rst │ │ ├── spans.rst │ │ ├── spelling.rst │ │ ├── store.rst │ │ ├── support │ │ │ ├── bitvector.rst │ │ │ ├── charset.rst │ │ │ ├── dawg.rst │ │ │ └── levenshtein.rst │ │ ├── util.rst │ │ └── writing.rst │ │ ├── batch.rst │ │ ├── conf.py │ │ ├── dates.rst │ │ ├── facets.rst │ │ ├── fieldcaches.rst │ │ ├── glossary.rst │ │ ├── highlight.rst │ │ ├── index.rst │ │ ├── indexing.rst │ │ ├── intro.rst │ │ ├── keywords.rst │ │ ├── ngrams.rst │ │ ├── parsing.rst │ │ ├── query.rst │ │ ├── querylang.rst │ │ ├── quickstart.rst │ │ ├── recipes.rst │ │ ├── releases │ │ ├── 0_3.rst │ │ ├── 1_0.rst │ │ ├── 2_0.rst │ │ └── index.rst │ │ ├── schema.rst │ │ ├── searching.rst │ │ ├── spelling.rst │ │ ├── stemming.rst │ │ ├── tech │ │ ├── backend.rst │ │ ├── filedb.rst │ │ └── index.rst │ │ └── threads.rst ├── files │ ├── whoosh.svg │ ├── whoosh_16.png │ ├── whoosh_35.png │ ├── whoosh_64.png │ └── whoosh_small.svg ├── pip-egg-info │ └── Whoosh.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── zip-safe ├── setup.cfg ├── setup.py ├── src │ ├── Whoosh.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── top_level.txt │ │ └── zip-safe │ └── whoosh │ │ ├── __init__.py │ │ ├── analysis.py │ │ ├── classify.py │ │ ├── compat.py │ │ ├── fields.py │ │ ├── filedb │ │ ├── __init__.py │ │ ├── fieldcache.py │ │ ├── fileindex.py │ │ ├── filepostings.py │ │ ├── filereading.py │ │ ├── filestore.py │ │ ├── filetables.py │ │ ├── filewriting.py │ │ ├── gae.py │ │ ├── multiproc.py │ │ ├── pools.py │ │ ├── postblocks.py │ │ └── structfile.py │ │ ├── formats.py │ │ ├── highlight.py │ │ ├── index.py │ │ ├── lang │ │ ├── __init__.py │ │ ├── dmetaphone.py │ │ ├── lovins.py │ │ ├── morph_en.py │ │ ├── paicehusk.py │ │ ├── phonetic.py │ │ ├── porter.py │ │ ├── porter2.py │ │ └── wordnet.py │ │ ├── matching.py │ │ ├── qparser │ │ ├── __init__.py │ │ ├── common.py │ │ ├── dateparse.py │ │ ├── default.py │ │ ├── plugins.py │ │ ├── syntax.py │ │ └── taggers.py │ │ ├── query.py │ │ ├── ramindex.py │ │ ├── reading.py │ │ ├── scoring.py │ │ ├── searching.py │ │ ├── sorting.py │ │ ├── spans.py │ │ ├── spelling.py │ │ ├── store.py │ │ ├── support │ │ ├── __init__.py │ │ ├── base85.py │ │ ├── bench.py │ │ ├── bitvector.py │ │ ├── charset.py │ │ ├── dawg.py │ │ ├── filelock.py │ │ ├── levenshtein.py │ │ ├── numeric.py │ │ ├── relativedelta.py │ │ ├── testing.py │ │ ├── times.py │ │ └── unicode.py │ │ ├── system.py │ │ ├── util.py │ │ └── writing.py └── tests │ ├── test_analysis.py │ ├── test_classify.py │ ├── test_collector.py │ ├── test_dateparse.py │ ├── test_fields.py │ ├── test_flexible.py │ ├── test_highlighting.py │ ├── test_indexing.py │ ├── test_matching.py │ ├── test_misc.py │ ├── test_parse_plugins.py │ ├── test_parsing.py │ ├── test_postings.py │ ├── test_quality.py │ ├── test_queries.py │ ├── test_ramindex.py │ ├── test_reading.py │ ├── test_results.py │ ├── test_searching.py │ ├── test_sorting.py │ ├── test_spans.py │ ├── test_spelling.py │ ├── test_tables.py │ ├── test_vectors.py │ ├── test_weightings.py │ └── test_writing.py └── zope.interface ├── .bzrignore ├── CHANGES.txt ├── COPYRIGHT.txt ├── LICENSE.txt ├── PKG-INFO ├── README.txt ├── bootstrap.py ├── build_ext_2.py ├── build_ext_3.py ├── buildout.cfg ├── pip-egg-info └── zope.interface.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── namespace_packages.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt ├── setup.cfg ├── setup.py ├── src ├── zope.interface.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── namespace_packages.txt │ ├── not-zip-safe │ ├── requires.txt │ └── top_level.txt └── zope │ ├── __init__.py │ └── interface │ ├── README.ru.txt │ ├── README.txt │ ├── __init__.py │ ├── _flatten.py │ ├── _zope_interface_coptimizations.c │ ├── adapter.py │ ├── adapter.ru.txt │ ├── adapter.txt │ ├── advice.py │ ├── common │ ├── __init__.py │ ├── idatetime.py │ ├── interfaces.py │ ├── mapping.py │ ├── sequence.py │ └── tests │ │ ├── __init__.py │ │ ├── basemapping.py │ │ ├── test_idatetime.py │ │ └── test_import_interfaces.py │ ├── declarations.py │ ├── document.py │ ├── exceptions.py │ ├── human.ru.txt │ ├── human.txt │ ├── index.txt │ ├── interface.py │ ├── interfaces.py │ ├── registry.py │ ├── ro.py │ ├── tests │ ├── __init__.py │ ├── dummy.py │ ├── foodforthought.txt │ ├── ifoo.py │ ├── ifoo_other.py │ ├── m1.py │ ├── m2.py │ ├── odd.py │ ├── test_adapter.py │ ├── test_advice.py │ ├── test_declarations.py │ ├── test_document.py │ ├── test_element.py │ ├── test_interface.py │ ├── test_odd_declarations.py │ ├── test_registry.py │ ├── test_sorting.py │ ├── test_verify.py │ └── unitfixtures.py │ ├── verify.py │ └── verify.txt └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/.lintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/CREDITS -------------------------------------------------------------------------------- /LAYOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/LAYOUT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/Procfile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/README.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/docs/index.rst -------------------------------------------------------------------------------- /downloads/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/manage.py -------------------------------------------------------------------------------- /mysite/account/templates/invitation/invitation_email_subject.txt: -------------------------------------------------------------------------------- 1 | OpenHatch 2 | -------------------------------------------------------------------------------- /mysite/base/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/base/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/base/templates/feeds/activity_title.html: -------------------------------------------------------------------------------- 1 | {{ obj.get_title_for_atom }} 2 | -------------------------------------------------------------------------------- /mysite/base/templates/feeds/recbugs_description.html: -------------------------------------------------------------------------------- 1 | {{ obj.description }} 2 | -------------------------------------------------------------------------------- /mysite/base/templates/robots_for_dev_env.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /mysite/bugsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/bugsets/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/missions/git/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/missions/irc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/missions/setup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/mysite/my.cnf -------------------------------------------------------------------------------- /mysite/scripts/emails/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/apache_is_still_alive.txt: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /mysite/static/inplaceeditform/js/jquery.inplaceeditform.hooks.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/jquery-ui-1.7.3/version.txt: -------------------------------------------------------------------------------- 1 | 1.7.3 -------------------------------------------------------------------------------- /mysite/static/js/jquery.autocomplete.js: -------------------------------------------------------------------------------- 1 | jquery.autocomplete.pack.js -------------------------------------------------------------------------------- /mysite/static/js/jquery.hotkey.js: -------------------------------------------------------------------------------- 1 | jquery.hotkeys-0.7.9.js -------------------------------------------------------------------------------- /mysite/static/js/jquery.js: -------------------------------------------------------------------------------- 1 | jquery-1.3.2.js -------------------------------------------------------------------------------- /mysite/static/js/jquery.json.js: -------------------------------------------------------------------------------- 1 | jquery.json-2.2.js -------------------------------------------------------------------------------- /mysite/static/js/jquery.query.js: -------------------------------------------------------------------------------- 1 | jquery.query-2.1.3.js -------------------------------------------------------------------------------- /mysite/static/js/jquery.scrollTo.js: -------------------------------------------------------------------------------- 1 | jquery.scrollTo-1.4.2.js -------------------------------------------------------------------------------- /mysite/static/packed/.gitignore: -------------------------------------------------------------------------------- 1 | # Keeps this directory empty 2 | * 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /mysite/static/sample-data/ohloh/02103ff050b2e9036a960e5b3de7f1cb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/static/twisted-ping-dir/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mysite/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/mysite/urls.py -------------------------------------------------------------------------------- /run_importer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/run_importer.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/setup.py -------------------------------------------------------------------------------- /vendor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhatch/oh-mainline/HEAD/vendor/README -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/app_template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/app_template/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/bg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/bn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/bs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/cs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/cy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/da/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/de_CH/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/el/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/en_GB/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/es_AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/es_MX/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/es_NI/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/et/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/eu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/fa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/fy_NL/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ga/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/gl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/he/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/hi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/hu/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/is/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ja/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ka/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/km/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/kn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ko/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/lt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/lv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/mn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/nb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/pt_BR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sq/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sr_Latn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/sv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/ta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/te/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/th/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/vi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/zh_CN/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/locale/zh_TW/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/conf/project_template/project_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/admin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/admin/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/admindocs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/auth/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/auth/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/comments/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/comments/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/databrowse/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/flatpages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/flatpages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/flatpages/tests/templates/registration/login.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/formtools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/formtools/tests/templates/404.html: -------------------------------------------------------------------------------- 1 | Not found. 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/formtools/tests/wizard/wizardtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/backends/postgis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/db/backends/spatialite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/gdal/prototypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/maps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/maps/openlayers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/distapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/geo3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/geoadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/geoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/geogapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/inspectapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/layermap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/gis/tests/relatedapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/humanize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/humanize/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/humanize/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/at/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/au/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/be/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/br/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ca/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/cl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/cn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/co/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/cz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/fi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/gb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/hk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/hr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/id/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ie/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/il/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/in_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/is_/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/it/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/jp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/kw/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/mk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/mx/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/nl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/no/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/pe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/pl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/pt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ro/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/ru/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/se/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/si/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/sk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/tr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/uk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/us/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/uy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/localflavor/za/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/markup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/markup/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/markup/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/redirects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sessions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sessions/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sessions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sessions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sitemaps/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sitemaps/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sitemaps/tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/staticfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/staticfiles/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/staticfiles/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/staticfiles/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/staticfiles/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/webdesign/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/webdesign/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/contrib/webdesign/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/core/cache/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/core/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/core/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/core/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/db/backends/dummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/db/backends/mysql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/db/backends/oracle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/db/backends/postgresql_psycopg2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/db/backends/sqlite3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/template/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/utils/2to3_fixes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/django/views/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/pip-egg-info/Django.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/pip-egg-info/Django.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | django 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/aggregation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/basic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/choices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/custom_columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/custom_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/custom_methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/custom_pk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/defer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/delete/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/distinct_on_fields/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/empty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/empty/no_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/expressions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/field_defaults/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/field_subclassing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/files/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/fixtures/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/fixtures_model_package/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/force_insert_update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/generic_relations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/get_latest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/get_object_or_404/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/get_or_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/invalid_models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/invalid_models/invalid_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/invalid_models/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/known_related_objects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_and_m2o/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_intermediary/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_multiple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_signals/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2m_through/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/m2o_recursive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/many_to_many/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/many_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/many_to_one_null/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/model_forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/model_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/model_inheritance_same_model_name/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/model_package/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/mutually_referential/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/one_to_one/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/or_lookups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/order_with_respect_to/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/prefetch_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/properties/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/proxy_model_inheritance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/proxy_model_inheritance/app1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/proxy_model_inheritance/app2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/proxy_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/raw_query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/reserved_names/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/reverse_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/save_delete_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/select_for_update/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/select_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/serializers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/signals/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/str/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/tablespaces/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/test_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/timezones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/transactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/unmanaged_models/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/update_only_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/user_commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/user_commands/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/user_commands/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/validators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/modeltests/validators/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_changelist/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_custom_urls/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_inlines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/app_with_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/broken_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/complex_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/complex_app/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_scripts/simple_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/admin_widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/aggregation_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/app_loading/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/app_loading/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/app_loading/not_installed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bash_completion/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bash_completion/management/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bash_completion/models.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bug639/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bug8245/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/builtin_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/builtin_server/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/bulk_create/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/cache/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/comment_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/context_processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/createsuperuser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/createsuperuser/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/csrf_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/custom_columns_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/custom_managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/dates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/db_typecasts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/db_typecasts/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/decorators/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/defaultfilters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/defaultfilters/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/defer_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/delete_regress/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/dispatch/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/expressions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/extra_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/file_storage/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/file_storage/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/file_uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/fixtures_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/fixtures_regress/fixtures/empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/forms/tests/filepath_test_files/.dot-file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/generic_inline_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/generic_relations_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/generic_views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/get_or_create_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/handlers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/http_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/http_utils/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/httpwrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/httpwrappers/abc.txt: -------------------------------------------------------------------------------- 1 | random content 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/httpwrappers/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/other/locale/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/other/locale/de/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/other/locale/de/formats.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/patterns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/patterns/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/patterns/templates/dummy.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/patterns/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/resolution/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/i18n/resolution/models.py: -------------------------------------------------------------------------------- 1 | # -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/indexes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/initial_sql_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/inline_formsets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/inspectdb/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/introspection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/localflavor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/localflavor/generic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/localflavor/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/logging_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/logging_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/m2m_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/m2m_through_regress/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/mail/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/managers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/many_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/max_lengths/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/middleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/middleware_exceptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/middleware_exceptions/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_forms_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_formsets_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_inheritance_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_permalink/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/model_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/modeladmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/multiple_database/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/nested_foreign_keys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/null_fk/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/null_fk_ordering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/null_queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/one_to_one_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/pagination/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/queries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/queryset_pickle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/resolve_url/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/reverse_single_related/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/select_related_onetoone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/select_related_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/serializers_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/servers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/settings_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/settings_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/signals_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/signed_cookies_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/signing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/sites_framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/special_headers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/apps/no_label/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/apps/no_label/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/apps/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/apps/test/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/staticfiles_tests/urls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/string_lookup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/swappable_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/syndication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/templates/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/templates/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/templates/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_client_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_client_regress/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_runner/deprecation_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_runner/invalid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_runner/valid_app/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_runner/valid_app/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/test_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/text/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/text/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/transactions_regress/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/urlpatterns_reverse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/urlpatterns_reverse/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/utils/test_module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/version/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/version/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/app0/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/app1/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/app2/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/app3/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/app4/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/media/file.txt: -------------------------------------------------------------------------------- 1 | An example media file. -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/views/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/wsgi/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/regressiontests/wsgi/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/requirements/mysql.txt: -------------------------------------------------------------------------------- 1 | MySQL-python 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/requirements/oracle.txt: -------------------------------------------------------------------------------- 1 | cx_oracle 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/requirements/postgres.txt: -------------------------------------------------------------------------------- 1 | psycopg2 2 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/requirements/py3.txt: -------------------------------------------------------------------------------- 1 | -r base.txt 2 | python3-memcached 3 | -------------------------------------------------------------------------------- /vendor/packages/Django/tests/templates/views/article_list.html: -------------------------------------------------------------------------------- 1 | {{ object_list }} -------------------------------------------------------------------------------- /vendor/packages/Jinja2/Jinja2.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/Jinja2.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/Jinja2.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/docs/_static/.ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/ext/django2jinja/templates/subtemplate.html: -------------------------------------------------------------------------------- 1 | Hello World! 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/jinja2/testsuite/res/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/jinja2/testsuite/res/templates/foo/test.html: -------------------------------------------------------------------------------- 1 | FOO 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/jinja2/testsuite/res/templates/test.html: -------------------------------------------------------------------------------- 1 | BAR 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/pip-egg-info/Jinja2.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/pip-egg-info/Jinja2.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Jinja2/pip-egg-info/Jinja2.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /vendor/packages/PyJWT/jwt/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyJWT/jwt/contrib/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/pip-egg-info/PyYAML.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/a-nasty-libyaml-bug.loader-error: -------------------------------------------------------------------------------- 1 | [ [ -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/bool.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:bool 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/colon-in-flow-context.loader-error: -------------------------------------------------------------------------------- 1 | { foo:bar } 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-bool.code: -------------------------------------------------------------------------------- 1 | [ True, False ] 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-float.code: -------------------------------------------------------------------------------- 1 | 123.456 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-float.data: -------------------------------------------------------------------------------- 1 | !!python/float 123.456 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-int.code: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-int.data: -------------------------------------------------------------------------------- 1 | !!python/int 123 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-long-short-py2.code: -------------------------------------------------------------------------------- 1 | 123L 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-long-short-py3.code: -------------------------------------------------------------------------------- 1 | 123 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-none.code: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-none.data: -------------------------------------------------------------------------------- 1 | !!python/none 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-python-str-ascii.code: -------------------------------------------------------------------------------- 1 | "ascii string" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-str-ascii.code: -------------------------------------------------------------------------------- 1 | "ascii string" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-str-ascii.data: -------------------------------------------------------------------------------- 1 | --- !!str "ascii string" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-str.code: -------------------------------------------------------------------------------- 1 | { "string": "abcd" } 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/construct-str.data: -------------------------------------------------------------------------------- 1 | string: abcd 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/empty-document-bug.data: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/empty-document-bug.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/float.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:float 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/forbidden-value.loader-error: -------------------------------------------------------------------------------- 1 | test: key: value 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/int.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:int 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/invalid-tag-1.loader-error: -------------------------------------------------------------------------------- 1 | - ! baz 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/invalid-tag-2.loader-error: -------------------------------------------------------------------------------- 1 | - !prefix!foo#bar baz 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/invalid-uri-escapes-2.loader-error: -------------------------------------------------------------------------------- 1 | --- !<%FF> foo 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/invalid-uri.loader-error: -------------------------------------------------------------------------------- 1 | --- !foo! bar 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/merge.data: -------------------------------------------------------------------------------- 1 | - << 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/merge.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:merge 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/negative-float-bug.code: -------------------------------------------------------------------------------- 1 | -1.0 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/negative-float-bug.data: -------------------------------------------------------------------------------- 1 | -1.0 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/no-alias-anchor.skip-ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/no-flow-mapping-end.loader-error: -------------------------------------------------------------------------------- 1 | { foo: bar ] 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/no-flow-sequence-end.loader-error: -------------------------------------------------------------------------------- 1 | [foo, bar} 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/no-node-1.loader-error: -------------------------------------------------------------------------------- 1 | - !foo ] 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/no-node-2.loader-error: -------------------------------------------------------------------------------- 1 | - [ !foo } ] 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/null.data: -------------------------------------------------------------------------------- 1 | - 2 | - ~ 3 | - null 4 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/null.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:null 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/scan-document-end-bug.data: -------------------------------------------------------------------------------- 1 | # Ticket #4 2 | --- 3 | ... -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/single-dot-is-not-float-bug.code: -------------------------------------------------------------------------------- 1 | '.' 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/single-dot-is-not-float-bug.data: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-13.structure: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-13.tokens: -------------------------------------------------------------------------------- 1 | --- _ 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-14.structure: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-14.tokens: -------------------------------------------------------------------------------- 1 | --- _ 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-15.structure: -------------------------------------------------------------------------------- 1 | True 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-02-15.tokens: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-05-01-utf8.data: -------------------------------------------------------------------------------- 1 | # Comment only. 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-05-05.data: -------------------------------------------------------------------------------- 1 | # Comment only. 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-05-09.data: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | --- text 3 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-05-15.data: -------------------------------------------------------------------------------- 1 | Bad escapes: 2 | "\c 3 | \xq-" 4 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-06-02.data: -------------------------------------------------------------------------------- 1 | # Comment 2 | 3 | 4 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-06-03.data: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | value 3 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-07-01.skip-ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-07-02.skip-ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-08-04.data: -------------------------------------------------------------------------------- 1 | - ! foo 2 | - !<$:?> bar 3 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-08-13.skip-ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-09-06.data: -------------------------------------------------------------------------------- 1 | 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-09-10.data: -------------------------------------------------------------------------------- 1 | 'first 2 | inner 3 | last' 4 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-09-20.skip-ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/spec-10-04.data: -------------------------------------------------------------------------------- 1 | block: 2 | - one 3 | - 4 | - two 5 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/str.data: -------------------------------------------------------------------------------- 1 | - abcd 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/str.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:str 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/timestamp.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:timestamp 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/unclosed-quoted-scalar.loader-error: -------------------------------------------------------------------------------- 1 | 'foo 2 | bar 3 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/undefined-constructor.loader-error: -------------------------------------------------------------------------------- 1 | --- !foo bar 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/unknown.dumper-error: -------------------------------------------------------------------------------- 1 | yaml.safe_dump(object) 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf16be.code: -------------------------------------------------------------------------------- 1 | "UTF-16-BE" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf16le.code: -------------------------------------------------------------------------------- 1 | "UTF-16-LE" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf8-implicit.code: -------------------------------------------------------------------------------- 1 | "implicit UTF-8" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf8-implicit.data: -------------------------------------------------------------------------------- 1 | --- implicit UTF-8 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf8.code: -------------------------------------------------------------------------------- 1 | "UTF-8" 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/utf8.data: -------------------------------------------------------------------------------- 1 | --- UTF-8 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/value.data: -------------------------------------------------------------------------------- 1 | - = 2 | -------------------------------------------------------------------------------- /vendor/packages/PyYaml/tests/data/value.detect: -------------------------------------------------------------------------------- 1 | tag:yaml.org,2002:value 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/Pygments.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/Pygments.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/Pygments.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/pip-egg-info/Pygments.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/pip-egg-info/Pygments.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/pip-egg-info/Pygments.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pygments 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/tests/examplefiles/function.mu: -------------------------------------------------------------------------------- 1 | a::b () 2 | -------------------------------------------------------------------------------- /vendor/packages/Pygments/tests/examplefiles/html+php_faulty.php: -------------------------------------------------------------------------------- 1 | =0.95 -------------------------------------------------------------------------------- /vendor/packages/bleach/bleach.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bleach 2 | -------------------------------------------------------------------------------- /vendor/packages/bleach/bleach/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/bleach/pip-egg-info/bleach.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/bleach/pip-egg-info/bleach.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/bleach/pip-egg-info/bleach.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | html5lib>=0.95 -------------------------------------------------------------------------------- /vendor/packages/bleach/pip-egg-info/bleach.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bleach 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | celery 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/tests/test_compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/celery/tests/test_slow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/docs/.static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/examples/celery_http_gateway/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/examples/httpexample/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/examples/pythonproject/demoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/celery/pip-egg-info/celery.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/pip-egg-info/celery.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/pip-egg-info/celery.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | celery 2 | -------------------------------------------------------------------------------- /vendor/packages/celery/requirements/pkgutils.txt: -------------------------------------------------------------------------------- 1 | paver 2 | flake8 3 | tox 4 | -------------------------------------------------------------------------------- /vendor/packages/celery/requirements/py26.txt: -------------------------------------------------------------------------------- 1 | importlib 2 | ordereddict 3 | -------------------------------------------------------------------------------- /vendor/packages/decorator/pip-egg-info/decorator.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/decorator/pip-egg-info/decorator.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/decorator/pip-egg-info/decorator.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | decorator 2 | -------------------------------------------------------------------------------- /vendor/packages/decorator/src/decorator.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/decorator/src/decorator.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/decorator/src/decorator.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | decorator 2 | -------------------------------------------------------------------------------- /vendor/packages/distribute/distribute.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/distribute/distribute.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/distribute/pip-egg-info/distribute.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/distribute/pip-egg-info/distribute.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/dj-database-url/dj_database_url.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/dj-database-url/dj_database_url.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/dj-database-url/pip-egg-info/dj_database_url.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-assets/django_assets/jinja2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-assets/django_assets/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-assets/django_assets/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-assets/django_assets/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-assets/django_assets/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/django_authopenid.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/django_authopenid.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/django_authopenid/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/django_authopenid/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/docs/_build/.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/docs/_static/.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/docs/_templates/.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-authopenid/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/django_celery.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/django_celery.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/django_celery.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | djcelery 2 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/monproj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/djcelery/tests/test_backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/docs/.static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/clickcounter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/clickcounter/clickmuncher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/demoproject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/demoproject/demoapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/demoproject/twitterfollow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/examples/demoproject/twitterfollow/tasks.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/pip-egg-info/django_celery.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/tests/someapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/tests/someapp/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/tests/someappwotask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-celery/tests/someappwotask/views.py: -------------------------------------------------------------------------------- 1 | # Create your views here. 2 | -------------------------------------------------------------------------------- /vendor/packages/django-debug-toolbar/debug_toolbar/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-debug-toolbar/debug_toolbar/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-debug-toolbar/django_debug_toolbar.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-debug-toolbar/tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-debug-toolbar/tests/panels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/conf/app_template/__init__.py.tmpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/db/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/daily/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/hourly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/monthly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/weekly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/jobs/yearly/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/mongodb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-extensions/django_extensions/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-http-proxy/docs/_ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-http-proxy/httpproxy/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-inplaceedit/django_inplaceedit.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-inplaceedit/django_inplaceedit.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-inplaceedit/inplaceeditform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-inplaceedit/inplaceeditform/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/django_invitation.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/django_invitation.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/invitation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/invitation/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/invitation/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-invitation/setuptools_hg-0.2.2-py2.7.egg/EGG-INFO/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/TODO: -------------------------------------------------------------------------------- 1 | See http://github.com/ask/ghettoq/issues/ 2 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/django_kombu.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/django_kombu.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/django_kombu.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | djkombu 2 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/djkombu/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/djkombu/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-kombu/pip-egg-info/django_kombu.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-model-utils/django_model_utils.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-model-utils/django_model_utils.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-model-utils/django_model_utils.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | Django>=1.4.2 -------------------------------------------------------------------------------- /vendor/packages/django-model-utils/model_utils/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-picklefield/src/picklefield/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-registration/registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-registration/registration/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-registration/registration/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-reversion/src/reversion/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/django_tastypie.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/django_tastypie.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/django_tastypie.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | tastypie 2 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/pip-egg-info/django_tastypie.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/contrib/contenttypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/contrib/gis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-tastypie/tastypie/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-voting/voting/__init__.py: -------------------------------------------------------------------------------- 1 | VERSION = (0, 1, None) -------------------------------------------------------------------------------- /vendor/packages/django-voting/voting/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/django-voting/voting/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/docutils/pip-egg-info/docutils.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/docutils/pip-egg-info/docutils.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docutils 2 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/data/csv_data.txt: -------------------------------------------------------------------------------- 1 | foo, bar 2 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/data/include.txt: -------------------------------------------------------------------------------- 1 | Some include text. 2 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/data/raw.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/data/stylesheet.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/functional/input/simple.txt: -------------------------------------------------------------------------------- 1 | simple input 2 | -------------------------------------------------------------------------------- /vendor/packages/docutils/test/test_parsers/test_rst/test_directives/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/docutils/tools/dev/README.txt: -------------------------------------------------------------------------------- 1 | Tools for developers. 2 | -------------------------------------------------------------------------------- /vendor/packages/feedparser/pip-egg-info/feedparser.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/feedparser/pip-egg-info/feedparser.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | feedparser 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/pip-egg-info/gdata.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/pip-egg-info/gdata.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gdata 2 | atom 3 | -------------------------------------------------------------------------------- /vendor/packages/gdata/samples/oauth/oauth_on_appengine/appengine_utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/apps/audit/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/apps/multidomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/calendar_resource/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/projecthosting/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/src/gdata/spreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/atom_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/analytics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/emailsettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/groups/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/migration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/multidomain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/apps/organization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/blogger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/books/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/calendar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/calendar_resource/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/contacts/profiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/docs/data/test.0.bin: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/docs/data/test.1.bin: -------------------------------------------------------------------------------- 1 | lorem ipsum dolar 2 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/health/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/marketplace/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/oauth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/photos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/projecthosting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/sites/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/spreadsheet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/spreadsheets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/gdata/tests/gdata_tests/youtube/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/TODO: -------------------------------------------------------------------------------- 1 | See http://github.com/ask/ghettoq/issues/ 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/ghettoq.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/ghettoq.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/ghettoq.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | odict -------------------------------------------------------------------------------- /vendor/packages/ghettoq/ghettoq.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ghettoq 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/pip-egg-info/ghettoq.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/pip-egg-info/ghettoq.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/ghettoq/pip-egg-info/ghettoq.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ghettoq 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/html2text.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/html2text.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/html2text.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | html2text 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/pip-egg-info/html2text.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/pip-egg-info/html2text.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html2text/pip-egg-info/html2text.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | html2text 2 | -------------------------------------------------------------------------------- /vendor/packages/html5lib/html5lib.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html5lib/html5lib.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | html5lib 2 | -------------------------------------------------------------------------------- /vendor/packages/html5lib/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/html5lib/pip-egg-info/html5lib.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/html5lib/pip-egg-info/html5lib.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | html5lib 2 | -------------------------------------------------------------------------------- /vendor/packages/importlib/pip-egg-info/importlib.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/importlib/pip-egg-info/importlib.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | importlib 2 | -------------------------------------------------------------------------------- /vendor/packages/irc/irc.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/irc/irc.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | six -------------------------------------------------------------------------------- /vendor/packages/irc/irc.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | irc 2 | -------------------------------------------------------------------------------- /vendor/packages/irc/irc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/irc/irc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/irc/pip-egg-info/irc.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/irc/pip-egg-info/irc.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | six -------------------------------------------------------------------------------- /vendor/packages/irc/pip-egg-info/irc.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | irc 2 | -------------------------------------------------------------------------------- /vendor/packages/jsmin/jsmin.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/jsmin/jsmin.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jsmin 2 | -------------------------------------------------------------------------------- /vendor/packages/jsmin/pip-egg-info/jsmin.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/jsmin/pip-egg-info/jsmin.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jsmin 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/docs/.static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/examples/simple_task_queue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | kombu 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/tests/async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/tests/transport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/tests/transport/virtual/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/transport/django/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/transport/django/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/kombu/transport/django/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/kombu/pip-egg-info/kombu.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/pip-egg-info/kombu.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/pip-egg-info/kombu.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | kombu 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/default.txt: -------------------------------------------------------------------------------- 1 | anyjson>=0.3.3 2 | amqp>=1.4.6,<2.0 3 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/beanstalk.txt: -------------------------------------------------------------------------------- 1 | beanstalkc 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/couchdb.txt: -------------------------------------------------------------------------------- 1 | couchdb 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/kazoo.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/librabbitmq.txt: -------------------------------------------------------------------------------- 1 | librabbitmq>=1.5.2 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/mongodb.txt: -------------------------------------------------------------------------------- 1 | pymongo>=2.6.2 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/msgpack.txt: -------------------------------------------------------------------------------- 1 | msgpack-python>=0.3.0 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/pyro.txt: -------------------------------------------------------------------------------- 1 | pyro4 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/redis.txt: -------------------------------------------------------------------------------- 1 | redis>=2.8.0 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/slmq.txt: -------------------------------------------------------------------------------- 1 | softlayer_messaging>=1.0.3 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/sqlalchemy.txt: -------------------------------------------------------------------------------- 1 | sqlalchemy 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/sqs.txt: -------------------------------------------------------------------------------- 1 | boto>=2.13.3 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/yaml.txt: -------------------------------------------------------------------------------- 1 | PyYAML>=3.10 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/zeromq.txt: -------------------------------------------------------------------------------- 1 | pyzmq>=13.1.0 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/extras/zookeeper.txt: -------------------------------------------------------------------------------- 1 | kazoo>=1.3.1 2 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/pkgutils.txt: -------------------------------------------------------------------------------- 1 | paver 2 | flake8 3 | Sphinx 4 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/py26.txt: -------------------------------------------------------------------------------- 1 | importlib 2 | ordereddict 3 | -------------------------------------------------------------------------------- /vendor/packages/kombu/requirements/test.txt: -------------------------------------------------------------------------------- 1 | nose 2 | unittest2>=0.5.0 3 | mock 4 | -------------------------------------------------------------------------------- /vendor/packages/markupsafe/MarkupSafe.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/markupsafe/MarkupSafe.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/markupsafe/MarkupSafe.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /vendor/packages/markupsafe/pip-egg-info/MarkupSafe.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/markupsafe/pip-egg-info/MarkupSafe.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/mechanize.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/mechanize.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mechanize 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/mechanize.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/pip-egg-info/mechanize.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/pip-egg-info/mechanize.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mechanize/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/mimeparse/pip-egg-info/mimeparse.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mimeparse/pip-egg-info/mimeparse.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mock/mock.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mock/mock.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mock 2 | -------------------------------------------------------------------------------- /vendor/packages/mock/pip-egg-info/mock.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/mock/pip-egg-info/mock.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mock 2 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/oauthlib.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/oauthlib.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | oauthlib 2 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/pip-egg-info/oauthlib.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/pip-egg-info/oauthlib.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | oauthlib 2 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth1/rfc5849/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth1/rfc5849/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth2/rfc6749/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth2/rfc6749/clients/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth2/rfc6749/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/oauthlib/tests/oauth2/rfc6749/grant_types/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/odict/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.rst 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/odict/pip-egg-info/odict.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/pip-egg-info/odict.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/pip-egg-info/odict.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | odict 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/pip-egg-info/odict.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/src/odict.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/src/odict.egg-info/namespace_packages.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/src/odict.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | odict 2 | -------------------------------------------------------------------------------- /vendor/packages/odict/src/odict.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/python-dateutil/python_dateutil.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/python-dateutil/python_dateutil.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/python-dateutil/python_dateutil.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dateutil 2 | -------------------------------------------------------------------------------- /vendor/packages/python-mimeparse/setup.cfg: -------------------------------------------------------------------------------- 1 | [easy_install] 2 | 3 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/examples/djopenid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/examples/djopenid/consumer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/examples/djopenid/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/openid/extensions/draft/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-openid/openid/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-otp/pip-egg-info/python_otp.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | otp 2 | -------------------------------------------------------------------------------- /vendor/packages/python-otp/test.py: -------------------------------------------------------------------------------- 1 | from otp.test import * 2 | unittest.main() 3 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/apps/cherrypy_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/apps/flask_app/default/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/apps/flask_app/me/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/apps/tornado_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/storage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/strategies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/tests/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/python-social-auth/social/tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pip-egg-info/pytz.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pip-egg-info/pytz.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pip-egg-info/pytz.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pytz.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pytz.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /vendor/packages/pytz/pytz.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/requests/requests-2.7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /vendor/packages/requests/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/Scrapy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/pip-egg-info/Scrapy.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/contrib/downloadermiddleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/contrib/spidermiddleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/contrib/webservice/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/contrib_exp/downloadermiddleware/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/templates/project/module/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/tests/test_spidermanager/test_spiders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/tests/test_utils_misc/test_walk_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/tests/test_utils_misc/test_walk_modules/mod/mod0.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/tests/test_utils_misc/test_walk_modules/mod1.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapy/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/scrapy/scrapyd/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/sessionprofile/sessionprofile.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sessionprofile/sessionprofile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/six/six-1.9.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /vendor/packages/south/South.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/south/South.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | south 2 | -------------------------------------------------------------------------------- /vendor/packages/south/pip-egg-info/South.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/south/pip-egg-info/South.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | south 2 | -------------------------------------------------------------------------------- /vendor/packages/south/south/db/sql_server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/brokenapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/brokenapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_a/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/circular_b/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_a/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_a/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_a/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_b/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_b/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_b/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_c/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_c/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/deps_c/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/emptyapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/emptyapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/emptyapp/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/fakeapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/fakeapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/non_managed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/non_managed/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/otherfakeapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/south/south/tests/otherfakeapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/Sphinx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/Sphinx.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/Sphinx.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/custom_fixers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/pip-egg-info/Sphinx.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/pip-egg-info/Sphinx.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/pip-egg-info/Sphinx.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sphinx 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/tests/root/_static/subdir/foo.css: -------------------------------------------------------------------------------- 1 | /* Stub file */ 2 | -------------------------------------------------------------------------------- /vendor/packages/sphinx/tests/roots/test-docutilsconf/docutils.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/sqlparse/pip-egg-info/sqlparse.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sqlparse/pip-egg-info/sqlparse.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlparse 2 | -------------------------------------------------------------------------------- /vendor/packages/sqlparse/sqlparse.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/sqlparse/sqlparse.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | sqlparse 2 | -------------------------------------------------------------------------------- /vendor/packages/sqlparse/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/twill/pip-egg-info/twill.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/pip-egg-info/twill.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twill 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/twill.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/twill.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twill 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/twill/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/twill/extensions/match_parse/test-match_parse.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/twill/twill/other_packages/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/pip-egg-info/Twisted.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/pip-egg-info/Twisted.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/pip-egg-info/Twisted.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | zope.interface -------------------------------------------------------------------------------- /vendor/packages/twisted/pip-egg-info/Twisted.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twisted 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/conch/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | 'conch scripts' 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/conch/test/__init__.py: -------------------------------------------------------------------------------- 1 | 'conch tests' 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/lore/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | "lore scripts" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/lore/test/__init__.py: -------------------------------------------------------------------------------- 1 | "lore tests" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/mail/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | "mail scripts" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/mail/test/__init__.py: -------------------------------------------------------------------------------- 1 | "Tests for twistd.mail" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/news/test/__init__.py: -------------------------------------------------------------------------------- 1 | """News Tests""" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/pair/test/__init__.py: -------------------------------------------------------------------------------- 1 | 'pair tests' 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/python/zsh/_tkmktap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/python/zsh/_websetroot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/trial/test/notpython: -------------------------------------------------------------------------------- 1 | 2 | this isn't python 3 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/words/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | "Chat protocols" 2 | -------------------------------------------------------------------------------- /vendor/packages/twisted/twisted/words/test/__init__.py: -------------------------------------------------------------------------------- 1 | "Words tests" 2 | -------------------------------------------------------------------------------- /vendor/packages/typecheck/pip-egg-info/typecheck.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/typecheck/typecheck.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | typecheck 2 | -------------------------------------------------------------------------------- /vendor/packages/unicodecsv/unicodecsv.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/unicodecsv/unicodecsv.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | unicodecsv 2 | -------------------------------------------------------------------------------- /vendor/packages/unittest-xml-reporting/src/xmlrunner/extra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/unittest-xml-reporting/src/xmlrunner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/webtest/WebTest.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/WebTest.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/WebTest.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | webtest 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/pip-egg-info/WebTest.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/pip-egg-info/WebTest.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/pip-egg-info/WebTest.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | webtest 2 | -------------------------------------------------------------------------------- /vendor/packages/webtest/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/pip-egg-info/Whoosh.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/pip-egg-info/Whoosh.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | whoosh 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/pip-egg-info/Whoosh.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/Whoosh.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/Whoosh.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | whoosh 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/Whoosh.egg-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/whoosh/filedb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/whoosh/lang/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/whoosh/src/whoosh/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/packages/zope.interface/COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Zope Foundation and Contributors -------------------------------------------------------------------------------- /vendor/packages/zope.interface/src/zope.interface.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/packages/zope.interface/src/zope.interface.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | zope 2 | --------------------------------------------------------------------------------