├── libs ├── __init__.py ├── flaskext │ └── __init__.py ├── mako │ ├── ext │ │ ├── __init__.py │ │ └── preprocessors.py │ └── __init__.py ├── flask │ ├── testsuite │ │ ├── test_apps │ │ │ ├── flask_broken │ │ │ │ ├── b.py │ │ │ │ └── __init__.py │ │ │ ├── flaskext │ │ │ │ ├── __init__.py │ │ │ │ ├── oldext_simple.py │ │ │ │ └── oldext_package │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── submodule.py │ │ │ ├── moduleapp │ │ │ │ ├── apps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ └── test.css │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── templates │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── blueprintapp │ │ │ │ ├── apps │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── admin │ │ │ │ │ │ ├── static │ │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ └── test.css │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ └── admin │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── __init__.py │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── templates │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ └── __init__.py │ │ │ │ └── __init__.py │ │ │ ├── flask_newext_simple.py │ │ │ ├── subdomaintestmodule │ │ │ │ ├── static │ │ │ │ │ └── hello.txt │ │ │ │ └── __init__.py │ │ │ ├── flask_newext_package │ │ │ │ ├── __init__.py │ │ │ │ └── submodule.py │ │ │ ├── importerror.py │ │ │ ├── path │ │ │ │ └── installed_package │ │ │ │ │ └── __init__.py │ │ │ ├── lib │ │ │ │ └── python2.5 │ │ │ │ │ └── site-packages │ │ │ │ │ ├── site_app.py │ │ │ │ │ └── site_package │ │ │ │ │ └── __init__.py │ │ │ ├── main_app.py │ │ │ ├── config_module_app.py │ │ │ └── config_package_app │ │ │ │ └── __init__.py │ │ ├── templates │ │ │ ├── mail.txt │ │ │ ├── nested │ │ │ │ └── nested.txt │ │ │ ├── simple_template.html │ │ │ ├── template_filter.html │ │ │ ├── context_template.html │ │ │ ├── _macro.html │ │ │ └── escaping_template.html │ │ ├── static │ │ │ └── index.html │ │ ├── examples.py │ │ ├── deprecations.py │ │ └── subclassing.py │ ├── session.py │ ├── ext │ │ └── __init__.py │ ├── globals.py │ ├── module.py │ ├── logging.py │ ├── __init__.py │ └── exceptions.py ├── werkzeug │ ├── testsuite │ │ ├── res │ │ │ └── test.txt │ │ ├── multipart │ │ │ ├── ie6-2png1txt │ │ │ │ ├── text.txt │ │ │ │ ├── file1.png │ │ │ │ ├── file2.png │ │ │ │ └── request.txt │ │ │ ├── firefox3-2png1txt │ │ │ │ ├── text.txt │ │ │ │ ├── file1.png │ │ │ │ ├── file2.png │ │ │ │ └── request.txt │ │ │ ├── opera8-2png1txt │ │ │ │ ├── text.txt │ │ │ │ ├── file1.png │ │ │ │ ├── file2.png │ │ │ │ └── request.txt │ │ │ ├── webkit3-2png1txt │ │ │ │ ├── text.txt │ │ │ │ ├── file1.png │ │ │ │ ├── file2.png │ │ │ │ └── request.txt │ │ │ ├── firefox3-2pnglongtext │ │ │ │ ├── text.txt │ │ │ │ ├── file1.png │ │ │ │ ├── file2.png │ │ │ │ └── request.txt │ │ │ ├── ie7_full_path_request.txt │ │ │ └── collect.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ └── securecookie.py │ │ └── security.py │ ├── debug │ │ └── shared │ │ │ ├── less.png │ │ │ ├── more.png │ │ │ ├── source.png │ │ │ ├── ubuntu.ttf │ │ │ └── console.png │ └── contrib │ │ ├── __init__.py │ │ └── limiter.py ├── alembic │ ├── templates │ │ ├── generic │ │ │ ├── README │ │ │ ├── script.py.mako │ │ │ └── alembic.ini.mako │ │ ├── multidb │ │ │ ├── README │ │ │ ├── script.py.mako │ │ │ └── alembic.ini.mako │ │ └── pylons │ │ │ ├── README │ │ │ ├── alembic.ini.mako │ │ │ └── script.py.mako │ ├── ddl │ │ ├── __init__.py │ │ ├── postgresql.py │ │ └── sqlite.py │ ├── __init__.py │ ├── op.py │ └── context.py ├── babel │ ├── global.dat │ ├── localedata │ │ ├── aa.dat │ │ ├── af.dat │ │ ├── ak.dat │ │ ├── am.dat │ │ ├── ar.dat │ │ ├── as.dat │ │ ├── az.dat │ │ ├── be.dat │ │ ├── bg.dat │ │ ├── bn.dat │ │ ├── bs.dat │ │ ├── byn.dat │ │ ├── ca.dat │ │ ├── cch.dat │ │ ├── cop.dat │ │ ├── cs.dat │ │ ├── cy.dat │ │ ├── da.dat │ │ ├── de.dat │ │ ├── dv.dat │ │ ├── dz.dat │ │ ├── ee.dat │ │ ├── el.dat │ │ ├── en.dat │ │ ├── eo.dat │ │ ├── es.dat │ │ ├── et.dat │ │ ├── eu.dat │ │ ├── fa.dat │ │ ├── fi.dat │ │ ├── fil.dat │ │ ├── fo.dat │ │ ├── fr.dat │ │ ├── fur.dat │ │ ├── ga.dat │ │ ├── gaa.dat │ │ ├── gez.dat │ │ ├── gl.dat │ │ ├── gu.dat │ │ ├── gv.dat │ │ ├── ha.dat │ │ ├── haw.dat │ │ ├── he.dat │ │ ├── hi.dat │ │ ├── hr.dat │ │ ├── hu.dat │ │ ├── hy.dat │ │ ├── ia.dat │ │ ├── id.dat │ │ ├── ig.dat │ │ ├── ii.dat │ │ ├── in.dat │ │ ├── is.dat │ │ ├── it.dat │ │ ├── iu.dat │ │ ├── iw.dat │ │ ├── ja.dat │ │ ├── ka.dat │ │ ├── kaj.dat │ │ ├── kam.dat │ │ ├── kcg.dat │ │ ├── kfo.dat │ │ ├── kk.dat │ │ ├── kl.dat │ │ ├── km.dat │ │ ├── kn.dat │ │ ├── ko.dat │ │ ├── kok.dat │ │ ├── kpe.dat │ │ ├── ku.dat │ │ ├── kw.dat │ │ ├── ky.dat │ │ ├── ln.dat │ │ ├── lo.dat │ │ ├── lt.dat │ │ ├── lv.dat │ │ ├── mk.dat │ │ ├── ml.dat │ │ ├── mn.dat │ │ ├── mo.dat │ │ ├── mr.dat │ │ ├── ms.dat │ │ ├── mt.dat │ │ ├── my.dat │ │ ├── nb.dat │ │ ├── ne.dat │ │ ├── nl.dat │ │ ├── nn.dat │ │ ├── no.dat │ │ ├── nr.dat │ │ ├── nso.dat │ │ ├── ny.dat │ │ ├── om.dat │ │ ├── or.dat │ │ ├── pa.dat │ │ ├── pl.dat │ │ ├── ps.dat │ │ ├── pt.dat │ │ ├── ro.dat │ │ ├── ru.dat │ │ ├── rw.dat │ │ ├── sa.dat │ │ ├── se.dat │ │ ├── sh.dat │ │ ├── si.dat │ │ ├── sid.dat │ │ ├── sk.dat │ │ ├── sl.dat │ │ ├── so.dat │ │ ├── sq.dat │ │ ├── sr.dat │ │ ├── ss.dat │ │ ├── st.dat │ │ ├── sv.dat │ │ ├── sw.dat │ │ ├── syr.dat │ │ ├── ta.dat │ │ ├── te.dat │ │ ├── tg.dat │ │ ├── th.dat │ │ ├── ti.dat │ │ ├── tig.dat │ │ ├── tl.dat │ │ ├── tn.dat │ │ ├── to.dat │ │ ├── tr.dat │ │ ├── trv.dat │ │ ├── ts.dat │ │ ├── tt.dat │ │ ├── ug.dat │ │ ├── uk.dat │ │ ├── ur.dat │ │ ├── uz.dat │ │ ├── ve.dat │ │ ├── vi.dat │ │ ├── wal.dat │ │ ├── wo.dat │ │ ├── xh.dat │ │ ├── yo.dat │ │ ├── zh.dat │ │ ├── zu.dat │ │ ├── aa_DJ.dat │ │ ├── aa_ER.dat │ │ ├── aa_ET.dat │ │ ├── af_NA.dat │ │ ├── af_ZA.dat │ │ ├── ak_GH.dat │ │ ├── am_ET.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_IN.dat │ │ ├── az_AZ.dat │ │ ├── be_BY.dat │ │ ├── bg_BG.dat │ │ ├── bn_BD.dat │ │ ├── bn_IN.dat │ │ ├── bs_BA.dat │ │ ├── byn_ER.dat │ │ ├── ca_ES.dat │ │ ├── cch_NG.dat │ │ ├── cs_CZ.dat │ │ ├── cy_GB.dat │ │ ├── da_DK.dat │ │ ├── de_AT.dat │ │ ├── de_BE.dat │ │ ├── de_CH.dat │ │ ├── de_DE.dat │ │ ├── de_LI.dat │ │ ├── de_LU.dat │ │ ├── dv_MV.dat │ │ ├── dz_BT.dat │ │ ├── ee_GH.dat │ │ ├── ee_TG.dat │ │ ├── el_CY.dat │ │ ├── el_GR.dat │ │ ├── en_AS.dat │ │ ├── en_AU.dat │ │ ├── en_BE.dat │ │ ├── en_BW.dat │ │ ├── en_BZ.dat │ │ ├── en_CA.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_TT.dat │ │ ├── en_UM.dat │ │ ├── en_US.dat │ │ ├── en_VI.dat │ │ ├── en_ZA.dat │ │ ├── en_ZW.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_EE.dat │ │ ├── eu_ES.dat │ │ ├── fa_AF.dat │ │ ├── fa_IR.dat │ │ ├── fi_FI.dat │ │ ├── fil_PH.dat │ │ ├── fo_FO.dat │ │ ├── fr_BE.dat │ │ ├── fr_CA.dat │ │ ├── fr_CH.dat │ │ ├── fr_FR.dat │ │ ├── fr_LU.dat │ │ ├── fr_MC.dat │ │ ├── fr_SN.dat │ │ ├── fur_IT.dat │ │ ├── ga_IE.dat │ │ ├── gaa_GH.dat │ │ ├── gez_ER.dat │ │ ├── gez_ET.dat │ │ ├── gl_ES.dat │ │ ├── gu_IN.dat │ │ ├── gv_GB.dat │ │ ├── ha_GH.dat │ │ ├── ha_NE.dat │ │ ├── ha_NG.dat │ │ ├── ha_SD.dat │ │ ├── haw_US.dat │ │ ├── he_IL.dat │ │ ├── hi_IN.dat │ │ ├── hr_HR.dat │ │ ├── hu_HU.dat │ │ ├── hy_AM.dat │ │ ├── id_ID.dat │ │ ├── ig_NG.dat │ │ ├── ii_CN.dat │ │ ├── is_IS.dat │ │ ├── it_CH.dat │ │ ├── it_IT.dat │ │ ├── ja_JP.dat │ │ ├── ka_GE.dat │ │ ├── kaj_NG.dat │ │ ├── kam_KE.dat │ │ ├── kcg_NG.dat │ │ ├── kfo_CI.dat │ │ ├── kk_KZ.dat │ │ ├── kl_GL.dat │ │ ├── km_KH.dat │ │ ├── kn_IN.dat │ │ ├── ko_KR.dat │ │ ├── kok_IN.dat │ │ ├── kpe_GN.dat │ │ ├── kpe_LR.dat │ │ ├── ku_TR.dat │ │ ├── kw_GB.dat │ │ ├── ky_KG.dat │ │ ├── ln_CD.dat │ │ ├── ln_CG.dat │ │ ├── lo_LA.dat │ │ ├── lt_LT.dat │ │ ├── lv_LV.dat │ │ ├── mk_MK.dat │ │ ├── ml_IN.dat │ │ ├── mn_CN.dat │ │ ├── mn_MN.dat │ │ ├── mr_IN.dat │ │ ├── ms_BN.dat │ │ ├── ms_MY.dat │ │ ├── mt_MT.dat │ │ ├── my_MM.dat │ │ ├── nb_NO.dat │ │ ├── ne_IN.dat │ │ ├── ne_NP.dat │ │ ├── nl_BE.dat │ │ ├── nl_NL.dat │ │ ├── nn_NO.dat │ │ ├── nr_ZA.dat │ │ ├── nso_ZA.dat │ │ ├── ny_MW.dat │ │ ├── om_ET.dat │ │ ├── om_KE.dat │ │ ├── or_IN.dat │ │ ├── pa_IN.dat │ │ ├── pa_PK.dat │ │ ├── pl_PL.dat │ │ ├── ps_AF.dat │ │ ├── pt_BR.dat │ │ ├── pt_PT.dat │ │ ├── ro_MD.dat │ │ ├── ro_RO.dat │ │ ├── root.dat │ │ ├── ru_RU.dat │ │ ├── ru_UA.dat │ │ ├── rw_RW.dat │ │ ├── sa_IN.dat │ │ ├── se_FI.dat │ │ ├── se_NO.dat │ │ ├── sh_BA.dat │ │ ├── sh_CS.dat │ │ ├── sh_YU.dat │ │ ├── si_LK.dat │ │ ├── sid_ET.dat │ │ ├── sk_SK.dat │ │ ├── sl_SI.dat │ │ ├── so_DJ.dat │ │ ├── so_ET.dat │ │ ├── so_KE.dat │ │ ├── so_SO.dat │ │ ├── sq_AL.dat │ │ ├── sr_BA.dat │ │ ├── sr_CS.dat │ │ ├── sr_ME.dat │ │ ├── sr_RS.dat │ │ ├── sr_YU.dat │ │ ├── ss_SZ.dat │ │ ├── ss_ZA.dat │ │ ├── st_LS.dat │ │ ├── st_ZA.dat │ │ ├── sv_FI.dat │ │ ├── sv_SE.dat │ │ ├── sw_KE.dat │ │ ├── sw_TZ.dat │ │ ├── syr_SY.dat │ │ ├── ta_IN.dat │ │ ├── te_IN.dat │ │ ├── tg_TJ.dat │ │ ├── th_TH.dat │ │ ├── ti_ER.dat │ │ ├── ti_ET.dat │ │ ├── tig_ER.dat │ │ ├── tn_ZA.dat │ │ ├── to_TO.dat │ │ ├── tr_TR.dat │ │ ├── ts_ZA.dat │ │ ├── tt_RU.dat │ │ ├── ug_CN.dat │ │ ├── uk_UA.dat │ │ ├── ur_IN.dat │ │ ├── ur_PK.dat │ │ ├── uz_AF.dat │ │ ├── uz_UZ.dat │ │ ├── ve_ZA.dat │ │ ├── vi_VN.dat │ │ ├── wal_ET.dat │ │ ├── wo_SN.dat │ │ ├── xh_ZA.dat │ │ ├── yo_NG.dat │ │ ├── zh_CN.dat │ │ ├── zh_HK.dat │ │ ├── zh_MO.dat │ │ ├── zh_SG.dat │ │ ├── zh_TW.dat │ │ ├── zu_ZA.dat │ │ ├── az_Cyrl.dat │ │ ├── az_Latn.dat │ │ ├── en_Dsrt.dat │ │ ├── en_Shaw.dat │ │ ├── ha_Arab.dat │ │ ├── ha_Latn.dat │ │ ├── kk_Cyrl.dat │ │ ├── ku_Arab.dat │ │ ├── ku_Latn.dat │ │ ├── mn_Cyrl.dat │ │ ├── mn_Mong.dat │ │ ├── pa_Arab.dat │ │ ├── pa_Guru.dat │ │ ├── sr_Cyrl.dat │ │ ├── sr_Latn.dat │ │ ├── tg_Cyrl.dat │ │ ├── ug_Arab.dat │ │ ├── uz_Arab.dat │ │ ├── uz_Cyrl.dat │ │ ├── uz_Latn.dat │ │ ├── wo_Latn.dat │ │ ├── zh_Hans.dat │ │ ├── zh_Hant.dat │ │ ├── aa_ER_SAAHO.dat │ │ ├── az_Cyrl_AZ.dat │ │ ├── az_Latn_AZ.dat │ │ ├── el_POLYTON.dat │ │ ├── en_Dsrt_US.dat │ │ ├── en_US_POSIX.dat │ │ ├── ha_Arab_NG.dat │ │ ├── ha_Arab_SD.dat │ │ ├── ha_Latn_GH.dat │ │ ├── ha_Latn_NE.dat │ │ ├── ha_Latn_NG.dat │ │ ├── kk_Cyrl_KZ.dat │ │ ├── ku_Latn_TR.dat │ │ ├── mn_Cyrl_MN.dat │ │ ├── mn_Mong_CN.dat │ │ ├── pa_Arab_PK.dat │ │ ├── pa_Guru_IN.dat │ │ ├── sr_Cyrl_BA.dat │ │ ├── sr_Cyrl_CS.dat │ │ ├── sr_Cyrl_ME.dat │ │ ├── sr_Cyrl_RS.dat │ │ ├── sr_Cyrl_YU.dat │ │ ├── sr_Latn_BA.dat │ │ ├── sr_Latn_CS.dat │ │ ├── sr_Latn_ME.dat │ │ ├── sr_Latn_RS.dat │ │ ├── sr_Latn_YU.dat │ │ ├── tg_Cyrl_TJ.dat │ │ ├── ug_Arab_CN.dat │ │ ├── uz_Arab_AF.dat │ │ ├── uz_Cyrl_UZ.dat │ │ ├── uz_Latn_UZ.dat │ │ ├── wo_Latn_SN.dat │ │ ├── zh_Hans_CN.dat │ │ ├── zh_Hans_HK.dat │ │ ├── zh_Hans_MO.dat │ │ ├── zh_Hans_SG.dat │ │ ├── zh_Hant_HK.dat │ │ ├── zh_Hant_MO.dat │ │ ├── zh_Hant_TW.dat │ │ └── hy_AM_REVISED.dat │ ├── messages │ │ └── __init__.py │ └── __init__.py ├── blinker │ └── __init__.py └── markdown │ ├── __version__.py │ └── extensions │ ├── nl2br.py │ ├── sane_lists.py │ ├── smart_strong.py │ └── __init__.py ├── translations ├── __init__.py ├── en │ └── LC_MESSAGES │ │ └── messages.mo ├── zh_CN │ └── LC_MESSAGES │ │ └── messages.mo ├── babel.cfg ├── config.py ├── pybabel_compile.py ├── pybabel_init.py └── pybabel_update.py ├── db_migrate ├── README └── script.py.mako ├── static ├── favicon.ico ├── images │ ├── next.png │ ├── prev.png │ ├── close.png │ ├── search.png │ ├── loading.gif │ ├── zoom_in.cur │ ├── pin_sticker.png │ ├── loading_alpha.gif │ └── posts_loading.gif └── assets │ ├── pagedown │ └── wmd-buttons.png │ ├── google-code-prettify │ ├── lang-go.js │ ├── lang-lua.js │ ├── lang-ml.js │ ├── lang-sql.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-apollo.js │ ├── lang-scala.js │ ├── lang-proto.js │ ├── lang-yaml.js │ ├── lang-hs.js │ ├── prettify.css │ ├── lang-lisp.js │ ├── lang-css.js │ ├── lang-n.js │ ├── lang-clj.js │ └── desert.css │ ├── bootstrap │ └── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ ├── timeago │ ├── jquery.timeago.zh-CN.js │ ├── jquery.timeago.zh-TW.js │ └── jquery.timeago.en.js │ └── jquery.imagesloaded.min.js ├── templates ├── error.html ├── sitemap.xml ├── index.html └── share.html ├── app.yaml ├── app.conf ├── apis └── __init__.py ├── tools ├── __init__.py └── tools_local.py ├── model ├── common.py ├── __init__.py └── model_local.py ├── .gitignore ├── alembic.ini └── index.yaml /libs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/flaskext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/mako/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flask_broken/b.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/res/test.txt: -------------------------------------------------------------------------------- 1 | FOUND 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flaskext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db_migrate/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/mail.txt: -------------------------------------------------------------------------------- 1 | {{ foo}} Mail 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/nested/nested.txt: -------------------------------------------------------------------------------- 1 | I'm nested 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/flask/testsuite/static/index.html: -------------------------------------------------------------------------------- 1 |

