├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── add_note.py ├── admin_resources.py ├── amp_start.py ├── api.py ├── app.yaml ├── atom.py ├── chinese_family_name_dict.txt ├── cloud_storage.py ├── config.py ├── confirm_post_flagged_note.py ├── const.py ├── create.py ├── cron.yaml ├── css.py ├── delete.py ├── detect_spam.py ├── django_setup.py ├── embed.py ├── extend.py ├── feeds.py ├── flag_note.py ├── full_text_search.py ├── gadget.py ├── importer.py ├── index.yaml ├── indexing.py ├── japanese_name_location_dict.txt ├── jautils.py ├── jp_mobile_carriers.py ├── locale │ ├── af │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── am │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ar │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── az │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── bn │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── da │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── el │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es_419 │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── et │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fa │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fil │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr_CA │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── gu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── he │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ht │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── hy │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── id │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── is │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── jv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ka │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── kk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── km │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── kn │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ky │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lo │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── lv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── mk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ml │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── mn │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── mr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ms │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── my │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ne │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── no │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pa │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── prs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ps │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ps1 │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pt_PT │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── si │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sq │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── su │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── sw │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ta │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── te │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── th │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── ur │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── uz │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── vi │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_HK │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── zh_TW │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── zu │ │ └── LC_MESSAGES │ │ └── django.po ├── main.py ├── manage.py ├── model.py ├── modelmodule │ ├── __init__.py │ └── admin_acls.py ├── multiview.py ├── pfif.py ├── photo.py ├── post_flagged_note.py ├── prefix.py ├── query.py ├── queue.yaml ├── recaptcha │ ├── README.md │ ├── __init__.py │ └── client │ │ ├── __init__.py │ │ ├── captcha.py │ │ └── mailhide.py ├── record_writer.py ├── remote_api.py ├── resources.py ├── resources │ ├── README.md │ ├── add_note.html.template │ ├── add_note_base.html.template │ ├── admin-base.html.template │ ├── admin_acls.html.template │ ├── admin_api_key_form.html.template │ ├── admin_api_keys.html.template │ ├── admin_api_keys_list.html.template │ ├── admin_create_repo.html.template │ ├── admin_dashboard.html.template │ ├── admin_delete_record.html.template │ ├── admin_global_index.html.template │ ├── admin_repo_index.html.template │ ├── admin_review.html.template │ ├── admin_statistics.html.template │ ├── app-base.html.template │ ├── base.html.template │ ├── confirm_post_flagged_note_email.txt.template │ ├── create.html.template │ ├── css-default.template │ ├── css-light.template │ ├── css-small.template │ ├── delete.html.template │ ├── deletion_email_for_note_author.txt.template │ ├── deletion_email_for_person_author.txt.template │ ├── disable_notes_email.txt.template │ ├── disable_notes_notice_email.txt.template │ ├── embed.html.template │ ├── enable_notes_email.txt.template │ ├── enable_notes_notice_email.txt.template │ ├── errors.html.template │ ├── export.html.template │ ├── extend.html.template │ ├── extend_done.html.template │ ├── flag_note.html.template │ ├── gadget.xml.template │ ├── gtm.html.template │ ├── home-ja.html.template │ ├── home.html.template │ ├── howto-ja.html.template │ ├── howto.html.template │ ├── import.html.template │ ├── language-menu.html.template │ ├── map.html.template │ ├── message.html.template │ ├── multiview.html.template │ ├── not_admin_error.html.template │ ├── note.html.template │ ├── person_status_update_email.txt.template │ ├── post_flagged_note.html.template │ ├── query.html.template │ ├── query_form.html.template │ ├── react_index.html.template │ ├── repo-menu.html.template │ ├── responders-ja.html.template │ ├── responders.html.template │ ├── restoration_email.txt.template │ ├── restore.html.template │ ├── results.html.template │ ├── reveal.html.template │ ├── setup_datastore.html.template │ ├── sitemap.xml.template │ ├── small-create.html.template │ ├── start.html.template │ ├── static-base.html.template │ ├── static │ │ ├── configurable │ │ │ ├── facebook-16x16.png │ │ │ ├── linkedin-16x16.png │ │ │ ├── logo.png │ │ │ └── twitter-16x16.png │ │ ├── favicon.ico │ │ ├── fixed │ │ │ ├── admin_review.js │ │ │ ├── back_arrow.png │ │ │ ├── cancel.png │ │ │ ├── download-80x99.png │ │ │ ├── embed-80x57.png │ │ │ ├── expand-icon-down.png │ │ │ ├── expand-icon-up.png │ │ │ ├── feed-icon.png │ │ │ ├── find-80x80.png │ │ │ ├── forms.js │ │ │ ├── forward_arrow.png │ │ │ ├── google.css │ │ │ ├── language_picker.png │ │ │ ├── menu.png │ │ │ ├── no-photo.png │ │ │ ├── notes-template.xlsx │ │ │ ├── post-90x80.png │ │ │ ├── sample-import.csv │ │ │ ├── search-100x80.png │ │ │ ├── separated-81x80.png │ │ │ ├── sidebar.css │ │ │ └── upload-80x127.png │ │ └── howto │ │ │ ├── en │ │ │ ├── duplicate.png │ │ │ ├── find.png │ │ │ ├── have_info.png │ │ │ ├── home.png │ │ │ ├── home2.png │ │ │ ├── my_info.png │ │ │ ├── name.png │ │ │ ├── other.png │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ ├── p4.png │ │ │ ├── result.png │ │ │ └── result2.png │ │ │ └── ja │ │ │ ├── duplicate.png │ │ │ ├── find.png │ │ │ ├── have_info.png │ │ │ ├── home1.png │ │ │ ├── home2.png │ │ │ ├── home22.png │ │ │ ├── my_info.png │ │ │ ├── name.png │ │ │ ├── other.png │ │ │ ├── p1.png │ │ │ ├── p2.png │ │ │ ├── p3.png │ │ │ ├── p4.png │ │ │ ├── result.png │ │ │ └── result2.png │ ├── subscribe.html.template │ ├── subscribe_captcha.html.template │ ├── subscription_confirmation_email.txt.template │ ├── tos.html.template │ └── view.html.template ├── restore.py ├── results.py ├── reveal.py ├── script_variant.py ├── search │ ├── __init__.py │ └── searcher.py ├── send_mail.py ├── settings.py ├── setup_pf.py ├── site_settings.py ├── start.py ├── subscribe.py ├── tasks.py ├── tasksmodule │ ├── __init__.py │ ├── base.py │ ├── datachecks.py │ ├── deletion.py │ └── sitemap_ping.py ├── text_query.py ├── third_party_search.py ├── tos.py ├── unsubscribe.py ├── urls.py ├── user_agents.py ├── utils.py ├── view.py ├── views │ ├── __init__.py │ ├── admin │ │ ├── __init__.py │ │ ├── acls.py │ │ ├── api_keys.py │ │ ├── base.py │ │ ├── create_repo.py │ │ ├── dashboard.py │ │ ├── delete_record.py │ │ ├── global_index.py │ │ ├── repo_index.py │ │ ├── review.py │ │ └── statistics.py │ ├── base.py │ ├── enduser │ │ ├── __init__.py │ │ ├── base.py │ │ └── global_index.py │ ├── frontendapi.py │ ├── meta │ │ ├── __init__.py │ │ ├── setup_datastore.py │ │ ├── sitemap.py │ │ ├── static_files.py │ │ └── static_pages.py │ └── thirdparty_endpoints │ │ ├── __init__.py │ │ ├── base.py │ │ └── repo_feed.py └── wsgi.py ├── docker-compose.yml ├── docker ├── README.md ├── gae-run-app.sh ├── run-container.sh └── setup_datastore.sh ├── requirements.txt ├── setup.cfg ├── tests ├── __init__.py ├── global-test.pfif-1.2-source.xml ├── load_test │ ├── generate_names.py │ ├── load_test.py │ ├── names_in_db.txt │ └── names_not_in_db.txt ├── mox.py ├── persons.xlsx ├── scrape.py ├── server_test_cases │ ├── config_tests.py │ ├── download_feed_tests.py │ ├── import_tests.py │ ├── input_escaping_tests.py │ ├── person_note_tests.py │ ├── photo_tests.py │ ├── read_only_tests.py │ ├── resource_tests.py │ └── usage_counters_tests.py ├── server_tests.py ├── server_tests_base.py ├── stubout.py ├── tasks │ ├── task_tests_base.py │ ├── test_datachecks.py │ ├── test_deletion.py │ └── test_sitemap_ping.py ├── test.pfif-1.1.xml ├── test.pfif-1.2-badrecord.xml ├── test.pfif-1.2-believed-dead.xml ├── test.pfif-1.2-note.xml ├── test.pfif-1.2-notification.xml ├── test.pfif-1.2-source.xml ├── test.pfif-1.2.xml ├── test.pfif-1.4.xml ├── test_api.py ├── test_const.py ├── test_create.py ├── test_detect_spam.py ├── test_full_text_search.py ├── test_handler.py ├── test_importer.py ├── test_indexing.py ├── test_jautils.py ├── test_jp_mobile_carriers.py ├── test_main.py ├── test_model.py ├── test_pfif.py ├── test_photo.py ├── test_prefix.py ├── test_resources.py ├── test_script_variant.py ├── test_searcher.py ├── test_send_mail.py ├── test_tasks.py ├── test_text_query.py ├── test_user_agents.py ├── test_utils.py ├── test_xsrftool.py ├── testdata │ ├── broken_image.png │ ├── empty_image.png │ ├── large_image.png │ ├── small_image.jpg │ ├── small_image.png │ └── tiny_image.png ├── testutils │ ├── __init__.py │ ├── base.py │ └── data_generator.py ├── unit_tests.py └── views │ ├── test_admin_acls.py │ ├── test_admin_api_keys.py │ ├── test_admin_base.py │ ├── test_admin_create_repo.py │ ├── test_admin_dashboard.py │ ├── test_admin_delete_record.py │ ├── test_admin_global_index.py │ ├── test_admin_repo_index.py │ ├── test_admin_review.py │ ├── test_admin_statistics.py │ ├── test_auto_security.py │ ├── test_feed_repo.py │ ├── test_frontendapi.py │ ├── test_meta_sitemap.py │ ├── test_meta_static_pages.py │ ├── test_setup_datastore.py │ └── view_tests_base.py ├── tools ├── admin.py ├── all_tests ├── batch_delete ├── batch_delete.py ├── clean ├── common.sh ├── console ├── console.py ├── delete_old_entries ├── delete_old_entries.py ├── download_feed ├── download_feed.py ├── find_missing_translations ├── find_missing_translations.py ├── import.py ├── iterate.py ├── lint ├── load_test ├── make_dictionary_file.py ├── merge_messages ├── merge_messages.py ├── noop_merge_old_heads ├── notes_for_all_persons ├── notes_for_all_persons.py ├── pfif-tools │ ├── app │ │ ├── app.yaml │ │ ├── controller.py │ │ ├── pfif_diff.py │ │ ├── pfif_validator.py │ │ ├── resources │ │ │ ├── diff_results.html │ │ │ ├── error.html │ │ │ ├── messages.html │ │ │ └── validate_results.html │ │ ├── settings.py │ │ ├── static │ │ │ ├── diff.html │ │ │ ├── index.html │ │ │ ├── style.css │ │ │ └── validator.html │ │ ├── urls.py │ │ ├── utils.py │ │ └── wsgi.py │ ├── tests │ │ ├── __init__.py │ │ ├── pfif_xml.py │ │ ├── test_controller.py │ │ ├── test_diff.py │ │ ├── test_utils.py │ │ ├── test_validator.py │ │ └── unit_tests.py │ └── tools │ │ ├── .coveragerc │ │ ├── all_lint │ │ ├── all_tests │ │ ├── clean │ │ ├── common.sh │ │ ├── coverage │ │ ├── gae │ │ ├── lint │ │ ├── remote_api.py │ │ ├── rietveld │ │ ├── unit_tests │ │ └── upload.py ├── py3_unit_tests ├── python3_compatibility_check ├── sample_queries │ └── count_all_persons.py ├── server_tests ├── site_export_importer.py ├── travis_tests ├── ui ├── unit_tests ├── update_messages ├── update_messages.py ├── validate_merge └── validate_merge.py └── ui ├── .babelrc ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src ├── App.js ├── components │ ├── Captcha.js │ ├── Captcha_test.js │ ├── EndBarHeader.js │ ├── Footer.js │ ├── Footer_test.js │ ├── LoadingIndicator.js │ ├── LoadingIndicator_test.js │ ├── LocationFieldset.js │ ├── LocationFieldset_test.js │ ├── Note.js │ ├── PFNotchedOutline.js │ ├── PageHeader.js │ ├── RepoHeader.js │ ├── RepoHeader_test.js │ ├── SearchBar.js │ ├── SearchBar_test.js │ ├── StaticPageWrapper.js │ ├── Zippy.js │ └── Zippy_test.js ├── css │ ├── _common.scss │ ├── _material-values.scss │ ├── all.scss │ ├── components │ │ ├── _Captcha.scss │ │ ├── _EndBarHeader.scss │ │ ├── _Footer.scss │ │ ├── _LocationFieldset.scss │ │ ├── _Note.scss │ │ ├── _PFNotchedOutline.scss │ │ ├── _PageHeader.scss │ │ ├── _SearchBar.scss │ │ ├── _StaticPageWrapper.scss │ │ └── _Zippy.scss │ └── pages │ │ ├── _AddNote.scss │ │ ├── _Create.scss │ │ ├── _GlobalHome.scss │ │ ├── _RepoHome.scss │ │ ├── _Results.scss │ │ └── _View.scss ├── index.js ├── pages │ ├── AddNote.js │ ├── Create.js │ ├── GlobalHome.js │ ├── GlobalHome_test.js │ ├── HowToPage.js │ ├── RepoHome.js │ ├── RepoHome_test.js │ ├── RespondersPage.js │ ├── Results.js │ ├── Results_test.js │ ├── View.js │ └── __snapshots__ │ │ ├── GlobalHome_test.js.snap │ │ ├── RepoHome_test.js.snap │ │ └── Results_test.js.snap ├── testing │ ├── enzyme-intl-helper.js │ ├── mock-google-module.js │ ├── setup-jest.js │ └── utils.js ├── translations │ ├── en.js │ └── es.js └── utils │ ├── CommonMessages.js │ ├── ProfilePageUtils.js │ ├── Utils.js │ └── Utils_test.js ├── static ├── index.html └── static │ └── icons │ ├── maticon_add.svg │ ├── maticon_arrow_back.svg │ ├── maticon_clear.svg │ ├── maticon_map.svg │ ├── maticon_my_location.svg │ ├── maticon_person_pin.svg │ └── maticon_search.svg ├── webpack.common.js ├── webpack.dev.js └── webpack.prod.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/README.md -------------------------------------------------------------------------------- /app/add_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/add_note.py -------------------------------------------------------------------------------- /app/admin_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/admin_resources.py -------------------------------------------------------------------------------- /app/amp_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/amp_start.py -------------------------------------------------------------------------------- /app/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/api.py -------------------------------------------------------------------------------- /app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/app.yaml -------------------------------------------------------------------------------- /app/atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/atom.py -------------------------------------------------------------------------------- /app/chinese_family_name_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/chinese_family_name_dict.txt -------------------------------------------------------------------------------- /app/cloud_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/cloud_storage.py -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/config.py -------------------------------------------------------------------------------- /app/confirm_post_flagged_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/confirm_post_flagged_note.py -------------------------------------------------------------------------------- /app/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/const.py -------------------------------------------------------------------------------- /app/create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/create.py -------------------------------------------------------------------------------- /app/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/cron.yaml -------------------------------------------------------------------------------- /app/css.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/css.py -------------------------------------------------------------------------------- /app/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/delete.py -------------------------------------------------------------------------------- /app/detect_spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/detect_spam.py -------------------------------------------------------------------------------- /app/django_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/django_setup.py -------------------------------------------------------------------------------- /app/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/embed.py -------------------------------------------------------------------------------- /app/extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/extend.py -------------------------------------------------------------------------------- /app/feeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/feeds.py -------------------------------------------------------------------------------- /app/flag_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/flag_note.py -------------------------------------------------------------------------------- /app/full_text_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/full_text_search.py -------------------------------------------------------------------------------- /app/gadget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/gadget.py -------------------------------------------------------------------------------- /app/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/importer.py -------------------------------------------------------------------------------- /app/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/index.yaml -------------------------------------------------------------------------------- /app/indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/indexing.py -------------------------------------------------------------------------------- /app/japanese_name_location_dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/japanese_name_location_dict.txt -------------------------------------------------------------------------------- /app/jautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/jautils.py -------------------------------------------------------------------------------- /app/jp_mobile_carriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/jp_mobile_carriers.py -------------------------------------------------------------------------------- /app/locale/af/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/af/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/am/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/am/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ar/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ar/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/az/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/az/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/bg/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/bg/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/bn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/bn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ca/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ca/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/da/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/da/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/el/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/el/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/en_GB/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/en_GB/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/es_419/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/es_419/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/et/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/et/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/fa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/fa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/fi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/fi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/fil/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/fil/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/fr_CA/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/fr_CA/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/gl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/gl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/gu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/gu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/he/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/he/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/hi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/hi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/hr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/hr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ht/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ht/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/hu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/hu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/hy/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/hy/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/id/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/id/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/is/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/is/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/jv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/jv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ka/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ka/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/kk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/kk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/km/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/km/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/kn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/kn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ko/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ko/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ky/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ky/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/lo/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/lo/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/lv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/lv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/mk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/mk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ml/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ml/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/mn/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/mn/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/mr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/mr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ms/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ms/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/my/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/my/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ne/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ne/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/no/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/no/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/pa/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/pa/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/prs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/prs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ps/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ps/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ps1/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ps1/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/pt_PT/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/pt_PT/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ro/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ro/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/si/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/si/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sq/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sq/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/su/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/su/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sv/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sv/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/sw/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/sw/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ta/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ta/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/te/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/te/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/th/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/th/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/tr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/tr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/uk/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/uk/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/ur/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/ur/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/uz/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/uz/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/vi/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/vi/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/zh_CN/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/zh_CN/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/zh_HK/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/zh_HK/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/zh_TW/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/zh_TW/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/locale/zu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/locale/zu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/main.py -------------------------------------------------------------------------------- /app/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/manage.py -------------------------------------------------------------------------------- /app/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/model.py -------------------------------------------------------------------------------- /app/modelmodule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/modelmodule/__init__.py -------------------------------------------------------------------------------- /app/modelmodule/admin_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/modelmodule/admin_acls.py -------------------------------------------------------------------------------- /app/multiview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/multiview.py -------------------------------------------------------------------------------- /app/pfif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/pfif.py -------------------------------------------------------------------------------- /app/photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/photo.py -------------------------------------------------------------------------------- /app/post_flagged_note.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/post_flagged_note.py -------------------------------------------------------------------------------- /app/prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/prefix.py -------------------------------------------------------------------------------- /app/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/query.py -------------------------------------------------------------------------------- /app/queue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/queue.yaml -------------------------------------------------------------------------------- /app/recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/recaptcha/README.md -------------------------------------------------------------------------------- /app/recaptcha/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/recaptcha/client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/recaptcha/client/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/recaptcha/client/captcha.py -------------------------------------------------------------------------------- /app/recaptcha/client/mailhide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/recaptcha/client/mailhide.py -------------------------------------------------------------------------------- /app/record_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/record_writer.py -------------------------------------------------------------------------------- /app/remote_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/remote_api.py -------------------------------------------------------------------------------- /app/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources.py -------------------------------------------------------------------------------- /app/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/README.md -------------------------------------------------------------------------------- /app/resources/add_note.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/add_note.html.template -------------------------------------------------------------------------------- /app/resources/add_note_base.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/add_note_base.html.template -------------------------------------------------------------------------------- /app/resources/admin-base.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin-base.html.template -------------------------------------------------------------------------------- /app/resources/admin_acls.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_acls.html.template -------------------------------------------------------------------------------- /app/resources/admin_api_key_form.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_api_key_form.html.template -------------------------------------------------------------------------------- /app/resources/admin_api_keys.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_api_keys.html.template -------------------------------------------------------------------------------- /app/resources/admin_api_keys_list.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_api_keys_list.html.template -------------------------------------------------------------------------------- /app/resources/admin_create_repo.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_create_repo.html.template -------------------------------------------------------------------------------- /app/resources/admin_dashboard.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_dashboard.html.template -------------------------------------------------------------------------------- /app/resources/admin_delete_record.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_delete_record.html.template -------------------------------------------------------------------------------- /app/resources/admin_global_index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_global_index.html.template -------------------------------------------------------------------------------- /app/resources/admin_repo_index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_repo_index.html.template -------------------------------------------------------------------------------- /app/resources/admin_review.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_review.html.template -------------------------------------------------------------------------------- /app/resources/admin_statistics.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/admin_statistics.html.template -------------------------------------------------------------------------------- /app/resources/app-base.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/app-base.html.template -------------------------------------------------------------------------------- /app/resources/base.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/base.html.template -------------------------------------------------------------------------------- /app/resources/confirm_post_flagged_note_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/confirm_post_flagged_note_email.txt.template -------------------------------------------------------------------------------- /app/resources/create.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/create.html.template -------------------------------------------------------------------------------- /app/resources/css-default.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/css-default.template -------------------------------------------------------------------------------- /app/resources/css-light.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/css-light.template -------------------------------------------------------------------------------- /app/resources/css-small.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/css-small.template -------------------------------------------------------------------------------- /app/resources/delete.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/delete.html.template -------------------------------------------------------------------------------- /app/resources/deletion_email_for_note_author.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/deletion_email_for_note_author.txt.template -------------------------------------------------------------------------------- /app/resources/deletion_email_for_person_author.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/deletion_email_for_person_author.txt.template -------------------------------------------------------------------------------- /app/resources/disable_notes_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/disable_notes_email.txt.template -------------------------------------------------------------------------------- /app/resources/disable_notes_notice_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/disable_notes_notice_email.txt.template -------------------------------------------------------------------------------- /app/resources/embed.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/embed.html.template -------------------------------------------------------------------------------- /app/resources/enable_notes_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/enable_notes_email.txt.template -------------------------------------------------------------------------------- /app/resources/enable_notes_notice_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/enable_notes_notice_email.txt.template -------------------------------------------------------------------------------- /app/resources/errors.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/errors.html.template -------------------------------------------------------------------------------- /app/resources/export.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/export.html.template -------------------------------------------------------------------------------- /app/resources/extend.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/extend.html.template -------------------------------------------------------------------------------- /app/resources/extend_done.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/extend_done.html.template -------------------------------------------------------------------------------- /app/resources/flag_note.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/flag_note.html.template -------------------------------------------------------------------------------- /app/resources/gadget.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/gadget.xml.template -------------------------------------------------------------------------------- /app/resources/gtm.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/gtm.html.template -------------------------------------------------------------------------------- /app/resources/home-ja.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/home-ja.html.template -------------------------------------------------------------------------------- /app/resources/home.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/home.html.template -------------------------------------------------------------------------------- /app/resources/howto-ja.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/howto-ja.html.template -------------------------------------------------------------------------------- /app/resources/howto.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/howto.html.template -------------------------------------------------------------------------------- /app/resources/import.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/import.html.template -------------------------------------------------------------------------------- /app/resources/language-menu.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/language-menu.html.template -------------------------------------------------------------------------------- /app/resources/map.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/map.html.template -------------------------------------------------------------------------------- /app/resources/message.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/message.html.template -------------------------------------------------------------------------------- /app/resources/multiview.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/multiview.html.template -------------------------------------------------------------------------------- /app/resources/not_admin_error.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/not_admin_error.html.template -------------------------------------------------------------------------------- /app/resources/note.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/note.html.template -------------------------------------------------------------------------------- /app/resources/person_status_update_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/person_status_update_email.txt.template -------------------------------------------------------------------------------- /app/resources/post_flagged_note.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/post_flagged_note.html.template -------------------------------------------------------------------------------- /app/resources/query.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/query.html.template -------------------------------------------------------------------------------- /app/resources/query_form.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/query_form.html.template -------------------------------------------------------------------------------- /app/resources/react_index.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/react_index.html.template -------------------------------------------------------------------------------- /app/resources/repo-menu.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/repo-menu.html.template -------------------------------------------------------------------------------- /app/resources/responders-ja.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/responders-ja.html.template -------------------------------------------------------------------------------- /app/resources/responders.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/responders.html.template -------------------------------------------------------------------------------- /app/resources/restoration_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/restoration_email.txt.template -------------------------------------------------------------------------------- /app/resources/restore.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/restore.html.template -------------------------------------------------------------------------------- /app/resources/results.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/results.html.template -------------------------------------------------------------------------------- /app/resources/reveal.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/reveal.html.template -------------------------------------------------------------------------------- /app/resources/setup_datastore.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/setup_datastore.html.template -------------------------------------------------------------------------------- /app/resources/sitemap.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/sitemap.xml.template -------------------------------------------------------------------------------- /app/resources/small-create.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/small-create.html.template -------------------------------------------------------------------------------- /app/resources/start.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/start.html.template -------------------------------------------------------------------------------- /app/resources/static-base.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static-base.html.template -------------------------------------------------------------------------------- /app/resources/static/configurable/facebook-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/configurable/facebook-16x16.png -------------------------------------------------------------------------------- /app/resources/static/configurable/linkedin-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/configurable/linkedin-16x16.png -------------------------------------------------------------------------------- /app/resources/static/configurable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/configurable/logo.png -------------------------------------------------------------------------------- /app/resources/static/configurable/twitter-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/configurable/twitter-16x16.png -------------------------------------------------------------------------------- /app/resources/static/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/resources/static/fixed/admin_review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/admin_review.js -------------------------------------------------------------------------------- /app/resources/static/fixed/back_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/back_arrow.png -------------------------------------------------------------------------------- /app/resources/static/fixed/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/cancel.png -------------------------------------------------------------------------------- /app/resources/static/fixed/download-80x99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/download-80x99.png -------------------------------------------------------------------------------- /app/resources/static/fixed/embed-80x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/embed-80x57.png -------------------------------------------------------------------------------- /app/resources/static/fixed/expand-icon-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/expand-icon-down.png -------------------------------------------------------------------------------- /app/resources/static/fixed/expand-icon-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/expand-icon-up.png -------------------------------------------------------------------------------- /app/resources/static/fixed/feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/feed-icon.png -------------------------------------------------------------------------------- /app/resources/static/fixed/find-80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/find-80x80.png -------------------------------------------------------------------------------- /app/resources/static/fixed/forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/forms.js -------------------------------------------------------------------------------- /app/resources/static/fixed/forward_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/forward_arrow.png -------------------------------------------------------------------------------- /app/resources/static/fixed/google.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/google.css -------------------------------------------------------------------------------- /app/resources/static/fixed/language_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/language_picker.png -------------------------------------------------------------------------------- /app/resources/static/fixed/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/menu.png -------------------------------------------------------------------------------- /app/resources/static/fixed/no-photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/no-photo.png -------------------------------------------------------------------------------- /app/resources/static/fixed/notes-template.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/notes-template.xlsx -------------------------------------------------------------------------------- /app/resources/static/fixed/post-90x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/post-90x80.png -------------------------------------------------------------------------------- /app/resources/static/fixed/sample-import.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/sample-import.csv -------------------------------------------------------------------------------- /app/resources/static/fixed/search-100x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/search-100x80.png -------------------------------------------------------------------------------- /app/resources/static/fixed/separated-81x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/separated-81x80.png -------------------------------------------------------------------------------- /app/resources/static/fixed/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/sidebar.css -------------------------------------------------------------------------------- /app/resources/static/fixed/upload-80x127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/fixed/upload-80x127.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/duplicate.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/find.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/have_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/have_info.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/home.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/home2.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/my_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/my_info.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/name.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/other.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/p1.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/p2.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/p3.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/p4.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/result.png -------------------------------------------------------------------------------- /app/resources/static/howto/en/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/en/result2.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/duplicate.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/find.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/have_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/have_info.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/home1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/home1.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/home2.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/home22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/home22.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/my_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/my_info.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/name.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/other.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/p1.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/p2.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/p3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/p3.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/p4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/p4.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/result.png -------------------------------------------------------------------------------- /app/resources/static/howto/ja/result2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/static/howto/ja/result2.png -------------------------------------------------------------------------------- /app/resources/subscribe.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/subscribe.html.template -------------------------------------------------------------------------------- /app/resources/subscribe_captcha.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/subscribe_captcha.html.template -------------------------------------------------------------------------------- /app/resources/subscription_confirmation_email.txt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/subscription_confirmation_email.txt.template -------------------------------------------------------------------------------- /app/resources/tos.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/tos.html.template -------------------------------------------------------------------------------- /app/resources/view.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/resources/view.html.template -------------------------------------------------------------------------------- /app/restore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/restore.py -------------------------------------------------------------------------------- /app/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/results.py -------------------------------------------------------------------------------- /app/reveal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/reveal.py -------------------------------------------------------------------------------- /app/script_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/script_variant.py -------------------------------------------------------------------------------- /app/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/search/__init__.py -------------------------------------------------------------------------------- /app/search/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/search/searcher.py -------------------------------------------------------------------------------- /app/send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/send_mail.py -------------------------------------------------------------------------------- /app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/settings.py -------------------------------------------------------------------------------- /app/setup_pf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/setup_pf.py -------------------------------------------------------------------------------- /app/site_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/site_settings.py -------------------------------------------------------------------------------- /app/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/start.py -------------------------------------------------------------------------------- /app/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/subscribe.py -------------------------------------------------------------------------------- /app/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasks.py -------------------------------------------------------------------------------- /app/tasksmodule/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasksmodule/__init__.py -------------------------------------------------------------------------------- /app/tasksmodule/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasksmodule/base.py -------------------------------------------------------------------------------- /app/tasksmodule/datachecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasksmodule/datachecks.py -------------------------------------------------------------------------------- /app/tasksmodule/deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasksmodule/deletion.py -------------------------------------------------------------------------------- /app/tasksmodule/sitemap_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tasksmodule/sitemap_ping.py -------------------------------------------------------------------------------- /app/text_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/text_query.py -------------------------------------------------------------------------------- /app/third_party_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/third_party_search.py -------------------------------------------------------------------------------- /app/tos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/tos.py -------------------------------------------------------------------------------- /app/unsubscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/unsubscribe.py -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/user_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/user_agents.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/utils.py -------------------------------------------------------------------------------- /app/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/view.py -------------------------------------------------------------------------------- /app/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/__init__.py -------------------------------------------------------------------------------- /app/views/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/__init__.py -------------------------------------------------------------------------------- /app/views/admin/acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/acls.py -------------------------------------------------------------------------------- /app/views/admin/api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/api_keys.py -------------------------------------------------------------------------------- /app/views/admin/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/base.py -------------------------------------------------------------------------------- /app/views/admin/create_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/create_repo.py -------------------------------------------------------------------------------- /app/views/admin/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/dashboard.py -------------------------------------------------------------------------------- /app/views/admin/delete_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/delete_record.py -------------------------------------------------------------------------------- /app/views/admin/global_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/global_index.py -------------------------------------------------------------------------------- /app/views/admin/repo_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/repo_index.py -------------------------------------------------------------------------------- /app/views/admin/review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/review.py -------------------------------------------------------------------------------- /app/views/admin/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/admin/statistics.py -------------------------------------------------------------------------------- /app/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/base.py -------------------------------------------------------------------------------- /app/views/enduser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/enduser/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/enduser/base.py -------------------------------------------------------------------------------- /app/views/enduser/global_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/enduser/global_index.py -------------------------------------------------------------------------------- /app/views/frontendapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/frontendapi.py -------------------------------------------------------------------------------- /app/views/meta/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/meta/__init__.py -------------------------------------------------------------------------------- /app/views/meta/setup_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/meta/setup_datastore.py -------------------------------------------------------------------------------- /app/views/meta/sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/meta/sitemap.py -------------------------------------------------------------------------------- /app/views/meta/static_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/meta/static_files.py -------------------------------------------------------------------------------- /app/views/meta/static_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/meta/static_pages.py -------------------------------------------------------------------------------- /app/views/thirdparty_endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/thirdparty_endpoints/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/thirdparty_endpoints/base.py -------------------------------------------------------------------------------- /app/views/thirdparty_endpoints/repo_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/views/thirdparty_endpoints/repo_feed.py -------------------------------------------------------------------------------- /app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/app/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/gae-run-app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/docker/gae-run-app.sh -------------------------------------------------------------------------------- /docker/run-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/docker/run-container.sh -------------------------------------------------------------------------------- /docker/setup_datastore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/docker/setup_datastore.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=80 3 | 4 | [pylint] 5 | disable=fixme 6 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/global-test.pfif-1.2-source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/global-test.pfif-1.2-source.xml -------------------------------------------------------------------------------- /tests/load_test/generate_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/load_test/generate_names.py -------------------------------------------------------------------------------- /tests/load_test/load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/load_test/load_test.py -------------------------------------------------------------------------------- /tests/load_test/names_in_db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/load_test/names_in_db.txt -------------------------------------------------------------------------------- /tests/load_test/names_not_in_db.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/load_test/names_not_in_db.txt -------------------------------------------------------------------------------- /tests/mox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/mox.py -------------------------------------------------------------------------------- /tests/persons.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/persons.xlsx -------------------------------------------------------------------------------- /tests/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/scrape.py -------------------------------------------------------------------------------- /tests/server_test_cases/config_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/config_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/download_feed_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/download_feed_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/import_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/import_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/input_escaping_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/input_escaping_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/person_note_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/person_note_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/photo_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/photo_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/read_only_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/read_only_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/resource_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/resource_tests.py -------------------------------------------------------------------------------- /tests/server_test_cases/usage_counters_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_test_cases/usage_counters_tests.py -------------------------------------------------------------------------------- /tests/server_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_tests.py -------------------------------------------------------------------------------- /tests/server_tests_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/server_tests_base.py -------------------------------------------------------------------------------- /tests/stubout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/stubout.py -------------------------------------------------------------------------------- /tests/tasks/task_tests_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/tasks/task_tests_base.py -------------------------------------------------------------------------------- /tests/tasks/test_datachecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/tasks/test_datachecks.py -------------------------------------------------------------------------------- /tests/tasks/test_deletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/tasks/test_deletion.py -------------------------------------------------------------------------------- /tests/tasks/test_sitemap_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/tasks/test_sitemap_ping.py -------------------------------------------------------------------------------- /tests/test.pfif-1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.1.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2-badrecord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2-badrecord.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2-believed-dead.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2-believed-dead.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2-note.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2-note.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2-notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2-notification.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2-source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2-source.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.2.xml -------------------------------------------------------------------------------- /tests/test.pfif-1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test.pfif-1.4.xml -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_const.py -------------------------------------------------------------------------------- /tests/test_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_create.py -------------------------------------------------------------------------------- /tests/test_detect_spam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_detect_spam.py -------------------------------------------------------------------------------- /tests/test_full_text_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_full_text_search.py -------------------------------------------------------------------------------- /tests/test_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_handler.py -------------------------------------------------------------------------------- /tests/test_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_importer.py -------------------------------------------------------------------------------- /tests/test_indexing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_indexing.py -------------------------------------------------------------------------------- /tests/test_jautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_jautils.py -------------------------------------------------------------------------------- /tests/test_jp_mobile_carriers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_jp_mobile_carriers.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_pfif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_pfif.py -------------------------------------------------------------------------------- /tests/test_photo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_photo.py -------------------------------------------------------------------------------- /tests/test_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_prefix.py -------------------------------------------------------------------------------- /tests/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_resources.py -------------------------------------------------------------------------------- /tests/test_script_variant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_script_variant.py -------------------------------------------------------------------------------- /tests/test_searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_searcher.py -------------------------------------------------------------------------------- /tests/test_send_mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_send_mail.py -------------------------------------------------------------------------------- /tests/test_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_tasks.py -------------------------------------------------------------------------------- /tests/test_text_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_text_query.py -------------------------------------------------------------------------------- /tests/test_user_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_user_agents.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_xsrftool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/test_xsrftool.py -------------------------------------------------------------------------------- /tests/testdata/broken_image.png: -------------------------------------------------------------------------------- 1 | broken image 2 | -------------------------------------------------------------------------------- /tests/testdata/empty_image.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testdata/large_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testdata/large_image.png -------------------------------------------------------------------------------- /tests/testdata/small_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testdata/small_image.jpg -------------------------------------------------------------------------------- /tests/testdata/small_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testdata/small_image.png -------------------------------------------------------------------------------- /tests/testdata/tiny_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testdata/tiny_image.png -------------------------------------------------------------------------------- /tests/testutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testutils/__init__.py -------------------------------------------------------------------------------- /tests/testutils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testutils/base.py -------------------------------------------------------------------------------- /tests/testutils/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/testutils/data_generator.py -------------------------------------------------------------------------------- /tests/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/unit_tests.py -------------------------------------------------------------------------------- /tests/views/test_admin_acls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_acls.py -------------------------------------------------------------------------------- /tests/views/test_admin_api_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_api_keys.py -------------------------------------------------------------------------------- /tests/views/test_admin_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_base.py -------------------------------------------------------------------------------- /tests/views/test_admin_create_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_create_repo.py -------------------------------------------------------------------------------- /tests/views/test_admin_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_dashboard.py -------------------------------------------------------------------------------- /tests/views/test_admin_delete_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_delete_record.py -------------------------------------------------------------------------------- /tests/views/test_admin_global_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_global_index.py -------------------------------------------------------------------------------- /tests/views/test_admin_repo_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_repo_index.py -------------------------------------------------------------------------------- /tests/views/test_admin_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_review.py -------------------------------------------------------------------------------- /tests/views/test_admin_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_admin_statistics.py -------------------------------------------------------------------------------- /tests/views/test_auto_security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_auto_security.py -------------------------------------------------------------------------------- /tests/views/test_feed_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_feed_repo.py -------------------------------------------------------------------------------- /tests/views/test_frontendapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_frontendapi.py -------------------------------------------------------------------------------- /tests/views/test_meta_sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_meta_sitemap.py -------------------------------------------------------------------------------- /tests/views/test_meta_static_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_meta_static_pages.py -------------------------------------------------------------------------------- /tests/views/test_setup_datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/test_setup_datastore.py -------------------------------------------------------------------------------- /tests/views/view_tests_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tests/views/view_tests_base.py -------------------------------------------------------------------------------- /tools/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/admin.py -------------------------------------------------------------------------------- /tools/all_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/all_tests -------------------------------------------------------------------------------- /tools/batch_delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/batch_delete -------------------------------------------------------------------------------- /tools/batch_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/batch_delete.py -------------------------------------------------------------------------------- /tools/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/clean -------------------------------------------------------------------------------- /tools/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/common.sh -------------------------------------------------------------------------------- /tools/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/console -------------------------------------------------------------------------------- /tools/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/console.py -------------------------------------------------------------------------------- /tools/delete_old_entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/delete_old_entries -------------------------------------------------------------------------------- /tools/delete_old_entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/delete_old_entries.py -------------------------------------------------------------------------------- /tools/download_feed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/download_feed -------------------------------------------------------------------------------- /tools/download_feed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/download_feed.py -------------------------------------------------------------------------------- /tools/find_missing_translations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/find_missing_translations -------------------------------------------------------------------------------- /tools/find_missing_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/find_missing_translations.py -------------------------------------------------------------------------------- /tools/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/import.py -------------------------------------------------------------------------------- /tools/iterate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/iterate.py -------------------------------------------------------------------------------- /tools/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/lint -------------------------------------------------------------------------------- /tools/load_test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/load_test -------------------------------------------------------------------------------- /tools/make_dictionary_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/make_dictionary_file.py -------------------------------------------------------------------------------- /tools/merge_messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/merge_messages -------------------------------------------------------------------------------- /tools/merge_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/merge_messages.py -------------------------------------------------------------------------------- /tools/noop_merge_old_heads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/noop_merge_old_heads -------------------------------------------------------------------------------- /tools/notes_for_all_persons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/notes_for_all_persons -------------------------------------------------------------------------------- /tools/notes_for_all_persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/notes_for_all_persons.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/app.yaml -------------------------------------------------------------------------------- /tools/pfif-tools/app/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/controller.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/pfif_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/pfif_diff.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/pfif_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/pfif_validator.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/resources/diff_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/resources/diff_results.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/resources/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/resources/error.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/resources/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/resources/messages.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/resources/validate_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/resources/validate_results.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/settings.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/static/diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/static/diff.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/static/index.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/static/style.css -------------------------------------------------------------------------------- /tools/pfif-tools/app/static/validator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/static/validator.html -------------------------------------------------------------------------------- /tools/pfif-tools/app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/urls.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/utils.py -------------------------------------------------------------------------------- /tools/pfif-tools/app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/app/wsgi.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/__init__.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/pfif_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/pfif_xml.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/test_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/test_controller.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/test_diff.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/test_utils.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/test_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/test_validator.py -------------------------------------------------------------------------------- /tools/pfif-tools/tests/unit_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tests/unit_tests.py -------------------------------------------------------------------------------- /tools/pfif-tools/tools/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/.coveragerc -------------------------------------------------------------------------------- /tools/pfif-tools/tools/all_lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/all_lint -------------------------------------------------------------------------------- /tools/pfif-tools/tools/all_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/all_tests -------------------------------------------------------------------------------- /tools/pfif-tools/tools/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/clean -------------------------------------------------------------------------------- /tools/pfif-tools/tools/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/common.sh -------------------------------------------------------------------------------- /tools/pfif-tools/tools/coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/coverage -------------------------------------------------------------------------------- /tools/pfif-tools/tools/gae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/gae -------------------------------------------------------------------------------- /tools/pfif-tools/tools/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/lint -------------------------------------------------------------------------------- /tools/pfif-tools/tools/remote_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/remote_api.py -------------------------------------------------------------------------------- /tools/pfif-tools/tools/rietveld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/rietveld -------------------------------------------------------------------------------- /tools/pfif-tools/tools/unit_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/unit_tests -------------------------------------------------------------------------------- /tools/pfif-tools/tools/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/pfif-tools/tools/upload.py -------------------------------------------------------------------------------- /tools/py3_unit_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/py3_unit_tests -------------------------------------------------------------------------------- /tools/python3_compatibility_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/python3_compatibility_check -------------------------------------------------------------------------------- /tools/sample_queries/count_all_persons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/sample_queries/count_all_persons.py -------------------------------------------------------------------------------- /tools/server_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/server_tests -------------------------------------------------------------------------------- /tools/site_export_importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/site_export_importer.py -------------------------------------------------------------------------------- /tools/travis_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/travis_tests -------------------------------------------------------------------------------- /tools/ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/ui -------------------------------------------------------------------------------- /tools/unit_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/unit_tests -------------------------------------------------------------------------------- /tools/update_messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/update_messages -------------------------------------------------------------------------------- /tools/update_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/update_messages.py -------------------------------------------------------------------------------- /tools/validate_merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/validate_merge -------------------------------------------------------------------------------- /tools/validate_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/tools/validate_merge.py -------------------------------------------------------------------------------- /ui/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/.babelrc -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/package-lock.json -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/App.js -------------------------------------------------------------------------------- /ui/src/components/Captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Captcha.js -------------------------------------------------------------------------------- /ui/src/components/Captcha_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Captcha_test.js -------------------------------------------------------------------------------- /ui/src/components/EndBarHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/EndBarHeader.js -------------------------------------------------------------------------------- /ui/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Footer.js -------------------------------------------------------------------------------- /ui/src/components/Footer_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Footer_test.js -------------------------------------------------------------------------------- /ui/src/components/LoadingIndicator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/LoadingIndicator.js -------------------------------------------------------------------------------- /ui/src/components/LoadingIndicator_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/LoadingIndicator_test.js -------------------------------------------------------------------------------- /ui/src/components/LocationFieldset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/LocationFieldset.js -------------------------------------------------------------------------------- /ui/src/components/LocationFieldset_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/LocationFieldset_test.js -------------------------------------------------------------------------------- /ui/src/components/Note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Note.js -------------------------------------------------------------------------------- /ui/src/components/PFNotchedOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/PFNotchedOutline.js -------------------------------------------------------------------------------- /ui/src/components/PageHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/PageHeader.js -------------------------------------------------------------------------------- /ui/src/components/RepoHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/RepoHeader.js -------------------------------------------------------------------------------- /ui/src/components/RepoHeader_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/RepoHeader_test.js -------------------------------------------------------------------------------- /ui/src/components/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/SearchBar.js -------------------------------------------------------------------------------- /ui/src/components/SearchBar_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/SearchBar_test.js -------------------------------------------------------------------------------- /ui/src/components/StaticPageWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/StaticPageWrapper.js -------------------------------------------------------------------------------- /ui/src/components/Zippy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Zippy.js -------------------------------------------------------------------------------- /ui/src/components/Zippy_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/components/Zippy_test.js -------------------------------------------------------------------------------- /ui/src/css/_common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/_common.scss -------------------------------------------------------------------------------- /ui/src/css/_material-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/_material-values.scss -------------------------------------------------------------------------------- /ui/src/css/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/all.scss -------------------------------------------------------------------------------- /ui/src/css/components/_Captcha.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_Captcha.scss -------------------------------------------------------------------------------- /ui/src/css/components/_EndBarHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_EndBarHeader.scss -------------------------------------------------------------------------------- /ui/src/css/components/_Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_Footer.scss -------------------------------------------------------------------------------- /ui/src/css/components/_LocationFieldset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_LocationFieldset.scss -------------------------------------------------------------------------------- /ui/src/css/components/_Note.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_Note.scss -------------------------------------------------------------------------------- /ui/src/css/components/_PFNotchedOutline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_PFNotchedOutline.scss -------------------------------------------------------------------------------- /ui/src/css/components/_PageHeader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_PageHeader.scss -------------------------------------------------------------------------------- /ui/src/css/components/_SearchBar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_SearchBar.scss -------------------------------------------------------------------------------- /ui/src/css/components/_StaticPageWrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_StaticPageWrapper.scss -------------------------------------------------------------------------------- /ui/src/css/components/_Zippy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/components/_Zippy.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_AddNote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_AddNote.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_Create.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_Create.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_GlobalHome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_GlobalHome.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_RepoHome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_RepoHome.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_Results.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_Results.scss -------------------------------------------------------------------------------- /ui/src/css/pages/_View.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/css/pages/_View.scss -------------------------------------------------------------------------------- /ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/index.js -------------------------------------------------------------------------------- /ui/src/pages/AddNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/AddNote.js -------------------------------------------------------------------------------- /ui/src/pages/Create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/Create.js -------------------------------------------------------------------------------- /ui/src/pages/GlobalHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/GlobalHome.js -------------------------------------------------------------------------------- /ui/src/pages/GlobalHome_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/GlobalHome_test.js -------------------------------------------------------------------------------- /ui/src/pages/HowToPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/HowToPage.js -------------------------------------------------------------------------------- /ui/src/pages/RepoHome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/RepoHome.js -------------------------------------------------------------------------------- /ui/src/pages/RepoHome_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/RepoHome_test.js -------------------------------------------------------------------------------- /ui/src/pages/RespondersPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/RespondersPage.js -------------------------------------------------------------------------------- /ui/src/pages/Results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/Results.js -------------------------------------------------------------------------------- /ui/src/pages/Results_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/Results_test.js -------------------------------------------------------------------------------- /ui/src/pages/View.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/View.js -------------------------------------------------------------------------------- /ui/src/pages/__snapshots__/GlobalHome_test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/__snapshots__/GlobalHome_test.js.snap -------------------------------------------------------------------------------- /ui/src/pages/__snapshots__/RepoHome_test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/__snapshots__/RepoHome_test.js.snap -------------------------------------------------------------------------------- /ui/src/pages/__snapshots__/Results_test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/pages/__snapshots__/Results_test.js.snap -------------------------------------------------------------------------------- /ui/src/testing/enzyme-intl-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/testing/enzyme-intl-helper.js -------------------------------------------------------------------------------- /ui/src/testing/mock-google-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/testing/mock-google-module.js -------------------------------------------------------------------------------- /ui/src/testing/setup-jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/testing/setup-jest.js -------------------------------------------------------------------------------- /ui/src/testing/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/testing/utils.js -------------------------------------------------------------------------------- /ui/src/translations/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/translations/en.js -------------------------------------------------------------------------------- /ui/src/translations/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/translations/es.js -------------------------------------------------------------------------------- /ui/src/utils/CommonMessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/utils/CommonMessages.js -------------------------------------------------------------------------------- /ui/src/utils/ProfilePageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/utils/ProfilePageUtils.js -------------------------------------------------------------------------------- /ui/src/utils/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/utils/Utils.js -------------------------------------------------------------------------------- /ui/src/utils/Utils_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/src/utils/Utils_test.js -------------------------------------------------------------------------------- /ui/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/index.html -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_add.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_arrow_back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_arrow_back.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_clear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_clear.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_map.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_my_location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_my_location.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_person_pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_person_pin.svg -------------------------------------------------------------------------------- /ui/static/static/icons/maticon_search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/static/static/icons/maticon_search.svg -------------------------------------------------------------------------------- /ui/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/webpack.common.js -------------------------------------------------------------------------------- /ui/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/webpack.dev.js -------------------------------------------------------------------------------- /ui/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/personfinder/HEAD/ui/webpack.prod.js --------------------------------------------------------------------------------