├── emails ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── forms.py └── tasks.py ├── dataentry ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── admin.py ├── urls.py └── management │ └── commands │ └── helloworld.py ├── uploads ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── views.py ├── apps.py ├── admin.py └── models.py ├── stockanalysis ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── apps.py ├── admin.py └── urls.py ├── image_compression ├── __init__.py ├── migrations │ └── __init__.py ├── tests.py ├── urls.py ├── apps.py └── forms.py ├── static ├── ckeditor │ ├── ckeditor │ │ ├── plugins │ │ │ ├── exportpdf │ │ │ │ └── plugindefinition.js │ │ │ ├── notification │ │ │ │ └── lang │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ └── pl.js │ │ │ ├── sourcedialog │ │ │ │ ├── lang │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── af.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ └── gu.js │ │ │ │ └── icons │ │ │ │ │ ├── sourcedialog.png │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── sourcedialog.png │ │ │ │ │ └── sourcedialog-rtl.png │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── autoembed │ │ │ │ └── lang │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── de.js │ │ │ │ │ └── it.js │ │ │ ├── embed │ │ │ │ └── icons │ │ │ │ │ ├── embed.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── embed.png │ │ │ ├── image2 │ │ │ │ ├── icons │ │ │ │ │ ├── image.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── image.png │ │ │ │ └── lang │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── he.js │ │ │ │ │ └── ar.js │ │ │ ├── link │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── smiley │ │ │ │ └── images │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── kiss.png │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── heart.png │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── envelope.png │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ ├── wink_smile.png │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── whatchutalkingabout_smile.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── mathjax │ │ │ │ ├── icons │ │ │ │ │ ├── mathjax.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── mathjax.png │ │ │ │ ├── images │ │ │ │ │ └── loader.gif │ │ │ │ └── lang │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── af.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── fr.js │ │ │ │ │ └── tt.js │ │ │ ├── uicolor │ │ │ │ ├── icons │ │ │ │ │ ├── uicolor.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── uicolor.png │ │ │ │ ├── yui │ │ │ │ │ └── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ └── picker_thumb.png │ │ │ │ └── lang │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── af.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── gl.js │ │ │ │ │ └── es.js │ │ │ ├── widget │ │ │ │ ├── images │ │ │ │ │ └── handle.png │ │ │ │ └── lang │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── af.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── uk.js │ │ │ │ │ └── el.js │ │ │ ├── docprops │ │ │ │ └── icons │ │ │ │ │ ├── docprops.png │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── docprops.png │ │ │ │ │ └── docprops-rtl.png │ │ │ ├── language │ │ │ │ ├── icons │ │ │ │ │ ├── language.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── language.png │ │ │ │ └── lang │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── pt-br.js │ │ │ ├── wsc │ │ │ │ └── icons │ │ │ │ │ ├── spellchecker.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── spellchecker.png │ │ │ ├── flash │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ └── images │ │ │ │ │ └── hiddenfield.gif │ │ │ ├── iframe │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── preview │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── styles │ │ │ │ │ └── screen.css │ │ │ │ └── preview.html │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── block_address.png │ │ │ │ │ └── block_blockquote.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── codesnippet │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ └── lang │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── bg.js │ │ │ ├── placeholder │ │ │ │ ├── icons │ │ │ │ │ ├── placeholder.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── placeholder.png │ │ │ │ └── lang │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── he.js │ │ │ │ │ └── vi.js │ │ │ ├── embedsemantic │ │ │ │ └── icons │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── embedsemantic.png │ │ │ ├── templates │ │ │ │ ├── templates │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ └── templatedefinition.js │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── styles │ │ │ │ │ └── dialog.css │ │ │ ├── scayt │ │ │ │ └── CHANGELOG.md │ │ │ ├── devtools │ │ │ │ └── lang │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── ca.js │ │ │ │ │ └── es.js │ │ │ ├── embedbase │ │ │ │ └── lang │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ └── ko.js │ │ │ └── uploadwidget │ │ │ │ └── lang │ │ │ │ ├── zh.js │ │ │ │ └── zh-cn.js │ │ ├── skins │ │ │ ├── moono │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── lock-open.png │ │ │ └── moono-lisa │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ ├── spinner.gif │ │ │ │ ├── hidpi │ │ │ │ ├── lock.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ └── refresh.png │ │ │ │ └── lock-open.png │ │ ├── bender-runner.config.json │ │ └── config.js │ ├── file-icons │ │ ├── doc.png │ │ ├── file.png │ │ ├── pdf.png │ │ ├── ppt.png │ │ ├── swf.png │ │ ├── txt.png │ │ └── xls.png │ └── galleriffic │ │ └── css │ │ ├── caption.png │ │ ├── loader.gif │ │ ├── loaderWhite.gif │ │ ├── nextPageArrow.gif │ │ ├── prevPageArrow.gif │ │ ├── nextPageArrowWhite.gif │ │ └── prevPageArrowWhite.gif ├── js │ └── custom.js └── admin │ ├── img │ ├── tooltag-arrowright.svg │ ├── README.txt │ ├── icon-addlink.svg │ ├── tooltag-add.svg │ ├── icon-changelink.svg │ └── icon-deletelink.svg │ └── js │ └── jquery.init.js ├── dump.rdb ├── .DS_Store ├── awd_main ├── static │ └── js │ │ └── custom.js ├── __init__.py └── forms.py └── templates └── alerts.html /emails/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataentry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stockanalysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataentry/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emails/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_compression/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploads/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stockanalysis/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_compression/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/exportpdf/plugindefinition.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dump.rdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/dump.rdb -------------------------------------------------------------------------------- /emails/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /uploads/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/.DS_Store -------------------------------------------------------------------------------- /dataentry/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /static/js/custom.js: -------------------------------------------------------------------------------- 1 | setTimeout(function(){ 2 | $('#messages').fadeOut('slow') 3 | }, 5000) -------------------------------------------------------------------------------- /uploads/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /image_compression/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /stockanalysis/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /awd_main/static/js/custom.js: -------------------------------------------------------------------------------- 1 | setTimeout(function(){ 2 | $('#messages').fadeOut('slow') 3 | }, 5000) -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរកូដ",title:"អក្សរកូដ"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්රය",title:"මුලාශ්රය"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /static/ckeditor/file-icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/doc.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/file.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/pdf.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/ppt.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/swf.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/txt.png -------------------------------------------------------------------------------- /static/ckeditor/file-icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/file-icons/xls.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/caption.png -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/loader.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/loaderWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/loaderWhite.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","zh",{embeddingInProgress:"正在嘗試嵌入已貼上的 URL...",embeddingFailed:"這個 URL 無法被自動嵌入。"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/nextPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/nextPageArrow.gif -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/prevPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/prevPageArrow.gif -------------------------------------------------------------------------------- /image_compression/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | 5 | urlpatterns = [ 6 | path('compress/', views.compress, name='compress'), 7 | ] 8 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /emails/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class EmailsConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "emails" 7 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/embed/icons/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/embed/icons/embed.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/image2/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/image2/icons/image.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/nextPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/nextPageArrowWhite.gif -------------------------------------------------------------------------------- /static/ckeditor/galleriffic/css/prevPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/galleriffic/css/prevPageArrowWhite.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /uploads/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class UploadsConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "uploads" 7 | -------------------------------------------------------------------------------- /dataentry/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class DataentryConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "dataentry" 7 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/language/icons/language.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/wsc/icons/spellchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/wsc/icons/spellchecker.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /emails/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Email 3 | 4 | 5 | class EmailForm(forms.ModelForm): 6 | class Meta: 7 | model = Email 8 | fields = ('__all__') -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/preview/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/preview/images/pagebreak.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/wsc/icons/hidpi/spellchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/wsc/icons/hidpi/spellchecker.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /stockanalysis/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class StockanalysisConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "stockanalysis" 7 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","cs",{embeddingInProgress:"Pokus o vnoření vložené URL",embeddingFailed:"Tato URL nemůže být automaticky vnořena."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /awd_main/__init__.py: -------------------------------------------------------------------------------- 1 | # This will make sure the app is always imported when 2 | # Django starts so that shared_task will use this app. 3 | from .celery import app as celery_app 4 | 5 | __all__ = ('celery_app',) -------------------------------------------------------------------------------- /dataentry/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Student, Customer, Employee 3 | 4 | 5 | admin.site.register(Student) 6 | admin.site.register(Customer) 7 | admin.site.register(Employee) -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png -------------------------------------------------------------------------------- /image_compression/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ImageCompressionConfig(AppConfig): 5 | default_auto_field = "django.db.models.BigAutoField" 6 | name = "image_compression" 7 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","en",{embeddingInProgress:"Trying to embed pasted URL...",embeddingFailed:"This URL could not be automatically embedded."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","nb",{embeddingInProgress:"Prøver å bygge inn innlimt URL...",embeddingFailed:"URL-en kunne ikke bli automatisk bygget inn."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","tr",{embeddingInProgress:"Yapıştırdığınız URL gömülmeye çalışılıyor...",embeddingFailed:"Bu URL otomatik olarak gömülemedi."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","ku",{embeddingInProgress:"لەهەوڵی لکاندنی بەستەری ناونیشانە...",embeddingFailed:"ئەم بەستەرە خۆکارانە ناتواندرێت بخرێتە ناوێ."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pt-br",{embeddingInProgress:"Tentando embutir a URL colada...",embeddingFailed:"Esta URL não pode ser embutida automaticamente."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-rathankumar/automate-with-django/HEAD/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png -------------------------------------------------------------------------------- /uploads/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Upload 3 | 4 | class UploadAdmin(admin.ModelAdmin): 5 | list_display = ['model_name', 'uploaded_at'] 6 | 7 | admin.site.register(Upload, UploadAdmin) -------------------------------------------------------------------------------- /dataentry/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | urlpatterns = [ 5 | path('import-data/', views.import_data, name='import_data'), 6 | path('export-data/', views.export_data, name='export_data'), 7 | ] -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pl",{embeddingInProgress:"Osadzanie wklejonego adresu URL...",embeddingFailed:"Ten adres URL multimediów nie może być automatycznie osadzony."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","de",{embeddingInProgress:"Einbetten der eingefügten URL wird versucht...",embeddingFailed:"Diese URL konnte nicht automatisch eingebettet werden."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/autoembed/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","it",{embeddingInProgress:"Prova a incorporare l'URL incollato...",embeddingFailed:"Non è stato possibile incorporare automaticamente questo URL."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/templates/templatedefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh",{title:"以 TeX 表示數學",button:"數學",dialogInput:"請輸入 TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX 說明文件",loading:"載入中…",pathName:"數學"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ja",{title:"TeX形式の数式",button:"数式",dialogInput:"TeX形式の数式を入力してください",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeXの解説",loading:"読み込み中…",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh",{move:"拖曳以移動"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ja",{move:"ドラッグして移動"}); -------------------------------------------------------------------------------- /templates/alerts.html: -------------------------------------------------------------------------------- 1 | {% if messages %} 2 |
7 | {% endif %} -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","he",{move:"לחץ וגרור להזזה"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh-cn",{move:"点击并拖拽以移动"}); -------------------------------------------------------------------------------- /stockanalysis/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Stock, StockData 3 | 4 | class StockAdmin(admin.ModelAdmin): 5 | search_fields = ('id', 'name', 'symbol') 6 | 7 | admin.site.register(Stock, StockAdmin) 8 | admin.site.register(StockData) 9 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","he",{title:"מתמטיקה בTeX",button:"מתמטיקה",dialogInput:"כתוב את הTeX שלך כאן",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"תיעוד TeX",loading:"טוען...",pathName:"מתמטיקה"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ar",{move:"إضغط و إسحب للتحريك"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cy",{move:"Clcio a llusgo i symud"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ko",{move:"움직이려면 클릭 후 드래그 하세요"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ru",{move:"Нажмите и перетащите"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ja",{button:"言語を設定",remove:"言語を削除"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh",{button:"設定語言",remove:"移除語言"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","af",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Skryf you Tex hier",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokument",loading:"laai...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sv",{title:"Mattematik i TeX",button:"Matte",dialogInput:"Skriv din TeX här",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"laddar...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","vi",{title:"Toán học bằng TeX",button:"Toán",dialogInput:"Nhập mã TeX ở đây",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tài liệu TeX",loading:"đang nạp...",pathName:"toán"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh-cn",{title:"TeX 语法的数学公式编辑器",button:"数学公式",dialogInput:"在此编写您的 TeX 指令",docUrl:"http://zh.wikipedia.org/wiki/TeX",docLabel:"TeX 语法(可以参考维基百科自身关于数学公式显示方式的帮助)",loading:"正在加载...",pathName:"数字公式"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","af",{move:"Klik en trek on te beweeg"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","da",{move:"Klik og træk for at flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","eo",{move:"klaki kaj treni por movi"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fa",{move:"کلیک و کشیدن برای جابجایی"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","gl",{move:"Prema e arrastre para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hr",{move:"Klikni i povuci da pomakneš"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nb",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","no",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt",{move:"Clique e arraste para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","he",{button:"צור שפה",remove:"הסר שפה"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh-cn",{button:"设置语言",remove:"移除语言"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ar",{title:"الرياصيات في Tex",button:"رياضيات",dialogInput:"أكتب Tex خاصتك هنا",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"وثائق Tex",loading:"جاري التحميل...",pathName:"رياضيات"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write your TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hu",{title:"Matematika a TeX-ben",button:"Matek",dialogInput:"Írd a TeX-ed ide",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentáció",loading:"töltés...",pathName:"matek"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nb",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nl",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Typ hier uw TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentatie",loading:"laden...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","no",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | SCAYT plugin for CKEditor 4 Changelog 2 | ==================== 3 | 4 | The full changelog of the SCAYT plugin for CKEditor 4 can be found on our website under the [release notes](https://webspellchecker.com/release-notes/) section. 5 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","bg",{move:"Кликни и влачи, за да преместиш"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ca",{move:"Clicar i arrossegar per moure"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cs",{move:"Klepněte a táhněte pro přesunutí"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en-gb",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","es",{move:"Dar clic y arrastrar para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fr",{move:"Cliquer et glisser pour déplacer"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hu",{move:"Kattints és húzd a mozgatáshoz"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","km",{move:"ចុចហើយទាញដើម្បីផ្លាស់ទី"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ku",{move:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nl",{move:"Klik en sleep om te verplaatsen"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt-br",{move:"Click e arraste para mover"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sq",{move:"Kliko dhe tërhiqe për ta lëvizur"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sv",{move:"Klicka och drag för att flytta"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","vi",{move:"Nhấp chuột và kéo để di chuyển"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","da",{button:"Vælg sprog",remove:"Fjern sprog"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fa",{button:"تعیین زبان",remove:"حذف زبان"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","km",{button:"កំណត់ភាសា",remove:"លុបភាសា"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nb",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","no",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pl",{button:"Ustaw język",remove:"Usuń język"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tr",{button:"Dili seç",remove:"Dili kaldır"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cy",{title:"Mathemateg mewn TeX",button:"Math",dialogInput:"Ysgrifennwch eich TeX yma",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dogfennaeth TeX",loading:"llwytho...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","da",{title:"Matematik i TeX",button:"Matematik",dialogInput:"Skriv din TeX her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"henter...",pathName:"matematik"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en-gb",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write you TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","es",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escribe tu TeX aquí",docUrl:"http://es.wikipedia.org/wiki/TeX",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fa",{title:"ریاضیات در تک",button:"ریاضی",dialogInput:"فرمول خود را اینجا بنویسید",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"مستندسازی فرمول نویسی",loading:"بارگیری",pathName:"ریاضی"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ku",{title:"بیرکاری لە TeX",button:"بیرکاری",dialogInput:"TeXەکەت لێرە بنووسە",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"بەڵگەنامەکردنی TeX",loading:"بارکردن...",pathName:"بیرکاری"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sk",{title:"Matematika v TeX",button:"Matika",dialogInput:"Napíšte svoj TeX sem",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentácia TeX",loading:"načítavanie...",pathName:"matika"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","de",{move:"Zum Verschieben anwählen und ziehen"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fi",{move:"Siirrä klikkaamalla ja raahaamalla"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","it",{move:"Fare clic e trascinare per spostare"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","lv",{move:"Klikšķina un velc, lai pārvietotu"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pl",{move:"Kliknij i przeciągnij, by przenieść."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sk",{move:"Kliknite a potiahnite pre presunutie"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sl",{move:"Kliknite in povlecite, da premaknete"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tr",{move:"Taşımak için, tıklayın ve sürükleyin"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tt",{move:"Күчереп куер өчен басып шудырыгыз"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","uk",{move:"Клікніть і потягніть для переміщення"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","bg",{button:"Задай език",remove:"Премахни език"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fi",{button:"Aseta kieli",remove:"Poista kieli"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sv",{button:"Sätt språk",remove:"Ta bort språk"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ko",{title:"TeX 문법 수식",button:"수식",dialogInput:"여기 TeX 를 입력하세요",docUrl:"http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95",docLabel:"TeX 문서",loading:"불러오는 중...",pathName:"수식"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","lt",{title:"Matematika per TeX",button:"Matematika",dialogInput:"Parašyk savo TeX čia",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX žinynas",loading:"kraunasi...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ro",{title:"Matematici in TeX",button:"Matematici",dialogInput:"Scrie TeX-ul aici",docUrl:"http://ro.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentatie TeX",loading:"încarcă...",pathName:"matematici"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ru",{title:"Математика в TeX-системе",button:"Математика",dialogInput:"Введите здесь TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"загрузка...",pathName:"мат."}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt",{button:"Definir Idioma",remove:"Remover idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ru",{button:"Установка языка",remove:"Удалить язык"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","uk",{button:"Установити мову",remove:"Вилучити мову"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ca",{title:"Matemàtiques a TeX",button:"Matemàtiques",dialogInput:"Escriu el TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentació TeX",loading:"carregant...",pathName:"matemàtiques"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","de",{title:"Mathematik in Tex",button:"Rechnung",dialogInput:"Schreiben Sie hier in Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-Dokumentation",loading:"Ladevorgang...",pathName:"rechnen"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","eo",{title:"Matematiko en TeX",button:"Matematiko",dialogInput:"Skribu vian TeX tien",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentado",loading:"estas ŝarganta",pathName:"matematiko"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hr",{title:"Matematika u TeXu",button:"Matematika",dialogInput:"Napiši svoj TeX ovdje",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"učitavanje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","it",{title:"Formule in TeX",button:"Formule",dialogInput:"Scrivere qui il proprio TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentazione TeX",loading:"caricamento…",pathName:"formula"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva aqui o seu Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"a carregar ...",pathName:"matemática"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sl",{title:"Matematika v TeX",button:"Matematika",dialogInput:"Napišite svoj TeX tukaj",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"nalaganje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en-gb",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cs",{title:"Matematika v TeXu",button:"Matematika",dialogInput:"Zde napište TeXový kód",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentace k TeXu",loading:"Nahrává se...",pathName:"Matematika"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fi",{title:"Matematiikkaa TeX:llä",button:"Matematiikka",dialogInput:"Kirjoita TeX:iä tähän",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentaatio",loading:"lataa...",pathName:"matematiikka"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","gl",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escriba o seu TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","km",{title:"គណិតវិទ្យាក្នុង TeX",button:"គណិត",dialogInput:"សរសេរ TeX របស់អ្នកនៅទីនេះ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"ឯកសារអត្ថបទពី TeX",loading:"កំពុងផ្ទុក..",pathName:"គណិត"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt-br",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva seu TeX aqui",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"carregando...",pathName:"Matemática"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sq",{title:"Matematikë në TeX",button:"Matematikë",dialogInput:"Shkruani TeX-in tuaj këtu",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tex dokumentimi",loading:"duke u hapur...",pathName:"matematikë"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tr",{title:"TeX ile Matematik",button:"Matematik",dialogInput:"TeX kodunuzu buraya yazın",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX yardım dökümanı",loading:"yükleniyor...",pathName:"matematik"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","uk",{title:"Математика у TeX",button:"Математика",dialogInput:"Наберіть тут на TeX'у",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Документація про TeX",loading:"завантажується…",pathName:"математика"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","el",{move:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/language/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","el",{title:"Μαθηματικά με τη γλώσσα TeX",button:"Μαθηματικά",dialogInput:"Γράψτε κώδικα TeX εδώ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Τεκμηρίωση TeX",loading:"γίνεται φόρτωση...",pathName:"μαθηματικά"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pl",{title:"Wzory matematyczne w TeX",button:"Wzory matematyczne",dialogInput:"Wpisz wyrażenie w TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentacja TeX",loading:"ładowanie...",pathName:"matematyka"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","bg",{title:"Формули в TeX формат",button:"Формули",dialogInput:"Въведете вашите данни с TeX форматиране тук",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"зареждане...",pathName:"формули"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fr",{title:"Mathématiques au format TeX",button:"Math",dialogInput:"Saisir la formule TeX ici",docUrl:"http://fr.wikibooks.org/wiki/LaTeX/Math%C3%A9matiques",docLabel:"Documentation du format TeX",loading:"chargement...",pathName:"math"}); -------------------------------------------------------------------------------- /image_compression/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import CompressImage 3 | 4 | 5 | 6 | class CompressImageForm(forms.ModelForm): 7 | class Meta: 8 | model = CompressImage 9 | fields = ('original_img', 'quality') 10 | 11 | original_img = forms.ImageField(label='Upload an Image') -------------------------------------------------------------------------------- /static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/mathjax/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tt",{title:"TeX'та математика",button:"Математика",dialogInput:"Биредә TeX форматында аңлатмагызны языгыз",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX турыдна документлар",loading:"йөкләнә...",pathName:"математика"}); -------------------------------------------------------------------------------- /uploads/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | class Upload(models.Model): 4 | file = models.FileField(upload_to='uploads/') 5 | model_name = models.CharField(max_length=50) 6 | uploaded_at = models.DateTimeField(auto_now_add=True) 7 | 8 | def __str__(self): 9 | return self.model_name 10 | -------------------------------------------------------------------------------- /dataentry/management/commands/helloworld.py: -------------------------------------------------------------------------------- 1 | from django.core.management.base import BaseCommand 2 | 3 | 4 | class Command(BaseCommand): 5 | help = "Prints Hello World" 6 | 7 | def handle(self, *args, **kwargs): 8 | # we write the logic 9 | # testing git 10 | self.stdout.write('Hello World') -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/image2/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/devtools/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ko",{title:"UI 색상 선택기",preview:"미리보기",config:"이 문자열을 config.js 에 붙여넣으세요",predefined:"미리 정의된 색상"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh-cn",{title:"用户界面颜色选择器",preview:"即时预览",config:"粘贴此字符串到您的 config.js 文件",predefined:"预定义颜色集"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh",{title:"UI 色彩選擇器",preview:"即時預覽",config:"請將此段字串複製到您的 config.js 檔案中。",predefined:"設定預先定義的色彩"}); -------------------------------------------------------------------------------- /emails/tasks.py: -------------------------------------------------------------------------------- 1 | from awd_main.celery import app 2 | from dataentry.utils import send_email_notification 3 | 4 | 5 | @app.task 6 | def send_email_task(mail_subject, message, to_email, attachment, email_id): 7 | send_email_notification(mail_subject, message, to_email, attachment, email_id) 8 | return 'Email sending task executed successfully.' -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/devtools/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/devtools/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/preview/styles/screen.css: -------------------------------------------------------------------------------- 1 | div[style*="page-break-after"] { 2 | background:url( ../images/pagebreak.gif ) no-repeat center center; 3 | clear:both; 4 | width:100%; 5 | border-top:#999 1px dotted; 6 | border-bottom:#999 1px dotted; 7 | padding:0; 8 | height:7px; 9 | cursor:default; 10 | } 11 | -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/uicolor/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ja",{title:"UIカラーピッカー",preview:"ライブプレビュー",config:"この文字列を config.js ファイルへ貼り付け",predefined:"既定カラーセット"}); -------------------------------------------------------------------------------- /static/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","zh-cn",{title:"占位符属性",toolbar:"占位符",name:"占位符名称",invalidName:"占位符名称不能为空,并且不能包含以下字符:[、]、<、>",pathName:"占位符"}); -------------------------------------------------------------------------------- /stockanalysis/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from . import views 3 | 4 | 5 | urlpatterns = [ 6 | path('stocks/', views.stocks, name='stocks'), 7 | 8 | path('stock-autocomplete/', views.StockAutocomplete.as_view(), name="stock_autocomplete"), 9 | path('stock-detail/