├── .gitignore ├── README.md ├── __pycache__ ├── manage.cpython-35.pyc └── manage.cpython-36.pyc ├── apps ├── __init__.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 ├── cart │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.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 │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── goods │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.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 │ │ ├── search_indexes.cpython-36.pyc │ │ ├── search_indexes.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 │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 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 │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── search_indexes.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── order │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── __init__.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 │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-36.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-36.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20190912_2154.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 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 │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py └── user │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.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 │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── urls.cpython-37.pyc │ ├── views.cpython-35.pyc │ ├── views.cpython-36.pyc │ └── views.cpython-37.pyc │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-35.pyc │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0001_initial.cpython-37.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── celery_tasks ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── task.cpython-35.pyc │ ├── task.cpython-36.pyc │ └── task.cpython-37.pyc └── task.py ├── config ├── __init__.py ├── alipay │ ├── __init__.py │ ├── alipay_public_key.pem │ ├── app_private_key.pem │ └── app_public_key.pem └── fdfs │ ├── __init__.py │ └── client.conf ├── fresh ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-35.pyc │ ├── settings.cpython-36.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── urls.cpython-37.pyc │ ├── wsgi.cpython-35.pyc │ ├── wsgi.cpython-36.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py ├── whoosh_index │ ├── MAIN_31vs7jbytn4x7exm.seg │ ├── MAIN_WRITELOCK │ ├── MAIN_hvcons3bnk67w0u1.seg │ ├── MAIN_hxwpy2m3t0ywa38f.seg │ ├── MAIN_qyloe5ioo8nwloxj.seg │ ├── MAIN_vxfqluxyqjd2ell5.seg │ └── _MAIN_10.toc └── wsgi.py ├── manage.py ├── requeirtments.txt ├── requirement ├── __init__.py ├── fdfs_client-py-master │ ├── .gitignore │ ├── CHANGES │ ├── INSTALL │ ├── LICENSE │ ├── MANIFEST.in │ ├── PKG-INFO │ ├── README.md │ ├── __init__.py │ ├── fdfs_client │ │ ├── __init__.py │ │ ├── client.py │ │ ├── connection.py │ │ ├── exceptions.py │ │ ├── fdfs_protol.py │ │ ├── fdfs_test.py │ │ ├── sendfilemodule.c │ │ ├── storage_client.py │ │ ├── tracker_client.py │ │ └── utils.py │ ├── setup.cfg │ └── setup.py └── xadmin-django2.zip ├── static ├── css │ ├── main.css │ └── reset.css ├── df_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 │ ├── goods014_M074jyD.jpg │ ├── goods014_fDELOS9.jpg │ ├── goods014_tYMrWlZ.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 │ ├── slide.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ └── slide04.jpg ├── images │ ├── adv01.jpg │ ├── adv02.jpg │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── banner06.jpg │ ├── down.png │ ├── favicon.ico │ ├── fruit.jpg │ ├── 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 │ ├── goods_detail.jpg │ ├── icons.png │ ├── icons02.png │ ├── interval_line.png │ ├── left_bg.jpg │ ├── login_banner.png │ ├── logo.png │ ├── logo02.png │ ├── pay_icons.png │ ├── register_banner.png │ ├── shop_cart.png │ ├── slide.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ └── slide04.jpg └── js │ ├── jquery-1.12.4.min.js │ ├── jquery-ui.min.js │ ├── jquery.cookie.js │ ├── register.js │ └── slide.js ├── static_root ├── admin │ ├── css │ │ ├── autocomplete.css │ │ ├── base.css │ │ ├── changelists.css │ │ ├── dashboard.css │ │ ├── fonts.css │ │ ├── forms.css │ │ ├── login.css │ │ ├── responsive.css │ │ ├── responsive_rtl.css │ │ ├── rtl.css │ │ ├── vendor │ │ │ └── select2 │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ ├── select2.css │ │ │ │ └── select2.min.css │ │ └── widgets.css │ ├── fonts │ │ ├── LICENSE.txt │ │ ├── README.txt │ │ ├── Roboto-Bold-webfont.woff │ │ ├── Roboto-Light-webfont.woff │ │ └── Roboto-Regular-webfont.woff │ ├── img │ │ ├── LICENSE │ │ ├── README.txt │ │ ├── calendar-icons.svg │ │ ├── gis │ │ │ ├── move_vertex_off.svg │ │ │ └── move_vertex_on.svg │ │ ├── icon-addlink.svg │ │ ├── icon-alert.svg │ │ ├── icon-calendar.svg │ │ ├── icon-changelink.svg │ │ ├── icon-clock.svg │ │ ├── icon-deletelink.svg │ │ ├── icon-no.svg │ │ ├── icon-unknown-alt.svg │ │ ├── icon-unknown.svg │ │ ├── icon-viewlink.svg │ │ ├── icon-yes.svg │ │ ├── inline-delete.svg │ │ ├── search.svg │ │ ├── selector-icons.svg │ │ ├── sorting-icons.svg │ │ ├── tooltag-add.svg │ │ └── tooltag-arrowright.svg │ └── js │ │ ├── SelectBox.js │ │ ├── SelectFilter2.js │ │ ├── actions.js │ │ ├── actions.min.js │ │ ├── admin │ │ ├── DateTimeShortcuts.js │ │ └── RelatedObjectLookups.js │ │ ├── autocomplete.js │ │ ├── calendar.js │ │ ├── cancel.js │ │ ├── change_form.js │ │ ├── collapse.js │ │ ├── collapse.min.js │ │ ├── core.js │ │ ├── inlines.js │ │ ├── inlines.min.js │ │ ├── jquery.init.js │ │ ├── popup_response.js │ │ ├── prepopulate.js │ │ ├── prepopulate.min.js │ │ ├── prepopulate_init.js │ │ ├── timeparse.js │ │ ├── urlify.js │ │ └── vendor │ │ ├── jquery │ │ ├── LICENSE.txt │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── select2 │ │ ├── LICENSE.md │ │ ├── i18n │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ └── select2.full.min.js │ │ └── xregexp │ │ ├── LICENSE.txt │ │ ├── xregexp.js │ │ └── xregexp.min.js ├── css │ ├── main.css │ └── reset.css ├── df_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 │ ├── goods014_M074jyD.jpg │ ├── goods014_fDELOS9.jpg │ ├── goods014_tYMrWlZ.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 │ ├── slide.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ └── slide04.jpg ├── django_tinymce │ ├── init_tinymce.js │ └── jquery-1.9.1.min.js ├── images │ ├── adv01.jpg │ ├── adv02.jpg │ ├── banner01.jpg │ ├── banner02.jpg │ ├── banner03.jpg │ ├── banner04.jpg │ ├── banner05.jpg │ ├── banner06.jpg │ ├── down.png │ ├── favicon.ico │ ├── fruit.jpg │ ├── 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 │ ├── goods_detail.jpg │ ├── icons.png │ ├── icons02.png │ ├── interval_line.png │ ├── left_bg.jpg │ ├── login_banner.png │ ├── logo.png │ ├── logo02.png │ ├── pay_icons.png │ ├── register_banner.png │ ├── shop_cart.png │ ├── slide.jpg │ ├── slide02.jpg │ ├── slide03.jpg │ └── slide04.jpg ├── index.html ├── js │ ├── jquery-1.12.4.min.js │ ├── jquery-ui.min.js │ ├── jquery.cookie.js │ ├── register.js │ └── slide.js └── tiny_mce │ ├── langs │ ├── ar.js │ ├── az.js │ ├── be.js │ ├── bg.js │ ├── bn.js │ ├── br.js │ ├── bs.js │ ├── ca.js │ ├── ch.js │ ├── cn.js │ ├── cs.js │ ├── ct.js │ ├── cy.js │ ├── da.js │ ├── de.js │ ├── dv.js │ ├── el.js │ ├── en.js │ ├── eo.js │ ├── es.js │ ├── et.js │ ├── eu.js │ ├── fa.js │ ├── fi.js │ ├── fr.js │ ├── gl.js │ ├── gu.js │ ├── he.js │ ├── hi.js │ ├── hr.js │ ├── hu.js │ ├── hy.js │ ├── ia.js │ ├── id.js │ ├── is.js │ ├── it.js │ ├── ja.js │ ├── ka.js │ ├── kb.js │ ├── kk.js │ ├── kl.js │ ├── km.js │ ├── ko.js │ ├── lb.js │ ├── lt.js │ ├── lv.js │ ├── mk.js │ ├── ml.js │ ├── mn.js │ ├── ms.js │ ├── my.js │ ├── nb.js │ ├── nl.js │ ├── nn.js │ ├── no.js │ ├── pl.js │ ├── ps.js │ ├── pt.js │ ├── ro.js │ ├── ru.js │ ├── sc.js │ ├── se.js │ ├── si.js │ ├── sk.js │ ├── sl.js │ ├── sq.js │ ├── sr.js │ ├── sv.js │ ├── sy.js │ ├── ta.js │ ├── te.js │ ├── th.js │ ├── tn.js │ ├── tr.js │ ├── tt.js │ ├── tw.js │ ├── uk.js │ ├── ur.js │ ├── vi.js │ ├── zh-cn.js │ ├── zh-tw.js │ ├── zh.js │ └── zu.js │ ├── license.txt │ ├── plugins │ ├── advhr │ │ ├── css │ │ │ └── advhr.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── rule.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ └── rule.htm │ ├── advimage │ │ ├── css │ │ │ └── advimage.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── image.htm │ │ ├── img │ │ │ └── sample.gif │ │ ├── js │ │ │ └── image.js │ │ └── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ ├── advlink │ │ ├── css │ │ │ └── advlink.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── advlink.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ └── link.htm │ ├── advlist │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── autolink │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── autoresize │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── autosave │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── bbcode │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── contextmenu │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── directionality │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── emotions │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── emotions.htm │ │ ├── img │ │ │ ├── smiley-cool.gif │ │ │ ├── smiley-cry.gif │ │ │ ├── smiley-embarassed.gif │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ ├── smiley-frown.gif │ │ │ ├── smiley-innocent.gif │ │ │ ├── smiley-kiss.gif │ │ │ ├── smiley-laughing.gif │ │ │ ├── smiley-money-mouth.gif │ │ │ ├── smiley-sealed.gif │ │ │ ├── smiley-smile.gif │ │ │ ├── smiley-surprised.gif │ │ │ ├── smiley-tongue-out.gif │ │ │ ├── smiley-undecided.gif │ │ │ ├── smiley-wink.gif │ │ │ └── smiley-yell.gif │ │ ├── js │ │ │ └── emotions.js │ │ └── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ ├── example │ │ ├── dialog.htm │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── img │ │ │ └── example.gif │ │ ├── js │ │ │ └── dialog.js │ │ └── langs │ │ │ ├── en.js │ │ │ └── en_dlg.js │ ├── example_dependency │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── fullpage │ │ ├── css │ │ │ └── fullpage.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── fullpage.htm │ │ ├── js │ │ │ └── fullpage.js │ │ └── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ ├── fullscreen │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── fullscreen.htm │ ├── iespell │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── inlinepopups │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── skins │ │ │ └── clearlooks2 │ │ │ │ ├── img │ │ │ │ ├── alert.gif │ │ │ │ ├── button.gif │ │ │ │ ├── buttons.gif │ │ │ │ ├── confirm.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── horizontal.gif │ │ │ │ └── vertical.gif │ │ │ │ └── window.css │ │ └── template.htm │ ├── insertdatetime │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── layer │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── legacyoutput │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── lists │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── media │ │ ├── css │ │ │ └── media.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ ├── embed.js │ │ │ └── media.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── media.htm │ │ └── moxieplayer.swf │ ├── nonbreaking │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── noneditable │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── pagebreak │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── paste │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ ├── pastetext.js │ │ │ └── pasteword.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── pastetext.htm │ │ └── pasteword.htm │ ├── preview │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── example.html │ │ ├── jscripts │ │ │ └── embed.js │ │ └── preview.html │ ├── print │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── save │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── searchreplace │ │ ├── css │ │ │ └── searchreplace.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── searchreplace.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ └── searchreplace.htm │ ├── spellchecker │ │ ├── css │ │ │ └── content.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ └── img │ │ │ └── wline.gif │ ├── style │ │ ├── css │ │ │ └── props.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── props.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── props.htm │ │ └── readme.txt │ ├── tabfocus │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── table │ │ ├── cell.htm │ │ ├── css │ │ │ ├── cell.css │ │ │ ├── row.css │ │ │ └── table.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ ├── cell.js │ │ │ ├── merge_cells.js │ │ │ ├── row.js │ │ │ └── table.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── merge_cells.htm │ │ ├── row.htm │ │ └── table.htm │ ├── template │ │ ├── blank.htm │ │ ├── css │ │ │ └── template.css │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── js │ │ │ └── template.js │ │ ├── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── eo_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── km_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── my_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ └── template.htm │ ├── visualblocks │ │ ├── css │ │ │ └── visualblocks.css │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── visualchars │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ ├── wordcount │ │ ├── editor_plugin.js │ │ └── editor_plugin_src.js │ └── xhtmlxtras │ │ ├── abbr.htm │ │ ├── acronym.htm │ │ ├── attributes.htm │ │ ├── cite.htm │ │ ├── css │ │ ├── attributes.css │ │ └── popup.css │ │ ├── del.htm │ │ ├── editor_plugin.js │ │ ├── editor_plugin_src.js │ │ ├── ins.htm │ │ ├── js │ │ ├── abbr.js │ │ ├── acronym.js │ │ ├── attributes.js │ │ ├── cite.js │ │ ├── del.js │ │ ├── element_common.js │ │ └── ins.js │ │ └── langs │ │ ├── ar_dlg.js │ │ ├── az_dlg.js │ │ ├── be_dlg.js │ │ ├── bg_dlg.js │ │ ├── bn_dlg.js │ │ ├── br_dlg.js │ │ ├── bs_dlg.js │ │ ├── ca_dlg.js │ │ ├── ch_dlg.js │ │ ├── cn_dlg.js │ │ ├── cs_dlg.js │ │ ├── ct_dlg.js │ │ ├── cy_dlg.js │ │ ├── da_dlg.js │ │ ├── de_dlg.js │ │ ├── dv_dlg.js │ │ ├── el_dlg.js │ │ ├── en_dlg.js │ │ ├── eo_dlg.js │ │ ├── es_dlg.js │ │ ├── et_dlg.js │ │ ├── eu_dlg.js │ │ ├── fa_dlg.js │ │ ├── fi_dlg.js │ │ ├── fr_dlg.js │ │ ├── gl_dlg.js │ │ ├── gu_dlg.js │ │ ├── he_dlg.js │ │ ├── hi_dlg.js │ │ ├── hr_dlg.js │ │ ├── hu_dlg.js │ │ ├── hy_dlg.js │ │ ├── ia_dlg.js │ │ ├── id_dlg.js │ │ ├── is_dlg.js │ │ ├── it_dlg.js │ │ ├── ja_dlg.js │ │ ├── ka_dlg.js │ │ ├── kb_dlg.js │ │ ├── kk_dlg.js │ │ ├── kl_dlg.js │ │ ├── km_dlg.js │ │ ├── ko_dlg.js │ │ ├── lb_dlg.js │ │ ├── lt_dlg.js │ │ ├── lv_dlg.js │ │ ├── mk_dlg.js │ │ ├── ml_dlg.js │ │ ├── mn_dlg.js │ │ ├── ms_dlg.js │ │ ├── my_dlg.js │ │ ├── nb_dlg.js │ │ ├── nl_dlg.js │ │ ├── nn_dlg.js │ │ ├── no_dlg.js │ │ ├── pl_dlg.js │ │ ├── ps_dlg.js │ │ ├── pt_dlg.js │ │ ├── ro_dlg.js │ │ ├── ru_dlg.js │ │ ├── sc_dlg.js │ │ ├── se_dlg.js │ │ ├── si_dlg.js │ │ ├── sk_dlg.js │ │ ├── sl_dlg.js │ │ ├── sq_dlg.js │ │ ├── sr_dlg.js │ │ ├── sv_dlg.js │ │ ├── sy_dlg.js │ │ ├── ta_dlg.js │ │ ├── te_dlg.js │ │ ├── th_dlg.js │ │ ├── tn_dlg.js │ │ ├── tr_dlg.js │ │ ├── tt_dlg.js │ │ ├── tw_dlg.js │ │ ├── uk_dlg.js │ │ ├── ur_dlg.js │ │ ├── vi_dlg.js │ │ ├── zh-cn_dlg.js │ │ ├── zh-tw_dlg.js │ │ ├── zh_dlg.js │ │ └── zu_dlg.js │ ├── themes │ ├── advanced │ │ ├── about.htm │ │ ├── anchor.htm │ │ ├── charmap.htm │ │ ├── color_picker.htm │ │ ├── editor_template.js │ │ ├── editor_template_src.js │ │ ├── image.htm │ │ ├── img │ │ │ ├── colorpicker.jpg │ │ │ ├── flash.gif │ │ │ ├── icons.gif │ │ │ ├── iframe.gif │ │ │ ├── pagebreak.gif │ │ │ ├── quicktime.gif │ │ │ ├── realmedia.gif │ │ │ ├── shockwave.gif │ │ │ ├── trans.gif │ │ │ ├── video.gif │ │ │ └── windowsmedia.gif │ │ ├── js │ │ │ ├── about.js │ │ │ ├── anchor.js │ │ │ ├── charmap.js │ │ │ ├── color_picker.js │ │ │ ├── image.js │ │ │ ├── link.js │ │ │ └── source_editor.js │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── ar_dlg.js │ │ │ ├── az.js │ │ │ ├── az_dlg.js │ │ │ ├── be.js │ │ │ ├── be_dlg.js │ │ │ ├── bg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn.js │ │ │ ├── bn_dlg.js │ │ │ ├── br.js │ │ │ ├── br_dlg.js │ │ │ ├── bs.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch.js │ │ │ ├── ch_dlg.js │ │ │ ├── cn.js │ │ │ ├── cn_dlg.js │ │ │ ├── cs.js │ │ │ ├── cs_dlg.js │ │ │ ├── ct.js │ │ │ ├── ct_dlg.js │ │ │ ├── cy.js │ │ │ ├── cy_dlg.js │ │ │ ├── da.js │ │ │ ├── da_dlg.js │ │ │ ├── de.js │ │ │ ├── de_dlg.js │ │ │ ├── dv.js │ │ │ ├── dv_dlg.js │ │ │ ├── el.js │ │ │ ├── el_dlg.js │ │ │ ├── en.js │ │ │ ├── en_dlg.js │ │ │ ├── eo.js │ │ │ ├── eo_dlg.js │ │ │ ├── es.js │ │ │ ├── es_dlg.js │ │ │ ├── et.js │ │ │ ├── et_dlg.js │ │ │ ├── eu.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu.js │ │ │ ├── gu_dlg.js │ │ │ ├── he.js │ │ │ ├── he_dlg.js │ │ │ ├── hi.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia.js │ │ │ ├── ia_dlg.js │ │ │ ├── id.js │ │ │ ├── id_dlg.js │ │ │ ├── is.js │ │ │ ├── is_dlg.js │ │ │ ├── it.js │ │ │ ├── it_dlg.js │ │ │ ├── ja.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka.js │ │ │ ├── ka_dlg.js │ │ │ ├── kb.js │ │ │ ├── kb_dlg.js │ │ │ ├── kk.js │ │ │ ├── kk_dlg.js │ │ │ ├── kl.js │ │ │ ├── kl_dlg.js │ │ │ ├── km.js │ │ │ ├── km_dlg.js │ │ │ ├── ko.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms.js │ │ │ ├── ms_dlg.js │ │ │ ├── my.js │ │ │ ├── my_dlg.js │ │ │ ├── nb.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn.js │ │ │ ├── nn_dlg.js │ │ │ ├── no.js │ │ │ ├── no_dlg.js │ │ │ ├── pl.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc.js │ │ │ ├── sc_dlg.js │ │ │ ├── se.js │ │ │ ├── se_dlg.js │ │ │ ├── si.js │ │ │ ├── si_dlg.js │ │ │ ├── sk.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv.js │ │ │ ├── sv_dlg.js │ │ │ ├── sy.js │ │ │ ├── sy_dlg.js │ │ │ ├── ta.js │ │ │ ├── ta_dlg.js │ │ │ ├── te.js │ │ │ ├── te_dlg.js │ │ │ ├── th.js │ │ │ ├── th_dlg.js │ │ │ ├── tn.js │ │ │ ├── tn_dlg.js │ │ │ ├── tr.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-cn_dlg.js │ │ │ ├── zh-tw.js │ │ │ ├── zh-tw_dlg.js │ │ │ ├── zh.js │ │ │ ├── zh_dlg.js │ │ │ ├── zu.js │ │ │ └── zu_dlg.js │ │ ├── link.htm │ │ ├── shortcuts.htm │ │ ├── skins │ │ │ ├── default │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ ├── img │ │ │ │ │ ├── buttons.png │ │ │ │ │ ├── items.gif │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ ├── progress.gif │ │ │ │ │ └── tabs.gif │ │ │ │ └── ui.css │ │ │ ├── highcontrast │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ │ ├── content.css │ │ │ │ ├── dialog.css │ │ │ │ ├── img │ │ │ │ ├── button_bg.png │ │ │ │ ├── button_bg_black.png │ │ │ │ └── button_bg_silver.png │ │ │ │ ├── ui.css │ │ │ │ ├── ui_black.css │ │ │ │ └── ui_silver.css │ │ └── source_editor.htm │ └── simple │ │ ├── editor_template.js │ │ ├── editor_template_src.js │ │ ├── img │ │ └── icons.gif │ │ ├── langs │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── ch.js │ │ ├── cn.js │ │ ├── cs.js │ │ ├── ct.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── ia.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kb.js │ │ ├── kk.js │ │ ├── kl.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── my.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sc.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── sy.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── th.js │ │ ├── tn.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── tw.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ ├── zh-tw.js │ │ ├── zh.js │ │ └── zu.js │ │ └── skins │ │ ├── default │ │ ├── content.css │ │ └── ui.css │ │ └── o2k7 │ │ ├── content.css │ │ ├── img │ │ └── button_bg.png │ │ └── ui.css │ ├── tiny_mce.js │ ├── tiny_mce_popup.js │ ├── tiny_mce_src.js │ └── utils │ ├── editable_selects.js │ ├── form_utils.js │ ├── mctabs.js │ └── validate.js ├── templates ├── base.html ├── base_detail_list.html ├── base_no_cart.html ├── base_user_center.html ├── cart.html ├── detail.html ├── index.html ├── list.html ├── login.html ├── place_order.html ├── register.html ├── search │ ├── indexes │ │ └── goods │ │ │ └── goodssku_text.txt │ └── search.html ├── user_center_info.html ├── user_center_order.html └── user_center_site.html ├── utils ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── __init__.cpython-37.pyc │ ├── mixin.cpython-35.pyc │ ├── mixin.cpython-36.pyc │ ├── mixin.cpython-37.pyc │ ├── storage.cpython-35.pyc │ ├── storage.cpython-36.pyc │ └── storage.cpython-37.pyc ├── mixin.py └── storage.py ├── uwsgi.ini ├── uwsgi.log └── uwsgi.pid /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .svn 3 | -------------------------------------------------------------------------------- /__pycache__/manage.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/__pycache__/manage.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/manage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/__pycache__/manage.cpython-36.pyc -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__init__.py -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/base_model.cpython-35.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/base_model.cpython-36.pyc -------------------------------------------------------------------------------- /apps/__pycache__/base_model.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/__pycache__/base_model.cpython-37.pyc -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /apps/cart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__init__.py -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/cart/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CartConfig(AppConfig): 5 | name = 'cart' 6 | verbose_name = '购物车' 7 | -------------------------------------------------------------------------------- /apps/cart/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/migrations/__init__.py -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/cart/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/cart/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/cart/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /apps/cart/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /apps/goods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__init__.py -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/search_indexes.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/search_indexes.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/search_indexes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/search_indexes.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /apps/goods/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class GoodsConfig(AppConfig): 5 | name = 'goods' 6 | verbose_name = '商品' 7 | -------------------------------------------------------------------------------- /apps/goods/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__init__.py -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__pycache__/0002_auto_20190801_2149.cpython-37.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/goods/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/goods/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /apps/goods/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /apps/order/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__init__.py -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/order/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OrderConfig(AppConfig): 5 | name = 'order' 6 | verbose_name = '订单' 7 | -------------------------------------------------------------------------------- /apps/order/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__init__.py -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/0002_auto_20190730_2230.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__pycache__/0002_auto_20190912_2154.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/order/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/order/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/order/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /apps/user/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__init__.py -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /apps/user/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UserConfig(AppConfig): 5 | name = 'user' 6 | verbose_name = '用户' 7 | -------------------------------------------------------------------------------- /apps/user/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/migrations/__init__.py -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/user/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/apps/user/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /apps/user/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /celery_tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__init__.py -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/task.cpython-35.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/task.cpython-36.pyc -------------------------------------------------------------------------------- /celery_tasks/__pycache__/task.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/celery_tasks/__pycache__/task.cpython-37.pyc -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/config/__init__.py -------------------------------------------------------------------------------- /config/alipay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/config/alipay/__init__.py -------------------------------------------------------------------------------- /config/fdfs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/config/fdfs/__init__.py -------------------------------------------------------------------------------- /fresh/__init__.py: -------------------------------------------------------------------------------- 1 | import pymysql 2 | 3 | pymysql.install_as_MySQLdb() 4 | 5 | -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /fresh/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_31vs7jbytn4x7exm.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_31vs7jbytn4x7exm.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_WRITELOCK -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_hvcons3bnk67w0u1.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_hvcons3bnk67w0u1.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_hxwpy2m3t0ywa38f.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_hxwpy2m3t0ywa38f.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_qyloe5ioo8nwloxj.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_qyloe5ioo8nwloxj.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/MAIN_vxfqluxyqjd2ell5.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/MAIN_vxfqluxyqjd2ell5.seg -------------------------------------------------------------------------------- /fresh/whoosh_index/_MAIN_10.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/fresh/whoosh_index/_MAIN_10.toc -------------------------------------------------------------------------------- /requirement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/requirement/__init__.py -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/requirement/fdfs_client-py-master/__init__.py -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /requirement/fdfs_client-py-master/setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | tag_build = 3 | tag_date = 0 4 | tag_svn_revision = 0 5 | 6 | -------------------------------------------------------------------------------- /requirement/xadmin-django2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/requirement/xadmin-django2.zip -------------------------------------------------------------------------------- /static/df_goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods001.jpg -------------------------------------------------------------------------------- /static/df_goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods002.jpg -------------------------------------------------------------------------------- /static/df_goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods003.jpg -------------------------------------------------------------------------------- /static/df_goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods004.jpg -------------------------------------------------------------------------------- /static/df_goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods005.jpg -------------------------------------------------------------------------------- /static/df_goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods006.jpg -------------------------------------------------------------------------------- /static/df_goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods007.jpg -------------------------------------------------------------------------------- /static/df_goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods008.jpg -------------------------------------------------------------------------------- /static/df_goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods009.jpg -------------------------------------------------------------------------------- /static/df_goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods010.jpg -------------------------------------------------------------------------------- /static/df_goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods011.jpg -------------------------------------------------------------------------------- /static/df_goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods012.jpg -------------------------------------------------------------------------------- /static/df_goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods013.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods014.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014_M074jyD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods014_M074jyD.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014_fDELOS9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods014_fDELOS9.jpg -------------------------------------------------------------------------------- /static/df_goods/goods014_tYMrWlZ.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods014_tYMrWlZ.jpg -------------------------------------------------------------------------------- /static/df_goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods015.jpg -------------------------------------------------------------------------------- /static/df_goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods016.jpg -------------------------------------------------------------------------------- /static/df_goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods017.jpg -------------------------------------------------------------------------------- /static/df_goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods018.jpg -------------------------------------------------------------------------------- /static/df_goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods019.jpg -------------------------------------------------------------------------------- /static/df_goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods020.jpg -------------------------------------------------------------------------------- /static/df_goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods021.jpg -------------------------------------------------------------------------------- /static/df_goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods022.jpg -------------------------------------------------------------------------------- /static/df_goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods023.jpg -------------------------------------------------------------------------------- /static/df_goods/goods024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods024.jpg -------------------------------------------------------------------------------- /static/df_goods/goods025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods025.jpg -------------------------------------------------------------------------------- /static/df_goods/goods026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods026.jpg -------------------------------------------------------------------------------- /static/df_goods/goods027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods027.jpg -------------------------------------------------------------------------------- /static/df_goods/goods028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods028.jpg -------------------------------------------------------------------------------- /static/df_goods/goods029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods029.jpg -------------------------------------------------------------------------------- /static/df_goods/goods030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods030.jpg -------------------------------------------------------------------------------- /static/df_goods/goods031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods031.jpg -------------------------------------------------------------------------------- /static/df_goods/goods032.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods032.jpg -------------------------------------------------------------------------------- /static/df_goods/goods033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods033.jpg -------------------------------------------------------------------------------- /static/df_goods/goods034.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods034.jpg -------------------------------------------------------------------------------- /static/df_goods/goods035.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods035.jpg -------------------------------------------------------------------------------- /static/df_goods/goods036.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods036.jpg -------------------------------------------------------------------------------- /static/df_goods/goods037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods037.jpg -------------------------------------------------------------------------------- /static/df_goods/goods038.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods038.jpg -------------------------------------------------------------------------------- /static/df_goods/goods039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods039.jpg -------------------------------------------------------------------------------- /static/df_goods/goods040.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods040.jpg -------------------------------------------------------------------------------- /static/df_goods/goods041.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods041.jpg -------------------------------------------------------------------------------- /static/df_goods/goods042.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/goods042.jpg -------------------------------------------------------------------------------- /static/df_goods/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/slide.jpg -------------------------------------------------------------------------------- /static/df_goods/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/slide02.jpg -------------------------------------------------------------------------------- /static/df_goods/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/slide03.jpg -------------------------------------------------------------------------------- /static/df_goods/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/df_goods/slide04.jpg -------------------------------------------------------------------------------- /static/images/adv01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/adv01.jpg -------------------------------------------------------------------------------- /static/images/adv02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/adv02.jpg -------------------------------------------------------------------------------- /static/images/banner01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner01.jpg -------------------------------------------------------------------------------- /static/images/banner02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner02.jpg -------------------------------------------------------------------------------- /static/images/banner03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner03.jpg -------------------------------------------------------------------------------- /static/images/banner04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner04.jpg -------------------------------------------------------------------------------- /static/images/banner05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner05.jpg -------------------------------------------------------------------------------- /static/images/banner06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/banner06.jpg -------------------------------------------------------------------------------- /static/images/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/down.png -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/fruit.jpg -------------------------------------------------------------------------------- /static/images/goods/goods001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods001.jpg -------------------------------------------------------------------------------- /static/images/goods/goods002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods002.jpg -------------------------------------------------------------------------------- /static/images/goods/goods003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods003.jpg -------------------------------------------------------------------------------- /static/images/goods/goods004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods004.jpg -------------------------------------------------------------------------------- /static/images/goods/goods005.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods005.jpg -------------------------------------------------------------------------------- /static/images/goods/goods006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods006.jpg -------------------------------------------------------------------------------- /static/images/goods/goods007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods007.jpg -------------------------------------------------------------------------------- /static/images/goods/goods008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods008.jpg -------------------------------------------------------------------------------- /static/images/goods/goods009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods009.jpg -------------------------------------------------------------------------------- /static/images/goods/goods010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods010.jpg -------------------------------------------------------------------------------- /static/images/goods/goods011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods011.jpg -------------------------------------------------------------------------------- /static/images/goods/goods012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods012.jpg -------------------------------------------------------------------------------- /static/images/goods/goods013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods013.jpg -------------------------------------------------------------------------------- /static/images/goods/goods014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods014.jpg -------------------------------------------------------------------------------- /static/images/goods/goods015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods015.jpg -------------------------------------------------------------------------------- /static/images/goods/goods016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods016.jpg -------------------------------------------------------------------------------- /static/images/goods/goods017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods017.jpg -------------------------------------------------------------------------------- /static/images/goods/goods018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods018.jpg -------------------------------------------------------------------------------- /static/images/goods/goods019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods019.jpg -------------------------------------------------------------------------------- /static/images/goods/goods020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods020.jpg -------------------------------------------------------------------------------- /static/images/goods/goods021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods021.jpg -------------------------------------------------------------------------------- /static/images/goods/goods022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods022.jpg -------------------------------------------------------------------------------- /static/images/goods/goods023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods/goods023.jpg -------------------------------------------------------------------------------- /static/images/goods_detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/goods_detail.jpg -------------------------------------------------------------------------------- /static/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/icons.png -------------------------------------------------------------------------------- /static/images/icons02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/icons02.png -------------------------------------------------------------------------------- /static/images/interval_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/interval_line.png -------------------------------------------------------------------------------- /static/images/left_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/left_bg.jpg -------------------------------------------------------------------------------- /static/images/login_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/login_banner.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/logo02.png -------------------------------------------------------------------------------- /static/images/pay_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/pay_icons.png -------------------------------------------------------------------------------- /static/images/register_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/register_banner.png -------------------------------------------------------------------------------- /static/images/shop_cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/shop_cart.png -------------------------------------------------------------------------------- /static/images/slide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/slide.jpg -------------------------------------------------------------------------------- /static/images/slide02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/slide02.jpg -------------------------------------------------------------------------------- /static/images/slide03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/slide03.jpg -------------------------------------------------------------------------------- /static/images/slide04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static/images/slide04.jpg -------------------------------------------------------------------------------- /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/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static_root/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static_root/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /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/icon-changelink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /static_root/admin/img/tooltag-arrowright.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/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/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /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/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/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/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /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/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/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/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/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/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)"}); -------------------------------------------------------------------------------- /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)"}); -------------------------------------------------------------------------------- /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/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/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/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/themes/simple/langs/et.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.simple',{"cleanup_desc":"Puhasta segane kood","redo_desc":"Tee uuesti (Ctrl+Y)","undo_desc":"V\u00f5ta tagasi (Ctrl+Z)","numlist_desc":"Korrap\u00e4rane loetelu","bullist_desc":"Ebakorrap\u00e4rane loetelu","striketrough_desc":"L\u00e4bijoonitud","underline_desc":"Allajoonitud (Ctrl+U)","italic_desc":"Kursiiv (Ctrl+I)","bold_desc":"Rasvane (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/fi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.simple',{"cleanup_desc":"Siisti sekainen koodi","redo_desc":"Tee uudestaan (Ctrl+Y)","undo_desc":"Peru (Ctrl+Z)","numlist_desc":"J\u00e4rjestetty lista","bullist_desc":"J\u00e4rjest\u00e4m\u00e4t\u00f6n lista","striketrough_desc":"Yliviivaus","underline_desc":"Alleviivaus (Ctrl+U)","italic_desc":"Kursivointi (Ctrl+I)","bold_desc":"Lihavointi (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/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/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/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/ia.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.simple',{"cleanup_desc":"\u5220\u9664\u5197\u4f59\u7801","redo_desc":"\u6062\u590d (Ctrl+Y)","undo_desc":"\u64a4\u9500 (Ctrl+Z)","numlist_desc":"\u7f16\u53f7","bullist_desc":"\u6e05\u5355\u7b26\u53f7","striketrough_desc":"\u4e2d\u5212\u7ebf","underline_desc":"\u5e95\u7ebf (Ctrl+U)","italic_desc":"\u659c\u4f53(Ctrl+I)","bold_desc":"\u7c97\u4f53(Ctrl+B)"}); -------------------------------------------------------------------------------- /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/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/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/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/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/lb.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.simple',{"cleanup_desc":"Quellcode botzen","redo_desc":"Widderhuelen (Strg+Y)","undo_desc":"R\u00e9ckg\u00e4ngeg (Strg+Z)","numlist_desc":"Sort\u00e9iert L\u00ebscht","bullist_desc":"Onsort\u00e9iert L\u00ebscht","striketrough_desc":"Duerchgestrach","underline_desc":"\u00cbnnerstrach (Strg+U)","italic_desc":"Kursiv (Strg+I)","bold_desc":"Fett (Strg+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/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/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/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/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/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/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/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)"}); -------------------------------------------------------------------------------- /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/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/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/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/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)"}); -------------------------------------------------------------------------------- /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/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/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)"}); -------------------------------------------------------------------------------- /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/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/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/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)"}); -------------------------------------------------------------------------------- /static_root/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/static_root/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /templates/search/indexes/goods/goodssku_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.name }} # 根据商品的名称建议索引 2 | {{ object.desc }} # 根据商品的简介建议索引 3 | 4 | 5 | {{ object.goods.detail }} -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/mixin.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/mixin.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/mixin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/mixin.cpython-37.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/storage.cpython-35.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/storage.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/storage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ivy-1996/fresh/f894a7488052e1321fc45a461a4d8e0f26234245/utils/__pycache__/storage.cpython-37.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /uwsgi.pid: -------------------------------------------------------------------------------- 1 | 5647 2 | --------------------------------------------------------------------------------