├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .travis.yml ├── .vscode └── settings.json ├── COPYING.LESSER ├── README.md ├── app.yaml ├── appengine_config.py ├── bp_admin ├── __init__.py ├── admin.py ├── crontasks.py ├── logsemails.py ├── logsvisits.py ├── routes.py ├── templates │ ├── admin_base.html │ ├── admin_logs_email_view.html │ ├── admin_logs_emails.html │ ├── admin_logs_visits.html │ ├── admin_macros.html │ ├── admin_user_edit.html │ ├── admin_users_geochart.html │ └── admin_users_list.html ├── tests.py └── users.py ├── bp_content ├── __init__.py └── themes │ ├── README.TXT │ ├── __init__.py │ └── default │ ├── __init__.py │ ├── config │ ├── __init__.py │ ├── boilerplate.py │ ├── localhost.py │ ├── production.py │ └── testing.py │ ├── handlers │ ├── __init__.py │ ├── forms.py │ ├── handlers.py │ ├── models.py │ └── tests.py │ ├── routes │ └── __init__.py │ ├── static │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── css │ │ └── style.css │ ├── favicon.ico │ ├── img │ │ └── logo.jpg │ ├── js │ │ └── script.js │ └── less │ │ └── style.less │ └── templates │ ├── base.html │ ├── contact.html │ ├── delete_account.html │ ├── edit_email.html │ ├── edit_password.html │ ├── edit_profile.html │ ├── emails │ ├── account_activation.txt │ ├── contact.txt │ ├── email_changed_notification_new.txt │ ├── email_changed_notification_old.txt │ ├── password_changed.txt │ └── reset_password.txt │ ├── errors │ ├── default_error.html │ ├── dos_api_denial.html │ ├── forbidden_access.html │ ├── over_quota.html │ └── timeout.html │ ├── home.html │ ├── home_boiler.html │ ├── login.html │ ├── macros.html │ ├── password_reset.html │ ├── password_reset_complete.html │ ├── register.html │ ├── secure_zone.html │ └── seo │ ├── crossdomain.xml │ ├── humans.txt │ ├── robots.txt │ └── sitemap.xml ├── bp_includes ├── __init__.py ├── config.py ├── external │ ├── __init__.py │ ├── babel │ │ ├── __init__.py │ │ ├── core.py │ │ ├── dates.py │ │ ├── global.dat │ │ ├── localedata.py │ │ ├── localedata │ │ │ ├── aa.dat │ │ │ ├── aa_DJ.dat │ │ │ ├── aa_ER.dat │ │ │ ├── aa_ER_SAAHO.dat │ │ │ ├── aa_ET.dat │ │ │ ├── af.dat │ │ │ ├── af_NA.dat │ │ │ ├── af_ZA.dat │ │ │ ├── ak.dat │ │ │ ├── ak_GH.dat │ │ │ ├── am.dat │ │ │ ├── am_ET.dat │ │ │ ├── ar.dat │ │ │ ├── ar_AE.dat │ │ │ ├── ar_BH.dat │ │ │ ├── ar_DZ.dat │ │ │ ├── ar_EG.dat │ │ │ ├── ar_IQ.dat │ │ │ ├── ar_JO.dat │ │ │ ├── ar_KW.dat │ │ │ ├── ar_LB.dat │ │ │ ├── ar_LY.dat │ │ │ ├── ar_MA.dat │ │ │ ├── ar_OM.dat │ │ │ ├── ar_QA.dat │ │ │ ├── ar_SA.dat │ │ │ ├── ar_SD.dat │ │ │ ├── ar_SY.dat │ │ │ ├── ar_TN.dat │ │ │ ├── ar_YE.dat │ │ │ ├── as.dat │ │ │ ├── as_IN.dat │ │ │ ├── az.dat │ │ │ ├── az_AZ.dat │ │ │ ├── az_Cyrl.dat │ │ │ ├── az_Cyrl_AZ.dat │ │ │ ├── az_Latn.dat │ │ │ ├── az_Latn_AZ.dat │ │ │ ├── be.dat │ │ │ ├── be_BY.dat │ │ │ ├── bg.dat │ │ │ ├── bg_BG.dat │ │ │ ├── bn.dat │ │ │ ├── bn_BD.dat │ │ │ ├── bn_IN.dat │ │ │ ├── bs.dat │ │ │ ├── bs_BA.dat │ │ │ ├── byn.dat │ │ │ ├── byn_ER.dat │ │ │ ├── ca.dat │ │ │ ├── ca_ES.dat │ │ │ ├── cch.dat │ │ │ ├── cch_NG.dat │ │ │ ├── cop.dat │ │ │ ├── cs.dat │ │ │ ├── cs_CZ.dat │ │ │ ├── cy.dat │ │ │ ├── cy_GB.dat │ │ │ ├── da.dat │ │ │ ├── da_DK.dat │ │ │ ├── de.dat │ │ │ ├── de_AT.dat │ │ │ ├── de_BE.dat │ │ │ ├── de_CH.dat │ │ │ ├── de_DE.dat │ │ │ ├── de_LI.dat │ │ │ ├── de_LU.dat │ │ │ ├── dv.dat │ │ │ ├── dv_MV.dat │ │ │ ├── dz.dat │ │ │ ├── dz_BT.dat │ │ │ ├── ee.dat │ │ │ ├── ee_GH.dat │ │ │ ├── ee_TG.dat │ │ │ ├── el.dat │ │ │ ├── el_CY.dat │ │ │ ├── el_GR.dat │ │ │ ├── el_POLYTON.dat │ │ │ ├── en.dat │ │ │ ├── en_AS.dat │ │ │ ├── en_AU.dat │ │ │ ├── en_BE.dat │ │ │ ├── en_BW.dat │ │ │ ├── en_BZ.dat │ │ │ ├── en_CA.dat │ │ │ ├── en_Dsrt.dat │ │ │ ├── en_Dsrt_US.dat │ │ │ ├── en_GB.dat │ │ │ ├── en_GU.dat │ │ │ ├── en_HK.dat │ │ │ ├── en_IE.dat │ │ │ ├── en_IN.dat │ │ │ ├── en_JM.dat │ │ │ ├── en_MH.dat │ │ │ ├── en_MP.dat │ │ │ ├── en_MT.dat │ │ │ ├── en_NA.dat │ │ │ ├── en_NZ.dat │ │ │ ├── en_PH.dat │ │ │ ├── en_PK.dat │ │ │ ├── en_SG.dat │ │ │ ├── en_Shaw.dat │ │ │ ├── en_TT.dat │ │ │ ├── en_UM.dat │ │ │ ├── en_US.dat │ │ │ ├── en_US_POSIX.dat │ │ │ ├── en_VI.dat │ │ │ ├── en_ZA.dat │ │ │ ├── en_ZW.dat │ │ │ ├── eo.dat │ │ │ ├── es.dat │ │ │ ├── es_AR.dat │ │ │ ├── es_BO.dat │ │ │ ├── es_CL.dat │ │ │ ├── es_CO.dat │ │ │ ├── es_CR.dat │ │ │ ├── es_DO.dat │ │ │ ├── es_EC.dat │ │ │ ├── es_ES.dat │ │ │ ├── es_GT.dat │ │ │ ├── es_HN.dat │ │ │ ├── es_MX.dat │ │ │ ├── es_NI.dat │ │ │ ├── es_PA.dat │ │ │ ├── es_PE.dat │ │ │ ├── es_PR.dat │ │ │ ├── es_PY.dat │ │ │ ├── es_SV.dat │ │ │ ├── es_US.dat │ │ │ ├── es_UY.dat │ │ │ ├── es_VE.dat │ │ │ ├── et.dat │ │ │ ├── et_EE.dat │ │ │ ├── eu.dat │ │ │ ├── eu_ES.dat │ │ │ ├── fa.dat │ │ │ ├── fa_AF.dat │ │ │ ├── fa_IR.dat │ │ │ ├── fi.dat │ │ │ ├── fi_FI.dat │ │ │ ├── fil.dat │ │ │ ├── fil_PH.dat │ │ │ ├── fo.dat │ │ │ ├── fo_FO.dat │ │ │ ├── fr.dat │ │ │ ├── fr_BE.dat │ │ │ ├── fr_CA.dat │ │ │ ├── fr_CH.dat │ │ │ ├── fr_FR.dat │ │ │ ├── fr_LU.dat │ │ │ ├── fr_MC.dat │ │ │ ├── fr_SN.dat │ │ │ ├── fur.dat │ │ │ ├── fur_IT.dat │ │ │ ├── ga.dat │ │ │ ├── ga_IE.dat │ │ │ ├── gaa.dat │ │ │ ├── gaa_GH.dat │ │ │ ├── gez.dat │ │ │ ├── gez_ER.dat │ │ │ ├── gez_ET.dat │ │ │ ├── gl.dat │ │ │ ├── gl_ES.dat │ │ │ ├── gu.dat │ │ │ ├── gu_IN.dat │ │ │ ├── gv.dat │ │ │ ├── gv_GB.dat │ │ │ ├── ha.dat │ │ │ ├── ha_Arab.dat │ │ │ ├── ha_Arab_NG.dat │ │ │ ├── ha_Arab_SD.dat │ │ │ ├── ha_GH.dat │ │ │ ├── ha_Latn.dat │ │ │ ├── ha_Latn_GH.dat │ │ │ ├── ha_Latn_NE.dat │ │ │ ├── ha_Latn_NG.dat │ │ │ ├── ha_NE.dat │ │ │ ├── ha_NG.dat │ │ │ ├── ha_SD.dat │ │ │ ├── haw.dat │ │ │ ├── haw_US.dat │ │ │ ├── he.dat │ │ │ ├── he_IL.dat │ │ │ ├── hi.dat │ │ │ ├── hi_IN.dat │ │ │ ├── hr.dat │ │ │ ├── hr_HR.dat │ │ │ ├── hu.dat │ │ │ ├── hu_HU.dat │ │ │ ├── hy.dat │ │ │ ├── hy_AM.dat │ │ │ ├── hy_AM_REVISED.dat │ │ │ ├── ia.dat │ │ │ ├── id.dat │ │ │ ├── id_ID.dat │ │ │ ├── ig.dat │ │ │ ├── ig_NG.dat │ │ │ ├── ii.dat │ │ │ ├── ii_CN.dat │ │ │ ├── in.dat │ │ │ ├── is.dat │ │ │ ├── is_IS.dat │ │ │ ├── it.dat │ │ │ ├── it_CH.dat │ │ │ ├── it_IT.dat │ │ │ ├── iu.dat │ │ │ ├── iw.dat │ │ │ ├── ja.dat │ │ │ ├── ja_JP.dat │ │ │ ├── ka.dat │ │ │ ├── ka_GE.dat │ │ │ ├── kaj.dat │ │ │ ├── kaj_NG.dat │ │ │ ├── kam.dat │ │ │ ├── kam_KE.dat │ │ │ ├── kcg.dat │ │ │ ├── kcg_NG.dat │ │ │ ├── kfo.dat │ │ │ ├── kfo_CI.dat │ │ │ ├── kk.dat │ │ │ ├── kk_Cyrl.dat │ │ │ ├── kk_Cyrl_KZ.dat │ │ │ ├── kk_KZ.dat │ │ │ ├── kl.dat │ │ │ ├── kl_GL.dat │ │ │ ├── km.dat │ │ │ ├── km_KH.dat │ │ │ ├── kn.dat │ │ │ ├── kn_IN.dat │ │ │ ├── ko.dat │ │ │ ├── ko_KR.dat │ │ │ ├── kok.dat │ │ │ ├── kok_IN.dat │ │ │ ├── kpe.dat │ │ │ ├── kpe_GN.dat │ │ │ ├── kpe_LR.dat │ │ │ ├── ku.dat │ │ │ ├── ku_Arab.dat │ │ │ ├── ku_Latn.dat │ │ │ ├── ku_Latn_TR.dat │ │ │ ├── ku_TR.dat │ │ │ ├── kw.dat │ │ │ ├── kw_GB.dat │ │ │ ├── ky.dat │ │ │ ├── ky_KG.dat │ │ │ ├── ln.dat │ │ │ ├── ln_CD.dat │ │ │ ├── ln_CG.dat │ │ │ ├── lo.dat │ │ │ ├── lo_LA.dat │ │ │ ├── lt.dat │ │ │ ├── lt_LT.dat │ │ │ ├── lv.dat │ │ │ ├── lv_LV.dat │ │ │ ├── mk.dat │ │ │ ├── mk_MK.dat │ │ │ ├── ml.dat │ │ │ ├── ml_IN.dat │ │ │ ├── mn.dat │ │ │ ├── mn_CN.dat │ │ │ ├── mn_Cyrl.dat │ │ │ ├── mn_Cyrl_MN.dat │ │ │ ├── mn_MN.dat │ │ │ ├── mn_Mong.dat │ │ │ ├── mn_Mong_CN.dat │ │ │ ├── mo.dat │ │ │ ├── mr.dat │ │ │ ├── mr_IN.dat │ │ │ ├── ms.dat │ │ │ ├── ms_BN.dat │ │ │ ├── ms_MY.dat │ │ │ ├── mt.dat │ │ │ ├── mt_MT.dat │ │ │ ├── my.dat │ │ │ ├── my_MM.dat │ │ │ ├── nb.dat │ │ │ ├── nb_NO.dat │ │ │ ├── ne.dat │ │ │ ├── ne_IN.dat │ │ │ ├── ne_NP.dat │ │ │ ├── nl.dat │ │ │ ├── nl_BE.dat │ │ │ ├── nl_NL.dat │ │ │ ├── nn.dat │ │ │ ├── nn_NO.dat │ │ │ ├── no.dat │ │ │ ├── nr.dat │ │ │ ├── nr_ZA.dat │ │ │ ├── nso.dat │ │ │ ├── nso_ZA.dat │ │ │ ├── ny.dat │ │ │ ├── ny_MW.dat │ │ │ ├── om.dat │ │ │ ├── om_ET.dat │ │ │ ├── om_KE.dat │ │ │ ├── or.dat │ │ │ ├── or_IN.dat │ │ │ ├── pa.dat │ │ │ ├── pa_Arab.dat │ │ │ ├── pa_Arab_PK.dat │ │ │ ├── pa_Guru.dat │ │ │ ├── pa_Guru_IN.dat │ │ │ ├── pa_IN.dat │ │ │ ├── pa_PK.dat │ │ │ ├── pl.dat │ │ │ ├── pl_PL.dat │ │ │ ├── ps.dat │ │ │ ├── ps_AF.dat │ │ │ ├── pt.dat │ │ │ ├── pt_BR.dat │ │ │ ├── pt_PT.dat │ │ │ ├── ro.dat │ │ │ ├── ro_MD.dat │ │ │ ├── ro_RO.dat │ │ │ ├── root.dat │ │ │ ├── ru.dat │ │ │ ├── ru_RU.dat │ │ │ ├── ru_UA.dat │ │ │ ├── rw.dat │ │ │ ├── rw_RW.dat │ │ │ ├── sa.dat │ │ │ ├── sa_IN.dat │ │ │ ├── se.dat │ │ │ ├── se_FI.dat │ │ │ ├── se_NO.dat │ │ │ ├── sh.dat │ │ │ ├── sh_BA.dat │ │ │ ├── sh_CS.dat │ │ │ ├── sh_YU.dat │ │ │ ├── si.dat │ │ │ ├── si_LK.dat │ │ │ ├── sid.dat │ │ │ ├── sid_ET.dat │ │ │ ├── sk.dat │ │ │ ├── sk_SK.dat │ │ │ ├── sl.dat │ │ │ ├── sl_SI.dat │ │ │ ├── so.dat │ │ │ ├── so_DJ.dat │ │ │ ├── so_ET.dat │ │ │ ├── so_KE.dat │ │ │ ├── so_SO.dat │ │ │ ├── sq.dat │ │ │ ├── sq_AL.dat │ │ │ ├── sr.dat │ │ │ ├── sr_BA.dat │ │ │ ├── sr_CS.dat │ │ │ ├── sr_Cyrl.dat │ │ │ ├── sr_Cyrl_BA.dat │ │ │ ├── sr_Cyrl_CS.dat │ │ │ ├── sr_Cyrl_ME.dat │ │ │ ├── sr_Cyrl_RS.dat │ │ │ ├── sr_Cyrl_YU.dat │ │ │ ├── sr_Latn.dat │ │ │ ├── sr_Latn_BA.dat │ │ │ ├── sr_Latn_CS.dat │ │ │ ├── sr_Latn_ME.dat │ │ │ ├── sr_Latn_RS.dat │ │ │ ├── sr_Latn_YU.dat │ │ │ ├── sr_ME.dat │ │ │ ├── sr_RS.dat │ │ │ ├── sr_YU.dat │ │ │ ├── ss.dat │ │ │ ├── ss_SZ.dat │ │ │ ├── ss_ZA.dat │ │ │ ├── st.dat │ │ │ ├── st_LS.dat │ │ │ ├── st_ZA.dat │ │ │ ├── sv.dat │ │ │ ├── sv_FI.dat │ │ │ ├── sv_SE.dat │ │ │ ├── sw.dat │ │ │ ├── sw_KE.dat │ │ │ ├── sw_TZ.dat │ │ │ ├── syr.dat │ │ │ ├── syr_SY.dat │ │ │ ├── ta.dat │ │ │ ├── ta_IN.dat │ │ │ ├── te.dat │ │ │ ├── te_IN.dat │ │ │ ├── tg.dat │ │ │ ├── tg_Cyrl.dat │ │ │ ├── tg_Cyrl_TJ.dat │ │ │ ├── tg_TJ.dat │ │ │ ├── th.dat │ │ │ ├── th_TH.dat │ │ │ ├── ti.dat │ │ │ ├── ti_ER.dat │ │ │ ├── ti_ET.dat │ │ │ ├── tig.dat │ │ │ ├── tig_ER.dat │ │ │ ├── tl.dat │ │ │ ├── tn.dat │ │ │ ├── tn_ZA.dat │ │ │ ├── to.dat │ │ │ ├── to_TO.dat │ │ │ ├── tr.dat │ │ │ ├── tr_TR.dat │ │ │ ├── trv.dat │ │ │ ├── ts.dat │ │ │ ├── ts_ZA.dat │ │ │ ├── tt.dat │ │ │ ├── tt_RU.dat │ │ │ ├── ug.dat │ │ │ ├── ug_Arab.dat │ │ │ ├── ug_Arab_CN.dat │ │ │ ├── ug_CN.dat │ │ │ ├── uk.dat │ │ │ ├── uk_UA.dat │ │ │ ├── ur.dat │ │ │ ├── ur_IN.dat │ │ │ ├── ur_PK.dat │ │ │ ├── uz.dat │ │ │ ├── uz_AF.dat │ │ │ ├── uz_Arab.dat │ │ │ ├── uz_Arab_AF.dat │ │ │ ├── uz_Cyrl.dat │ │ │ ├── uz_Cyrl_UZ.dat │ │ │ ├── uz_Latn.dat │ │ │ ├── uz_Latn_UZ.dat │ │ │ ├── uz_UZ.dat │ │ │ ├── ve.dat │ │ │ ├── ve_ZA.dat │ │ │ ├── vi.dat │ │ │ ├── vi_VN.dat │ │ │ ├── wal.dat │ │ │ ├── wal_ET.dat │ │ │ ├── wo.dat │ │ │ ├── wo_Latn.dat │ │ │ ├── wo_Latn_SN.dat │ │ │ ├── wo_SN.dat │ │ │ ├── xh.dat │ │ │ ├── xh_ZA.dat │ │ │ ├── yo.dat │ │ │ ├── yo_NG.dat │ │ │ ├── zh.dat │ │ │ ├── zh_CN.dat │ │ │ ├── zh_HK.dat │ │ │ ├── zh_Hans.dat │ │ │ ├── zh_Hans_CN.dat │ │ │ ├── zh_Hans_HK.dat │ │ │ ├── zh_Hans_MO.dat │ │ │ ├── zh_Hans_SG.dat │ │ │ ├── zh_Hant.dat │ │ │ ├── zh_Hant_HK.dat │ │ │ ├── zh_Hant_MO.dat │ │ │ ├── zh_Hant_TW.dat │ │ │ ├── zh_MO.dat │ │ │ ├── zh_SG.dat │ │ │ ├── zh_TW.dat │ │ │ ├── zu.dat │ │ │ └── zu_ZA.dat │ │ ├── messages │ │ │ ├── __init__.py │ │ │ ├── catalog.py │ │ │ ├── checkers.py │ │ │ ├── extract.py │ │ │ ├── frontend.py │ │ │ ├── jslexer.py │ │ │ ├── mofile.py │ │ │ ├── plurals.py │ │ │ ├── pofile.py │ │ │ └── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── catalog.py │ │ │ │ ├── checkers.py │ │ │ │ ├── data │ │ │ │ ├── mapping.cfg │ │ │ │ ├── project │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file1.py │ │ │ │ │ ├── file2.py │ │ │ │ │ ├── i18n │ │ │ │ │ │ ├── de_DE │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ │ └── messages.po │ │ │ │ │ │ ├── messages.pot │ │ │ │ │ │ ├── messages_non_fuzzy.pot │ │ │ │ │ │ └── ru_RU │ │ │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ │ └── messages.po │ │ │ │ │ └── ignored │ │ │ │ │ │ ├── a_test_file.txt │ │ │ │ │ │ ├── an_example.txt │ │ │ │ │ │ └── this_wont_normally_be_here.py │ │ │ │ ├── setup.cfg │ │ │ │ └── setup.py │ │ │ │ ├── extract.py │ │ │ │ ├── frontend.py │ │ │ │ ├── mofile.py │ │ │ │ ├── plurals.py │ │ │ │ └── pofile.py │ │ ├── numbers.py │ │ ├── support.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── dates.py │ │ │ ├── localedata.py │ │ │ ├── numbers.py │ │ │ ├── support.py │ │ │ └── util.py │ │ └── util.py │ ├── github │ │ ├── __init__.py │ │ ├── github.py │ │ └── oauth_client.py │ ├── httpagentparser │ │ ├── __init__.py │ │ ├── more.py │ │ └── trident.py │ ├── httplib2 │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── __init__.py │ │ ├── cacerts.txt │ │ ├── iri2uri.py │ │ ├── socks.py │ │ └── test │ │ │ ├── __init__.py │ │ │ ├── brokensocket │ │ │ └── socket.py │ │ │ ├── functional │ │ │ └── test_proxies.py │ │ │ ├── miniserver.py │ │ │ ├── other_cacerts.txt │ │ │ ├── smoke_test.py │ │ │ └── test_no_socket.py │ ├── linkedin │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── linkedin.py │ │ ├── models.py │ │ ├── server.py │ │ └── utils.py │ ├── pytz │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── gae.py │ │ ├── lazy.py │ │ ├── reference.py │ │ ├── tzfile.py │ │ ├── tzinfo.py │ │ └── zoneinfo.zip │ ├── requests │ │ ├── __init__.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── cacert.pem │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardetect.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── codingstatemachine.py │ │ │ │ ├── compat.py │ │ │ │ ├── constants.py │ │ │ │ ├── cp949prober.py │ │ │ │ ├── escprober.py │ │ │ │ ├── escsm.py │ │ │ │ ├── eucjpprober.py │ │ │ │ ├── euckrfreq.py │ │ │ │ ├── euckrprober.py │ │ │ │ ├── euctwfreq.py │ │ │ │ ├── euctwprober.py │ │ │ │ ├── gb2312freq.py │ │ │ │ ├── gb2312prober.py │ │ │ │ ├── hebrewprober.py │ │ │ │ ├── jisfreq.py │ │ │ │ ├── jpcntx.py │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ ├── langgreekmodel.py │ │ │ │ ├── langhebrewmodel.py │ │ │ │ ├── langhungarianmodel.py │ │ │ │ ├── langthaimodel.py │ │ │ │ ├── latin1prober.py │ │ │ │ ├── mbcharsetprober.py │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ ├── mbcssm.py │ │ │ │ ├── sbcharsetprober.py │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ ├── sjisprober.py │ │ │ │ ├── universaldetector.py │ │ │ │ └── utf8prober.py │ │ │ └── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── ntlmpool.py │ │ │ │ └── pyopenssl.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ └── wtforms │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── ext │ │ ├── __init__.py │ │ ├── appengine │ │ │ ├── __init__.py │ │ │ ├── db.py │ │ │ └── fields.py │ │ ├── csrf │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── form.py │ │ │ └── session.py │ │ ├── dateutil │ │ │ ├── __init__.py │ │ │ └── fields.py │ │ ├── django │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── i18n.py │ │ │ ├── orm.py │ │ │ └── templatetags │ │ │ │ ├── __init__.py │ │ │ │ └── wtforms.py │ │ ├── i18n │ │ │ ├── __init__.py │ │ │ ├── form.py │ │ │ ├── messages │ │ │ │ ├── README.txt │ │ │ │ ├── en │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ │ └── wtforms.po │ │ │ │ ├── es │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ │ └── wtforms.po │ │ │ │ ├── fa │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ │ └── wtforms.po │ │ │ │ ├── it │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ │ └── wtforms.po │ │ │ │ ├── pl │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ │ └── wtforms.po │ │ │ │ ├── wtforms.pot │ │ │ │ └── zh │ │ │ │ │ └── LC_MESSAGES │ │ │ │ │ ├── wtforms.mo │ │ │ │ │ └── wtforms.po │ │ │ └── utils.py │ │ └── sqlalchemy │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── orm.py │ │ │ └── validators.py │ │ ├── fields │ │ ├── __init__.py │ │ ├── core.py │ │ └── simple.py │ │ ├── form.py │ │ ├── validators.py │ │ └── widgets │ │ ├── __init__.py │ │ └── core.py ├── forms.py ├── handlers.py ├── lib │ ├── __init__.py │ ├── basehandler.py │ ├── captcha.py │ ├── decorators.py │ ├── error_handler.py │ ├── facebook.py │ ├── i18n.py │ ├── jinja_bootstrap.py │ ├── oauth2.py │ ├── test_helpers.py │ ├── tests.py │ ├── twitter.py │ └── utils.py ├── models.py ├── routes.py ├── static │ ├── css │ │ ├── boilerplate.min.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── img │ │ └── social-login-icons.png │ ├── js │ │ ├── libs │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery_validation │ │ │ │ └── localization │ │ │ │ │ ├── messages_ar.js │ │ │ │ │ ├── messages_bg.js │ │ │ │ │ ├── messages_ca.js │ │ │ │ │ ├── messages_cs.js │ │ │ │ │ ├── messages_da.js │ │ │ │ │ ├── messages_de.js │ │ │ │ │ ├── messages_el.js │ │ │ │ │ ├── messages_es.js │ │ │ │ │ ├── messages_et.js │ │ │ │ │ ├── messages_eu.js │ │ │ │ │ ├── messages_fa.js │ │ │ │ │ ├── messages_fi.js │ │ │ │ │ ├── messages_fr.js │ │ │ │ │ ├── messages_he.js │ │ │ │ │ ├── messages_hr.js │ │ │ │ │ ├── messages_hu.js │ │ │ │ │ ├── messages_it.js │ │ │ │ │ ├── messages_ja.js │ │ │ │ │ ├── messages_ka.js │ │ │ │ │ ├── messages_kk.js │ │ │ │ │ ├── messages_lt.js │ │ │ │ │ ├── messages_lv.js │ │ │ │ │ ├── messages_nl.js │ │ │ │ │ ├── messages_no.js │ │ │ │ │ ├── messages_pl.js │ │ │ │ │ ├── messages_pt_BR.js │ │ │ │ │ ├── messages_pt_PT.js │ │ │ │ │ ├── messages_ro.js │ │ │ │ │ ├── messages_ru.js │ │ │ │ │ ├── messages_si.js │ │ │ │ │ ├── messages_sk.js │ │ │ │ │ ├── messages_sl.js │ │ │ │ │ ├── messages_sr.js │ │ │ │ │ ├── messages_sv.js │ │ │ │ │ ├── messages_th.js │ │ │ │ │ ├── messages_tr.js │ │ │ │ │ ├── messages_uk.js │ │ │ │ │ ├── messages_vi.js │ │ │ │ │ ├── messages_zh.js │ │ │ │ │ ├── messages_zh_TW.js │ │ │ │ │ ├── methods_de.js │ │ │ │ │ ├── methods_nl.js │ │ │ │ │ └── methods_pt.js │ │ │ └── modernizr-2.7.1.min.js │ │ ├── plugins.js │ │ └── script.js │ └── less │ │ └── boilerplate.less └── tests.py ├── cron.yaml ├── dos.yml ├── fabfile.py ├── index.yaml ├── locale ├── babel.cfg ├── cs_CZ │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── de_DE │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── en_US │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── es_ES │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── fr_FR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── id_ID │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── it_IT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ko_KR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── messages.pot ├── nl_NL │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── pt_BR │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── ru_RU │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── vi_VN │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── zh_CN │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── main.py └── testrunner.py /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/app.yaml -------------------------------------------------------------------------------- /appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/appengine_config.py -------------------------------------------------------------------------------- /bp_admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_admin/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/admin.py -------------------------------------------------------------------------------- /bp_admin/crontasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/crontasks.py -------------------------------------------------------------------------------- /bp_admin/logsemails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/logsemails.py -------------------------------------------------------------------------------- /bp_admin/logsvisits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/logsvisits.py -------------------------------------------------------------------------------- /bp_admin/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/routes.py -------------------------------------------------------------------------------- /bp_admin/templates/admin_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_base.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_logs_email_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_logs_email_view.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_logs_emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_logs_emails.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_logs_visits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_logs_visits.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_macros.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_user_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_user_edit.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_users_geochart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_users_geochart.html -------------------------------------------------------------------------------- /bp_admin/templates/admin_users_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/templates/admin_users_list.html -------------------------------------------------------------------------------- /bp_admin/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/tests.py -------------------------------------------------------------------------------- /bp_admin/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_admin/users.py -------------------------------------------------------------------------------- /bp_content/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '@coto' 2 | -------------------------------------------------------------------------------- /bp_content/themes/README.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/README.TXT -------------------------------------------------------------------------------- /bp_content/themes/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '@coto' 2 | -------------------------------------------------------------------------------- /bp_content/themes/default/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '@coto' 2 | -------------------------------------------------------------------------------- /bp_content/themes/default/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/config/__init__.py -------------------------------------------------------------------------------- /bp_content/themes/default/config/boilerplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/config/boilerplate.py -------------------------------------------------------------------------------- /bp_content/themes/default/config/localhost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/config/localhost.py -------------------------------------------------------------------------------- /bp_content/themes/default/config/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/config/production.py -------------------------------------------------------------------------------- /bp_content/themes/default/config/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/config/testing.py -------------------------------------------------------------------------------- /bp_content/themes/default/handlers/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '@coto' 2 | -------------------------------------------------------------------------------- /bp_content/themes/default/handlers/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/handlers/forms.py -------------------------------------------------------------------------------- /bp_content/themes/default/handlers/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/handlers/handlers.py -------------------------------------------------------------------------------- /bp_content/themes/default/handlers/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/handlers/models.py -------------------------------------------------------------------------------- /bp_content/themes/default/handlers/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/handlers/tests.py -------------------------------------------------------------------------------- /bp_content/themes/default/routes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/routes/__init__.py -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/apple-touch-icon.png -------------------------------------------------------------------------------- /bp_content/themes/default/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/css/style.css -------------------------------------------------------------------------------- /bp_content/themes/default/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/favicon.ico -------------------------------------------------------------------------------- /bp_content/themes/default/static/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/img/logo.jpg -------------------------------------------------------------------------------- /bp_content/themes/default/static/js/script.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | /** Put here your Scripts **/ 4 | -------------------------------------------------------------------------------- /bp_content/themes/default/static/less/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/static/less/style.less -------------------------------------------------------------------------------- /bp_content/themes/default/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/base.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/contact.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/delete_account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/delete_account.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/edit_email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/edit_email.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/edit_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/edit_password.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/edit_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/edit_profile.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/emails/account_activation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/emails/account_activation.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/emails/contact.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/emails/contact.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/emails/password_changed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/emails/password_changed.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/emails/reset_password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/emails/reset_password.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/errors/default_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/errors/default_error.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/errors/dos_api_denial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/errors/dos_api_denial.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/errors/forbidden_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/errors/forbidden_access.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/errors/over_quota.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/errors/over_quota.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/errors/timeout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/errors/timeout.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/home.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/home_boiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/home_boiler.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/login.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/macros.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/password_reset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/password_reset.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/password_reset_complete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/password_reset_complete.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/register.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/secure_zone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/secure_zone.html -------------------------------------------------------------------------------- /bp_content/themes/default/templates/seo/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/seo/crossdomain.xml -------------------------------------------------------------------------------- /bp_content/themes/default/templates/seo/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/seo/humans.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/seo/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/seo/robots.txt -------------------------------------------------------------------------------- /bp_content/themes/default/templates/seo/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_content/themes/default/templates/seo/sitemap.xml -------------------------------------------------------------------------------- /bp_includes/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = '@coto' -------------------------------------------------------------------------------- /bp_includes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/config.py -------------------------------------------------------------------------------- /bp_includes/external/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'coto' 2 | -------------------------------------------------------------------------------- /bp_includes/external/babel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/babel/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/core.py -------------------------------------------------------------------------------- /bp_includes/external/babel/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/dates.py -------------------------------------------------------------------------------- /bp_includes/external/babel/global.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/global.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata.py -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/aa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/aa.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/aa_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/aa_DJ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/aa_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/aa_ER.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/aa_ER_SAAHO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/aa_ER_SAAHO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/aa_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/aa_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/af.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/af.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/af_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/af_NA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/af_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/af_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ak.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ak.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ak_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ak_GH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/am.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/am.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/am_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/am_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_AE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_AE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_BH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_BH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_DZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_DZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_EG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_EG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_IQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_IQ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_JO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_JO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_KW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_KW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_LB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_LB.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_LY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_LY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_MA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_MA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_OM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_OM.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_QA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_QA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_SA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_SA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_SD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_SY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_TN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_TN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ar_YE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ar_YE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/as.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/as.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/as_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/as_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az_AZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az_Cyrl_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az_Cyrl_AZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/az_Latn_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/az_Latn_AZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/be.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/be.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/be_BY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/be_BY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bg.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bg_BG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bg_BG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bn_BD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bn_BD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bn_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bs.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/bs_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/bs_BA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/byn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/byn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/byn_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/byn_ER.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ca.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ca.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ca_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ca_ES.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cch.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cch_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cch_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cop.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cop.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cs.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cs_CZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cs_CZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cy.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/cy_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/cy_GB.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/da.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/da.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/da_DK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/da_DK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_AT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_AT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_BE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_CH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_DE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_DE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_LI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_LI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/de_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/de_LU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/dv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/dv.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/dv_MV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/dv_MV.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/dz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/dz.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/dz_BT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/dz_BT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ee.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ee.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ee_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ee_GH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ee_TG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ee_TG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/el.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/el.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/el_CY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/el_CY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/el_GR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/el_GR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/el_POLYTON.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/el_POLYTON.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_AS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_AS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_AU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_AU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_BE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_BW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_BW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_BZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_BZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_CA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_Dsrt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_Dsrt.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_Dsrt_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_Dsrt_US.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_GB.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_GU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_GU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_HK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_IE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_JM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_JM.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_MH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_MH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_MP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_MP.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_MT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_NA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_NZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_NZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_PH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_PK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_SG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_Shaw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_Shaw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_TT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_TT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_UM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_UM.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_US.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_US_POSIX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_US_POSIX.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_VI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_VI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/en_ZW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/en_ZW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/eo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/eo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_AR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_AR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_BO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_BO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_CL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_CL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_CO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_CO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_CR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_CR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_DO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_DO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_EC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_EC.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_ES.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_GT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_GT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_HN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_HN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_MX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_MX.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_NI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_NI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_PA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_PA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_PE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_PE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_PR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_PR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_PY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_PY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_SV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_SV.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_US.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_UY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_UY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/es_VE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/es_VE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/et.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/et.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/et_EE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/et_EE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/eu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/eu.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/eu_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/eu_ES.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fa.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fa_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fa_AF.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fa_IR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fa_IR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fi.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fi_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fi_FI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fil.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fil_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fil_PH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fo_FO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fo_FO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_BE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_CA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_CH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_FR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_FR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_LU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_MC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_MC.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fr_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fr_SN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fur.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/fur_IT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/fur_IT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ga.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ga.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ga_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ga_IE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gaa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gaa.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gaa_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gaa_GH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gez.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gez.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gez_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gez_ER.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gez_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gez_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gl_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gl_ES.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gu.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gu_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gu_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gv.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/gv_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/gv_GB.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Arab.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Arab_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Arab_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Arab_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Arab_SD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_GH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Latn_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Latn_GH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Latn_NE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Latn_NE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_Latn_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_Latn_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_NE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_NE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ha_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ha_SD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/haw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/haw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/haw_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/haw_US.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/he.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/he.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/he_IL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/he_IL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hi.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hi_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hi_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hr_HR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hr_HR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hu.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hu_HU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hu_HU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hy.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hy_AM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hy_AM.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/hy_AM_REVISED.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/hy_AM_REVISED.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ia.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ia.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/id.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/id.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/id_ID.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/id_ID.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ig.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ig_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ig_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ii.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ii.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ii_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ii_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/in.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/in.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/is.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/is.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/is_IS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/is_IS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/it.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/it.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/it_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/it_CH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/it_IT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/it_IT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/iu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/iu.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/iw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/iw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ja.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ja.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ja_JP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ja_JP.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ka.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ka.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ka_GE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ka_GE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kaj.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kaj.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kaj_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kaj_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kam.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kam_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kam_KE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kcg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kcg.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kcg_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kcg_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kfo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kfo_CI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kfo_CI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kk.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kk_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kk_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kk_Cyrl_KZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kk_Cyrl_KZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kk_KZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kk_KZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kl_GL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kl_GL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/km.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/km.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/km_KH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/km_KH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kn_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ko.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ko.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ko_KR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ko_KR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kok.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kok_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kok_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kpe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kpe.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kpe_GN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kpe_GN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kpe_LR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kpe_LR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ku.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ku.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ku_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ku_Arab.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ku_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ku_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ku_Latn_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ku_Latn_TR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ku_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ku_TR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/kw_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/kw_GB.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ky.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ky_KG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ky_KG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ln.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ln.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ln_CD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ln_CD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ln_CG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ln_CG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lo_LA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lo_LA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lt.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lt_LT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lt_LT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lv.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/lv_LV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/lv_LV.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mk.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mk_MK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mk_MK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ml.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ml.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ml_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ml_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_Cyrl_MN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_Cyrl_MN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_MN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_MN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_Mong.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_Mong.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mn_Mong_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mn_Mong_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mr_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mr_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ms.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ms_BN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ms_BN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ms_MY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ms_MY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mt.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/mt_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/mt_MT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/my.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/my.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/my_MM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/my_MM.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nb.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nb_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nb_NO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ne.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ne.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ne_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ne_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ne_NP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ne_NP.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nl_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nl_BE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nl_NL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nl_NL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nn_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nn_NO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/no.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/no.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nr_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nr_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nso.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nso.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/nso_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/nso_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ny.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ny.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ny_MW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ny_MW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/om.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/om.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/om_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/om_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/om_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/om_KE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/or.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/or.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/or_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/or_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_Arab.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_Arab_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_Arab_PK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_Guru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_Guru.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_Guru_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_Guru_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pa_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pa_PK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pl_PL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pl_PL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ps.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ps.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ps_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ps_AF.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pt.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pt_BR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pt_BR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/pt_PT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/pt_PT.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ro.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ro.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ro_MD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ro_MD.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ro_RO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ro_RO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/root.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/root.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ru.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ru_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ru_RU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ru_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ru_UA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/rw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/rw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/rw_RW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/rw_RW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sa.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sa_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sa_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/se.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/se.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/se_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/se_FI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/se_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/se_NO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sh.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sh_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sh_BA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sh_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sh_CS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sh_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sh_YU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/si.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/si.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/si_LK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/si_LK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sid.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sid_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sid_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sk.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sk_SK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sk_SK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sl_SI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sl_SI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/so.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/so.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/so_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/so_DJ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/so_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/so_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/so_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/so_KE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/so_SO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/so_SO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sq.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sq_AL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sq_AL.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_BA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_CS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl_BA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl_CS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl_ME.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl_RS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Cyrl_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Cyrl_YU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn_BA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn_CS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn_ME.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn_RS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_Latn_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_Latn_YU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_ME.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_RS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sr_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sr_YU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ss.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ss_SZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ss_SZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ss_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ss_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/st.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/st.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/st_LS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/st_LS.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/st_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/st_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sv.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sv_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sv_FI.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sv_SE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sv_SE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sw.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sw_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sw_KE.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/sw_TZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/sw_TZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/syr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/syr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/syr_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/syr_SY.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ta.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ta_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ta_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/te.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/te.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/te_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/te_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tg.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tg_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tg_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tg_Cyrl_TJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tg_Cyrl_TJ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tg_TJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tg_TJ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/th.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/th.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/th_TH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/th_TH.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ti.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ti.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ti_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ti_ER.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ti_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ti_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tig.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tig_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tig_ER.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tn_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tn_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/to.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/to.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/to_TO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/to_TO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tr.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tr_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tr_TR.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/trv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/trv.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ts.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ts_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ts_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tt.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/tt_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/tt_RU.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ug.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ug.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ug_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ug_Arab.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ug_Arab_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ug_Arab_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ug_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ug_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uk.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uk_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uk_UA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ur.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ur_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ur_IN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ur_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ur_PK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_AF.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Arab.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Arab_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Arab_AF.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Cyrl.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Cyrl_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Cyrl_UZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_Latn_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_Latn_UZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/uz_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/uz_UZ.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ve.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ve.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/ve_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/ve_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/vi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/vi.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/vi_VN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/vi_VN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wal.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wal_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wal_ET.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wo_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wo_Latn.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wo_Latn_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wo_Latn_SN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/wo_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/wo_SN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/xh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/xh.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/xh_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/xh_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/yo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/yo.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/yo_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/yo_NG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_HK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hans.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hans_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hans_CN.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hans_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hans_HK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hans_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hans_MO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hans_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hans_SG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hant.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hant.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hant_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hant_HK.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hant_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hant_MO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_Hant_TW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_Hant_TW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_MO.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_SG.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zh_TW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zh_TW.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zu.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/localedata/zu_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/localedata/zu_ZA.dat -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/catalog.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/checkers.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/extract.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/frontend.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/jslexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/jslexer.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/mofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/mofile.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/plurals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/plurals.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/pofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/pofile.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/catalog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/catalog.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/checkers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/checkers.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/mapping.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/data/mapping.cfg -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/project/file1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/data/project/file1.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/project/file2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/data/project/file2.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/project/ignored/a_test_file.txt: -------------------------------------------------------------------------------- 1 | Just a test file. 2 | -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/project/ignored/an_example.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/data/setup.cfg -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/data/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/data/setup.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/extract.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/frontend.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/mofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/mofile.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/plurals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/plurals.py -------------------------------------------------------------------------------- /bp_includes/external/babel/messages/tests/pofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/messages/tests/pofile.py -------------------------------------------------------------------------------- /bp_includes/external/babel/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/numbers.py -------------------------------------------------------------------------------- /bp_includes/external/babel/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/support.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/core.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/dates.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/localedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/localedata.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/numbers.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/support.py -------------------------------------------------------------------------------- /bp_includes/external/babel/tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/tests/util.py -------------------------------------------------------------------------------- /bp_includes/external/babel/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/babel/util.py -------------------------------------------------------------------------------- /bp_includes/external/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/github/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/github/github.py -------------------------------------------------------------------------------- /bp_includes/external/github/oauth_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/github/oauth_client.py -------------------------------------------------------------------------------- /bp_includes/external/httpagentparser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httpagentparser/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/httpagentparser/more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httpagentparser/more.py -------------------------------------------------------------------------------- /bp_includes/external/httpagentparser/trident.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httpagentparser/trident.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/LICENSE -------------------------------------------------------------------------------- /bp_includes/external/httplib2/OWNERS: -------------------------------------------------------------------------------- 1 | file:../OWNERS.apphosting 2 | -------------------------------------------------------------------------------- /bp_includes/external/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/cacerts.txt -------------------------------------------------------------------------------- /bp_includes/external/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/iri2uri.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/socks.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/brokensocket/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/brokensocket/socket.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/functional/test_proxies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/functional/test_proxies.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/miniserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/miniserver.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/other_cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/other_cacerts.txt -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/smoke_test.py -------------------------------------------------------------------------------- /bp_includes/external/httplib2/test/test_no_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/httplib2/test/test_no_socket.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/exceptions.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/linkedin.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/models.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/server.py -------------------------------------------------------------------------------- /bp_includes/external/linkedin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/linkedin/utils.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/exceptions.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/gae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/gae.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/lazy.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/reference.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/tzfile.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/tzinfo.py -------------------------------------------------------------------------------- /bp_includes/external/pytz/zoneinfo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/pytz/zoneinfo.zip -------------------------------------------------------------------------------- /bp_includes/external/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/adapters.py -------------------------------------------------------------------------------- /bp_includes/external/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/api.py -------------------------------------------------------------------------------- /bp_includes/external/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/auth.py -------------------------------------------------------------------------------- /bp_includes/external/requests/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/cacert.pem -------------------------------------------------------------------------------- /bp_includes/external/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/certs.py -------------------------------------------------------------------------------- /bp_includes/external/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/compat.py -------------------------------------------------------------------------------- /bp_includes/external/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/cookies.py -------------------------------------------------------------------------------- /bp_includes/external/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/exceptions.py -------------------------------------------------------------------------------- /bp_includes/external/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/hooks.py -------------------------------------------------------------------------------- /bp_includes/external/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/models.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/README.rst -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/big5freq.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/big5prober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/chardetect.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/compat.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/constants.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/escprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/escsm.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/_collections.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/connection.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/fields.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/filepost.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/packages/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/packages/ordered_dict.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/request.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/response.py -------------------------------------------------------------------------------- /bp_includes/external/requests/packages/urllib3/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/packages/urllib3/util.py -------------------------------------------------------------------------------- /bp_includes/external/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/sessions.py -------------------------------------------------------------------------------- /bp_includes/external/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/status_codes.py -------------------------------------------------------------------------------- /bp_includes/external/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/structures.py -------------------------------------------------------------------------------- /bp_includes/external/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/requests/utils.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/compat.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/appengine/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/appengine/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/appengine/db.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/appengine/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/appengine/fields.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/csrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/csrf/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/csrf/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/csrf/fields.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/csrf/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/csrf/form.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/csrf/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/csrf/session.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/dateutil/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/dateutil/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/dateutil/fields.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/django/fields.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/django/i18n.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/django/orm.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/django/templatetags/wtforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/django/templatetags/wtforms.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/i18n/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/i18n/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/i18n/form.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/i18n/messages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/i18n/messages/README.txt -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/i18n/messages/wtforms.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/i18n/messages/wtforms.pot -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/i18n/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/i18n/utils.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/sqlalchemy/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/sqlalchemy/fields.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/sqlalchemy/orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/sqlalchemy/orm.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/ext/sqlalchemy/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/ext/sqlalchemy/validators.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/fields/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/fields/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/fields/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/fields/core.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/fields/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/fields/simple.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/form.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/validators.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/widgets/__init__.py -------------------------------------------------------------------------------- /bp_includes/external/wtforms/widgets/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/external/wtforms/widgets/core.py -------------------------------------------------------------------------------- /bp_includes/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/forms.py -------------------------------------------------------------------------------- /bp_includes/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/handlers.py -------------------------------------------------------------------------------- /bp_includes/lib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | -------------------------------------------------------------------------------- /bp_includes/lib/basehandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/basehandler.py -------------------------------------------------------------------------------- /bp_includes/lib/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/captcha.py -------------------------------------------------------------------------------- /bp_includes/lib/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/decorators.py -------------------------------------------------------------------------------- /bp_includes/lib/error_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/error_handler.py -------------------------------------------------------------------------------- /bp_includes/lib/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/facebook.py -------------------------------------------------------------------------------- /bp_includes/lib/i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/i18n.py -------------------------------------------------------------------------------- /bp_includes/lib/jinja_bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/jinja_bootstrap.py -------------------------------------------------------------------------------- /bp_includes/lib/oauth2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/oauth2.py -------------------------------------------------------------------------------- /bp_includes/lib/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/test_helpers.py -------------------------------------------------------------------------------- /bp_includes/lib/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/tests.py -------------------------------------------------------------------------------- /bp_includes/lib/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/twitter.py -------------------------------------------------------------------------------- /bp_includes/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/lib/utils.py -------------------------------------------------------------------------------- /bp_includes/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/models.py -------------------------------------------------------------------------------- /bp_includes/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/routes.py -------------------------------------------------------------------------------- /bp_includes/static/css/boilerplate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/css/boilerplate.min.css -------------------------------------------------------------------------------- /bp_includes/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /bp_includes/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /bp_includes/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /bp_includes/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /bp_includes/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /bp_includes/static/img/social-login-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/img/social-login-icons.png -------------------------------------------------------------------------------- /bp_includes/static/js/libs/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/bootstrap.min.js -------------------------------------------------------------------------------- /bp_includes/static/js/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/jquery.min.js -------------------------------------------------------------------------------- /bp_includes/static/js/libs/jquery_validation/localization/methods_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/jquery_validation/localization/methods_de.js -------------------------------------------------------------------------------- /bp_includes/static/js/libs/jquery_validation/localization/methods_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/jquery_validation/localization/methods_nl.js -------------------------------------------------------------------------------- /bp_includes/static/js/libs/jquery_validation/localization/methods_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/jquery_validation/localization/methods_pt.js -------------------------------------------------------------------------------- /bp_includes/static/js/libs/modernizr-2.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/libs/modernizr-2.7.1.min.js -------------------------------------------------------------------------------- /bp_includes/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/plugins.js -------------------------------------------------------------------------------- /bp_includes/static/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/js/script.js -------------------------------------------------------------------------------- /bp_includes/static/less/boilerplate.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/static/less/boilerplate.less -------------------------------------------------------------------------------- /bp_includes/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/bp_includes/tests.py -------------------------------------------------------------------------------- /cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/cron.yaml -------------------------------------------------------------------------------- /dos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/dos.yml -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/fabfile.py -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/index.yaml -------------------------------------------------------------------------------- /locale/babel.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/babel.cfg -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/cs_CZ/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/cs_CZ/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/cs_CZ/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/de_DE/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/de_DE/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/de_DE/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/es_ES/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/es_ES/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/es_ES/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/fr_FR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/fr_FR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/fr_FR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/id_ID/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/id_ID/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/id_ID/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/id_ID/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/it_IT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/it_IT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/it_IT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/ko_KR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ko_KR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/ko_KR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/messages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/messages.pot -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/nl_NL/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/nl_NL/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/nl_NL/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/pt_BR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/pt_BR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/pt_BR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/ru_RU/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/ru_RU/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/ru_RU/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/vi_VN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/vi_VN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/vi_VN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/zh_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locale/zh_CN/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/locale/zh_CN/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/main.py -------------------------------------------------------------------------------- /testrunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coto/gae-boilerplate/HEAD/testrunner.py --------------------------------------------------------------------------------