Hello World!

2 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/ie6-2png1txt/text.txt: -------------------------------------------------------------------------------- 1 | ie6 sucks :-/ -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2png1txt/text.txt: -------------------------------------------------------------------------------- 1 | example text -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/opera8-2png1txt/text.txt: -------------------------------------------------------------------------------- 1 | blafasel öäü -------------------------------------------------------------------------------- /libs/alembic/templates/generic/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /libs/alembic/templates/multidb/README: -------------------------------------------------------------------------------- 1 | Rudimentary multi-database configuration. -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/simple_template.html: -------------------------------------------------------------------------------- 1 |

{{ whiskey }}

2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/template_filter.html: -------------------------------------------------------------------------------- 1 | {{ value|super_reverse }} -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flask_newext_simple.py: -------------------------------------------------------------------------------- 1 | ext_id = 'newext_simple' 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/admin/static/test.txt: -------------------------------------------------------------------------------- 1 | Admin File 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/admin/static/test.txt: -------------------------------------------------------------------------------- 1 | Admin File 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flaskext/oldext_simple.py: -------------------------------------------------------------------------------- 1 | ext_id = 'oldext_simple' 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/subdomaintestmodule/static/hello.txt: -------------------------------------------------------------------------------- 1 | Hello Subdomain 2 | -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/favicon.ico -------------------------------------------------------------------------------- /libs/babel/global.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/global.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/context_template.html: -------------------------------------------------------------------------------- 1 |

