├── apps ├── __init__.py ├── cart │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ ├── views.cpython-37.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ ├── apps.py │ └── urls.py ├── goods │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0002_auto_20190801_2149.cpython-35.pyc │ │ │ ├── 0002_auto_20190801_2149.cpython-36.pyc │ │ │ └── 0002_auto_20190801_2149.cpython-37.pyc │ ├── tests.py │ ├── __pycache__ │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-35.pyc │ │ ├── views.cpython-36.pyc │ │ ├── views.cpython-37.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── search_indexes.cpython-36.pyc │ │ └── search_indexes.cpython-37.pyc │ ├── apps.py │ ├── urls.py │ ├── admin.py │ └── search_indexes.py ├── order │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0002_auto_20190730_2230.cpython-35.pyc │ │ │ ├── 0002_auto_20190730_2230.cpython-36.pyc │ │ │ ├── 0002_auto_20190730_2230.cpython-37.pyc │ │ │ ├── 0002_auto_20190912_2154.cpython-36.pyc │ │ │ └── 0002_auto_20190912_2154.cpython-37.pyc │ ├── tests.py │ ├── admin.py │ ├── __pycache__ │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ ├── views.cpython-37.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ ├── apps.py │ └── urls.py ├── user │ ├── __init__.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ └── 0001_initial.cpython-37.pyc │ ├── admin.py │ ├── tests.py │ ├── __pycache__ │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-36.pyc │ │ ├── models.cpython-37.pyc │ │ ├── views.cpython-35.pyc │ │ ├── views.cpython-36.pyc │ │ ├── views.cpython-37.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ └── apps.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── base_model.cpython-35.pyc │ ├── base_model.cpython-36.pyc │ └── base_model.cpython-37.pyc └── base_model.py ├── config ├── __init__.py ├── fdfs │ └── __init__.py └── alipay │ └── __init__.py ├── utils ├── __init__.py ├── __pycache__ │ ├── mixin.cpython-35.pyc │ ├── mixin.cpython-36.pyc │ ├── mixin.cpython-37.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── storage.cpython-35.pyc │ ├── storage.cpython-36.pyc │ └── storage.cpython-37.pyc └── mixin.py ├── uwsgi.pid ├── requirement ├── __init__.py ├── fdfs_client-py-master │ ├── __init__.py │ ├── setup.cfg │ ├── INSTALL │ ├── MANIFEST.in │ └── fdfs_client │ │ └── __init__.py └── xadmin-django2.zip ├── celery_tasks ├── __init__.py └── __pycache__ │ ├── task.cpython-35.pyc │ ├── task.cpython-36.pyc │ ├── task.cpython-37.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ └── __init__.cpython-37.pyc ├── .gitignore ├── fresh ├── whoosh_index │ ├── MAIN_WRITELOCK │ ├── _MAIN_10.toc │ ├── MAIN_31vs7jbytn4x7exm.seg │ ├── MAIN_hvcons3bnk67w0u1.seg │ ├── MAIN_hxwpy2m3t0ywa38f.seg │ ├── MAIN_qyloe5ioo8nwloxj.seg │ └── MAIN_vxfqluxyqjd2ell5.seg ├── __init__.py ├── __pycache__ │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── urls.cpython-37.pyc │ ├── wsgi.cpython-35.pyc │ ├── wsgi.cpython-36.pyc │ ├── wsgi.cpython-37.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-35.pyc │ ├── settings.cpython-36.pyc │ └── settings.cpython-37.pyc └── wsgi.py ├── static ├── images │ ├── adv01.jpg │ ├── adv02.jpg │ ├── down.png │ ├── fruit.jpg │ ├── icons.png │ ├── logo.png │ ├── logo02.png │ ├── slide.jpg │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── banner06.jpg │ ├── favicon.ico │ ├── icons02.png │ ├── left_bg.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ ├── slide04.jpg │ ├── pay_icons.png │ ├── shop_cart.png │ ├── goods_detail.jpg │ ├── interval_line.png │ ├── login_banner.png │ ├── goods │ │ ├── goods001.jpg │ │ ├── goods002.jpg │ │ ├── goods003.jpg │ │ ├── goods004.jpg │ │ ├── goods005.jpg │ │ ├── goods006.jpg │ │ ├── goods007.jpg │ │ ├── goods008.jpg │ │ ├── goods009.jpg │ │ ├── goods010.jpg │ │ ├── goods011.jpg │ │ ├── goods012.jpg │ │ ├── goods013.jpg │ │ ├── goods014.jpg │ │ ├── goods015.jpg │ │ ├── goods016.jpg │ │ ├── goods017.jpg │ │ ├── goods018.jpg │ │ ├── goods019.jpg │ │ ├── goods020.jpg │ │ ├── goods021.jpg │ │ ├── goods022.jpg │ │ └── goods023.jpg │ └── register_banner.png └── df_goods │ ├── slide.jpg │ ├── goods001.jpg │ ├── goods002.jpg │ ├── goods003.jpg │ ├── goods004.jpg │ ├── goods005.jpg │ ├── goods006.jpg │ ├── goods007.jpg │ ├── goods008.jpg │ ├── goods009.jpg │ ├── goods010.jpg │ ├── goods011.jpg │ ├── goods012.jpg │ ├── goods013.jpg │ ├── goods014.jpg │ ├── goods015.jpg │ ├── goods016.jpg │ ├── goods017.jpg │ ├── goods018.jpg │ ├── goods019.jpg │ ├── goods020.jpg │ ├── goods021.jpg │ ├── goods022.jpg │ ├── goods023.jpg │ ├── goods024.jpg │ ├── goods025.jpg │ ├── goods026.jpg │ ├── goods027.jpg │ ├── goods028.jpg │ ├── goods029.jpg │ ├── goods030.jpg │ ├── goods031.jpg │ ├── goods032.jpg │ ├── goods033.jpg │ ├── goods034.jpg │ ├── goods035.jpg │ ├── goods036.jpg │ ├── goods037.jpg │ ├── goods038.jpg │ ├── goods039.jpg │ ├── goods040.jpg │ ├── goods041.jpg │ ├── goods042.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ ├── slide04.jpg │ ├── goods014_M074jyD.jpg │ ├── goods014_fDELOS9.jpg │ └── goods014_tYMrWlZ.jpg ├── static_root ├── images │ ├── adv01.jpg │ ├── adv02.jpg │ ├── down.png │ ├── fruit.jpg │ ├── icons.png │ ├── logo.png │ ├── logo02.png │ ├── slide.jpg │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── banner06.jpg │ ├── favicon.ico │ ├── icons02.png │ ├── left_bg.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ ├── slide04.jpg │ ├── pay_icons.png │ ├── shop_cart.png │ ├── goods_detail.jpg │ ├── interval_line.png │ ├── login_banner.png │ ├── goods │ │ ├── goods001.jpg │ │ ├── goods002.jpg │ │ ├── goods003.jpg │ │ ├── goods004.jpg │ │ ├── goods005.jpg │ │ ├── goods006.jpg │ │ ├── goods007.jpg │ │ ├── goods008.jpg │ │ ├── goods009.jpg │ │ ├── goods010.jpg │ │ ├── goods011.jpg │ │ ├── goods012.jpg │ │ ├── goods013.jpg │ │ ├── goods014.jpg │ │ ├── goods015.jpg │ │ ├── goods016.jpg │ │ ├── goods017.jpg │ │ ├── goods018.jpg │ │ ├── goods019.jpg │ │ ├── goods020.jpg │ │ ├── goods021.jpg │ │ ├── goods022.jpg │ │ └── goods023.jpg │ └── register_banner.png ├── df_goods │ ├── slide.jpg │ ├── goods001.jpg │ ├── goods002.jpg │ ├── goods003.jpg │ ├── goods004.jpg │ ├── goods005.jpg │ ├── goods006.jpg │ ├── goods007.jpg │ ├── goods008.jpg │ ├── goods009.jpg │ ├── goods010.jpg │ ├── goods011.jpg │ ├── goods012.jpg │ ├── goods013.jpg │ ├── goods014.jpg │ ├── goods015.jpg │ ├── goods016.jpg │ ├── goods017.jpg │ ├── goods018.jpg │ ├── goods019.jpg │ ├── goods020.jpg │ ├── goods021.jpg │ ├── goods022.jpg │ ├── goods023.jpg │ ├── goods024.jpg │ ├── goods025.jpg │ ├── goods026.jpg │ ├── goods027.jpg │ ├── goods028.jpg │ ├── goods029.jpg │ ├── goods030.jpg │ ├── goods031.jpg │ ├── goods032.jpg │ ├── goods033.jpg │ ├── goods034.jpg │ ├── goods035.jpg │ ├── goods036.jpg │ ├── goods037.jpg │ ├── goods038.jpg │ ├── goods039.jpg │ ├── goods040.jpg │ ├── goods041.jpg │ ├── goods042.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ ├── slide04.jpg │ ├── goods014_M074jyD.jpg │ ├── goods014_fDELOS9.jpg │ └── goods014_tYMrWlZ.jpg ├── tiny_mce │ ├── plugins │ │ ├── example │ │ │ ├── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ │ └── img │ │ │ │ └── example.gif │ │ ├── media │ │ │ └── moxieplayer.swf │ │ ├── advimage │ │ │ └── img │ │ │ │ └── sample.gif │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ └── img │ │ │ │ └── wline.gif │ │ ├── emotions │ │ │ ├── img │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ ├── smiley-yell.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ └── smiley-foot-in-mouth.gif │ │ │ └── langs │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── tn_dlg.js │ │ │ │ ├── eo_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ └── gl_dlg.js │ │ ├── advhr │ │ │ ├── langs │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── tn_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── eo_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── kb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── zu_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ct_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── cn_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── my_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── km_dlg.js │ │ │ │ ├── sy_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── kk_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ └── be_dlg.js │ │ │ └── css │ │ │ │ └── advhr.css │ │ ├── inlinepopups │ │ │ └── skins │ │ │ │ └── clearlooks2 │ │ │ │ └── img │ │ │ │ ├── alert.gif │ │ │ │ ├── button.gif │ │ │ │ ├── buttons.gif │ │ │ │ ├── confirm.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── vertical.gif │ │ │ │ └── horizontal.gif │ │ ├── paste │ │ │ └── langs │ │ │ │ ├── id_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── eo_dlg.js │ │ │ │ ├── cn_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── kk_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tn_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── ct_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── kb_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── zh-cn_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── zh-tw_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ └── langs │ │ │ │ ├── ms_dlg.js │ │ │ │ └── id_dlg.js │ │ ├── table │ │ │ └── css │ │ │ │ ├── table.css │ │ │ │ ├── cell.css │ │ │ │ └── row.css │ │ ├── xhtmlxtras │ │ │ └── css │ │ │ │ └── attributes.css │ │ ├── template │ │ │ ├── css │ │ │ │ └── template.css │ │ │ └── blank.htm │ │ └── example_dependency │ │ │ └── editor_plugin.js │ └── themes │ │ ├── simple │ │ ├── img │ │ │ └── icons.gif │ │ ├── skins │ │ │ └── o2k7 │ │ │ │ └── img │ │ │ │ └── button_bg.png │ │ └── langs │ │ │ ├── nn.js │ │ │ ├── nb.js │ │ │ ├── no.js │ │ │ ├── dv.js │ │ │ ├── gu.js │ │ │ ├── hi.js │ │ │ ├── kl.js │ │ │ ├── ps.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── ur.js │ │ │ ├── nl.js │ │ │ ├── eo.js │ │ │ ├── cy.js │ │ │ ├── es.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── eu.js │ │ │ ├── kb.js │ │ │ ├── se.js │ │ │ ├── sl.js │ │ │ ├── en.js │ │ │ ├── gl.js │ │ │ ├── it.js │ │ │ ├── sv.js │ │ │ ├── br.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── ms.js │ │ │ ├── pt.js │ │ │ ├── de.js │ │ │ ├── ct.js │ │ │ ├── da.js │ │ │ ├── tn.js │ │ │ ├── ro.js │ │ │ ├── sr.js │ │ │ ├── et.js │ │ │ ├── fi.js │ │ │ ├── ia.js │ │ │ ├── lb.js │ │ │ ├── id.js │ │ │ ├── pl.js │ │ │ ├── sc.js │ │ │ ├── sq.js │ │ │ ├── zu.js │ │ │ ├── zh.js │ │ │ ├── cn.js │ │ │ ├── is.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── tw.js │ │ │ ├── cs.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── zh-cn.js │ │ │ ├── sk.js │ │ │ ├── zh-tw.js │ │ │ └── az.js │ │ └── advanced │ │ ├── img │ │ ├── flash.gif │ │ ├── icons.gif │ │ ├── iframe.gif │ │ ├── trans.gif │ │ ├── video.gif │ │ ├── pagebreak.gif │ │ ├── quicktime.gif │ │ ├── realmedia.gif │ │ ├── shockwave.gif │ │ ├── colorpicker.jpg │ │ └── windowsmedia.gif │ │ └── skins │ │ ├── default │ │ └── img │ │ │ ├── items.gif │ │ │ ├── tabs.gif │ │ │ ├── buttons.png │ │ │ ├── menu_arrow.gif │ │ │ ├── menu_check.gif │ │ │ └── progress.gif │ │ └── o2k7 │ │ └── img │ │ ├── button_bg.png │ │ ├── button_bg_black.png │ │ └── button_bg_silver.png └── admin │ ├── fonts │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-Light-webfont.woff │ ├── Roboto-Regular-webfont.woff │ └── README.txt │ ├── img │ ├── tooltag-arrowright.svg │ ├── README.txt │ ├── icon-addlink.svg │ ├── tooltag-add.svg │ ├── icon-changelink.svg │ ├── icon-deletelink.svg │ └── icon-yes.svg │ └── js │ ├── prepopulate.min.js │ └── jquery.init.js ├── __pycache__ ├── manage.cpython-35.pyc └── manage.cpython-36.pyc └── templates └── search └── indexes └── goods └── goodssku_text.txt /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uwsgi.pid: -------------------------------------------------------------------------------- 1 | 5647 2 | -------------------------------------------------------------------------------- /apps/cart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/goods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/order/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/fdfs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirement/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /celery_tasks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/alipay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .svn 3 | -------------------------------------------------------------------------------- /apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/order/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fresh/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | 3 | pymysql.install_as_MySQLdb() 4 | 5 | -------------------------------------------------------------------------------- /apps/cart/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /apps/cart/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/cart/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/goods/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/order/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/user/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/user/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /apps/order/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/adv01.jpg -------------------------------------------------------------------------------- /static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/adv02.jpg -------------------------------------------------------------------------------- /static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/down.png -------------------------------------------------------------------------------- /static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/fruit.jpg -------------------------------------------------------------------------------- /static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/icons.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/logo02.png -------------------------------------------------------------------------------- /static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/slide.jpg -------------------------------------------------------------------------------- /static/df_goods/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/slide.jpg -------------------------------------------------------------------------------- /static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner01.jpg -------------------------------------------------------------------------------- /static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner02.jpg -------------------------------------------------------------------------------- /static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner03.jpg -------------------------------------------------------------------------------- /static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner04.jpg -------------------------------------------------------------------------------- /static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner05.jpg -------------------------------------------------------------------------------- /static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/banner06.jpg -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/icons02.png -------------------------------------------------------------------------------- /static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/left_bg.jpg -------------------------------------------------------------------------------- /static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/slide02.jpg -------------------------------------------------------------------------------- /static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/slide03.jpg -------------------------------------------------------------------------------- /static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/slide04.jpg -------------------------------------------------------------------------------- /static/df_goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods001.jpg -------------------------------------------------------------------------------- /static/df_goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods002.jpg -------------------------------------------------------------------------------- /static/df_goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods003.jpg -------------------------------------------------------------------------------- /static/df_goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods004.jpg -------------------------------------------------------------------------------- /static/df_goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods005.jpg -------------------------------------------------------------------------------- /static/df_goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods006.jpg -------------------------------------------------------------------------------- /static/df_goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods007.jpg -------------------------------------------------------------------------------- /static/df_goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods008.jpg -------------------------------------------------------------------------------- /static/df_goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods009.jpg -------------------------------------------------------------------------------- /static/df_goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods010.jpg -------------------------------------------------------------------------------- /static/df_goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods011.jpg -------------------------------------------------------------------------------- /static/df_goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods012.jpg -------------------------------------------------------------------------------- /static/df_goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods013.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods014.jpg -------------------------------------------------------------------------------- /static/df_goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods015.jpg -------------------------------------------------------------------------------- /static/df_goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods016.jpg -------------------------------------------------------------------------------- /static/df_goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods017.jpg -------------------------------------------------------------------------------- /static/df_goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods018.jpg -------------------------------------------------------------------------------- /static/df_goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods019.jpg -------------------------------------------------------------------------------- /static/df_goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods020.jpg -------------------------------------------------------------------------------- /static/df_goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods021.jpg -------------------------------------------------------------------------------- /static/df_goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods022.jpg -------------------------------------------------------------------------------- /static/df_goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods023.jpg -------------------------------------------------------------------------------- /static/df_goods/goods024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods024.jpg -------------------------------------------------------------------------------- /static/df_goods/goods025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods025.jpg -------------------------------------------------------------------------------- /static/df_goods/goods026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods026.jpg -------------------------------------------------------------------------------- /static/df_goods/goods027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods027.jpg -------------------------------------------------------------------------------- /static/df_goods/goods028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods028.jpg -------------------------------------------------------------------------------- /static/df_goods/goods029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods029.jpg -------------------------------------------------------------------------------- /static/df_goods/goods030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods030.jpg -------------------------------------------------------------------------------- /static/df_goods/goods031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods031.jpg -------------------------------------------------------------------------------- /static/df_goods/goods032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods032.jpg -------------------------------------------------------------------------------- /static/df_goods/goods033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods033.jpg -------------------------------------------------------------------------------- /static/df_goods/goods034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods034.jpg -------------------------------------------------------------------------------- /static/df_goods/goods035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods035.jpg -------------------------------------------------------------------------------- /static/df_goods/goods036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods036.jpg -------------------------------------------------------------------------------- /static/df_goods/goods037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods037.jpg -------------------------------------------------------------------------------- /static/df_goods/goods038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods038.jpg -------------------------------------------------------------------------------- /static/df_goods/goods039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods039.jpg -------------------------------------------------------------------------------- /static/df_goods/goods040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods040.jpg -------------------------------------------------------------------------------- /static/df_goods/goods041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods041.jpg -------------------------------------------------------------------------------- /static/df_goods/goods042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods042.jpg -------------------------------------------------------------------------------- /static/df_goods/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/slide02.jpg -------------------------------------------------------------------------------- /static/df_goods/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/slide03.jpg -------------------------------------------------------------------------------- /static/df_goods/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/slide04.jpg -------------------------------------------------------------------------------- /static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/pay_icons.png -------------------------------------------------------------------------------- /static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/shop_cart.png -------------------------------------------------------------------------------- /static_root/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/adv01.jpg -------------------------------------------------------------------------------- /static_root/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/adv02.jpg -------------------------------------------------------------------------------- /static_root/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/down.png -------------------------------------------------------------------------------- /static_root/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/fruit.jpg -------------------------------------------------------------------------------- /static_root/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/icons.png -------------------------------------------------------------------------------- /static_root/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/logo.png -------------------------------------------------------------------------------- /static_root/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/logo02.png -------------------------------------------------------------------------------- /static_root/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/slide.jpg -------------------------------------------------------------------------------- /fresh/whoosh_index/_MAIN_10.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/_MAIN_10.toc -------------------------------------------------------------------------------- /requirement/xadmin-django2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/requirement/xadmin-django2.zip -------------------------------------------------------------------------------- /static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/interval_line.png -------------------------------------------------------------------------------- /static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/login_banner.png -------------------------------------------------------------------------------- /static_root/df_goods/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/slide.jpg -------------------------------------------------------------------------------- /static_root/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner01.jpg -------------------------------------------------------------------------------- /static_root/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner02.jpg -------------------------------------------------------------------------------- /static_root/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner03.jpg -------------------------------------------------------------------------------- /static_root/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner04.jpg -------------------------------------------------------------------------------- /static_root/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner05.jpg -------------------------------------------------------------------------------- /static_root/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/banner06.jpg -------------------------------------------------------------------------------- /static_root/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/favicon.ico -------------------------------------------------------------------------------- /static_root/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/icons02.png -------------------------------------------------------------------------------- /static_root/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/left_bg.jpg -------------------------------------------------------------------------------- /static_root/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/slide02.jpg -------------------------------------------------------------------------------- /static_root/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/slide03.jpg -------------------------------------------------------------------------------- /static_root/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/slide04.jpg -------------------------------------------------------------------------------- /__pycache__/manage.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/__pycache__/manage.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/manage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/__pycache__/manage.cpython-36.pyc -------------------------------------------------------------------------------- /static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /static/images/goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods022.jpg -------------------------------------------------------------------------------- /static/images/goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/goods/goods023.jpg -------------------------------------------------------------------------------- /static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/images/register_banner.png -------------------------------------------------------------------------------- /static_root/df_goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods001.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods002.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods003.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods004.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods005.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods006.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods007.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods008.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods009.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods010.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods011.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods012.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods013.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods014.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods015.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods016.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods017.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods018.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods019.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods020.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods021.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods022.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods023.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods024.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods025.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods026.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods027.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods028.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods029.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods030.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods031.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods032.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods033.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods034.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods035.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods036.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods037.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods038.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods039.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods040.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods041.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods042.jpg -------------------------------------------------------------------------------- /static_root/df_goods/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/slide02.jpg -------------------------------------------------------------------------------- /static_root/df_goods/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/slide03.jpg -------------------------------------------------------------------------------- /static_root/df_goods/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/slide04.jpg -------------------------------------------------------------------------------- /static_root/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/pay_icons.png -------------------------------------------------------------------------------- /static_root/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/shop_cart.png -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = 3 | tag_date = 0 4 | tag_svn_revision = 0 5 | 6 | -------------------------------------------------------------------------------- /static/df_goods/goods014_M074jyD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods014_M074jyD.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014_fDELOS9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods014_fDELOS9.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014_tYMrWlZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static/df_goods/goods014_tYMrWlZ.jpg -------------------------------------------------------------------------------- /static_root/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods_detail.jpg -------------------------------------------------------------------------------- /static_root/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/interval_line.png -------------------------------------------------------------------------------- /static_root/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/login_banner.png -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods001.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods002.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods003.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods004.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods005.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods006.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods007.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods008.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods009.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods010.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods011.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods012.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods013.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods014.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods015.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods016.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods017.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods018.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods019.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods020.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods021.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods022.jpg -------------------------------------------------------------------------------- /static_root/images/goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/goods/goods023.jpg -------------------------------------------------------------------------------- /static_root/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/images/register_banner.png -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/mixin.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/mixin.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/mixin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/df_goods/goods014_M074jyD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods014_M074jyD.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods014_fDELOS9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods014_fDELOS9.jpg -------------------------------------------------------------------------------- /static_root/df_goods/goods014_tYMrWlZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/df_goods/goods014_tYMrWlZ.jpg -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/storage.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/storage.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/utils/__pycache__/storage.cpython-37.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/base_model.cpython-35.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/base_model.cpython-36.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/task.cpython-35.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/task.cpython-36.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/task.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_31vs7jbytn4x7exm.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/MAIN_31vs7jbytn4x7exm.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_hvcons3bnk67w0u1.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/MAIN_hvcons3bnk67w0u1.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_hxwpy2m3t0ywa38f.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/MAIN_hxwpy2m3t0ywa38f.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_qyloe5ioo8nwloxj.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/MAIN_qyloe5ioo8nwloxj.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_vxfqluxyqjd2ell5.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/fresh/whoosh_index/MAIN_vxfqluxyqjd2ell5.seg -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /apps/user/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserConfig(AppConfig): 5 | name = 'user' 6 | verbose_name = '用户' 7 | -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/celery_tasks/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static_root/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /apps/cart/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CartConfig(AppConfig): 5 | name = 'cart' 6 | verbose_name = '购物车' 7 | -------------------------------------------------------------------------------- /apps/goods/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GoodsConfig(AppConfig): 5 | name = 'goods' 6 | verbose_name = '商品' 7 | -------------------------------------------------------------------------------- /apps/order/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OrderConfig(AppConfig): 5 | name = 'order' 6 | verbose_name = '订单' 7 | -------------------------------------------------------------------------------- /static_root/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/flash.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/trans.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /apps/goods/__pycache__/search_indexes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/search_indexes.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/search_indexes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/__pycache__/search_indexes.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advimage/img/sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/advimage/img/sample.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/pagebreak.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/quicktime.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/realmedia.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /templates/search/indexes/goods/goodssku_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.name }} # 根据商品的名称建议索引 2 | {{ object.desc }} # 根据商品的简介建议索引 3 | 4 | 5 | {{ object.goods.detail }} -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/cart/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/INSTALL: -------------------------------------------------------------------------------- 1 | 2 | Please use 3 | sudo python setup.py install 4 | 5 | and report errors to scott yuan (scottzer8@gmail.com) 6 | 7 | -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGES 2 | include INSTALL 3 | include LICENSE 4 | include README.md 5 | include fdfs_client/client.conf 6 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/fdfs_client/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py 2 | 3 | __version__ = '1.2.6' 4 | VERSION = tuple(map(int, __version__.split('.'))) 5 | 6 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.advhr_dlg',{size:"Uchder",noshade:"Dim cysgod",width:"Lled",normal:"Normal",widthunits:"Unedau"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.advhr_dlg',{size:"Height",noshade:"No Shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/tn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tn.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.advhr_dlg',{size:"Height",noshade:"No shadow",width:"Width",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/user/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.advhr_dlg',{size:"Altura",noshade:"Sem sombra",width:"Largura",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.advhr_dlg',{size:"Visina",noshade:"Bez sjene",width:"\u0160irina",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.advhr_dlg',{size:"Alto",noshade:"Sin sombra",width:"Ancho",normal:"Normal",widthunits:"Unidades"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.advhr_dlg',{size:"Alto",noshade:"Sen sombra",width:"Ancho",normal:"Normal",widthunits:"Unidades"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.advhr_dlg',{size:"H\u00e9icht",noshade:"Kee Schiet",width:"Breet",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.advhr_dlg',{size:"Tinggi",noshade:"Tanpa bayang",width:"Lebar",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.advhr_dlg',{size:"Altura",noshade:"Sem sombra",width:"Largura",normal:"Normal",widthunits:"Unids"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.advhr_dlg',{size:"H\u00f6jd",noshade:"Ingen skugga",width:"Bredd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.advhr_dlg',{size:"Visina",noshade:"Bez senke",width:"\u0160irina",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.advhr_dlg',{size:"H\u00f8jde",noshade:"Ingen skygge",width:"Bredde",normal:"Normal",widthunits:"Enheder"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/eo_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.advhr_dlg',{size:"Alteco",noshade:"Sen ombro",width:"Lar\u011deco",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.advhr_dlg',{size:"Altuera",noshade:"Itzalik gabe",width:"Zabalera",normal:"Ohikoa",widthunits:"Unitateak"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.advhr_dlg',{size:"Korkeus",noshade:"Ei varjoa",width:"Leveys",normal:"Normaali",widthunits:"Yksik\u00f6t"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.advhr_dlg',{size:"Visina",noshade:"Bez sjene",width:"\u0160irina",normal:"Normalno",widthunits:"Jedinice"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ia_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.advhr_dlg',{size:"\u957f",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.advhr_dlg',{size:"Tinggi",noshade:"Tanpa bayangan",width:"Lebar",normal:"Normal",widthunits:"Unit-unit"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/kb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kb.advhr_dlg',{size:"Te\u0263zi",noshade:"Ulac tili",width:"Tehri",normal:"Amagnu",widthunits:"Iferdisen"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.advhr_dlg',{size:"Hoogte",noshade:"Geen schaduw",width:"Breedte",normal:"Normaal",widthunits:"Eenheden"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.advhr_dlg',{size:"Storleik",noshade:"Inga skugge",width:"Breidd",normal:"Normal",widthunits:"Einingar"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.advhr_dlg',{size:"H\u00f8yde",noshade:"Ingen skygge",width:"Bredde",normal:"Normal",widthunits:"Enheter"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sc_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.advhr_dlg',{size:"\u957f",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.advhr_dlg',{size:"H\u00f6jd",noshade:"Ingen skugga",width:"Bredd",normal:"Normal",widthunits:"Enheter"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/tt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.advhr_dlg',{size:"\u9577",noshade:"\u7121\u9670\u5f71",width:"\u5bec",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/zu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.advhr_dlg',{size:"\u957f",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /static_root/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | Weights used in this project: Light (300), Regular (400), Bold (700) 3 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.advhr_dlg',{size:"Al\u00e7ada",noshade:"Sense sombra",width:"Amplada",normal:"Normal",widthunits:"Unitats"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ct_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ct.advhr_dlg',{size:"Al\u00e7ada",noshade:"Sense sombra",width:"Amplada",normal:"Normal",widthunits:"Unitats"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.advhr_dlg',{size:"H\u00f6he",noshade:"Kein Schatten",width:"Breite",normal:"Normal",widthunits:"Einheiten"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.advhr_dlg',{size:"Hauteur",noshade:"Pas d\'ombre",width:"Largeur",normal:"Normal",widthunits:"Unit\u00e9s"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.advhr_dlg',{size:"H\u00e6\u00f0",noshade:"Enginn skuggi",width:"Breidd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.advhr_dlg',{size:"St\u00f8rrelse",noshade:"Ingen skygge",width:"Bredde",normal:"Normal",widthunits:"Enheter"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.advhr_dlg',{size:"K\u00f5rgus",noshade:"Ilma varjuta",width:"Laius",normal:"Normaalne",widthunits:"\u00dchikud"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.advhr_dlg',{size:"Altezza",noshade:"Senza ombreggiatura",width:"Larghezza",normal:"Normale",widthunits:"Unit\u00e0"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.advhr_dlg',{size:"Gjat\u00ebsia",noshade:"Pa hije",width:"Gjer\u00ebsia",normal:"Normal",widthunits:"Nj\u00ebsi"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ch_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.advhr_dlg',{size:"Augstums",noshade:"Bez \u0113nas",width:"Platums",normal:"Norm\u0101ls",widthunits:"Vien\u012bbas"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.advhr_dlg',{size:"Y\u00fckseklik",noshade:"G\u00f6lge yok",width:"Geni\u015flik",normal:"Normal",widthunits:"Birimler"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u7121\u9670\u5f71",width:"\u5bec\u5ea6",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.advhr_dlg',{size:"\u9ad8",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd",normal:"\u6807\u51c6",widthunits:"\u5355\u4f4d"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190912_2154.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0002_auto_20190912_2154.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190912_2154.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/apps/order/migrations/__pycache__/0002_auto_20190912_2154.cpython-37.pyc -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.advhr_dlg',{size:"\u9ad8\u3055",noshade:"\u5f71\u306a\u3057",width:"\u5e45",normal:"\u901a\u5e38",widthunits:"\u5358\u4f4d"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.advhr_dlg',{size:"Auk\u0161tis",noshade:"Be \u0161e\u0161\u0117lio",width:"Ilgis",normal:"Normalus",widthunits:"Vienetai"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.advhr_dlg',{size:"Vi\u0161ina",noshade:"Brez sen\u010denja",width:"\u0160irina",normal:"Obi\u010dajno",widthunits:"Enote"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/zh-tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.advhr_dlg',{size:"\u9ad8",noshade:"\u7121\u9670\u5f71\u6548\u679c",width:"\u5bec",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/az_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.advhr_dlg',{size:"H\u00fcnd\u00fcrl\u00fcy\u00fc",noshade:"K\u00f6lg\u0259 yoxdur",width:"Eni",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.advhr_dlg',{size:"\u9ad8\u5ea6",noshade:"\u65e0\u9634\u5f71",width:"\u5bbd\u5ea6",normal:"\u5e38\u89c4",widthunits:"\u5355\u4f4d"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.advhr_dlg',{size:"Wysoko\u015b\u0107",noshade:"Bez cienia",width:"Szeroko\u015b\u0107",normal:"Normalny",widthunits:"Jednostki"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.advhr_dlg',{size:"V\u00fd\u0161ka",noshade:"Bez tie\u0148a",width:"\u0160\u00edrka",normal:"Norm\u00e1lne",widthunits:"Jednotky"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/HEAD/static_root/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.advhr_dlg',{size:"V\u00fd\u0161ka",noshade:"Bez st\u00ednu",width:"\u0160\u00ed\u0159ka",normal:"Norm\u00e1ln\u00ed",widthunits:"Jednotky"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ko_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ko.advhr_dlg',{size:"\ub192\uc774",noshade:"\uadf8\ub9bc\uc790 \uc5c6\uc74c",width:"\ud3ed",normal:"\ubcf4\ud1b5",widthunits:"\ub2e8\uc704"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.advhr_dlg',{size:"\u00cen\u0103l\u021bime",noshade:"F\u0103r\u0103 umbre",width:"L\u0103\u021bime",normal:"Normal",widthunits:"Unit\u0103\u021bi"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.advhr_dlg',{size:"Chi\u1ec1u r\u1ed9ng",noshade:"Kh\u00f4ng c\u00f3 b\u00f3ng",width:"Chi\u1ec1u d\u00e0i",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.advhr_dlg',{size:"Magass\u00e1g",noshade:"Nincs \u00e1rny\u00e9k",width:"Sz\u00e9less\u00e9g",normal:"Norm\u00e1l",widthunits:"M\u00e9rt\u00e9kegys\u00e9gek"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.paste_dlg',{"word_title":"Gunakan CTRL+V pada keyboard untuk paste.","text_linebreaks":"Keep linebreaks","text_title":"Gunakan CTRL+V pada keyboard untuk paste."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.advhr_dlg',{size:"\u0e2a\u0e39\u0e07",noshade:"\u0e44\u0e21\u0e48\u0e21\u0e35\u0e40\u0e07\u0e32",width:"\u0e01\u0e27\u0e49\u0e32\u0e07",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/eu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.paste_dlg',{"word_title":"Erabili CTRL+V testua lehioan itsasteko.","text_linebreaks":"Mantendu lerro-jauziak","text_title":"Erabili CTRL+V testua lehioan itsasteko."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/pt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.paste_dlg',{"word_title":"Use CTRL+V para colar o texto na janela.","text_linebreaks":"Manter quebras de linha","text_title":"Use CTRL+V para colar o texto na janela."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/eo_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.paste_dlg',{"word_title":"Uzu CTRL V por alglui tekston en la fenestron.","text_linebreaks":"Konservi linisaltojn","text_title":"Uzu CTRL V por alglui tekston en la fenestron."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.paste_dlg',{"word_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u5185\u5bb9","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u53f7","text_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u5185\u5bb9"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/mn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mn.advhr_dlg',{size:"\u04e8\u043d\u0434\u04e9\u0440",noshade:"\u0421\u04af\u04af\u0434\u044d\u0440\u0433\u04af\u0439",width:"\u04e8\u0440\u0433\u04e9\u043d",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{"word_title":"Gebruik Ctrl+V om tekst in het venster te plakken.","text_linebreaks":"Regelafbreking bewaren","text_title":"Gebruik Ctrl+V om tekst in het venster te plakken."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sq_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.paste_dlg',{"word_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin.","text_linebreaks":"Ruaj linjat e reja","text_title":"P\u00ebrdor CTRL+V p\u00ebr t\u00eb ngjitur tekstin."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.advhr_dlg',{size:"\u0b89\u0baf\u0bb0\u0bae\u0bcd",noshade:"\u0ba8\u0bbf\u0bb4\u0bb2\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8",width:"\u0b85\u0b95\u0bb2\u0bae\u0bcd",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/my_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('my.advhr_dlg',{size:"\u1021\u103c\u1019\u1004\u103a\u1037",noshade:"\u1021\u101b\u102d\u1015\u103a\u1019\u1011\u103d\u1000\u103a",width:"\u1021\u1000\u103b\u101a\u103a",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ch_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.paste_dlg',{"word_title":"\u7528 Ctrl+V \u5c06\u5185\u5bb9\u8d34\u4e0a\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u53f7","text_title":"\u7528 Ctrl+V \u5c06\u5185\u5bb9\u8d34\u4e0a\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.paste_dlg',{"word_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1.","text_linebreaks":"Manter salto de li\u00f1as","text_title":"Use CTRL+V no teclado pra pega-lo texto na vent\u00e1."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.paste_dlg',{"word_title":"\u7528 Ctrl+V \u5c07\u5167\u5bb9\u8cbc\u4e0a\u3002","text_linebreaks":"\u4fdd\u7559\u63db\u884c\u7b26\u865f","text_title":"\u7528 Ctrl+V \u5c07\u5167\u5bb9\u8cbc\u4e0a\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/he_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.advhr_dlg',{size:"\u05d2\u05d5\u05d1\u05d4",noshade:"\u05dc\u05dc\u05d0 \u05e6\u05dc",width:"\u05e8\u05d5\u05d7\u05d1",normal:"\u05e8\u05d2\u05d9\u05dc",widthunits:"\u05d9\u05d7\u05d9\u05d3\u05d5\u05ea"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/bn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/da_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.paste_dlg',{"word_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten.","text_linebreaks":"Bevar linieskift","text_title":"Anvend CTRL+V p\u00e5 tastaturet for at inds\u00e6tte teksten."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/et_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.paste_dlg',{"word_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.","text_linebreaks":"J\u00e4ta reavahetused","text_title":"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/gu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/hi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/hr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.paste_dlg',{"word_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prijelome","text_title":"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/kk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kk.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/kl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ml_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/si_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.paste_dlg',{"word_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna.","text_linebreaks":"Zachova\u0165 zalamovanie riadkov","text_title":"Pou\u017eite CTRL+V pre vlo\u017eenie textu do okna."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.paste_dlg',{"word_title":"Koristite CTRL V na tastaturi da zalepite tekst u prozor.","text_linebreaks":"Zadr\u017ei prelome linija","text_title":"Koristite CTRL+V na tastaturi da zalepite tekst u prozor."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ta_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/te_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/th_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/tn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tn.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.paste_dlg',{"word_title":"Use CTRL+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep linebreaks","text_title":"Use CTRL+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/es_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.paste_dlg',{"word_title":"Use CTRL+V en su teclado para pegar el texto en la ventana.","text_linebreaks":"Mantener saltos de l\u00ednea","text_title":"Use CTRL+V en su teclado para pegar el texto en la ventana."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ct_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ct.paste_dlg',{"word_title":"Utilitzeu Ctrl V al teclat per enganxar el text a la finestra.","text_linebreaks":"Mantenir salts de l\u00ednia","text_title":"Utilitzeu Ctrl V al teclat per enganxar el text a la finestra."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/nb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vinduet.","text_linebreaks":"Behold tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vinduet."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.paste_dlg',{"word_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.","text_linebreaks":"Obdr\u017ei prelome vrstic","text_title":"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/fi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.paste_dlg',{"word_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan.","text_linebreaks":"S\u00e4ilyt\u00e4 rivinvaihdot","text_title":"Paina Ctrl+V liitt\u00e4\u00e4ksesi sis\u00e4ll\u00f6n ikkunaan."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/kb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kb.paste_dlg',{"word_title":"SEqdec Ctrl V n unasiw iwakken ad tsent\u1e0ded a\u1e0dris deg usfaylu.","text_linebreaks":"Keep Linebreaks","text_title":"SEqdec Ctrl V n unasiw iwakken ad tsent\u1e0ded a\u1e0dris deg usfaylu."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/nn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vindauget.","text_linebreaks":"Behald tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn i dette vindauget."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.paste_dlg',{"word_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna.","text_linebreaks":"Zachovat zalamov\u00e1n\u00ed \u0159\u00e1dk\u016f","text_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.paste_dlg',{"word_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen.","text_linebreaks":"Zeilenumbr\u00fcche beibehalten","text_title":"Strg V auf der Tastatur dr\u00fccken, um den Text einzuf\u00fcgen."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.paste_dlg',{"word_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.","text_linebreaks":"Mantieni interruzioni di riga","text_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.paste_dlg',{"word_title":"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap.","text_linebreaks":"Biarkan garisan pemisah","text_title":"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/zh_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.paste_dlg',{"word_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26","text_title":"\u8bf7\u4f7f\u7528CTRL V\u5c06\u5185\u5bb9\u7c98\u8d34\u4e0a\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/fa_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fa.advhr_dlg',{size:"\u0627\u0631\u062a\u0641\u0627\u0639",noshade:"\u0628\u062f\u0648\u0646 \u0633\u0627\u06cc\u0647",width:"\u067e\u0647\u0646\u0627",normal:"\u0645\u0639\u0645\u0648\u0644\u06cc",widthunits:"\u0648\u0627\u062d\u062f"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ka_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ka.advhr_dlg',{size:"\u10e1\u10d8\u10db\u10d0\u10e6\u10da\u10d4",noshade:"\u10e9\u10e0\u10d3\u10d8\u10da\u10d8\u10e1 \u10d2\u10d0\u10e0\u10d4\u10e8\u10d4",width:"\u10e1\u10d8\u10d2\u10d0\u10dc\u10d4",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/no_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.paste_dlg',{"word_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn teksten i dette vinduet.","text_linebreaks":"Behold tekstbryting","text_title":"Bruk CTRL+V p\u00e5 tastaturet for \u00e5 lime inn teksten i dette vinduet."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ca_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.paste_dlg',{"word_title":"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra.","text_linebreaks":"Conserva els salts de l\u00ednia","text_title":"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/cy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.paste_dlg',{"word_title":"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo\'r testun i fewn i\'r ffenest.","text_linebreaks":"Cadw toriadau llinell","text_title":"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo\'r testun i fewn i\'r ffenest."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/pl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.paste_dlg',{"word_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna.","text_linebreaks":"Zachowaj ko\u0144ce linii.","text_title":"U\u017cyj CTRL+V na swojej klawiaturze \u017ceby wklei\u0107 tekst do okna."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/zh-cn_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.paste_dlg',{"word_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002","text_linebreaks":"\u4fdd\u7559\u65ad\u884c","text_title":"\u4f7f\u7528CTRL V\u7c98\u8d34\u6587\u672c\u5230\u7a97\u53e3\u4e2d\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ro_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.paste_dlg',{"word_title":"Folose\u0219te CTRL V pentru a lipi \u00een aceast\u0103 zon\u0103.","text_linebreaks":"P\u0103streaz\u0103 separatoarele de linii.","text_title":"Folose\u0219te CTRL V pentru a lipi \u00een aceast\u0103 zon\u0103."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ar_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.advhr_dlg',{size:"\u0627\u0644\u0627\u0631\u062a\u0641\u0627\u0639",noshade:"\u0644\u0627 \u0638\u0644",width:"\u0627\u0644\u0639\u0631\u0636",normal:"\u0627\u0644\u0637\u0628\u064a\u0639\u064a",widthunits:"\u0627\u0644\u0648\u062d\u062f\u0627\u062a"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/km_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('km.advhr_dlg',{size:"\u1780\u1798\u17d2\u1796\u179f\u17cb",noshade:"\u1782\u17d2\u1798\u17b6\u1793\u179f\u17d2\u179a\u1798\u17c4\u179b",width:"\u1791\u1791\u17b9\u1784",normal:"\u1792\u1798\u17d2\u1798\u178f\u17b6",widthunits:"\u17af\u1780\u178f\u17b6"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/sy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sy.advhr_dlg',{size:"\u072a\u0721\u0718\u072c\u0710",noshade:"\u0720\u071d\u072c \u071b\u0720\u0710",width:"\u0726\u072c\u071d\u0718\u072c\u0710",normal:"\u0725\u071d\u0715\u071d\u0710",widthunits:"\u071a\u0715\u071d\u0718\u072c\u0718\u072c\u0308\u0710"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.paste_dlg',{"word_title":"Dr\u00e9ckt op \u00c4rer Tastatur Ctrl+V, um den Text an ze f\u00fcgen.","text_linebreaks":"Zeilen\u00ebmbr\u00ebch b\u00e4ibehalen","text_title":"Dr\u00e9ckt op \u00c4rer Tastatur Ctrl+V, fir den Text an ze f\u00fcgen."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/lt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.paste_dlg',{"word_title":"Naudokite CTRL+V tekstui \u012fd\u0117ti \u012f \u0161\u012f lang\u0105.","text_linebreaks":"Palikti eilu\u010di\u0173 l\u016b\u017eius","text_title":"Naudokite CTRL+V tekstui \u012fd\u0117ti \u012f \u0161\u012f lang\u0105."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.paste_dlg',{"word_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre.","text_linebreaks":"Conserver les retours \u00e0 la ligne","text_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/nn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.simple',{"cleanup_desc":"Rens grisete kode","redo_desc":"Gjer om","undo_desc":"Angre","numlist_desc":"Nummerliste","bullist_desc":"Punktliste","striketrough_desc":"Gjennomstreking","underline_desc":"Understreking","italic_desc":"Kursiv","bold_desc":"Feit"}); -------------------------------------------------------------------------------- /static_root/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/el_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('el.advhr_dlg',{size:"\u038e\u03c8\u03bf\u03c2",noshade:"\u03a7\u03c9\u03c1\u03af\u03c2 \u03c3\u03ba\u03b9\u03ac",width:"\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2",normal:"\u039a\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03cc",widthunits:"\u039c\u03bf\u03bd\u03ac\u03b4\u03b1"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.paste_dlg',{"word_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster.","text_linebreaks":"Spara radbrytningar","text_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.paste_dlg',{"word_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster.","text_linebreaks":"Spara radbrytningar","text_title":"Anv\u00e4nd ctrl-v p\u00e5 ditt tangentbord f\u00f6r att klistra in i detta f\u00f6nster."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/tr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.paste_dlg',{"word_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n.","text_linebreaks":"Sat\u0131r kesmelerini tut","text_title":"Pencereye metin yap\u0131\u015ft\u0131rmak i\u00e7in klavyeden CTRL+V i kullan\u0131n."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/is_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.paste_dlg',{"word_title":"Nota\u00f0u CTRL+V \u00e1 lyklabo\u00f0rinu til a\u00f0 l\u00edma textanum \u00ed ritilinn.","text_linebreaks":"Halda endingu l\u00edna","text_title":"Nota\u00f0u CTRL+V \u00e1 lyklabor\u00f0inu til a\u00f0 l\u00edma textanum \u00ed ritilinn."}); -------------------------------------------------------------------------------- /utils/mixin.py: -------------------------------------------------------------------------------- 1 | from django.contrib.auth.decorators import login_required 2 | from django.views import View 3 | 4 | 5 | class LoginRequredMixIn(View): 6 | @classmethod 7 | def as_view(cls, **initkwargs): 8 | view = super(LoginRequredMixIn, cls).as_view(**initkwargs) 9 | return login_required(view) 10 | 11 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/mk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.advhr_dlg',{size:"\u0412\u0438\u0441\u0438\u043d\u0430",noshade:"\u0411\u0435\u0437 \u0441\u0435\u043d\u043a\u0430",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u043e",widthunits:"\u0415\u0434\u0438\u043d\u0438\u0446\u0438"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/hu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.paste_dlg',{"word_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez.","text_linebreaks":"Sort\u00f6r\u00e9sek megtart\u00e1sa","text_title":"Haszn\u00e1lja a Ctrl V-t a billenty\u0171zet\u00e9n a sz\u00f6veg beilleszt\u00e9shez."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/nb.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.simple',{"cleanup_desc":"Rens ukurant kode","redo_desc":"Gj\u00f8r om (Ctrl + Y)","undo_desc":"Angre (Ctrl+Z)","numlist_desc":"Nummerliste","bullist_desc":"Punktliste","striketrough_desc":"Gjennomstreking","underline_desc":"Understreking","italic_desc":"Kursiv","bold_desc":"Fet"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/hy_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hy.advhr_dlg',{size:"\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",noshade:"\u0531\u057c\u0561\u0576\u0581 \u057d\u057f\u057e\u0565\u0580\u056b",width:"\u053c\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576",normal:"Normal",widthunits:"Units"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/lv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.paste_dlg',{"word_title":"Izmantojiet CTRL+V uz j\u016bsu tastat\u016bras lai iekop\u0113t tekstu log\u0101.","text_linebreaks":"Sagl\u0101b\u0101t l\u012bniju sadal\u012bt\u0101jus","text_title":"Izmantojiet CTRL+V uz j\u016bsu tastat\u016bras lai iekop\u0113t tekstu log\u0101."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/no.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.simple',{"cleanup_desc":"Rydd opp i rotet kode","redo_desc":"Gj\u00f8r om","undo_desc":"Angre","numlist_desc":"Nummerliste","bullist_desc":"Punktliste","striketrough_desc":"Gjennomstreke","underline_desc":"Understreke (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fet (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/bg_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bg.advhr_dlg',{size:"\u0412\u0438\u0441\u043e\u0447\u0438\u043d\u0430",noshade:"\u0411\u0435\u0437 \u0441\u044f\u043d\u043a\u0430",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041d\u043e\u0440\u043c\u0430\u043b\u043d\u0430",widthunits:"\u0415\u0434\u0438\u043d\u0438\u0446\u0438"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/ia_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.paste_dlg',{"word_title":"\u5c06\u590d\u5236(CTRL + C)\u7684\u5185\u5bb9\u7c98\u8d34(CTRL + V)\u5230\u7a97\u53e3\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u53f7\u53f7","text_title":"\u5c06\u590d\u5236(CTRL + C)\u7684\u5185\u5bb9\u7c98\u8d34(CTRL + V)\u5230\u7a97\u53e3\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/tt_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.paste_dlg',{"word_title":"\u5c07\u8907\u88fd(CTRL + C)\u7684\u5167\u5bb9\u8cbc\u4e0a(CTRL + V)\u5230\u8996\u7a97\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u865f\u865f","text_title":"\u5c07\u8907\u88fd(CTRL + C)\u7684\u5167\u5bb9\u8cbc\u4e0a(CTRL + V)\u5230\u8996\u7a97\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/dv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/gu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/hi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/kl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ps.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ta.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/te.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ur.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/nl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.simple',{"cleanup_desc":"Code opruimen","redo_desc":"Herhalen (Ctrl+Y)","undo_desc":"Ongedaan maken (Ctrl+Z)","numlist_desc":"Nummering","bullist_desc":"Opsommingstekens","striketrough_desc":"Doorhalen","underline_desc":"Onderstrepen (Ctrl+U)","italic_desc":"Cursief (Ctrl+I)","bold_desc":"Vet (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/eo.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.simple',{"cleanup_desc":"Senrubigi mal\u011dustan kodon","redo_desc":"Refari (Ctrl Y)","undo_desc":"Malfari (Ctrl Z)","numlist_desc":"Numera listo","bullist_desc":"Bula listo","striketrough_desc":"Strekita","underline_desc":"Substrekita (Ctrl U)","italic_desc":"Kursiva (Ctrl I)","bold_desc":"Grasa (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /static_root/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/cy.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.simple',{"cleanup_desc":"Glanhau c\u00f4d anhrefnus","redo_desc":"Ailwneud (Ctrl+Y)","undo_desc":"Dadwneud (Ctrl+Z)","numlist_desc":"Rhestr trenus","bullist_desc":"Rhestr didrenus","striketrough_desc":"Taro drwodd","underline_desc":"Tanlinellu (Ctrl+U)","italic_desc":"Italig (Ctrl+I)","bold_desc":"Trwm (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/es.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.simple',{"cleanup_desc":"Limpiar c\u00f3digo basura","redo_desc":"Rehacer (Ctrl+Y)","undo_desc":"Deshacer (Ctrl+Z)","numlist_desc":"Lista ordenada","bullist_desc":"Lista desordenada","striketrough_desc":"Tachado","underline_desc":"Subrayado (Ctrl+U)","italic_desc":"Cursiva (Ctrl+I)","bold_desc":"Negrita (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/zh-tw_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.paste_dlg',{"word_title":"\u8acb\u6309\u9375\u76e4\u4e0a\u7684 Ctrl C (\u8907\u88fd) \u8cc7\u6599\u5230\u756b\u9762\u4e0a","text_linebreaks":"\u4fdd\u7559\u6587\u7ae0\u4e2d\u7684\u63db\u884c","text_title":"\u8acb\u6309\u9375\u76e4\u4e0a\u7684 Ctrl C (\u8cbc\u4e0a) \u8cc7\u6599\u5230\u756b\u9762\u4e0a"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/bs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.simple',{"cleanup_desc":"Po\u010disti kod","redo_desc":"Ponovi (Ctrl+Y)","undo_desc":"Poni\u0161ti (Ctrl+Z)","numlist_desc":"Ure\u0111ena lista","bullist_desc":"Neure\u0111ena lista","striketrough_desc":"Precrtaj","underline_desc":"Podcrtaj (Ctrl+U)","italic_desc":"Kurziv (Ctrl+I)","bold_desc":"Podebljaj (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ca.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.simple',{"cleanup_desc":"Poleix el codi","redo_desc":"Ref\u00e9s (Ctrl+Y)","undo_desc":"Desf\u00e9s (Ctrl+Z)","numlist_desc":"Llista numerada","bullist_desc":"Llista sense numeraci\u00f3","striketrough_desc":"Barrat","underline_desc":"Subratllat (Ctrl+U)","italic_desc":"Cursiva (Ctrl+I)","bold_desc":"Negreta (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/eu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.simple',{"cleanup_desc":"Kode zikina garbitu","redo_desc":"Berregin (Ctrl+Y)","undo_desc":"Desegin (Ctrl+Z)","numlist_desc":"Zerrenda ordenatua","bullist_desc":"Zerrenda","striketrough_desc":"Gainetik marra duena","underline_desc":"Azpimarratua (Ctrl+U)","italic_desc":"Etzana (Ctrl+I)","bold_desc":"Beltza (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/kb.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kb.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl Y)","undo_desc":"Undo (Ctrl Z)","numlist_desc":"Ger/Kes tabdart n wutunen","bullist_desc":"Ger/Kes tabdart n tlilac","striketrough_desc":"Strikethrough","underline_desc":"Aderrer","italic_desc":"Tira imalen (Ctrl I)","bold_desc":"Azuran (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/se.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.simple',{"cleanup_desc":"St\u00e4da upp i k\u00e4llkoden","redo_desc":"G\u00f6r om (Ctrl+Y)","undo_desc":"\u00c5ngra (Ctrl+Z)","numlist_desc":"Nummerlista","bullist_desc":"Punktlista","striketrough_desc":"Genomstruken","underline_desc":"Understruken (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fet (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.simple',{"cleanup_desc":"Pre\u010disti kodo","redo_desc":"Uveljavi (Ctrl+Y)","undo_desc":"Razveljavi (Ctrl+Z)","numlist_desc":"Na\u0161tevanje","bullist_desc":"Alineje","striketrough_desc":"Pre\u010drtano","underline_desc":"Pod\u010drtano (Ctrl+U)","italic_desc":"Po\u0161evno (Ctrl+I)","bold_desc":"Krepko (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/kk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kk.advhr_dlg',{size:"\u0411\u0438\u0456\u043a\u0442\u0456\u0433\u0456",noshade:"\u041a\u04e9\u043b\u0435\u04a3\u043a\u0435\u043d\u0456 \u0430\u043b\u0443",width:"\u0415\u043d\u0456",normal:"\u041a\u04d9\u0434\u0456\u043c\u0433\u0456",widthunits:"\u04e8\u043b\u0448\u0435\u0443 \u0431\u0456\u0440\u043b\u0456\u0433\u0456"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.advhr_dlg',{size:"\u0412\u044b\u0441\u043e\u0442\u0430",noshade:"\u0411\u0435\u0437 \u0442\u0435\u043d\u0438",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041e\u0431\u044b\u0447\u043d\u0430\u044f",widthunits:"\u0415\u0434\u0438\u043d\u0438\u0446\u044b \u0438\u0437\u043c\u0435\u0440\u0435\u043d\u0438\u044f"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.advhr_dlg',{size:"\u0412\u0438\u0441\u043e\u0442\u0430",noshade:"\u0411\u0435\u0437 \u0442\u0456\u043d\u0456",width:"\u0428\u0438\u0440\u0438\u043d\u0430",normal:"\u041d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0438\u0439",widthunits:"\u041e\u0434\u0438\u043d\u0438\u0446\u0456 \u0432\u0438\u043c\u0456\u0440\u0443"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/gl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.simple',{"cleanup_desc":"Limpar lixo no c\u00f3digo","redo_desc":"Re-facer (Ctrl+Y)","undo_desc":"Desfacer (Ctrl+Z)","numlist_desc":"Lista ordenada","bullist_desc":"Lista desordenada","striketrough_desc":"Tachado","underline_desc":"Suli\u00f1ado (Ctrl+U)","italic_desc":"Cursiva (Ctrl+I)","bold_desc":"Negri\u00f1a (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/it.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.simple',{"cleanup_desc":"Pulisci codice disordinato","redo_desc":"Ripristina (Ctrl+Y)","undo_desc":"Annulla (Ctrl+Z)","numlist_desc":"Lista ordinata","bullist_desc":"Lista non ordinata","striketrough_desc":"Barrato","underline_desc":"Sottolineato (Ctrl+U)","italic_desc":"Corsivo (Ctrl+I)","bold_desc":"Grassetto (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.simple',{"cleanup_desc":"St\u00e4da upp i k\u00e4llkoden","redo_desc":"G\u00f6r om (Ctrl+Y)","undo_desc":"\u00c5\u0085ngra (Ctrl+Z)","numlist_desc":"Nummerlista","bullist_desc":"Punktlista","striketrough_desc":"Genomstruken","underline_desc":"Understruken (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fet (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/br.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.simple',{"cleanup_desc":"Limpar c\u00f3digo incorreto","redo_desc":"Refazer (Ctrl+Y)","undo_desc":"Desfazer (Ctrl+Z)","numlist_desc":"Lista ordenada","bullist_desc":"Lista n\u00e3o-ordenada","striketrough_desc":"Riscado","underline_desc":"Sublinhado (Ctrl+U)","italic_desc":"It\u00e1lico (Ctrl+I)","bold_desc":"Negrito (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.simple',{"cleanup_desc":"Nettoyer le code","redo_desc":"R\u00e9tablir (Ctrl+Y)","undo_desc":"Annuler (Ctrl+Z)","numlist_desc":"Liste num\u00e9rot\u00e9e","bullist_desc":"Liste \u00e0 puces","striketrough_desc":"Barr\u00e9","underline_desc":"Soulign\u00e9 (Ctrl+U)","italic_desc":"Italique (Ctrl+I)","bold_desc":"Gras (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/hr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.simple',{"cleanup_desc":"Po\u010disti neuredni kod","redo_desc":"Ponovi (Ctrl+Y)","undo_desc":"Poni\u0161ti (Ctrl+Z)","numlist_desc":"Numerirana lista","bullist_desc":"Nenumerirana lista","striketrough_desc":"Precrtano","underline_desc":"Podcrtano (Ctrl U)","italic_desc":"Uko\u0161eno (Ctrl I)","bold_desc":"Podebljano (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ms.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.simple',{"cleanup_desc":"Bersihkan kod yang bersepah","redo_desc":"Buat semula (Ctrl+Y)","undo_desc":"Buat asal (Ctrl+Z)","numlist_desc":"Senarai tertib","bullist_desc":"Senarai tidak tertib","striketrough_desc":"Garis tengah","underline_desc":"Garis bawah (Ctrl+U)","italic_desc":"Condong (Ctrl+I)","bold_desc":"Tebal (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/pt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.simple',{"cleanup_desc":"Limpar c\u00f3digo incorreto","redo_desc":"Refazer (Ctrl+Y)","undo_desc":"Desfazer (Ctrl+Z)","numlist_desc":"Lista ordenada","bullist_desc":"Lista n\u00e3o-ordenada","striketrough_desc":"Riscado","underline_desc":"Sublinhado (Ctrl+U)","italic_desc":"It\u00e1lico (Ctrl+I)","bold_desc":"Negrito (Ctrl+B)"}); -------------------------------------------------------------------------------- /apps/goods/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path, re_path 2 | from . import views 3 | 4 | 5 | app_name = 'goods' 6 | 7 | urlpatterns = [ 8 | path('', views.IndexView.as_view(), name='index'), 9 | re_path(r'^goods/(?P\d+)$', views.DetailView.as_view(), name='detail'), 10 | re_path(r'^list/(?P\d+)/(?P\d+)$', views.ListView.as_view(), name='list') 11 | ] 12 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/advhr/langs/be_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('be.advhr_dlg',{size:"\u0412\u044b\u0448\u044b\u043d\u044f",noshade:"\u0411\u0435\u0437 \u0446\u0435\u043d\u044e",width:"\u0428\u044b\u0440\u044b\u043d\u044f",normal:"\u0417\u0432\u044b\u0447\u0430\u0439\u043d\u0430\u044f",widthunits:"\u0410\u0434\u0437\u0456\u043d\u043a\u0456 \u0432\u044b\u043c\u044f\u0440\u044d\u043d\u043d\u044f"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.simple',{"cleanup_desc":"Quellcode aufr\u00e4umen","redo_desc":"Wiederholen (Strg+Y)","undo_desc":"R\u00fcckg\u00e4ngig (Strg+Z)","numlist_desc":"Nummerierung","bullist_desc":"Aufz\u00e4hlung","striketrough_desc":"Durchgestrichen","underline_desc":"Unterstrichen (Strg+U)","italic_desc":"Kursiv (Strg+I)","bold_desc":"Fett (Strg+B)"}); -------------------------------------------------------------------------------- /apps/goods/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from goods.models import * 3 | # Register your models here. 4 | 5 | admin.site.register(GoodsType) 6 | admin.site.register(GoodsSKU) 7 | admin.site.register(Goods) 8 | admin.site.register(GoodsImage) 9 | admin.site.register(IndexGoodsBanner) 10 | admin.site.register(IndexTypeGoodsBanner) 11 | admin.site.register(IndexPromotionBanner) 12 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/vi_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.paste_dlg',{"word_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5.","text_linebreaks":"Gi\u1eef ng\u1eaft d\u00f2ng","text_title":"S\u1eed d\u1ee5ng CTRL+V tr\u00ean b\u00e0n ph\u00edm \u0111\u1ec3 d\u00e1n v\u0103n b\u1ea3n v\u00e0o c\u1eeda s\u1ed5."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ct.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ct.simple',{"cleanup_desc":"Netejar codi Messy","redo_desc":"Refer (Ctrl Y)","undo_desc":"Desfer (Ctrl Z)","numlist_desc":"Insertar/treure llista numerada","bullist_desc":"Insertar/treure llista de punts","striketrough_desc":"Ratllat","underline_desc":"Subratllat (Ctrl U)","italic_desc":"It\u00e0lic (Ctrl I)","bold_desc":"Negreta (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/da.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.simple',{"cleanup_desc":"Ryd op i uordentlig kode","redo_desc":"Gendan (Ctrl+Y)","undo_desc":"Fortryd (Ctrl+Z)","numlist_desc":"Nummereret punktopstilling","bullist_desc":"Unummereret punktopstilling","striketrough_desc":"Gennemstreget","underline_desc":"Understreget (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Fed (Ctrl+B)"}); -------------------------------------------------------------------------------- /apps/cart/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | app_name = 'cart' 5 | 6 | urlpatterns = [ 7 | path('add', views.CartAddView.as_view(), name='add'), 8 | path('', views.CartInfoView.as_view(), name='show'), 9 | path('update', views.CartUpdateView.as_view(), name='update'), 10 | path('delete', views.CartDeleteView.as_view(), name='delete'), 11 | ] 12 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/tn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tn.simple',{"cleanup_desc":"Kolomaka khoudi e meragaraga ","redo_desc":"Dira-gape (Ctrl+Y)","undo_desc":"Dirolola(Ctrl+Z)","numlist_desc":"Tatelano e rulagantsweng","bullist_desc":"Tatelano e thakathakaneng","striketrough_desc":"Sega-bogare","underline_desc":"Sega-tselana (Ctrl+U)","italic_desc":"Tseketa (Ctrl+I)","bold_desc":"Bokima (Ctrl+B)"}); -------------------------------------------------------------------------------- /apps/base_model.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class BaseModel(models.Model): 5 | '''模型抽象基类''' 6 | create_time = models.DateTimeField(auto_now_add=True, verbose_name='创建时间') 7 | update_time = models.DateTimeField(auto_now_add=True, verbose_name='更新时间') 8 | delflag = models.BooleanField(default=False, verbose_name='删除标识') 9 | 10 | class Meta: 11 | abstract = True -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/ro.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.simple',{"cleanup_desc":"Cur\u0103\u021b\u0103 codul","redo_desc":"Ref\u0103 (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"List\u0103 ordonat\u0103","bullist_desc":"List\u0103 neordonat\u0103","striketrough_desc":"T\u0103iat","underline_desc":"Subliniat (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"\u00cengro\u0219at (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.simple',{"cleanup_desc":"O\u010disti kod","redo_desc":"Poni\u0161ti opoziv (Ctrl Y)","undo_desc":"Opozovi (Ctrl+Z)","numlist_desc":"Ure\u0111eno nabrajanje","bullist_desc":"Neure\u0111eno nabrajanje","striketrough_desc":"Precrtano","underline_desc":"Podvu\u010deno (Ctrl U)","italic_desc":"Isko\u0161eno (Ctrl I)","bold_desc":"Podebljno (Ctrl B)"}); -------------------------------------------------------------------------------- /apps/order/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | app_name = 'order' 5 | 6 | urlpatterns = [ 7 | path('place', views.OrderPlaceView.as_view(), name='place'), 8 | path('commit', views.OrderCommitView.as_view(), name='commit'), 9 | path('pay', views.OrderPayView.as_view(), name='pay'), 10 | path('check', views.OrderCheckView.as_view(), name='check'), 11 | ] 12 | -------------------------------------------------------------------------------- /static_root/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- 1 | (function(b){b.fn.prepopulate=function(d,f,g){return this.each(function(){var a=b(this),h=function(){if(!a.data("_changed")){var e=[];b.each(d,function(a,c){c=b(c);0 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/id.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Mengulangi (Ctrl Y)","undo_desc":"Batal (Ctrl Z)","numlist_desc":"Buat/Hapus Daftar dengan Penomoran","bullist_desc":"Buat/Hapus Daftar dengan Simbol","striketrough_desc":"Strikethrough","underline_desc":"Garis Bawah (Ctrl U)","italic_desc":"Cetak Miring (Ctrl I)","bold_desc":"Cetak Tebal (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/pl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.simple',{"cleanup_desc":"Wyczy\u015b\u0107 nieuporz\u0105dkowany kod","redo_desc":"Pon\u00f3w (Ctrl+Y)","undo_desc":"Cofnij (Ctrl+Z)","numlist_desc":"Lista numerowana","bullist_desc":"Lista nienumerowana","striketrough_desc":"Przekre\u015blenie","underline_desc":"Podkre\u015blenie (Ctrl+U)","italic_desc":"Kursywa (Ctrl+I)","bold_desc":"Pogrubienie (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sc.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.simple',{"cleanup_desc":"\u6e05\u9664\u591a\u4f59\u4ee3\u7801","redo_desc":"\u91cd\u505a(Ctrl+Y)","undo_desc":"\u64a4\u9500(Ctrl+Z)","numlist_desc":"\u7f16\u53f7","bullist_desc":"\u4e13\u6848\u7b26\u53f7","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u5e95\u7ebf(Ctrl+U)","italic_desc":"\u659c\u4f53(Ctrl+I)","bold_desc":"\u9ed1\u4f53(Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sq.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.simple',{"cleanup_desc":"Pastro kodin","redo_desc":"Rib\u00ebj (Ctrl+Y)","undo_desc":"\u00c7b\u00ebj (Ctrl+Z)","numlist_desc":"List\u00eb e rregullt","bullist_desc":"List\u00eb e parregullt","striketrough_desc":"Vij\u00eb n\u00eb mes","underline_desc":"I N\u00ebnvizuar (Ctrl+U)","italic_desc":"I Pjerr\u00ebt (Ctrl+I)","bold_desc":"I Trash\u00eb (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/zu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.simple',{"cleanup_desc":"\u6e05\u9664\u591a\u4f59\u4ee3\u7801","redo_desc":"\u91cd\u505a(Ctrl+Y)","undo_desc":"\u64a4\u9500(Ctrl+Z)","numlist_desc":"\u7f16\u53f7","bullist_desc":"\u4e13\u6848\u7b26\u53f7","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u5e95\u7ebf(Ctrl+U)","italic_desc":"\u659c\u4f53(Ctrl+I)","bold_desc":"\u9ed1\u4f53(Ctrl+B)"}); -------------------------------------------------------------------------------- /apps/goods/search_indexes.py: -------------------------------------------------------------------------------- 1 | # 定义索引类 2 | from haystack import indexes 3 | from goods.models import GoodsSKU 4 | 5 | 6 | class GoodsSKUIndex(indexes.SearchIndex, indexes.Indexable): 7 | text = indexes.CharField(document=True, use_template=True) 8 | 9 | def get_model(self): 10 | return GoodsSKU 11 | 12 | def index_queryset(self, using=None): 13 | return self.get_model().objects.all() 14 | -------------------------------------------------------------------------------- /static_root/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/admin/js/jquery.init.js: -------------------------------------------------------------------------------- 1 | /*global django:true, jQuery:false*/ 2 | /* Puts the included jQuery into our own namespace using noConflict and passing 3 | * it 'true'. This ensures that the included jQuery doesn't pollute the global 4 | * namespace (i.e. this preserves pre-existing values for both window.$ and 5 | * window.jQuery). 6 | */ 7 | var django = django || {}; 8 | django.jQuery = jQuery.noConflict(true); 9 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/zh.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.simple',{"cleanup_desc":"\u51c0\u5316\u4ee3\u7801","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u6d88(Ctrl Z)","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/eo_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eo.emotions_dlg',{cry:"Ploranta",cool:"Mojosa",desc:"Viza\u011detoj",title:"Enmeti viza\u011deton",yell:"Kolera",wink:"Okulumo",undecided:"Sendecida","tongue_out":"Lango",surprised:"Surprizita",smile:"Rideto",sealed:"Bu\u015do Fermita","money_mouth":"Avara",laughing:"Rido",kiss:"Kiso",innocent:"Senkulpa",frown:"Malgajo","foot_in_mouth":"Rubo",embarassed:"Hontema"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/sc_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.paste_dlg',{"word_title":"\u5728\u952e\u76d8\u4e0a\u540c\u65f6\u6309\u4e0bCTRL\u548cV\u952e\uff0c\u4ee5\u8d34\u4e0a\u6587\u5b57\u5230\u6b64\u89c6\u7a97\u3002 ","text_linebreaks":"\u4fdd\u7559\u6362\u884c\u7b26\u53f7","text_title":"\u5728\u952e\u76d8\u4e0a\u540c\u65f6\u6309\u4e0bCTRL\u548cV\u952e\uff0c\u4ee5\u8d34\u4e0a\u6587\u5b57\u5230\u6b64\u89c6\u7a97\u3002 "}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cn.simple',{"cleanup_desc":"\u6e05\u7406\u4ee3\u7801","redo_desc":"\u91cd\u505a (Ctrl Y)","undo_desc":"\u64a4\u9500 (Ctrl Z)","numlist_desc":"\u6709\u5e8f\u7f16\u53f7","bullist_desc":"\u65e0\u5e8f\u7f16\u53f7","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf (Ctrl U)","italic_desc":"\u659c\u4f53 (Ctrl I)","bold_desc":"\u7c97\u4f53 (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/is.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.simple',{"cleanup_desc":"Hreinsa ruslk\u00f3\u00f0a","redo_desc":"Endurtaka (Ctrl+Y)","undo_desc":"Taka til baka (Ctrl+Z)","numlist_desc":"N\u00famera\u00f0ur listi","bullist_desc":"B\u00f3lulisti","striketrough_desc":"Yfirstrika\u00f0","underline_desc":"Undirstrika\u00f0 (Ctrl+U)","italic_desc":"Sk\u00e1letra\u00f0 (Ctrl+I)","bold_desc":"Feitletra\u00f0 (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/paste/langs/zu_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.paste_dlg',{"word_title":"\u5728\u952e\u76d8\u4e0a\u540c\u65f6\u6309\u4e0bCTRL\u548cV\u952e\uff0c\u4ee5\u8d34\u4e0a\u6587\u5b57\u5230\u6b64\u89c6\u7a97\u3002","text_linebreaks":"\u4fdd\u7559\u5206\u884c\u7b26\u53f7\u53f7","text_title":"\u5728\u952e\u76d8\u4e0a\u540c\u65f6\u6309\u4e0bCTRL\u548cV\u952e\uff0c\u4ee5\u8d34\u4e0a\u6587\u5b57\u5230\u6b64\u89c6\u7a97\u3002"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/tr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.simple',{"cleanup_desc":"Da\u011f\u0131n\u0131k kodu temizle","redo_desc":"Yinele (Ctrl+Y)","undo_desc":"Geri al (Ctrl+Z)","numlist_desc":"S\u0131ral\u0131 liste","bullist_desc":"S\u0131ras\u0131z liste","striketrough_desc":"\u00dcst\u00fc \u00e7izili","underline_desc":"Alt\u0131 \u00e7izili (Ctrl+U)","italic_desc":"\u0130talik (Ctrl+I)","bold_desc":"Kal\u0131n (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/tt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.simple',{"cleanup_desc":"\u6e05\u9664\u5167\u5bb9","redo_desc":"\u91cd\u4f5c\u8b8a\u66f4 (Ctrl+Y)","undo_desc":"\u53d6\u6d88\u8b8a\u66f4 (Ctrl+Z)","numlist_desc":"\u7de8\u865f","bullist_desc":"\u6e05\u55ae\u7b26\u865f","striketrough_desc":"\u4e2d\u5283\u7dda","underline_desc":"\u5e95\u7dda (Ctrl+U)","italic_desc":"\u659c\u9ad4(Ctrl+I)","bold_desc":"\u7c97\u9ad4(Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/tw.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.simple',{"cleanup_desc":"\u6e05\u9664\u683c\u5f0f","redo_desc":"\u53d6\u6d88\u5fa9\u539f (Ctrl+Y)","undo_desc":"\u5fa9\u539f (Ctrl+Z)","numlist_desc":"\u7de8\u865f\u5217\u8868","bullist_desc":"\u9805\u76ee\u5217\u8868","striketrough_desc":"\u522a\u9664\u7dda","underline_desc":"\u5e95\u7dda (Ctrl+U)","italic_desc":"\u659c\u9ad4 (Ctrl+I)","bold_desc":"\u7c97\u9ad4(Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/cs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.simple',{"cleanup_desc":"Vy\u010distit k\u00f3d","redo_desc":"Znovu (Ctrl+Y)","undo_desc":"Zp\u011bt (Ctrl+Z)","numlist_desc":"\u010c\u00edslovan\u00fd seznam","bullist_desc":"Seznam s odr\u00e1\u017ekami","striketrough_desc":"P\u0159e\u0161krtnut\u00e9","underline_desc":"Podtr\u017een\u00e9 (Ctrl+U)","italic_desc":"Kurz\u00edva (Ctrl+I)","bold_desc":"Tu\u010dn\u00e9 (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/lt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.simple',{"cleanup_desc":"I\u0161valyti netvarking\u0105 kod\u0105","redo_desc":"Gr\u0105\u017einti (Ctrl+Y)","undo_desc":"At\u0161aukti (Ctrl+Z)","numlist_desc":"Sunumeruotas s\u0105ra\u0161as","bullist_desc":"Nesunumeruotas s\u0105ra\u0161as","striketrough_desc":"Perbrauktas","underline_desc":"Pabrauktas (Ctrl+U)","italic_desc":"Kursyvas (Ctrl+I)","bold_desc":"Pusjuodis (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/lv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.simple',{"cleanup_desc":"Izt\u012br\u012bt nek\u0101rt\u012bgu kodu","redo_desc":"Atatsaukt (Ctrl+Y)","undo_desc":"Atsaukt (Ctrl+Z)","numlist_desc":"Numur\u0113ts saraksts","bullist_desc":"Nenumur\u0113ts saraksts","striketrough_desc":"P\u0101rsv\u012btrojums","underline_desc":"Pasv\u012btrojums (Ctrl+U)","italic_desc":"Sl\u012bpraksts (Ctrl+I)","bold_desc":"Treknraksts (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/zh-cn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-cn.simple',{"cleanup_desc":"\u6e05\u9664\u65e0\u7528\u4ee3\u7801","redo_desc":"\u6062\u590d(Ctrl Y)","undo_desc":"\u64a4\u9500(Ctrl Z)","numlist_desc":"\u7f16\u53f7\u5217\u8868","bullist_desc":"\u9879\u76ee\u5217\u8868","striketrough_desc":"\u5220\u9664\u7ebf","underline_desc":"\u4e0b\u5212\u7ebf(Ctrl U)","italic_desc":"\u659c\u4f53(Ctrl I)","bold_desc":"\u7c97\u4f53(Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/sk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.simple',{"cleanup_desc":"Vy\u010disti\u0165 k\u00f3d","redo_desc":"Znovu (Ctrl+Y)","undo_desc":"Sp\u00e4\u0165 (Ctrl+Z)","numlist_desc":"\u010c\u00edslovan\u00fd zoznam","bullist_desc":"Zoznam s odr\u00e1\u017ekami","striketrough_desc":"Pre\u010diarknut\u00e9","underline_desc":"Pod\u010diarknut\u00e9 (Ctrl+U)","italic_desc":"Kurz\u00edva (Ctrl+I)","bold_desc":"Tu\u010dn\u00e9 (Ctrl+B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/br_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.emotions_dlg',{cry:"Chor\u00e3o",cool:"Fixe",desc:"Emoticons",title:"Inserir emoticon",yell:"Irado",wink:"Piscadela",undecided:"Indeciso","tongue_out":"L\u00edngua de fora",surprised:"Surpresa",smile:"Sorriso",sealed:"Boca Fechada","money_mouth":"Avarez",laughing:"Riso",kiss:"Beijo",innocent:"Inocente",frown:"Decep\u00e7\u00e3o","foot_in_mouth":"Disse asneira",embarassed:"Embara\u00e7ado"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/bs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.emotions_dlg',{cry:"Pla\u010d",cool:"Cool",desc:"Emocije",title:"Umetni emociju",yell:"Vi\u010de",wink:"Namigiva",undecided:"Neodlu\u010dan","tongue_out":"Belji se",surprised:"Iznena\u0111en",smile:"Osmijeh",sealed:"\u0160utim","money_mouth":"Bogata\u0161",laughing:"Smijeh",kiss:"Poljubac",innocent:"Nevina\u0161ce",frown:"Mr\u0161ti se","foot_in_mouth":"Izlanuo se",embarassed:"Sramim se"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/searchreplace/langs/ms_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.searchreplace_dlg',{findwhat:"Cari apa",replacewith:"Ganti dengan",direction:"Arah",up:"Atas",down:"Bawah",mcase:"Samakan kes",findnext:"Carian seterusnya",allreplaced:"Kesemua perkataan telah digantikan.","searchnext_desc":"Cari lagi",notfound:"Carian tamat. Perkataan yang dicari tiada.","search_title":"Cari","replace_title":"Cari/Ganti",replaceall:"Ganti kesemuanya",replace:"Ganti"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/zh-tw.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh-tw.simple',{"cleanup_desc":"\u6574\u7406\u8cc7\u6599","redo_desc":"\u91cd\u4f86 (Ctrl Y)","undo_desc":"\u5fa9\u539f (Ctrl Z)","numlist_desc":"\u9805\u76ee\u7b26\u865f (\u6709\u6578\u5b57\u7684)","bullist_desc":"\u9805\u76ee\u7b26\u865f","striketrough_desc":"\u522a\u9664\u7dda","underline_desc":"\u5e95\u7dda (Ctrl U)","italic_desc":"\u659c\u7dda (Ctrl I)","bold_desc":"\u52a0\u7c97 (Ctrl B)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/dv_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in mouth",embarassed:"Embarassed",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/ps_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in mouth",embarassed:"Embarassed",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/ur_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in mouth",embarassed:"Embarassed",usage:"Use left and right arrows to navigate."}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/se_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.emotions_dlg',{cry:"Gr\u00e5ter",cool:"Cool",desc:"Smileys",title:"Infoga smiley",yell:"Skrikandes",wink:"Fl\u00f6rt",undecided:"Obest\u00e4md","tongue_out":"Tungan ute",surprised:"F\u00f6rv\u00e5nad",smile:"Glad",sealed:"Tyst","money_mouth":"Guld i mun",laughing:"Skrattande",kiss:"Kyss",innocent:"Oskyldig",frown:"Rynkar p\u00e5 n\u00e4san","foot_in_mouth":"Foten i munnen",embarassed:"Sk\u00e4ms"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/langs/az.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.simple',{"cleanup_desc":"\u018fyri kodu t\u0259mizl\u0259","redo_desc":"T\u0259krarla (Ctrl+Y)","undo_desc":"L\u0259\u011fv et (Ctrl+Z)","numlist_desc":"N\u00f6mr\u0259l\u0259nmi\u015f siyah\u0131","bullist_desc":"Qeyd edilmi\u015f siyah\u0131","striketrough_desc":"Qaralanm\u0131\u015f","underline_desc":"Altdan x\u0259tt (Ctrl+U)","italic_desc":"Kursiv (Ctrl+I)","bold_desc":"Yar\u0131qal\u0131n (Ctrl+B)"}); -------------------------------------------------------------------------------- /fresh/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for fresh project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'fresh.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /static_root/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/lb_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.emotions_dlg',{cry:"Kr\u00e4ischend",cool:"Cool",desc:"Smileyen",title:"Smiley af\u00fcgen",yell:"Br\u00ebllend",wink:"Zwinkernd",undecided:"Onentschloss","tongue_out":"Zong eraus",surprised:"Iwwerrascht",smile:"Laachend",sealed:"Verschlossen","money_mouth":"Suen",laughing:"Laachend",kiss:"Kussend",innocent:"Onsch\u00eblleg",frown:"D\'Stir ronzelend","foot_in_mouth":"Eragefall",embarassed:"Gen\u00e9iert"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/example_dependency/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})(); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/searchreplace/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.searchreplace_dlg',{findwhat:"Cari apa...",replacewith:"Ganti dengan...",direction:"Arah",up:"Atas",down:"Bawah",mcase:"Match case",findnext:"Cari selanjutnya",allreplaced:"Seluruh kata dari string pencarian telah digantikan","searchnext_desc":"Cari Lagi",notfound:"Pencarian selesai. Hasil tidak ditemukan.","search_title":"Cari","replace_title":"Cari/Ganti",replaceall:"Ganti semua",replace:"Ganti"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/plugins/emotions/langs/gl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.emotions_dlg',{cry:"Chora",cool:"Guay",desc:"Emoticones",title:"Insertar emoticon",yell:"Anoxado",wink:"Gui\u00f1o",undecided:"Indeciso","tongue_out":"Canso",surprised:"Sorprendido",smile:"Sorriso",sealed:"Selado","money_mouth":"Cartos",laughing:"Risa",kiss:"Beso",innocent:"Inocente",frown:"Triste","foot_in_mouth":"A que dixen",embarassed:"Vergo\u00f1a",usage:"Use as frechas esquerda e dereita para navegar."}); --------------------------------------------------------------------------------