{{ value }}|{{ injected_value }} 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flask_newext_package/__init__.py: -------------------------------------------------------------------------------- 1 | ext_id = 'newext_package' 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/admin/static/css/test.css: -------------------------------------------------------------------------------- 1 | /* nested file */ 2 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/webkit3-2png1txt/text.txt: -------------------------------------------------------------------------------- 1 | this is another text with ümläüts -------------------------------------------------------------------------------- /static/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/next.png -------------------------------------------------------------------------------- /static/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/prev.png -------------------------------------------------------------------------------- /libs/alembic/templates/pylons/README: -------------------------------------------------------------------------------- 1 | Configuration that reads from a Pylons project environment. -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/admin/static/css/test.css: -------------------------------------------------------------------------------- 1 | /* nested file */ 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flaskext/oldext_package/__init__.py: -------------------------------------------------------------------------------- 1 | ext_id = 'oldext_package' 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/admin/templates/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Admin 2 | -------------------------------------------------------------------------------- /static/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/close.png -------------------------------------------------------------------------------- /static/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/search.png -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/_macro.html: -------------------------------------------------------------------------------- 1 | {% macro hello(name) %}Hello {{ name }}!{% endmacro %} 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/importerror.py: -------------------------------------------------------------------------------- 1 | # NoImportsTestCase 2 | raise NotImplementedError 3 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/frontend/templates/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Frontend 2 | -------------------------------------------------------------------------------- /static/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/loading.gif -------------------------------------------------------------------------------- /static/images/zoom_in.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/zoom_in.cur -------------------------------------------------------------------------------- /libs/alembic/ddl/__init__.py: -------------------------------------------------------------------------------- 1 | import postgresql, mysql, sqlite, mssql, oracle 2 | from impl import DefaultImpl -------------------------------------------------------------------------------- /libs/babel/localedata/aa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/aa.dat -------------------------------------------------------------------------------- /libs/babel/localedata/af.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/af.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ak.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ak.dat -------------------------------------------------------------------------------- /libs/babel/localedata/am.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/am.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar.dat -------------------------------------------------------------------------------- /libs/babel/localedata/as.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/as.dat -------------------------------------------------------------------------------- /libs/babel/localedata/az.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az.dat -------------------------------------------------------------------------------- /libs/babel/localedata/be.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/be.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bg.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bs.dat -------------------------------------------------------------------------------- /libs/babel/localedata/byn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/byn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ca.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ca.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cch.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cop.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cop.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cs.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cy.dat -------------------------------------------------------------------------------- /libs/babel/localedata/da.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/da.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de.dat -------------------------------------------------------------------------------- /libs/babel/localedata/dv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/dv.dat -------------------------------------------------------------------------------- /libs/babel/localedata/dz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/dz.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ee.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ee.dat -------------------------------------------------------------------------------- /libs/babel/localedata/el.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/el.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en.dat -------------------------------------------------------------------------------- /libs/babel/localedata/eo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/eo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es.dat -------------------------------------------------------------------------------- /libs/babel/localedata/et.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/et.dat -------------------------------------------------------------------------------- /libs/babel/localedata/eu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/eu.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fa.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fi.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fil.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fur.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ga.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ga.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gaa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gaa.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gez.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gez.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gu.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gv.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha.dat -------------------------------------------------------------------------------- /libs/babel/localedata/haw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/haw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/he.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/he.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hi.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hu.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hy.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hy.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ia.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ia.dat -------------------------------------------------------------------------------- /libs/babel/localedata/id.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/id.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ig.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ii.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ii.dat -------------------------------------------------------------------------------- /libs/babel/localedata/in.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/in.dat -------------------------------------------------------------------------------- /libs/babel/localedata/is.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/is.dat -------------------------------------------------------------------------------- /libs/babel/localedata/it.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/it.dat -------------------------------------------------------------------------------- /libs/babel/localedata/iu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/iu.dat -------------------------------------------------------------------------------- /libs/babel/localedata/iw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/iw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ja.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ja.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ka.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ka.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kaj.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kaj.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kam.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kcg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kcg.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kfo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kfo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kk.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/km.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/km.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ko.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ko.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kok.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kok.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kpe.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kpe.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ku.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ku.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ky.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ky.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ln.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ln.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lt.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lv.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mk.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ml.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ml.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ms.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ms.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mt.dat -------------------------------------------------------------------------------- /libs/babel/localedata/my.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/my.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nb.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nb.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ne.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ne.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/no.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/no.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nso.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nso.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ny.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ny.dat -------------------------------------------------------------------------------- /libs/babel/localedata/om.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/om.dat -------------------------------------------------------------------------------- /libs/babel/localedata/or.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/or.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ps.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ps.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pt.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ro.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ro.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ru.dat -------------------------------------------------------------------------------- /libs/babel/localedata/rw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/rw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sa.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sa.dat -------------------------------------------------------------------------------- /libs/babel/localedata/se.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/se.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sh.dat -------------------------------------------------------------------------------- /libs/babel/localedata/si.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/si.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sid.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sid.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sk.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/so.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/so.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sq.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sq.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ss.dat -------------------------------------------------------------------------------- /libs/babel/localedata/st.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/st.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sv.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/syr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/syr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ta.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ta.dat -------------------------------------------------------------------------------- /libs/babel/localedata/te.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/te.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tg.dat -------------------------------------------------------------------------------- /libs/babel/localedata/th.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/th.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ti.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ti.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tig.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tig.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/to.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/to.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tr.dat -------------------------------------------------------------------------------- /libs/babel/localedata/trv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/trv.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ts.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ts.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tt.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ug.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ug.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uk.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uk.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ur.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ur.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ve.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ve.dat -------------------------------------------------------------------------------- /libs/babel/localedata/vi.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/vi.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wal.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/xh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/xh.dat -------------------------------------------------------------------------------- /libs/babel/localedata/yo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/yo.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zu.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zu.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/admin/templates/admin/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Admin 2 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flask_newext_package/submodule.py: -------------------------------------------------------------------------------- 1 | def test_function(): 2 | return 42 3 | -------------------------------------------------------------------------------- /static/images/pin_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/pin_sticker.png -------------------------------------------------------------------------------- /libs/babel/localedata/aa_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/aa_DJ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/aa_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/aa_ER.dat -------------------------------------------------------------------------------- /libs/babel/localedata/aa_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/aa_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/af_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/af_NA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/af_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/af_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ak_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ak_GH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/am_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/am_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_AE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_AE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_BH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_BH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_DZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_DZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_EG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_EG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_IQ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_IQ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_JO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_JO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_KW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_KW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_LB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_LB.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_LY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_LY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_MA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_MA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_OM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_OM.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_QA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_QA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_SA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_SA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_SD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_SY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_TN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_TN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ar_YE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ar_YE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/as_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/as_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/az_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az_AZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/be_BY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/be_BY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bg_BG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bg_BG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bn_BD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bn_BD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bn_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/bs_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/bs_BA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/byn_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/byn_ER.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ca_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ca_ES.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cch_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cch_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cs_CZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cs_CZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/cy_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/cy_GB.dat -------------------------------------------------------------------------------- /libs/babel/localedata/da_DK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/da_DK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_AT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_AT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_BE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_CH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_DE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_DE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_LI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_LI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/de_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/de_LU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/dv_MV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/dv_MV.dat -------------------------------------------------------------------------------- /libs/babel/localedata/dz_BT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/dz_BT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ee_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ee_GH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ee_TG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ee_TG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/el_CY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/el_CY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/el_GR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/el_GR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_AS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_AS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_AU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_AU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_BE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_BW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_BW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_BZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_BZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_CA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_GB.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_GU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_GU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_HK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_IE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_JM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_JM.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_MH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_MH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_MP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_MP.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_MT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_NA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_NA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_NZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_NZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_PH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_PK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_SG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_TT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_TT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_UM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_UM.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_US.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_VI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_VI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_ZW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_ZW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_AR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_AR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_BO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_BO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_CL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_CL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_CO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_CO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_CR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_CR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_DO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_DO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_EC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_EC.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_ES.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_GT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_GT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_HN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_HN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_MX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_MX.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_NI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_NI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_PA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_PA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_PE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_PE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_PR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_PR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_PY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_PY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_SV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_SV.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_US.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_UY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_UY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/es_VE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/es_VE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/et_EE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/et_EE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/eu_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/eu_ES.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fa_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fa_AF.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fa_IR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fa_IR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fi_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fi_FI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fil_PH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fil_PH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fo_FO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fo_FO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_BE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_CA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_CA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_CH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_FR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_FR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_LU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_LU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_MC.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_MC.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fr_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fr_SN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/fur_IT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/fur_IT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ga_IE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ga_IE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gaa_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gaa_GH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gez_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gez_ER.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gez_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gez_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gl_ES.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gl_ES.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gu_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gu_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/gv_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/gv_GB.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_GH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_NE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_NE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_SD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/haw_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/haw_US.dat -------------------------------------------------------------------------------- /libs/babel/localedata/he_IL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/he_IL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hi_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hi_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hr_HR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hr_HR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hu_HU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hu_HU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/hy_AM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hy_AM.dat -------------------------------------------------------------------------------- /libs/babel/localedata/id_ID.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/id_ID.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ig_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ig_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ii_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ii_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/is_IS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/is_IS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/it_CH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/it_CH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/it_IT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/it_IT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ja_JP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ja_JP.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ka_GE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ka_GE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kaj_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kaj_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kam_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kam_KE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kcg_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kcg_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kfo_CI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kfo_CI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kk_KZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kk_KZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kl_GL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kl_GL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/km_KH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/km_KH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kn_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kn_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ko_KR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ko_KR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kok_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kok_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kpe_GN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kpe_GN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kpe_LR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kpe_LR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ku_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ku_TR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kw_GB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kw_GB.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ky_KG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ky_KG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ln_CD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ln_CD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ln_CG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ln_CG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lo_LA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lo_LA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lt_LT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lt_LT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/lv_LV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/lv_LV.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mk_MK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mk_MK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ml_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ml_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_MN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_MN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mr_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mr_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ms_BN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ms_BN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ms_MY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ms_MY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mt_MT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mt_MT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/my_MM.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/my_MM.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nb_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nb_NO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ne_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ne_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ne_NP.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ne_NP.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nl_BE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nl_BE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nl_NL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nl_NL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nn_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nn_NO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nr_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nr_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/nso_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/nso_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ny_MW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ny_MW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/om_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/om_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/om_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/om_KE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/or_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/or_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_PK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pl_PL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pl_PL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ps_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ps_AF.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pt_BR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pt_BR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pt_PT.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pt_PT.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ro_MD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ro_MD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ro_RO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ro_RO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/root.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/root.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ru_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ru_RU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ru_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ru_UA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/rw_RW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/rw_RW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sa_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sa_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/se_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/se_FI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/se_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/se_NO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sh_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sh_BA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sh_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sh_CS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sh_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sh_YU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/si_LK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/si_LK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sid_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sid_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sk_SK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sk_SK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sl_SI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sl_SI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/so_DJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/so_DJ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/so_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/so_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/so_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/so_KE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/so_SO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/so_SO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sq_AL.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sq_AL.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_BA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_CS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_ME.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_RS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_YU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ss_SZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ss_SZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ss_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ss_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/st_LS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/st_LS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/st_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/st_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sv_FI.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sv_FI.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sv_SE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sv_SE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sw_KE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sw_KE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sw_TZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sw_TZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/syr_SY.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/syr_SY.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ta_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ta_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/te_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/te_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tg_TJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tg_TJ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/th_TH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/th_TH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ti_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ti_ER.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ti_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ti_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tig_ER.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tig_ER.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tn_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tn_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/to_TO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/to_TO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tr_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tr_TR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ts_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ts_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tt_RU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tt_RU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ug_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ug_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uk_UA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uk_UA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ur_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ur_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ur_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ur_PK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_AF.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_UZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ve_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ve_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/vi_VN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/vi_VN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wal_ET.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wal_ET.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wo_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wo_SN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/xh_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/xh_ZA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/yo_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/yo_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_HK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_MO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_SG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_TW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_TW.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zu_ZA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zu_ZA.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flask_broken/__init__.py: -------------------------------------------------------------------------------- 1 | import flask.ext.broken.b 2 | import missing_module 3 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/flaskext/oldext_package/submodule.py: -------------------------------------------------------------------------------- 1 | def test_function(): 2 | return 42 3 | -------------------------------------------------------------------------------- /static/images/loading_alpha.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/loading_alpha.gif -------------------------------------------------------------------------------- /static/images/posts_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/images/posts_loading.gif -------------------------------------------------------------------------------- /libs/babel/localedata/az_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/az_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_Dsrt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_Dsrt.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_Shaw.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_Shaw.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Arab.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kk_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kk_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ku_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ku_Arab.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ku_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ku_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_Mong.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_Mong.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_Arab.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_Guru.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_Guru.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tg_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tg_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ug_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ug_Arab.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Arab.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Arab.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Cyrl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Cyrl.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wo_Latn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wo_Latn.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hans.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hans.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hant.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hant.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/frontend/templates/frontend/index.html: -------------------------------------------------------------------------------- 1 | Hello from the Frontend 2 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/text.txt: -------------------------------------------------------------------------------- 1 | --long text 2 | --with boundary 3 | --lookalikes-- -------------------------------------------------------------------------------- /libs/babel/localedata/aa_ER_SAAHO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/aa_ER_SAAHO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/az_Cyrl_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az_Cyrl_AZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/az_Latn_AZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/az_Latn_AZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/el_POLYTON.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/el_POLYTON.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_Dsrt_US.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_Dsrt_US.dat -------------------------------------------------------------------------------- /libs/babel/localedata/en_US_POSIX.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/en_US_POSIX.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Arab_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Arab_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Arab_SD.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Arab_SD.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Latn_GH.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Latn_GH.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Latn_NE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Latn_NE.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ha_Latn_NG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ha_Latn_NG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/kk_Cyrl_KZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/kk_Cyrl_KZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ku_Latn_TR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ku_Latn_TR.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_Cyrl_MN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_Cyrl_MN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/mn_Mong_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/mn_Mong_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_Arab_PK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_Arab_PK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/pa_Guru_IN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/pa_Guru_IN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl_BA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl_CS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl_ME.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl_RS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Cyrl_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Cyrl_YU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn_BA.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn_BA.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn_CS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn_CS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn_ME.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn_ME.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn_RS.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn_RS.dat -------------------------------------------------------------------------------- /libs/babel/localedata/sr_Latn_YU.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/sr_Latn_YU.dat -------------------------------------------------------------------------------- /libs/babel/localedata/tg_Cyrl_TJ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/tg_Cyrl_TJ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/ug_Arab_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/ug_Arab_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Arab_AF.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Arab_AF.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Cyrl_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Cyrl_UZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/uz_Latn_UZ.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/uz_Latn_UZ.dat -------------------------------------------------------------------------------- /libs/babel/localedata/wo_Latn_SN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/wo_Latn_SN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hans_CN.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hans_CN.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hans_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hans_HK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hans_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hans_MO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hans_SG.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hans_SG.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hant_HK.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hant_HK.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hant_MO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hant_MO.dat -------------------------------------------------------------------------------- /libs/babel/localedata/zh_Hant_TW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/zh_Hant_TW.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/path/installed_package/__init__.py: -------------------------------------------------------------------------------- 1 | import flask 2 | 3 | app = flask.Flask(__name__) 4 | -------------------------------------------------------------------------------- /libs/werkzeug/debug/shared/less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/debug/shared/less.png -------------------------------------------------------------------------------- /libs/werkzeug/debug/shared/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/debug/shared/more.png -------------------------------------------------------------------------------- /libs/werkzeug/debug/shared/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/debug/shared/source.png -------------------------------------------------------------------------------- /libs/werkzeug/debug/shared/ubuntu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/debug/shared/ubuntu.ttf -------------------------------------------------------------------------------- /libs/babel/localedata/hy_AM_REVISED.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/babel/localedata/hy_AM_REVISED.dat -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/lib/python2.5/site-packages/site_app.py: -------------------------------------------------------------------------------- 1 | import flask 2 | 3 | app = flask.Flask(__name__) 4 | -------------------------------------------------------------------------------- /libs/werkzeug/debug/shared/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/debug/shared/console.png -------------------------------------------------------------------------------- /static/assets/pagedown/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/pagedown/wmd-buttons.png -------------------------------------------------------------------------------- /translations/en/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/translations/en/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /translations/zh_CN/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/translations/zh_CN/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/lib/python2.5/site-packages/site_package/__init__.py: -------------------------------------------------------------------------------- 1 | import flask 2 | 3 | app = flask.Flask(__name__) 4 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-go.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-lua.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-ml.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-sql.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-tex.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-vb.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-vhdl.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-wiki.js -------------------------------------------------------------------------------- /templates/error.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block body %} 4 |

{{ _("Error") }} {{ error }}

5 | {% endblock %} 6 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/main_app.py: -------------------------------------------------------------------------------- 1 | import flask 2 | 3 | # Test Flask initialization with main module. 4 | app = flask.Flask('__main__') 5 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-apollo.js -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/google-code-prettify/lang-scala.js -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/subdomaintestmodule/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Module 2 | 3 | 4 | mod = Module(__name__, 'foo', subdomain='foo') 5 | -------------------------------------------------------------------------------- /static/assets/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/ie6-2png1txt/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/ie6-2png1txt/file1.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/ie6-2png1txt/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/ie6-2png1txt/file2.png -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/config_module_app.py: -------------------------------------------------------------------------------- 1 | import os 2 | import flask 3 | here = os.path.abspath(os.path.dirname(__file__)) 4 | app = flask.Flask(__name__) 5 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/ie6-2png1txt/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/ie6-2png1txt/request.txt -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/ie7_full_path_request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/ie7_full_path_request.txt -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/opera8-2png1txt/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/opera8-2png1txt/file1.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/opera8-2png1txt/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/opera8-2png1txt/file2.png -------------------------------------------------------------------------------- /static/assets/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/static/assets/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2png1txt/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2png1txt/file1.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2png1txt/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2png1txt/file2.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/opera8-2png1txt/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/opera8-2png1txt/request.txt -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/webkit3-2png1txt/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/webkit3-2png1txt/file1.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/webkit3-2png1txt/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/webkit3-2png1txt/file2.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/webkit3-2png1txt/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/webkit3-2png1txt/request.txt -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/config_package_app/__init__.py: -------------------------------------------------------------------------------- 1 | import os 2 | import flask 3 | here = os.path.abspath(os.path.dirname(__file__)) 4 | app = flask.Flask(__name__) 5 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2png1txt/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2png1txt/request.txt -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/file1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/file1.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/file2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/file2.png -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UlricQin/me/master/libs/werkzeug/testsuite/multipart/firefox3-2pnglongtext/request.txt -------------------------------------------------------------------------------- /translations/babel.cfg: -------------------------------------------------------------------------------- 1 | [python: *.py] 2 | [python: apis/**.py] 3 | [python: model/**.py] 4 | [python: tools/**.py] 5 | [jinja2: templates/**.html] 6 | extensions=jinja2.ext.autoescape,jinja2.ext.with_ 7 | -------------------------------------------------------------------------------- /libs/alembic/__init__.py: -------------------------------------------------------------------------------- 1 | from os import path 2 | 3 | __version__ = '0.4.2' 4 | 5 | package_dir = path.abspath(path.dirname(__file__)) 6 | 7 | 8 | from alembic import op 9 | from alembic import context 10 | 11 | -------------------------------------------------------------------------------- /libs/flask/testsuite/templates/escaping_template.html: -------------------------------------------------------------------------------- 1 | {{ text }} 2 | {{ html }} 3 | {% autoescape false %}{{ text }} 4 | {{ html }}{% endautoescape %} 5 | {% autoescape true %}{{ text }} 6 | {{ html }}{% endautoescape %} 7 | -------------------------------------------------------------------------------- /libs/alembic/op.py: -------------------------------------------------------------------------------- 1 | from alembic.operations import Operations 2 | from alembic import util 3 | 4 | # create proxy functions for 5 | # each method on the Operations class. 6 | util.create_module_class_proxy(Operations, globals(), locals()) 7 | -------------------------------------------------------------------------------- /templates/sitemap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | {% for page in sitemap %}{{ page.loc }}{{ page.lastmod }}{% endfor %} 4 | 5 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | from moduleapp.apps.admin import admin 5 | from moduleapp.apps.frontend import frontend 6 | app.register_module(admin) 7 | app.register_module(frontend) 8 | -------------------------------------------------------------------------------- /libs/alembic/context.py: -------------------------------------------------------------------------------- 1 | from alembic.environment import EnvironmentContext 2 | from alembic import util 3 | 4 | # create proxy functions for 5 | # each method on the EnvironmentContext class. 6 | util.create_module_class_proxy(EnvironmentContext, globals(), locals()) 7 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Module, render_template 2 | 3 | 4 | frontend = Module(__name__) 5 | 6 | 7 | @frontend.route('/') 8 | def index(): 9 | return render_template('frontend/index.html') 10 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | 3 | app = Flask(__name__) 4 | from blueprintapp.apps.admin import admin 5 | from blueprintapp.apps.frontend import frontend 6 | app.register_blueprint(admin) 7 | app.register_blueprint(frontend) 8 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/frontend/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint, render_template 2 | 3 | frontend = Blueprint('frontend', __name__, template_folder='templates') 4 | 5 | 6 | @frontend.route('/') 7 | def index(): 8 | return render_template('frontend/index.html') 9 | -------------------------------------------------------------------------------- /libs/mako/__init__.py: -------------------------------------------------------------------------------- 1 | # mako/__init__.py 2 | # Copyright (C) 2006-2012 the Mako authors and contributors 3 | # 4 | # This module is part of Mako and is released under 5 | # the MIT License: http://www.opensource.org/licenses/mit-license.php 6 | 7 | 8 | __version__ = '0.7.3' 9 | 10 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-proto.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]); 2 | -------------------------------------------------------------------------------- /libs/blinker/__init__.py: -------------------------------------------------------------------------------- 1 | from blinker.base import ( 2 | ANY, 3 | NamedSignal, 4 | Namespace, 5 | Signal, 6 | receiver_connected, 7 | signal, 8 | ) 9 | 10 | __all__ = [ 11 | 'ANY', 12 | 'NamedSignal', 13 | 'Namespace', 14 | 'Signal', 15 | 'receiver_connected', 16 | 'signal', 17 | ] 18 | 19 | 20 | __version__ = '1.2' 21 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/moduleapp/apps/admin/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Module, render_template 2 | 3 | 4 | admin = Module(__name__, url_prefix='/admin') 5 | 6 | 7 | @admin.route('/') 8 | def index(): 9 | return render_template('admin/index.html') 10 | 11 | 12 | @admin.route('/index2') 13 | def index2(): 14 | return render_template('./admin/index.html') 15 | -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | application: me-deepgully 2 | version: 1 3 | runtime: python27 4 | api_version: 1 5 | threadsafe: true 6 | 7 | handlers: 8 | - url: /favicon.ico 9 | static_files: static/favicon.ico 10 | upload: static/favicon.ico 11 | 12 | - url: /static 13 | static_dir: static 14 | 15 | - url: /.* 16 | script: index.application 17 | 18 | libraries: 19 | - name: jinja2 20 | version: "2.6" 21 | 22 | - name: PIL 23 | version: "1.1.7" 24 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-yaml.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]); 3 | -------------------------------------------------------------------------------- /libs/alembic/templates/pylons/alembic.ini.mako: -------------------------------------------------------------------------------- 1 | # a Pylons configuration. 2 | 3 | [alembic] 4 | # path to migration scripts 5 | script_location = ${script_location} 6 | 7 | # template used to generate migration files 8 | # file_template = %%(rev)s_%%(slug)s 9 | 10 | # set to 'true' to run the environment during 11 | # the 'revision' command, regardless of autogenerate 12 | # revision_environment = false 13 | 14 | pylons_config_file = ./development.ini 15 | 16 | # that's it ! -------------------------------------------------------------------------------- /app.conf: -------------------------------------------------------------------------------- 1 | handlers: 2 | - url : /__profiler__/.* 3 | script: index.py 4 | 5 | - url : /.* 6 | script: index.py 7 | 8 | - url : /favicon.ico 9 | script: /static/favicon.ico 10 | 11 | - url : /static/(.*) 12 | script: /static/$1 13 | 14 | - expire : .jpg modify 10 years 15 | - expire : .swf modify 10 years 16 | - expire : .png modify 10 years 17 | - expire : .gif modify 10 years 18 | - expire : .JPG modify 10 years 19 | - expire : .ico modify 10 years 20 | -------------------------------------------------------------------------------- /libs/flask/testsuite/test_apps/blueprintapp/apps/admin/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint, render_template 2 | 3 | admin = Blueprint('admin', __name__, url_prefix='/admin', 4 | template_folder='templates', 5 | static_folder='static') 6 | 7 | 8 | @admin.route('/') 9 | def index(): 10 | return render_template('admin/index.html') 11 | 12 | 13 | @admin.route('/index2') 14 | def index2(): 15 | return render_template('./admin/index.html') 16 | -------------------------------------------------------------------------------- /static/assets/timeago/jquery.timeago.zh-CN.js: -------------------------------------------------------------------------------- 1 | // Simplified Chinese 2 | jQuery.timeago.settings.strings = { 3 | prefixAgo: null, 4 | prefixFromNow: "从现在开始", 5 | suffixAgo: "之前", 6 | suffixFromNow: null, 7 | seconds: "不到 1 分钟", 8 | minute: "大约 1 分钟", 9 | minutes: "%d 分钟", 10 | hour: "大约 1 小时", 11 | hours: "大约 %d 小时", 12 | day: "1 天", 13 | days: "%d 天", 14 | month: "大约 1 个月", 15 | months: "%d 月", 16 | year: "大约 1 年", 17 | years: "%d 年", 18 | numbers: [], 19 | wordSeparator: "" 20 | }; -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block header %} 4 | {% endblock %} 5 | 6 | {% block css %} 7 | 8 | {% endblock %} 9 | 10 | {% block script %} 11 | 12 | {% endblock %} 13 | 14 | {% block body %} 15 | {% set template = "_%s.html"%category.template.lower() %} 16 | {% include template %} 17 | {% endblock %} 18 | -------------------------------------------------------------------------------- /db_migrate/script.py.mako: -------------------------------------------------------------------------------- 1 | """${message} 2 | 3 | Revision ID: ${up_revision} 4 | Revises: ${down_revision} 5 | Create Date: ${create_date} 6 | 7 | """ 8 | 9 | # revision identifiers, used by Alembic. 10 | revision = ${repr(up_revision)} 11 | down_revision = ${repr(down_revision)} 12 | 13 | from alembic import op 14 | import sqlalchemy as sa 15 | ${imports if imports else ""} 16 | 17 | def upgrade(): 18 | ${upgrades if upgrades else "pass"} 19 | 20 | 21 | def downgrade(): 22 | ${downgrades if downgrades else "pass"} 23 | -------------------------------------------------------------------------------- /static/assets/timeago/jquery.timeago.zh-TW.js: -------------------------------------------------------------------------------- 1 | // Traditional Chinese, zh-tw 2 | jQuery.timeago.settings.strings = { 3 | prefixAgo: null, 4 | prefixFromNow: "從現在開始", 5 | suffixAgo: "之前", 6 | suffixFromNow: null, 7 | seconds: "不到 1 分鐘", 8 | minute: "大約 1 分鐘", 9 | minutes: "%d 分鐘", 10 | hour: "大約 1 小時", 11 | hours: "%d 小時", 12 | day: "大約 1 天", 13 | days: "%d 天", 14 | month: "大約 1 個月", 15 | months: "%d 個月", 16 | year: "大約 1 年", 17 | years: "%d 年", 18 | numbers: [], 19 | wordSeparator: "" 20 | }; 21 | -------------------------------------------------------------------------------- /libs/alembic/templates/generic/script.py.mako: -------------------------------------------------------------------------------- 1 | """${message} 2 | 3 | Revision ID: ${up_revision} 4 | Revises: ${down_revision} 5 | Create Date: ${create_date} 6 | 7 | """ 8 | 9 | # revision identifiers, used by Alembic. 10 | revision = ${repr(up_revision)} 11 | down_revision = ${repr(down_revision)} 12 | 13 | from alembic import op 14 | import sqlalchemy as sa 15 | ${imports if imports else ""} 16 | 17 | def upgrade(): 18 | ${upgrades if upgrades else "pass"} 19 | 20 | 21 | def downgrade(): 22 | ${downgrades if downgrades else "pass"} 23 | -------------------------------------------------------------------------------- /libs/alembic/templates/pylons/script.py.mako: -------------------------------------------------------------------------------- 1 | """${message} 2 | 3 | Revision ID: ${up_revision} 4 | Revises: ${down_revision} 5 | Create Date: ${create_date} 6 | 7 | """ 8 | 9 | # revision identifiers, used by Alembic. 10 | revision = ${repr(up_revision)} 11 | down_revision = ${repr(down_revision)} 12 | 13 | from alembic import op 14 | import sqlalchemy as sa 15 | ${imports if imports else ""} 16 | 17 | def upgrade(): 18 | ${upgrades if upgrades else "pass"} 19 | 20 | 21 | def downgrade(): 22 | ${downgrades if downgrades else "pass"} 23 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | werkzeug.testsuite.contrib 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Tests the contrib modules. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | import unittest 12 | from werkzeug.testsuite import iter_suites 13 | 14 | 15 | def suite(): 16 | suite = unittest.TestSuite() 17 | for other_suite in iter_suites(__name__): 18 | suite.addTest(other_suite) 19 | return suite 20 | -------------------------------------------------------------------------------- /libs/flask/session.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.session 4 | ~~~~~~~~~~~~~ 5 | 6 | This module used to flask with the session global so we moved it 7 | over to flask.sessions 8 | 9 | :copyright: (c) 2011 by Armin Ronacher. 10 | :license: BSD, see LICENSE for more details. 11 | """ 12 | 13 | from warnings import warn 14 | warn(DeprecationWarning('please use flask.sessions instead')) 15 | 16 | from .sessions import SecureCookieSession, NullSession 17 | 18 | Session = SecureCookieSession 19 | _NullSession = NullSession 20 | -------------------------------------------------------------------------------- /static/assets/timeago/jquery.timeago.en.js: -------------------------------------------------------------------------------- 1 | // English (Template) 2 | jQuery.timeago.settings.strings = { 3 | prefixAgo: null, 4 | prefixFromNow: null, 5 | suffixAgo: "ago", 6 | suffixFromNow: "from now", 7 | seconds: "less than a minute", 8 | minute: "about a minute", 9 | minutes: "%d minutes", 10 | hour: "about an hour", 11 | hours: "about %d hours", 12 | day: "a day", 13 | days: "%d days", 14 | month: "about a month", 15 | months: "%d months", 16 | year: "about a year", 17 | years: "%d years", 18 | wordSeparator: " ", 19 | numbers: [] 20 | }; 21 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-hs.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/, 2 | null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]); 3 | -------------------------------------------------------------------------------- /libs/babel/messages/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2007 Edgewall Software 4 | # All rights reserved. 5 | # 6 | # This software is licensed as described in the file COPYING, which 7 | # you should have received as part of this distribution. The terms 8 | # are also available at http://babel.edgewall.org/wiki/License. 9 | # 10 | # This software consists of voluntary contributions made by many 11 | # individuals. For the exact contribution history, see the revision 12 | # history and logs, available at http://babel.edgewall.org/log/. 13 | 14 | """Support for ``gettext`` message catalogs.""" 15 | 16 | from babel.messages.catalog import * 17 | -------------------------------------------------------------------------------- /libs/mako/ext/preprocessors.py: -------------------------------------------------------------------------------- 1 | # ext/preprocessors.py 2 | # Copyright (C) 2006-2012 the Mako authors and contributors 3 | # 4 | # This module is part of Mako and is released under 5 | # the MIT License: http://www.opensource.org/licenses/mit-license.php 6 | 7 | """preprocessing functions, used with the 'preprocessor' 8 | argument on Template, TemplateLookup""" 9 | 10 | import re 11 | 12 | def convert_comments(text): 13 | """preprocess old style comments. 14 | 15 | example: 16 | 17 | from mako.ext.preprocessors import convert_comments 18 | t = Template(..., preprocessor=preprocess_comments)""" 19 | return re.sub(r'(?<=\n)\s*#[^#]', "##", text) 20 | 21 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/prettify.css: -------------------------------------------------------------------------------- 1 | .pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#800}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:#606}.atv{color:#080}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} -------------------------------------------------------------------------------- /libs/werkzeug/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | werkzeug.contrib 4 | ~~~~~~~~~~~~~~~~ 5 | 6 | Contains user-submitted code that other users may find useful, but which 7 | is not part of the Werkzeug core. Anyone can write code for inclusion in 8 | the `contrib` package. All modules in this package are distributed as an 9 | add-on library and thus are not part of Werkzeug itself. 10 | 11 | This file itself is mostly for informational purposes and to tell the 12 | Python interpreter that `contrib` is a package. 13 | 14 | :copyright: (c) 2011 by the Werkzeug Team, see AUTHORS for more details. 15 | :license: BSD, see LICENSE for more details. 16 | """ 17 | -------------------------------------------------------------------------------- /translations/config.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | # available languages 17 | LANGUAGES = { 18 | "en": "English", 19 | "zh_CN": "简体中文", 20 | } 21 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-lisp.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a], 3 | ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]); 4 | -------------------------------------------------------------------------------- /apis/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | __all__ = [ 17 | "get_site_settings", "group_by", 18 | "User", "Category", "Post", "Photo", "Comment" 19 | ] 20 | 21 | from common import * 22 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | from settings import RUNTIME_ENV 17 | 18 | __all__ = [ 19 | "secret_hash", "unquote", "save_photo", "delete_file", 20 | ] 21 | 22 | from common import * 23 | 24 | exec("from tools_%s import *" % RUNTIME_ENV.split("_")[0]) in locals() 25 | -------------------------------------------------------------------------------- /translations/pybabel_compile.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | import os 17 | import sys 18 | 19 | if sys.platform == 'win32': 20 | pybabel = r"C:\Python27\Scripts\pybabel.exe" 21 | else: 22 | pybabel = "pybabel" 23 | 24 | os.system(pybabel + ' compile -d .') 25 | os.system("pause") 26 | -------------------------------------------------------------------------------- /model/common.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | UserRoles = ["User", "Admin", "Owner"] 17 | 18 | Templates = ["Timeline", "List", "Photo", "Text"] 19 | 20 | Orders = ["asc", "desc"] 21 | 22 | Welcome_Title = "Welcome to %s" 23 | Welcome_Post = "Welcome to %s \n\nPowered by [`ME@deepgully`](http://github.com/deepgully/me/)" 24 | -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | from settings import RUNTIME_ENV 17 | 18 | 19 | __all__ = [ 20 | "bind_app", 21 | "DBUser", "DBSiteSettings", "DBCategory", 22 | "DBPost", "DBPhoto", "DBComment", "DBTag", 23 | ] 24 | from common import * 25 | 26 | exec("from model_%s import *" % RUNTIME_ENV.split("_")[0]) in locals() 27 | -------------------------------------------------------------------------------- /libs/flask/ext/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.ext 4 | ~~~~~~~~~ 5 | 6 | Redirect imports for extensions. This module basically makes it possible 7 | for us to transition from flaskext.foo to flask_foo without having to 8 | force all extensions to upgrade at the same time. 9 | 10 | When a user does ``from flask.ext.foo import bar`` it will attempt to 11 | import ``from flask_foo import bar`` first and when that fails it will 12 | try to import ``from flaskext.foo import bar``. 13 | 14 | We're switching from namespace packages because it was just too painful for 15 | everybody involved. 16 | 17 | :copyright: (c) 2011 by Armin Ronacher. 18 | :license: BSD, see LICENSE for more details. 19 | """ 20 | 21 | 22 | def setup(): 23 | from ..exthook import ExtensionImporter 24 | importer = ExtensionImporter(['flask_%s', 'flaskext.%s'], __name__) 25 | importer.install() 26 | 27 | 28 | setup() 29 | del setup 30 | -------------------------------------------------------------------------------- /libs/markdown/__version__.py: -------------------------------------------------------------------------------- 1 | # 2 | # markdown/__version__.py 3 | # 4 | # version_info should conform to PEP 386 5 | # (major, minor, micro, alpha/beta/rc/final, #) 6 | # (1, 1, 2, 'alpha', 0) => "1.1.2.dev" 7 | # (1, 2, 0, 'beta', 2) => "1.2b2" 8 | version_info = (2, 3, 1, 'final', 0) 9 | 10 | def _get_version(): 11 | " Returns a PEP 386-compliant version number from version_info. " 12 | assert len(version_info) == 5 13 | assert version_info[3] in ('alpha', 'beta', 'rc', 'final') 14 | 15 | parts = 2 if version_info[2] == 0 else 3 16 | main = '.'.join(map(str, version_info[:parts])) 17 | 18 | sub = '' 19 | if version_info[3] == 'alpha' and version_info[4] == 0: 20 | # TODO: maybe append some sort of git info here?? 21 | sub = '.dev' 22 | elif version_info[3] != 'final': 23 | mapping = {'alpha': 'a', 'beta': 'b', 'rc': 'c'} 24 | sub = mapping[version_info[3]] + str(version_info[4]) 25 | 26 | return str(main + sub) 27 | 28 | version = _get_version() 29 | -------------------------------------------------------------------------------- /libs/alembic/templates/multidb/script.py.mako: -------------------------------------------------------------------------------- 1 | <%! 2 | import re 3 | 4 | %>"""${message} 5 | 6 | Revision ID: ${up_revision} 7 | Revises: ${down_revision} 8 | Create Date: ${create_date} 9 | 10 | """ 11 | 12 | # revision identifiers, used by Alembic. 13 | revision = ${repr(up_revision)} 14 | down_revision = ${repr(down_revision)} 15 | 16 | from alembic import op 17 | import sqlalchemy as sa 18 | ${imports if imports else ""} 19 | 20 | def upgrade(engine_name): 21 | eval("upgrade_%s" % engine_name)() 22 | 23 | 24 | def downgrade(engine_name): 25 | eval("downgrade_%s" % engine_name)() 26 | 27 | <% 28 | db_names = config.get_main_option("databases") 29 | %> 30 | 31 | ## generate an "upgrade_() / downgrade_()" function 32 | ## for each database name in the ini file. 33 | 34 | % for db_name in re.split(r',\s*', db_names): 35 | 36 | def upgrade_${db_name}(): 37 | ${context.get("%s_upgrades" % db_name, "pass")} 38 | 39 | 40 | def downgrade_${db_name}(): 41 | ${context.get("%s_downgrades" % db_name, "pass")} 42 | 43 | % endfor 44 | -------------------------------------------------------------------------------- /libs/markdown/extensions/nl2br.py: -------------------------------------------------------------------------------- 1 | """ 2 | NL2BR Extension 3 | =============== 4 | 5 | A Python-Markdown extension to treat newlines as hard breaks; like 6 | GitHub-flavored Markdown does. 7 | 8 | Usage: 9 | 10 | >>> import markdown 11 | >>> print markdown.markdown('line 1\\nline 2', extensions=['nl2br']) 12 |

line 1
13 | line 2

14 | 15 | Copyright 2011 [Brian Neal](http://deathofagremmie.com/) 16 | 17 | Dependencies: 18 | * [Python 2.4+](http://python.org) 19 | * [Markdown 2.1+](http://packages.python.org/Markdown/) 20 | 21 | """ 22 | 23 | from __future__ import absolute_import 24 | from __future__ import unicode_literals 25 | from . import Extension 26 | from ..inlinepatterns import SubstituteTagPattern 27 | 28 | BR_RE = r'\n' 29 | 30 | class Nl2BrExtension(Extension): 31 | 32 | def extendMarkdown(self, md, md_globals): 33 | br_tag = SubstituteTagPattern(BR_RE, 'br') 34 | md.inlinePatterns.add('nl', br_tag, '_end') 35 | 36 | 37 | def makeExtension(configs=None): 38 | return Nl2BrExtension(configs) 39 | -------------------------------------------------------------------------------- /static/assets/jquery.imagesloaded.min.js: -------------------------------------------------------------------------------- 1 | (function(c,q){var m="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";c.fn.imagesLoaded=function(f){function n(){var b=c(j),a=c(h);d&&(h.length?d.reject(e,b,a):d.resolve(e));c.isFunction(f)&&f.call(g,e,b,a)}function p(b){k(b.target,"error"===b.type)}function k(b,a){b.src===m||-1!==c.inArray(b,l)||(l.push(b),a?h.push(b):j.push(b),c.data(b,"imagesLoaded",{isBroken:a,src:b.src}),r&&d.notifyWith(c(b),[a,e,c(j),c(h)]),e.length===l.length&&(setTimeout(n),e.unbind(".imagesLoaded", 2 | p)))}var g=this,d=c.isFunction(c.Deferred)?c.Deferred():0,r=c.isFunction(d.notify),e=g.find("img").add(g.filter("img")),l=[],j=[],h=[];c.isPlainObject(f)&&c.each(f,function(b,a){if("callback"===b)f=a;else if(d)d[b](a)});e.length?e.bind("load.imagesLoaded error.imagesLoaded",p).each(function(b,a){var d=a.src,e=c.data(a,"imagesLoaded");if(e&&e.src===d)k(a,e.isBroken);else if(a.complete&&a.naturalWidth!==q)k(a,0===a.naturalWidth||0===a.naturalHeight);else if(a.readyState||a.complete)a.src=m,a.src=d}): 3 | n();return d?d.promise(g):g}})(jQuery); -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## Eclipse 3 | ################# 4 | 5 | .idea 6 | 7 | *.pydevproject 8 | .project 9 | .metadata 10 | bin/ 11 | tmp/ 12 | *.tmp 13 | *.bak 14 | *.swp 15 | *~.nib 16 | local.properties 17 | .classpath 18 | .settings/ 19 | .loadpath 20 | 21 | # External tool builders 22 | .externalToolBuilders/ 23 | 24 | # Locally stored "Eclipse launch configurations" 25 | *.launch 26 | 27 | # CDT-specific 28 | .cproject 29 | 30 | # PDT-specific 31 | .buildpath 32 | 33 | 34 | ############ 35 | ## Windows 36 | ############ 37 | 38 | # Windows image file caches 39 | Thumbs.db 40 | 41 | # Folder config file 42 | Desktop.ini 43 | 44 | 45 | ############# 46 | ## Python 47 | ############# 48 | 49 | *.py[co] 50 | 51 | # Packages 52 | *.egg 53 | *.egg-info 54 | dist 55 | build 56 | eggs 57 | parts 58 | bin 59 | var 60 | sdist 61 | develop-eggs 62 | .installed.cfg 63 | 64 | # Installer logs 65 | pip-log.txt 66 | 67 | # Unit test / coverage reports 68 | .coverage 69 | .tox 70 | 71 | #Translations 72 | 73 | 74 | #Mr Developer 75 | .mr.developer.cfg 76 | 77 | # Mac crap 78 | .DS_Store 79 | -------------------------------------------------------------------------------- /libs/flask/globals.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.globals 4 | ~~~~~~~~~~~~~ 5 | 6 | Defines all the global objects that are proxies to the current 7 | active context. 8 | 9 | :copyright: (c) 2011 by Armin Ronacher. 10 | :license: BSD, see LICENSE for more details. 11 | """ 12 | 13 | from functools import partial 14 | from werkzeug.local import LocalStack, LocalProxy 15 | 16 | def _lookup_object(name): 17 | top = _request_ctx_stack.top 18 | if top is None: 19 | raise RuntimeError('working outside of request context') 20 | return getattr(top, name) 21 | 22 | 23 | def _find_app(): 24 | top = _app_ctx_stack.top 25 | if top is None: 26 | raise RuntimeError('working outside of application context') 27 | return top.app 28 | 29 | 30 | # context locals 31 | _request_ctx_stack = LocalStack() 32 | _app_ctx_stack = LocalStack() 33 | current_app = LocalProxy(_find_app) 34 | request = LocalProxy(partial(_lookup_object, 'request')) 35 | session = LocalProxy(partial(_lookup_object, 'session')) 36 | g = LocalProxy(partial(_lookup_object, 'g')) 37 | -------------------------------------------------------------------------------- /libs/flask/testsuite/examples.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.testsuite.examples 4 | ~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Tests the examples. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | import os 12 | import unittest 13 | from flask.testsuite import add_to_path 14 | 15 | 16 | def setup_path(): 17 | example_path = os.path.join(os.path.dirname(__file__), 18 | os.pardir, os.pardir, 'examples') 19 | add_to_path(os.path.join(example_path, 'flaskr')) 20 | add_to_path(os.path.join(example_path, 'minitwit')) 21 | 22 | 23 | def suite(): 24 | setup_path() 25 | suite = unittest.TestSuite() 26 | try: 27 | from minitwit_tests import MiniTwitTestCase 28 | except ImportError: 29 | pass 30 | else: 31 | suite.addTest(unittest.makeSuite(MiniTwitTestCase)) 32 | try: 33 | from flaskr_tests import FlaskrTestCase 34 | except ImportError: 35 | pass 36 | else: 37 | suite.addTest(unittest.makeSuite(FlaskrTestCase)) 38 | return suite 39 | -------------------------------------------------------------------------------- /libs/alembic/templates/generic/alembic.ini.mako: -------------------------------------------------------------------------------- 1 | # A generic, single database configuration. 2 | 3 | [alembic] 4 | # path to migration scripts 5 | script_location = ${script_location} 6 | 7 | # template used to generate migration files 8 | # file_template = %%(rev)s_%%(slug)s 9 | 10 | # set to 'true' to run the environment during 11 | # the 'revision' command, regardless of autogenerate 12 | # revision_environment = false 13 | 14 | sqlalchemy.url = driver://user:pass@localhost/dbname 15 | 16 | 17 | # Logging configuration 18 | [loggers] 19 | keys = root,sqlalchemy,alembic 20 | 21 | [handlers] 22 | keys = console 23 | 24 | [formatters] 25 | keys = generic 26 | 27 | [logger_root] 28 | level = WARN 29 | handlers = console 30 | qualname = 31 | 32 | [logger_sqlalchemy] 33 | level = WARN 34 | handlers = 35 | qualname = sqlalchemy.engine 36 | 37 | [logger_alembic] 38 | level = INFO 39 | handlers = 40 | qualname = alembic 41 | 42 | [handler_console] 43 | class = StreamHandler 44 | args = (sys.stderr,) 45 | level = NOTSET 46 | formatter = generic 47 | 48 | [formatter_generic] 49 | format = %(levelname)-5.5s [%(name)s] %(message)s 50 | datefmt = %H:%M:%S 51 | -------------------------------------------------------------------------------- /translations/pybabel_init.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | import os 17 | import sys 18 | 19 | if sys.platform == 'win32': 20 | pybabel = r"C:\Python27\Scripts\pybabel.exe" 21 | else: 22 | pybabel = "pybabel" 23 | 24 | from config import LANGUAGES 25 | os.system(pybabel + ' extract -F babel.cfg -k lazy_gettext -k T -o messages.pot ..\\') 26 | 27 | for lang in LANGUAGES.keys(): 28 | os.system('%s init -i messages.pot -d . -l "%s"' % (pybabel, lang.replace("-","_"))) 29 | 30 | os.system("pause") 31 | os.unlink('messages.pot') 32 | 33 | -------------------------------------------------------------------------------- /translations/pybabel_update.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | import os 17 | import sys 18 | 19 | if sys.platform == 'win32': 20 | pybabel = r"C:\Python27\Scripts\pybabel.exe" 21 | else: 22 | pybabel = "pybabel" 23 | 24 | from config import LANGUAGES 25 | os.system(pybabel + ' extract -F babel.cfg -k lazy_gettext -k T -o messages.pot ..\\') 26 | 27 | for lang in LANGUAGES.keys(): 28 | os.system('%s update -i messages.pot -d . -l "%s"' % (pybabel, lang.replace("-","_"))) 29 | 30 | os.system("pause") 31 | os.unlink('messages.pot') 32 | 33 | -------------------------------------------------------------------------------- /libs/alembic/ddl/postgresql.py: -------------------------------------------------------------------------------- 1 | from alembic.ddl.impl import DefaultImpl 2 | from sqlalchemy import types as sqltypes 3 | import re 4 | 5 | class PostgresqlImpl(DefaultImpl): 6 | __dialect__ = 'postgresql' 7 | transactional_ddl = True 8 | 9 | def compare_server_default(self, inspector_column, 10 | metadata_column, 11 | rendered_metadata_default): 12 | 13 | # don't do defaults for SERIAL columns 14 | if metadata_column.primary_key and \ 15 | metadata_column is metadata_column.table._autoincrement_column: 16 | return False 17 | 18 | conn_col_default = inspector_column['default'] 19 | 20 | if None in (conn_col_default, rendered_metadata_default): 21 | return conn_col_default != rendered_metadata_default 22 | 23 | if metadata_column.type._type_affinity is not sqltypes.String: 24 | rendered_metadata_default = re.sub(r"^'|'$", "", rendered_metadata_default) 25 | 26 | return not self.connection.scalar( 27 | "SELECT %s = %s" % ( 28 | conn_col_default, 29 | rendered_metadata_default 30 | ) 31 | ) 32 | -------------------------------------------------------------------------------- /libs/alembic/templates/multidb/alembic.ini.mako: -------------------------------------------------------------------------------- 1 | # a multi-database configuration. 2 | 3 | [alembic] 4 | # path to migration scripts 5 | script_location = ${script_location} 6 | 7 | # template used to generate migration files 8 | # file_template = %%(rev)s_%%(slug)s 9 | 10 | # set to 'true' to run the environment during 11 | # the 'revision' command, regardless of autogenerate 12 | # revision_environment = false 13 | 14 | databases = engine1, engine2 15 | 16 | [engine1] 17 | sqlalchemy.url = driver://user:pass@localhost/dbname 18 | 19 | [engine2] 20 | sqlalchemy.url = driver://user:pass@localhost/dbname2 21 | 22 | 23 | # Logging configuration 24 | [loggers] 25 | keys = root,sqlalchemy,alembic 26 | 27 | [handlers] 28 | keys = console 29 | 30 | [formatters] 31 | keys = generic 32 | 33 | [logger_root] 34 | level = WARN 35 | handlers = console 36 | qualname = 37 | 38 | [logger_sqlalchemy] 39 | level = WARN 40 | handlers = 41 | qualname = sqlalchemy.engine 42 | 43 | [logger_alembic] 44 | level = INFO 45 | handlers = 46 | qualname = alembic 47 | 48 | [handler_console] 49 | class = StreamHandler 50 | args = (sys.stderr,) 51 | level = NOTSET 52 | formatter = generic 53 | 54 | [formatter_generic] 55 | format = %(levelname)-5.5s [%(name)s] %(message)s 56 | datefmt = %H:%M:%S 57 | -------------------------------------------------------------------------------- /libs/flask/testsuite/deprecations.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.testsuite.deprecations 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Tests deprecation support. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | 12 | from __future__ import with_statement 13 | 14 | import flask 15 | import unittest 16 | from flask.testsuite import FlaskTestCase, catch_warnings 17 | 18 | 19 | class DeprecationsTestCase(FlaskTestCase): 20 | 21 | def test_init_jinja_globals(self): 22 | class MyFlask(flask.Flask): 23 | def init_jinja_globals(self): 24 | self.jinja_env.globals['foo'] = '42' 25 | 26 | with catch_warnings() as log: 27 | app = MyFlask(__name__) 28 | @app.route('/') 29 | def foo(): 30 | return app.jinja_env.globals['foo'] 31 | 32 | c = app.test_client() 33 | self.assert_equal(c.get('/').data, '42') 34 | self.assert_equal(len(log), 1) 35 | self.assert_('init_jinja_globals' in str(log[0]['message'])) 36 | 37 | 38 | def suite(): 39 | suite = unittest.TestSuite() 40 | suite.addTest(unittest.makeSuite(DeprecationsTestCase)) 41 | return suite 42 | -------------------------------------------------------------------------------- /libs/werkzeug/contrib/limiter.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | werkzeug.contrib.limiter 4 | ~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | A middleware that limits incoming data. This works around problems with 7 | Trac_ or Django_ because those directly stream into the memory. 8 | 9 | .. _Trac: http://trac.edgewall.org/ 10 | .. _Django: http://www.djangoproject.com/ 11 | 12 | :copyright: (c) 2011 by the Werkzeug Team, see AUTHORS for more details. 13 | :license: BSD, see LICENSE for more details. 14 | """ 15 | from warnings import warn 16 | 17 | from werkzeug.wsgi import LimitedStream 18 | 19 | 20 | class StreamLimitMiddleware(object): 21 | """Limits the input stream to a given number of bytes. This is useful if 22 | you have a WSGI application that reads form data into memory (django for 23 | example) and you don't want users to harm the server by uploading tons of 24 | data. 25 | 26 | Default is 10MB 27 | """ 28 | 29 | def __init__(self, app, maximum_size=1024 * 1024 * 10): 30 | self.app = app 31 | self.maximum_size = maximum_size 32 | 33 | def __call__(self, environ, start_response): 34 | limit = min(self.maximum_size, int(environ.get('CONTENT_LENGTH') or 0)) 35 | environ['wsgi.input'] = LimitedStream(environ['wsgi.input'], limit) 36 | return self.app(environ, start_response) 37 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-n.js: -------------------------------------------------------------------------------- 1 | var a=null; 2 | PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\xa0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/, 3 | a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/, 4 | a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]); 5 | -------------------------------------------------------------------------------- /libs/flask/testsuite/subclassing.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.testsuite.subclassing 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Test that certain behavior of flask can be customized by 7 | subclasses. 8 | 9 | :copyright: (c) 2011 by Armin Ronacher. 10 | :license: BSD, see LICENSE for more details. 11 | """ 12 | import flask 13 | import unittest 14 | from StringIO import StringIO 15 | from logging import StreamHandler 16 | from flask.testsuite import FlaskTestCase 17 | 18 | 19 | class FlaskSubclassingTestCase(FlaskTestCase): 20 | 21 | def test_supressed_exception_logging(self): 22 | class SupressedFlask(flask.Flask): 23 | def log_exception(self, exc_info): 24 | pass 25 | 26 | out = StringIO() 27 | app = SupressedFlask(__name__) 28 | app.logger_name = 'flask_tests/test_supressed_exception_logging' 29 | app.logger.addHandler(StreamHandler(out)) 30 | 31 | @app.route('/') 32 | def index(): 33 | 1/0 34 | 35 | rv = app.test_client().get('/') 36 | self.assert_equal(rv.status_code, 500) 37 | self.assert_('Internal Server Error' in rv.data) 38 | 39 | err = out.getvalue() 40 | self.assert_equal(err, '') 41 | 42 | 43 | def suite(): 44 | suite = unittest.TestSuite() 45 | suite.addTest(unittest.makeSuite(FlaskSubclassingTestCase)) 46 | return suite 47 | -------------------------------------------------------------------------------- /libs/babel/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2007-2008 Edgewall Software 4 | # All rights reserved. 5 | # 6 | # This software is licensed as described in the file COPYING, which 7 | # you should have received as part of this distribution. The terms 8 | # are also available at http://babel.edgewall.org/wiki/License. 9 | # 10 | # This software consists of voluntary contributions made by many 11 | # individuals. For the exact contribution history, see the revision 12 | # history and logs, available at http://babel.edgewall.org/log/. 13 | 14 | """Integrated collection of utilities that assist in internationalizing and 15 | localizing applications. 16 | 17 | This package is basically composed of two major parts: 18 | 19 | * tools to build and work with ``gettext`` message catalogs 20 | * a Python interface to the CLDR (Common Locale Data Repository), providing 21 | access to various locale display names, localized number and date 22 | formatting, etc. 23 | 24 | :see: http://www.gnu.org/software/gettext/ 25 | :see: http://docs.python.org/lib/module-gettext.html 26 | :see: http://www.unicode.org/cldr/ 27 | """ 28 | 29 | from babel.core import * 30 | 31 | __docformat__ = 'restructuredtext en' 32 | try: 33 | from pkg_resources import get_distribution, ResolutionError 34 | try: 35 | __version__ = get_distribution('Babel').version 36 | except ResolutionError: 37 | __version__ = None # unknown 38 | except ImportError: 39 | __version__ = None # unknown 40 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/lang-clj.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (C) 2011 Google Inc. 3 | 4 | Licensed under the Apache License, Version 2.0 (the "License"); 5 | you may not use this file except in compliance with the License. 6 | You may obtain a copy of the License at 7 | 8 | http://www.apache.org/licenses/LICENSE-2.0 9 | 10 | Unless required by applicable law or agreed to in writing, software 11 | distributed under the License is distributed on an "AS IS" BASIS, 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | See the License for the specific language governing permissions and 14 | limitations under the License. 15 | */ 16 | var a=null; 17 | PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a], 18 | ["typ",/^:[\dA-Za-z-]+/]]),["clj"]); 19 | -------------------------------------------------------------------------------- /libs/flask/module.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.module 4 | ~~~~~~~~~~~~ 5 | 6 | Implements a class that represents module blueprints. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | 12 | import os 13 | 14 | from .blueprints import Blueprint 15 | 16 | 17 | def blueprint_is_module(bp): 18 | """Used to figure out if something is actually a module""" 19 | return isinstance(bp, Module) 20 | 21 | 22 | class Module(Blueprint): 23 | """Deprecated module support. Until Flask 0.6 modules were a different 24 | name of the concept now available as blueprints in Flask. They are 25 | essentially doing the same but have some bad semantics for templates and 26 | static files that were fixed with blueprints. 27 | 28 | .. versionchanged:: 0.7 29 | Modules were deprecated in favor for blueprints. 30 | """ 31 | 32 | def __init__(self, import_name, name=None, url_prefix=None, 33 | static_path=None, subdomain=None): 34 | if name is None: 35 | assert '.' in import_name, 'name required if package name ' \ 36 | 'does not point to a submodule' 37 | name = import_name.rsplit('.', 1)[1] 38 | Blueprint.__init__(self, name, import_name, url_prefix=url_prefix, 39 | subdomain=subdomain, template_folder='templates') 40 | 41 | if os.path.isdir(os.path.join(self.root_path, 'static')): 42 | self._static_folder = 'static' 43 | -------------------------------------------------------------------------------- /libs/markdown/extensions/sane_lists.py: -------------------------------------------------------------------------------- 1 | """ 2 | Sane List Extension for Python-Markdown 3 | ======================================= 4 | 5 | Modify the behavior of Lists in Python-Markdown t act in a sane manor. 6 | 7 | In standard Markdown sytex, the following would constitute a single 8 | ordered list. However, with this extension, the output would include 9 | two lists, the first an ordered list and the second and unordered list. 10 | 11 | 1. ordered 12 | 2. list 13 | 14 | * unordered 15 | * list 16 | 17 | Copyright 2011 - [Waylan Limberg](http://achinghead.com) 18 | 19 | """ 20 | 21 | from __future__ import absolute_import 22 | from __future__ import unicode_literals 23 | from . import Extension 24 | from ..blockprocessors import OListProcessor, UListProcessor 25 | import re 26 | 27 | 28 | class SaneOListProcessor(OListProcessor): 29 | 30 | CHILD_RE = re.compile(r'^[ ]{0,3}((\d+\.))[ ]+(.*)') 31 | SIBLING_TAGS = ['ol'] 32 | 33 | 34 | class SaneUListProcessor(UListProcessor): 35 | 36 | CHILD_RE = re.compile(r'^[ ]{0,3}(([*+-]))[ ]+(.*)') 37 | SIBLING_TAGS = ['ul'] 38 | 39 | 40 | class SaneListExtension(Extension): 41 | """ Add sane lists to Markdown. """ 42 | 43 | def extendMarkdown(self, md, md_globals): 44 | """ Override existing Processors. """ 45 | md.parser.blockprocessors['olist'] = SaneOListProcessor(md.parser) 46 | md.parser.blockprocessors['ulist'] = SaneUListProcessor(md.parser) 47 | 48 | 49 | def makeExtension(configs={}): 50 | return SaneListExtension(configs=configs) 51 | 52 | -------------------------------------------------------------------------------- /libs/flask/logging.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.logging 4 | ~~~~~~~~~~~~~ 5 | 6 | Implements the logging support for Flask. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | 12 | from __future__ import absolute_import 13 | 14 | from logging import getLogger, StreamHandler, Formatter, getLoggerClass, DEBUG 15 | 16 | 17 | def create_logger(app): 18 | """Creates a logger for the given application. This logger works 19 | similar to a regular Python logger but changes the effective logging 20 | level based on the application's debug flag. Furthermore this 21 | function also removes all attached handlers in case there was a 22 | logger with the log name before. 23 | """ 24 | Logger = getLoggerClass() 25 | 26 | class DebugLogger(Logger): 27 | def getEffectiveLevel(x): 28 | if x.level == 0 and app.debug: 29 | return DEBUG 30 | return Logger.getEffectiveLevel(x) 31 | 32 | class DebugHandler(StreamHandler): 33 | def emit(x, record): 34 | StreamHandler.emit(x, record) if app.debug else None 35 | 36 | handler = DebugHandler() 37 | handler.setLevel(DEBUG) 38 | handler.setFormatter(Formatter(app.debug_log_format)) 39 | logger = getLogger(app.logger_name) 40 | # just in case that was not a new logger, get rid of all the handlers 41 | # already attached to it. 42 | del logger.handlers[:] 43 | logger.__class__ = DebugLogger 44 | logger.addHandler(handler) 45 | return logger 46 | -------------------------------------------------------------------------------- /libs/flask/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask 4 | ~~~~~ 5 | 6 | A microframework based on Werkzeug. It's extensively documented 7 | and follows best practice patterns. 8 | 9 | :copyright: (c) 2011 by Armin Ronacher. 10 | :license: BSD, see LICENSE for more details. 11 | """ 12 | 13 | __version__ = '0.9' 14 | 15 | # utilities we import from Werkzeug and Jinja2 that are unused 16 | # in the module but are exported as public interface. 17 | from werkzeug.exceptions import abort 18 | from werkzeug.utils import redirect 19 | from jinja2 import Markup, escape 20 | 21 | from .app import Flask, Request, Response 22 | from .config import Config 23 | from .helpers import url_for, jsonify, json_available, flash, \ 24 | send_file, send_from_directory, get_flashed_messages, \ 25 | get_template_attribute, make_response, safe_join, \ 26 | stream_with_context 27 | from .globals import current_app, g, request, session, _request_ctx_stack, \ 28 | _app_ctx_stack 29 | from .ctx import has_request_context, has_app_context, \ 30 | after_this_request 31 | from .module import Module 32 | from .blueprints import Blueprint 33 | from .templating import render_template, render_template_string 34 | 35 | # the signals 36 | from .signals import signals_available, template_rendered, request_started, \ 37 | request_finished, got_request_exception, request_tearing_down 38 | 39 | # only import json if it's available 40 | if json_available: 41 | from .helpers import json 42 | 43 | # backwards compat, goes away in 1.0 44 | from .sessions import SecureCookieSession as Session 45 | -------------------------------------------------------------------------------- /libs/markdown/extensions/smart_strong.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Smart_Strong Extension for Python-Markdown 3 | ========================================== 4 | 5 | This extention adds smarter handling of double underscores within words. 6 | 7 | Simple Usage: 8 | 9 | >>> import markdown 10 | >>> print markdown.markdown('Text with double__underscore__words.', 11 | ... extensions=['smart_strong']) 12 |

Text with double__underscore__words.

13 | >>> print markdown.markdown('__Strong__ still works.', 14 | ... extensions=['smart_strong']) 15 |

Strong still works.

16 | >>> print markdown.markdown('__this__works__too__.', 17 | ... extensions=['smart_strong']) 18 |

this__works__too.

19 | 20 | Copyright 2011 21 | [Waylan Limberg](http://achinghead.com) 22 | 23 | ''' 24 | 25 | from __future__ import absolute_import 26 | from __future__ import unicode_literals 27 | from . import Extension 28 | from ..inlinepatterns import SimpleTagPattern 29 | 30 | SMART_STRONG_RE = r'(?emphasis2') 40 | 41 | def makeExtension(configs={}): 42 | return SmartEmphasisExtension(configs=dict(configs)) 43 | -------------------------------------------------------------------------------- /libs/flask/exceptions.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | flask.exceptions 4 | ~~~~~~~~~~~~ 5 | 6 | Flask specific additions to :class:`~werkzeug.exceptions.HTTPException` 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | from werkzeug.exceptions import HTTPException, BadRequest 12 | from .helpers import json 13 | 14 | 15 | class JSONHTTPException(HTTPException): 16 | """A base class for HTTP exceptions with ``Content-Type: 17 | application/json``. 18 | 19 | The ``description`` attribute of this class must set to a string (*not* an 20 | HTML string) which describes the error. 21 | 22 | """ 23 | 24 | def get_body(self, environ): 25 | """Overrides :meth:`werkzeug.exceptions.HTTPException.get_body` to 26 | return the description of this error in JSON format instead of HTML. 27 | 28 | """ 29 | return json.dumps(dict(description=self.get_description(environ))) 30 | 31 | def get_headers(self, environ): 32 | """Returns a list of headers including ``Content-Type: 33 | application/json``. 34 | 35 | """ 36 | return [('Content-Type', 'application/json')] 37 | 38 | 39 | class JSONBadRequest(JSONHTTPException, BadRequest): 40 | """Represents an HTTP ``400 Bad Request`` error whose body contains an 41 | error message in JSON format instead of HTML format (as in the superclass). 42 | 43 | """ 44 | 45 | #: The description of the error which occurred as a string. 46 | description = ( 47 | 'The browser (or proxy) sent a request that this server could not ' 48 | 'understand.' 49 | ) 50 | -------------------------------------------------------------------------------- /alembic.ini: -------------------------------------------------------------------------------- 1 | # Copyright 2013 Gully Chen 2 | # 3 | # Licensed under the Apache License, Version 2.0 (the "License"); 4 | # you may not use this file except in compliance with the License. 5 | # You may obtain a copy of the License at 6 | # 7 | # http://www.apache.org/licenses/LICENSE-2.0 8 | # 9 | # Unless required by applicable law or agreed to in writing, software 10 | # distributed under the License is distributed on an "AS IS" BASIS, 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | # See the License for the specific language governing permissions and 13 | # limitations under the License. 14 | # A generic, single database configuration. 15 | 16 | [alembic] 17 | # path to migration scripts 18 | script_location = db_migrate 19 | 20 | # template used to generate migration files 21 | # file_template = %%(rev)s_%%(slug)s 22 | 23 | # set to 'true' to run the environment during 24 | # the 'revision' command, regardless of autogenerate 25 | # revision_environment = false 26 | 27 | sqlalchemy.url = sqlite:///test.db 28 | 29 | 30 | # Logging configuration 31 | [loggers] 32 | keys = root,sqlalchemy,alembic 33 | 34 | [handlers] 35 | keys = console 36 | 37 | [formatters] 38 | keys = generic 39 | 40 | [logger_root] 41 | level = WARN 42 | handlers = console 43 | qualname = 44 | 45 | [logger_sqlalchemy] 46 | level = WARN 47 | handlers = 48 | qualname = sqlalchemy.engine 49 | 50 | [logger_alembic] 51 | level = INFO 52 | handlers = 53 | qualname = alembic 54 | 55 | [handler_console] 56 | class = StreamHandler 57 | args = (sys.stderr,) 58 | level = NOTSET 59 | formatter = generic 60 | 61 | [formatter_generic] 62 | format = %(levelname)-5.5s [%(name)s] %(message)s 63 | datefmt = %H:%M:%S 64 | -------------------------------------------------------------------------------- /libs/alembic/ddl/sqlite.py: -------------------------------------------------------------------------------- 1 | from alembic.ddl.impl import DefaultImpl 2 | from alembic import util 3 | 4 | #from sqlalchemy.ext.compiler import compiles 5 | #from alembic.ddl.base import AddColumn, alter_table 6 | #from sqlalchemy.schema import AddConstraint 7 | 8 | class SQLiteImpl(DefaultImpl): 9 | __dialect__ = 'sqlite' 10 | transactional_ddl = True 11 | 12 | def add_constraint(self, const): 13 | # attempt to distinguish between an 14 | # auto-gen constraint and an explicit one 15 | if const._create_rule is None: 16 | raise NotImplementedError( 17 | "No support for ALTER of constraints in SQLite dialect") 18 | elif const._create_rule(self): 19 | util.warn("Skipping unsupported ALTER for " 20 | "creation of implicit constraint") 21 | 22 | 23 | def drop_constraint(self, const): 24 | if const._create_rule is None: 25 | raise NotImplementedError( 26 | "No support for ALTER of constraints in SQLite dialect") 27 | 28 | 29 | #@compiles(AddColumn, 'sqlite') 30 | #def visit_add_column(element, compiler, **kw): 31 | # return "%s %s" % ( 32 | # alter_table(compiler, element.table_name, element.schema), 33 | # add_column(compiler, element.column, **kw) 34 | # ) 35 | 36 | 37 | #def add_column(compiler, column, **kw): 38 | # text = "ADD COLUMN %s" % compiler.get_column_specification(column, **kw) 39 | # # need to modify SQLAlchemy so that the CHECK associated with a Boolean 40 | # # or Enum gets placed as part of the column constraints, not the Table 41 | # # see ticket 98 42 | # for const in column.constraints: 43 | # text += compiler.process(AddConstraint(const)) 44 | # return text 45 | -------------------------------------------------------------------------------- /static/assets/google-code-prettify/desert.css: -------------------------------------------------------------------------------- 1 | /* desert scheme ported from vim to google prettify */ 2 | pre.prettyprint { display: block; background-color: #333 } 3 | pre .nocode { background-color: none; color: #000 } 4 | pre .str { color: #ffa0a0 } /* string - pink */ 5 | pre .kwd { color: #f0e68c; font-weight: bold } 6 | pre .com { color: #87ceeb } /* comment - skyblue */ 7 | pre .typ { color: #98fb98 } /* type - lightgreen */ 8 | pre .lit { color: #cd5c5c } /* literal - darkred */ 9 | pre .pun { color: #fff } /* punctuation */ 10 | pre .pln { color: #fff } /* plaintext */ 11 | pre .tag { color: #f0e68c; font-weight: bold } /* html/xml tag - lightyellow */ 12 | pre .atn { color: #bdb76b; font-weight: bold } /* attribute name - khaki */ 13 | pre .atv { color: #ffa0a0 } /* attribute value - pink */ 14 | pre .dec { color: #98fb98 } /* decimal - lightgreen */ 15 | 16 | /* Specify class=linenums on a pre to get line numbering */ 17 | ol.linenums { margin-top: 0; margin-bottom: 0; color: #AEAEAE } /* IE indents via margin-left */ 18 | li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8 { list-style-type: none } 19 | /* Alternate shading for lines */ 20 | li.L1,li.L3,li.L5,li.L7,li.L9 { } 21 | 22 | @media print { 23 | pre.prettyprint { background-color: none } 24 | pre .str, code .str { color: #060 } 25 | pre .kwd, code .kwd { color: #006; font-weight: bold } 26 | pre .com, code .com { color: #600; font-style: italic } 27 | pre .typ, code .typ { color: #404; font-weight: bold } 28 | pre .lit, code .lit { color: #044 } 29 | pre .pun, code .pun { color: #440 } 30 | pre .pln, code .pln { color: #000 } 31 | pre .tag, code .tag { color: #006; font-weight: bold } 32 | pre .atn, code .atn { color: #404 } 33 | pre .atv, code .atv { color: #060 } 34 | } 35 | -------------------------------------------------------------------------------- /templates/share.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {{ _("Share") }} 5 | 6 | 14 | 15 | 16 |
17 |

{{ _("Share") }} {{ title }}

18 |

{{ summary }}...

19 |
20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 | 32 | 33 | 34 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/multipart/collect.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Hacky helper application to collect form data. 4 | """ 5 | from werkzeug.serving import run_simple 6 | from werkzeug.wrappers import Request, Response 7 | 8 | 9 | def copy_stream(request): 10 | from os import mkdir 11 | from time import time 12 | folder = 'request-%d' % time() 13 | mkdir(folder) 14 | environ = request.environ 15 | f = file(folder + '/request.txt', 'wb+') 16 | f.write(environ['wsgi.input'].read(int(environ['CONTENT_LENGTH']))) 17 | f.flush() 18 | f.seek(0) 19 | environ['wsgi.input'] = f 20 | request.stat_folder = folder 21 | 22 | 23 | def stats(request): 24 | copy_stream(request) 25 | f1 = request.files['file1'] 26 | f2 = request.files['file2'] 27 | text = request.form['text'] 28 | f1.save(request.stat_folder + '/file1.bin') 29 | f2.save(request.stat_folder + '/file2.bin') 30 | file(request.stat_folder + '/text.txt', 'w').write(text.encode('utf-8')) 31 | return Response('Done.') 32 | 33 | 34 | def upload_file(request): 35 | return Response(''' 36 |

Upload File

37 |
38 |
39 |
40 |
41 | 42 |
43 | ''', mimetype='text/html') 44 | 45 | 46 | def application(environ, start_responseonse): 47 | request = Request(environ) 48 | if request.method == 'POST': 49 | response = stats(request) 50 | else: 51 | response = upload_file(request) 52 | return response(environ, start_responseonse) 53 | 54 | 55 | if __name__ == '__main__': 56 | run_simple('localhost', 5000, application, use_debugger=True) 57 | -------------------------------------------------------------------------------- /libs/markdown/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Extensions 3 | ----------------------------------------------------------------------------- 4 | """ 5 | 6 | from __future__ import unicode_literals 7 | 8 | class Extension(object): 9 | """ Base class for extensions to subclass. """ 10 | def __init__(self, configs = {}): 11 | """Create an instance of an Extention. 12 | 13 | Keyword arguments: 14 | 15 | * configs: A dict of configuration setting used by an Extension. 16 | """ 17 | self.config = configs 18 | 19 | def getConfig(self, key, default=''): 20 | """ Return a setting for the given key or an empty string. """ 21 | if key in self.config: 22 | return self.config[key][0] 23 | else: 24 | return default 25 | 26 | def getConfigs(self): 27 | """ Return all configs settings as a dict. """ 28 | return dict([(key, self.getConfig(key)) for key in self.config.keys()]) 29 | 30 | def getConfigInfo(self): 31 | """ Return all config descriptions as a list of tuples. """ 32 | return [(key, self.config[key][1]) for key in self.config.keys()] 33 | 34 | def setConfig(self, key, value): 35 | """ Set a config setting for `key` with the given `value`. """ 36 | self.config[key][0] = value 37 | 38 | def extendMarkdown(self, md, md_globals): 39 | """ 40 | Add the various proccesors and patterns to the Markdown Instance. 41 | 42 | This method must be overriden by every extension. 43 | 44 | Keyword arguments: 45 | 46 | * md: The Markdown instance. 47 | 48 | * md_globals: Global variables in the markdown module namespace. 49 | 50 | """ 51 | raise NotImplementedError('Extension "%s.%s" must define an "extendMarkdown"' \ 52 | 'method.' % (self.__class__.__module__, self.__class__.__name__)) 53 | 54 | -------------------------------------------------------------------------------- /model/model_local.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | from settings import logging 17 | import model_bae 18 | from model_bae import * # use same db model with BAE 19 | 20 | #logging.basicConfig() 21 | #logging.getLogger('sqlalchemy.engine').setLevel(logging.INFO) 22 | 23 | 24 | def init_database(app): 25 | try: 26 | settings = DBSiteSettings.get_by_id(1) 27 | 28 | if not settings or not settings.inited: 29 | raise Exception("Can not get site settings") 30 | 31 | if settings.version < DBSiteSettings.VERSION: 32 | raise Exception("Database expired") 33 | except: 34 | from alembic import command 35 | 36 | # auto generate alembic version in local 37 | try: 38 | command.revision(app.config["MIGRATE_CFG"], 39 | "database v%s" % DBSiteSettings.VERSION, 40 | True) 41 | except: 42 | logging.exception("migrate revision error") 43 | 44 | command.upgrade(app.config["MIGRATE_CFG"], "head") 45 | 46 | settings = create_default_settings(app) 47 | 48 | app.config["SiteTitle"] = settings.title 49 | app.config["SiteSubTitle"] = settings.subtitle 50 | app.config["OwnerEmail"] = settings.owner 51 | 52 | # inject local init_database function 53 | model_bae.init_database = init_database 54 | -------------------------------------------------------------------------------- /tools/tools_local.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # Copyright 2013 Gully Chen 3 | # 4 | # Licensed under the Apache License, Version 2.0 (the "License"); 5 | # you may not use this file except in compliance with the License. 6 | # You may obtain a copy of the License at 7 | # 8 | # http://www.apache.org/licenses/LICENSE-2.0 9 | # 10 | # Unless required by applicable law or agreed to in writing, software 11 | # distributed under the License is distributed on an "AS IS" BASIS, 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | # See the License for the specific language governing permissions and 14 | # limitations under the License. 15 | 16 | import os 17 | from datetime import datetime 18 | 19 | 20 | ############################################ 21 | ## Mail 22 | ############################################ 23 | def send_mail(body, address, fromaddr=None, subject=None, **kwargs): 24 | if not isinstance(address, (list, tuple, set)): 25 | address = [address, ] 26 | 27 | from settings import mail 28 | from flask_mail import Message 29 | msg = Message(subject, sender=fromaddr, recipients=address, body = body) 30 | mail.send(msg) 31 | 32 | 33 | ############################################ 34 | ## Images 35 | ############################################ 36 | def save_file(binary, filename, public=True, mime_type="application/octet-stream"): 37 | today = datetime.now().strftime("%Y/%m/%d/") 38 | filename = today + filename 39 | 40 | from settings import UPLOAD_FOLDER, UPLOAD_URL 41 | 42 | file_path = os.path.join(UPLOAD_FOLDER, filename) 43 | 44 | folder = os.path.dirname(file_path) 45 | if not os.path.isdir(folder): 46 | os.makedirs(folder) 47 | 48 | f = open(file_path, "wb") 49 | f.write(binary) 50 | f.close() 51 | 52 | url = "/%s%s" % (UPLOAD_URL, filename) 53 | return url, file_path 54 | 55 | 56 | def delete_file(file_path): 57 | if os.path.isfile(file_path): 58 | os.remove(file_path) 59 | 60 | 61 | -------------------------------------------------------------------------------- /index.yaml: -------------------------------------------------------------------------------- 1 | indexes: 2 | 3 | # AUTOGENERATED 4 | 5 | # This index.yaml is automatically updated whenever the dev_appserver 6 | # detects that a new type of query is run. If you want to manage the 7 | # index.yaml file manually, remove the above marker line (the line 8 | # saying "# AUTOGENERATED"). If you want to manage some indexes 9 | # manually, move them above the marker line. The index.yaml file is 10 | # automatically uploaded to the admin console when you next deploy 11 | # your application using appcfg.py. 12 | 13 | - kind: DBPost 14 | properties: 15 | - name: category_id 16 | - name: post_date 17 | 18 | - kind: DBPost 19 | properties: 20 | - name: category_id 21 | - name: post_date 22 | direction: desc 23 | 24 | - kind: DBPost 25 | properties: 26 | - name: category_id 27 | - name: public 28 | - name: post_date 29 | 30 | - kind: DBPost 31 | properties: 32 | - name: category_id 33 | - name: sticky 34 | direction: desc 35 | - name: post_date 36 | 37 | - kind: DBPost 38 | properties: 39 | - name: category_id 40 | - name: sticky 41 | direction: desc 42 | - name: post_date 43 | direction: desc 44 | 45 | - kind: DBPost 46 | properties: 47 | - name: public 48 | - name: post_date 49 | 50 | - kind: DBPost 51 | properties: 52 | - name: public 53 | - name: post_date 54 | direction: desc 55 | 56 | - kind: DBPost 57 | properties: 58 | - name: public 59 | - name: sticky 60 | direction: desc 61 | - name: post_date 62 | direction: desc 63 | 64 | - kind: DBPost 65 | properties: 66 | - name: public 67 | - name: updated_date 68 | direction: desc 69 | 70 | - kind: DBPost 71 | properties: 72 | - name: sticky 73 | direction: desc 74 | - name: post_date 75 | 76 | - kind: DBPost 77 | properties: 78 | - name: sticky 79 | direction: desc 80 | - name: post_date 81 | direction: desc 82 | 83 | - kind: DBStats 84 | properties: 85 | - name: public 86 | - name: target_type 87 | - name: like_count 88 | direction: desc 89 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/contrib/securecookie.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | werkzeug.testsuite.securecookie 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Tests the secure cookie. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | import unittest 12 | 13 | from werkzeug.testsuite import WerkzeugTestCase 14 | 15 | from werkzeug.utils import parse_cookie 16 | from werkzeug.wrappers import Request, Response 17 | from werkzeug.contrib.securecookie import SecureCookie 18 | 19 | 20 | class SecureCookieTestCase(WerkzeugTestCase): 21 | 22 | def test_basic_support(self): 23 | c = SecureCookie(secret_key='foo') 24 | assert c.new 25 | print c.modified, c.should_save 26 | assert not c.modified 27 | assert not c.should_save 28 | c['x'] = 42 29 | assert c.modified 30 | assert c.should_save 31 | s = c.serialize() 32 | 33 | c2 = SecureCookie.unserialize(s, 'foo') 34 | assert c is not c2 35 | assert not c2.new 36 | assert not c2.modified 37 | assert not c2.should_save 38 | assert c2 == c 39 | 40 | c3 = SecureCookie.unserialize(s, 'wrong foo') 41 | assert not c3.modified 42 | assert not c3.new 43 | assert c3 == {} 44 | 45 | def test_wrapper_support(self): 46 | req = Request.from_values() 47 | resp = Response() 48 | c = SecureCookie.load_cookie(req, secret_key='foo') 49 | assert c.new 50 | c['foo'] = 42 51 | assert c.secret_key == 'foo' 52 | c.save_cookie(resp) 53 | 54 | req = Request.from_values(headers={ 55 | 'Cookie': 'session="%s"' % parse_cookie(resp.headers['set-cookie'])['session'] 56 | }) 57 | c2 = SecureCookie.load_cookie(req, secret_key='foo') 58 | assert not c2.new 59 | assert c2 == c 60 | 61 | 62 | def suite(): 63 | suite = unittest.TestSuite() 64 | suite.addTest(unittest.makeSuite(SecureCookieTestCase)) 65 | return suite 66 | -------------------------------------------------------------------------------- /libs/werkzeug/testsuite/security.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | """ 3 | werkzeug.testsuite.security 4 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 5 | 6 | Tests the security helpers. 7 | 8 | :copyright: (c) 2011 by Armin Ronacher. 9 | :license: BSD, see LICENSE for more details. 10 | """ 11 | import os 12 | import unittest 13 | 14 | from werkzeug.testsuite import WerkzeugTestCase 15 | 16 | from werkzeug.security import check_password_hash, generate_password_hash, \ 17 | safe_join 18 | 19 | 20 | class SecurityTestCase(WerkzeugTestCase): 21 | 22 | def test_password_hashing(self): 23 | """Test the password hashing and password hash checking""" 24 | hash1 = generate_password_hash('default') 25 | hash2 = generate_password_hash(u'default', method='sha1') 26 | assert hash1 != hash2 27 | assert check_password_hash(hash1, 'default') 28 | assert check_password_hash(hash2, 'default') 29 | assert hash1.startswith('sha1$') 30 | assert hash2.startswith('sha1$') 31 | 32 | fakehash = generate_password_hash('default', method='plain') 33 | assert fakehash == 'plain$$default' 34 | assert check_password_hash(fakehash, 'default') 35 | 36 | mhash = generate_password_hash(u'default', method='md5') 37 | assert mhash.startswith('md5$') 38 | assert check_password_hash(mhash, 'default') 39 | 40 | legacy = 'md5$$c21f969b5f03d33d43e04f8f136e7682' 41 | assert check_password_hash(legacy, 'default') 42 | 43 | legacy = u'md5$$c21f969b5f03d33d43e04f8f136e7682' 44 | assert check_password_hash(legacy, 'default') 45 | 46 | def test_safe_join(self): 47 | """Test the safe joining helper""" 48 | assert safe_join('foo', 'bar/baz') == os.path.join('foo', 'bar/baz') 49 | assert safe_join('foo', '../bar/baz') is None 50 | if os.name == 'nt': 51 | assert safe_join('foo', 'foo\\bar') is None 52 | 53 | 54 | def suite(): 55 | suite = unittest.TestSuite() 56 | suite.addTest(unittest.makeSuite(SecurityTestCase)) 57 | return suite 58 | --------------------------------------------------------------------------------