├── peers
├── __init__.py
├── management
│ ├── __init__.py
│ └── commands
│ │ └── __init__.py
├── migrations
│ └── __init__.py
├── .tests.py.swp
└── tests.py
├── poller
└── __init__.py
├── utils
└── __init__.py
├── accounts
├── __init__.py
├── migrations
│ └── __init__.py
└── tests.py
├── context
└── __init__.py
├── flowspec
├── __init__.py
├── migrations
│ └── __init__.py
└── templatetags
│ ├── __init__.py
│ ├── tofqdn.py
│ └── unescape.py
├── djangobackends
└── __init__.py
├── widget_tweaks
├── models.py
├── __init__.py
└── templatetags
│ └── __init__.py
├── longerusername
├── views.py
├── __init__.py
└── admin.py
├── templates
├── registration
│ ├── activation_complete_subject.txt
│ ├── activation_email_subject.txt
│ ├── activation_email_peer_notify_subject.txt
│ └── activation_complete.txt
├── poll_message.html
├── poll.html
├── polldash.html
└── add_rate_limit.html
├── static
├── dots.gif
├── rule.png
├── favicon.ico
├── fod_logo.xcf
├── fodlogo2.png
├── img
│ ├── bg2.gif
│ ├── slide2.jpg
│ ├── fod_logo.png
│ ├── sort_asc.png
│ ├── sort_both.png
│ ├── sort_desc.png
│ ├── facebook_img.png
│ ├── twitter_img.png
│ ├── bgbrick3_crop.jpg
│ ├── fod_footer_logo.png
│ ├── sort_asc_disabled.png
│ ├── sort_desc_disabled.png
│ ├── glyphicons-halflings.png
│ └── glyphicons-halflings-white.png
├── itoggle.png
├── background.png
├── logo.dist.png
├── shib_login.png
├── threat_source.png
├── shib_login.dist.png
├── js
│ ├── select2
│ │ ├── select2.png
│ │ ├── select2x2.png
│ │ └── select2-spinner.gif
│ ├── tinymce
│ │ ├── plugins
│ │ │ ├── example
│ │ │ │ ├── langs
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── en_dlg.js
│ │ │ │ └── img
│ │ │ │ │ └── example.gif
│ │ │ ├── media
│ │ │ │ ├── img
│ │ │ │ │ ├── flash.gif
│ │ │ │ │ ├── trans.gif
│ │ │ │ │ ├── quicktime.gif
│ │ │ │ │ ├── realmedia.gif
│ │ │ │ │ ├── shockwave.gif
│ │ │ │ │ ├── flv_player.swf
│ │ │ │ │ └── windowsmedia.gif
│ │ │ │ └── css
│ │ │ │ │ └── content.css
│ │ │ ├── advimage
│ │ │ │ └── img
│ │ │ │ │ └── sample.gif
│ │ │ ├── pagebreak
│ │ │ │ ├── img
│ │ │ │ │ ├── trans.gif
│ │ │ │ │ └── pagebreak.gif
│ │ │ │ └── css
│ │ │ │ │ └── content.css
│ │ │ ├── advhr
│ │ │ │ ├── langs
│ │ │ │ │ ├── ar_dlg.js
│ │ │ │ │ ├── bn_dlg.js
│ │ │ │ │ ├── cy_dlg.js
│ │ │ │ │ ├── dv_dlg.js
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ ├── es_dlg.js
│ │ │ │ │ ├── gl_dlg.js
│ │ │ │ │ ├── gu_dlg.js
│ │ │ │ │ ├── hi_dlg.js
│ │ │ │ │ ├── kl_dlg.js
│ │ │ │ │ ├── ml_dlg.js
│ │ │ │ │ ├── ps_dlg.js
│ │ │ │ │ ├── si_dlg.js
│ │ │ │ │ ├── ta_dlg.js
│ │ │ │ │ ├── te_dlg.js
│ │ │ │ │ ├── ur_dlg.js
│ │ │ │ │ ├── br_dlg.js
│ │ │ │ │ ├── fi_dlg.js
│ │ │ │ │ ├── fr_dlg.js
│ │ │ │ │ ├── id_dlg.js
│ │ │ │ │ ├── ms_dlg.js
│ │ │ │ │ ├── nl_dlg.js
│ │ │ │ │ ├── nn_dlg.js
│ │ │ │ │ ├── pt_dlg.js
│ │ │ │ │ ├── bs_dlg.js
│ │ │ │ │ ├── ca_dlg.js
│ │ │ │ │ ├── ch_dlg.js
│ │ │ │ │ ├── da_dlg.js
│ │ │ │ │ ├── de_dlg.js
│ │ │ │ │ ├── et_dlg.js
│ │ │ │ │ ├── eu_dlg.js
│ │ │ │ │ ├── hr_dlg.js
│ │ │ │ │ ├── ia_dlg.js
│ │ │ │ │ ├── ii_dlg.js
│ │ │ │ │ ├── lb_dlg.js
│ │ │ │ │ ├── lv_dlg.js
│ │ │ │ │ ├── mk_dlg.js
│ │ │ │ │ ├── sc_dlg.js
│ │ │ │ │ ├── se_dlg.js
│ │ │ │ │ ├── sr_dlg.js
│ │ │ │ │ ├── sv_dlg.js
│ │ │ │ │ ├── tt_dlg.js
│ │ │ │ │ ├── tw_dlg.js
│ │ │ │ │ ├── zh_dlg.js
│ │ │ │ │ ├── zu_dlg.js
│ │ │ │ │ ├── is_dlg.js
│ │ │ │ │ ├── it_dlg.js
│ │ │ │ │ ├── nb_dlg.js
│ │ │ │ │ ├── no_dlg.js
│ │ │ │ │ ├── sq_dlg.js
│ │ │ │ │ ├── ja_dlg.js
│ │ │ │ │ ├── sl_dlg.js
│ │ │ │ │ ├── lt_dlg.js
│ │ │ │ │ ├── sk_dlg.js
│ │ │ │ │ ├── tr_dlg.js
│ │ │ │ │ ├── cs_dlg.js
│ │ │ │ │ ├── ko_dlg.js
│ │ │ │ │ ├── pl_dlg.js
│ │ │ │ │ ├── az_dlg.js
│ │ │ │ │ ├── ro_dlg.js
│ │ │ │ │ ├── hu_dlg.js
│ │ │ │ │ ├── vi_dlg.js
│ │ │ │ │ ├── he_dlg.js
│ │ │ │ │ ├── th_dlg.js
│ │ │ │ │ ├── fa_dlg.js
│ │ │ │ │ ├── el_dlg.js
│ │ │ │ │ ├── mn_dlg.js
│ │ │ │ │ ├── ru_dlg.js
│ │ │ │ │ ├── uk_dlg.js
│ │ │ │ │ ├── be_dlg.js
│ │ │ │ │ ├── bg_dlg.js
│ │ │ │ │ ├── ka_dlg.js
│ │ │ │ │ └── hy_dlg.js
│ │ │ │ └── css
│ │ │ │ │ └── advhr.css
│ │ │ ├── spellchecker
│ │ │ │ ├── img
│ │ │ │ │ └── wline.gif
│ │ │ │ ├── css
│ │ │ │ │ └── content.css
│ │ │ │ ├── editor_plugin.js
│ │ │ │ └── editor_plugin_src.js
│ │ │ ├── wordcount
│ │ │ │ ├── editor_plugin.js
│ │ │ │ └── editor_plugin_src.js
│ │ │ ├── emotions
│ │ │ │ ├── img
│ │ │ │ │ ├── smiley-cool.gif
│ │ │ │ │ ├── smiley-cry.gif
│ │ │ │ │ ├── smiley-kiss.gif
│ │ │ │ │ ├── smiley-wink.gif
│ │ │ │ │ ├── smiley-yell.gif
│ │ │ │ │ ├── smiley-frown.gif
│ │ │ │ │ ├── smiley-sealed.gif
│ │ │ │ │ ├── smiley-smile.gif
│ │ │ │ │ ├── smiley-innocent.gif
│ │ │ │ │ ├── smiley-laughing.gif
│ │ │ │ │ ├── smiley-surprised.gif
│ │ │ │ │ ├── smiley-undecided.gif
│ │ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ │ └── smiley-foot-in-mouth.gif
│ │ │ │ ├── langs
│ │ │ │ │ ├── ar_dlg.js
│ │ │ │ │ ├── bn_dlg.js
│ │ │ │ │ ├── dv_dlg.js
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ ├── gu_dlg.js
│ │ │ │ │ ├── hi_dlg.js
│ │ │ │ │ ├── id_dlg.js
│ │ │ │ │ ├── kl_dlg.js
│ │ │ │ │ ├── ml_dlg.js
│ │ │ │ │ ├── ps_dlg.js
│ │ │ │ │ ├── si_dlg.js
│ │ │ │ │ ├── ta_dlg.js
│ │ │ │ │ ├── te_dlg.js
│ │ │ │ │ ├── ur_dlg.js
│ │ │ │ │ ├── gl_dlg.js
│ │ │ │ │ ├── pl_dlg.js
│ │ │ │ │ ├── nn_dlg.js
│ │ │ │ │ ├── no_dlg.js
│ │ │ │ │ ├── ms_dlg.js
│ │ │ │ │ ├── cy_dlg.js
│ │ │ │ │ ├── nb_dlg.js
│ │ │ │ │ ├── nl_dlg.js
│ │ │ │ │ ├── da_dlg.js
│ │ │ │ │ ├── es_dlg.js
│ │ │ │ │ ├── eu_dlg.js
│ │ │ │ │ ├── sr_dlg.js
│ │ │ │ │ ├── br_dlg.js
│ │ │ │ │ ├── bs_dlg.js
│ │ │ │ │ ├── hr_dlg.js
│ │ │ │ │ ├── it_dlg.js
│ │ │ │ │ ├── pt_dlg.js
│ │ │ │ │ ├── se_dlg.js
│ │ │ │ │ ├── sv_dlg.js
│ │ │ │ │ ├── de_dlg.js
│ │ │ │ │ ├── et_dlg.js
│ │ │ │ │ ├── lb_dlg.js
│ │ │ │ │ ├── sl_dlg.js
│ │ │ │ │ ├── ja_dlg.js
│ │ │ │ │ ├── mk_dlg.js
│ │ │ │ │ ├── ca_dlg.js
│ │ │ │ │ ├── fi_dlg.js
│ │ │ │ │ ├── fr_dlg.js
│ │ │ │ │ ├── is_dlg.js
│ │ │ │ │ ├── ru_dlg.js
│ │ │ │ │ ├── ch_dlg.js
│ │ │ │ │ ├── ii_dlg.js
│ │ │ │ │ ├── sc_dlg.js
│ │ │ │ │ ├── tw_dlg.js
│ │ │ │ │ ├── zh_dlg.js
│ │ │ │ │ ├── zu_dlg.js
│ │ │ │ │ ├── ro_dlg.js
│ │ │ │ │ ├── ia_dlg.js
│ │ │ │ │ ├── ka_dlg.js
│ │ │ │ │ ├── tt_dlg.js
│ │ │ │ │ ├── bg_dlg.js
│ │ │ │ │ ├── lt_dlg.js
│ │ │ │ │ ├── sq_dlg.js
│ │ │ │ │ ├── lv_dlg.js
│ │ │ │ │ ├── tr_dlg.js
│ │ │ │ │ ├── hy_dlg.js
│ │ │ │ │ ├── hu_dlg.js
│ │ │ │ │ └── sk_dlg.js
│ │ │ │ └── js
│ │ │ │ │ └── emotions.js
│ │ │ ├── inlinepopups
│ │ │ │ └── skins
│ │ │ │ │ └── clearlooks2
│ │ │ │ │ └── img
│ │ │ │ │ ├── alert.gif
│ │ │ │ │ ├── button.gif
│ │ │ │ │ ├── buttons.gif
│ │ │ │ │ ├── confirm.gif
│ │ │ │ │ ├── corners.gif
│ │ │ │ │ ├── vertical.gif
│ │ │ │ │ └── horizontal.gif
│ │ │ ├── paste
│ │ │ │ └── langs
│ │ │ │ │ ├── id_dlg.js
│ │ │ │ │ ├── br_dlg.js
│ │ │ │ │ ├── eu_dlg.js
│ │ │ │ │ ├── pt_dlg.js
│ │ │ │ │ ├── nl_dlg.js
│ │ │ │ │ ├── sq_dlg.js
│ │ │ │ │ ├── es_dlg.js
│ │ │ │ │ ├── gl_dlg.js
│ │ │ │ │ ├── mk_dlg.js
│ │ │ │ │ ├── sr_dlg.js
│ │ │ │ │ ├── ar_dlg.js
│ │ │ │ │ ├── bn_dlg.js
│ │ │ │ │ ├── bs_dlg.js
│ │ │ │ │ ├── da_dlg.js
│ │ │ │ │ ├── dv_dlg.js
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ ├── et_dlg.js
│ │ │ │ │ ├── gu_dlg.js
│ │ │ │ │ ├── hi_dlg.js
│ │ │ │ │ ├── hr_dlg.js
│ │ │ │ │ ├── is_dlg.js
│ │ │ │ │ ├── kl_dlg.js
│ │ │ │ │ ├── ml_dlg.js
│ │ │ │ │ ├── ps_dlg.js
│ │ │ │ │ ├── si_dlg.js
│ │ │ │ │ ├── sk_dlg.js
│ │ │ │ │ ├── ta_dlg.js
│ │ │ │ │ ├── te_dlg.js
│ │ │ │ │ ├── th_dlg.js
│ │ │ │ │ ├── ur_dlg.js
│ │ │ │ │ ├── nb_dlg.js
│ │ │ │ │ ├── no_dlg.js
│ │ │ │ │ ├── sl_dlg.js
│ │ │ │ │ ├── fi_dlg.js
│ │ │ │ │ ├── nn_dlg.js
│ │ │ │ │ ├── cs_dlg.js
│ │ │ │ │ ├── it_dlg.js
│ │ │ │ │ ├── ms_dlg.js
│ │ │ │ │ ├── cy_dlg.js
│ │ │ │ │ ├── ca_dlg.js
│ │ │ │ │ ├── de_dlg.js
│ │ │ │ │ ├── pl_dlg.js
│ │ │ │ │ ├── ro_dlg.js
│ │ │ │ │ ├── hu_dlg.js
│ │ │ │ │ ├── lb_dlg.js
│ │ │ │ │ ├── lt_dlg.js
│ │ │ │ │ ├── fr_dlg.js
│ │ │ │ │ ├── se_dlg.js
│ │ │ │ │ ├── sv_dlg.js
│ │ │ │ │ ├── tr_dlg.js
│ │ │ │ │ ├── lv_dlg.js
│ │ │ │ │ ├── ia_dlg.js
│ │ │ │ │ ├── tt_dlg.js
│ │ │ │ │ ├── ch_dlg.js
│ │ │ │ │ ├── vi_dlg.js
│ │ │ │ │ ├── sc_dlg.js
│ │ │ │ │ ├── tw_dlg.js
│ │ │ │ │ ├── zh_dlg.js
│ │ │ │ │ ├── ii_dlg.js
│ │ │ │ │ ├── zu_dlg.js
│ │ │ │ │ ├── ko_dlg.js
│ │ │ │ │ ├── az_dlg.js
│ │ │ │ │ ├── ja_dlg.js
│ │ │ │ │ ├── he_dlg.js
│ │ │ │ │ └── ru_dlg.js
│ │ │ ├── searchreplace
│ │ │ │ ├── css
│ │ │ │ │ └── searchreplace.css
│ │ │ │ └── langs
│ │ │ │ │ ├── ms_dlg.js
│ │ │ │ │ ├── id_dlg.js
│ │ │ │ │ ├── ar_dlg.js
│ │ │ │ │ ├── bn_dlg.js
│ │ │ │ │ ├── dv_dlg.js
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ ├── et_dlg.js
│ │ │ │ │ ├── gu_dlg.js
│ │ │ │ │ ├── hi_dlg.js
│ │ │ │ │ ├── kl_dlg.js
│ │ │ │ │ ├── ml_dlg.js
│ │ │ │ │ ├── ps_dlg.js
│ │ │ │ │ ├── si_dlg.js
│ │ │ │ │ ├── ta_dlg.js
│ │ │ │ │ ├── te_dlg.js
│ │ │ │ │ ├── ur_dlg.js
│ │ │ │ │ ├── da_dlg.js
│ │ │ │ │ ├── cy_dlg.js
│ │ │ │ │ ├── fi_dlg.js
│ │ │ │ │ ├── it_dlg.js
│ │ │ │ │ ├── nb_dlg.js
│ │ │ │ │ ├── no_dlg.js
│ │ │ │ │ ├── sl_dlg.js
│ │ │ │ │ ├── nn_dlg.js
│ │ │ │ │ ├── eu_dlg.js
│ │ │ │ │ ├── es_dlg.js
│ │ │ │ │ ├── gl_dlg.js
│ │ │ │ │ ├── nl_dlg.js
│ │ │ │ │ ├── lb_dlg.js
│ │ │ │ │ ├── mk_dlg.js
│ │ │ │ │ ├── pt_dlg.js
│ │ │ │ │ ├── sr_dlg.js
│ │ │ │ │ ├── is_dlg.js
│ │ │ │ │ ├── bs_dlg.js
│ │ │ │ │ ├── hr_dlg.js
│ │ │ │ │ ├── br_dlg.js
│ │ │ │ │ ├── de_dlg.js
│ │ │ │ │ ├── cs_dlg.js
│ │ │ │ │ ├── ca_dlg.js
│ │ │ │ │ ├── lt_dlg.js
│ │ │ │ │ ├── se_dlg.js
│ │ │ │ │ ├── sv_dlg.js
│ │ │ │ │ ├── tw_dlg.js
│ │ │ │ │ └── zh_dlg.js
│ │ │ ├── table
│ │ │ │ └── css
│ │ │ │ │ ├── table.css
│ │ │ │ │ ├── cell.css
│ │ │ │ │ └── row.css
│ │ │ ├── xhtmlxtras
│ │ │ │ └── css
│ │ │ │ │ ├── attributes.css
│ │ │ │ │ └── popup.css
│ │ │ ├── autosave
│ │ │ │ └── langs
│ │ │ │ │ └── en.js
│ │ │ ├── template
│ │ │ │ ├── blank.htm
│ │ │ │ └── css
│ │ │ │ │ └── template.css
│ │ │ ├── print
│ │ │ │ └── editor_plugin.js
│ │ │ └── advlink
│ │ │ │ └── css
│ │ │ │ └── advlink.css
│ │ └── themes
│ │ │ ├── advanced
│ │ │ ├── img
│ │ │ │ ├── icons.gif
│ │ │ │ └── colorpicker.jpg
│ │ │ └── skins
│ │ │ │ ├── default
│ │ │ │ └── img
│ │ │ │ │ ├── items.gif
│ │ │ │ │ ├── tabs.gif
│ │ │ │ │ ├── buttons.png
│ │ │ │ │ ├── progress.gif
│ │ │ │ │ ├── menu_arrow.gif
│ │ │ │ │ └── menu_check.gif
│ │ │ │ └── o2k7
│ │ │ │ └── img
│ │ │ │ ├── button_bg.png
│ │ │ │ ├── button_bg_black.png
│ │ │ │ └── button_bg_silver.png
│ │ │ └── simple
│ │ │ ├── img
│ │ │ └── icons.gif
│ │ │ ├── skins
│ │ │ ├── o2k7
│ │ │ │ ├── img
│ │ │ │ │ └── button_bg.png
│ │ │ │ └── content.css
│ │ │ └── default
│ │ │ │ └── content.css
│ │ │ └── langs
│ │ │ ├── no.js
│ │ │ ├── nn.js
│ │ │ ├── nb.js
│ │ │ ├── ar.js
│ │ │ ├── dv.js
│ │ │ ├── en.js
│ │ │ ├── gu.js
│ │ │ ├── hi.js
│ │ │ ├── id.js
│ │ │ ├── kl.js
│ │ │ ├── ps.js
│ │ │ ├── ta.js
│ │ │ ├── te.js
│ │ │ ├── ur.js
│ │ │ ├── nl.js
│ │ │ ├── cy.js
│ │ │ ├── es.js
│ │ │ ├── bs.js
│ │ │ ├── ca.js
│ │ │ ├── eu.js
│ │ │ ├── hr.js
│ │ │ ├── mk.js
│ │ │ ├── se.js
│ │ │ ├── sl.js
│ │ │ ├── sr.js
│ │ │ ├── gl.js
│ │ │ ├── it.js
│ │ │ ├── sv.js
│ │ │ ├── br.js
│ │ │ ├── fr.js
│ │ │ ├── ms.js
│ │ │ ├── pt.js
│ │ │ ├── de.js
│ │ │ ├── da.js
│ │ │ ├── et.js
│ │ │ ├── fi.js
│ │ │ ├── ia.js
│ │ │ ├── is.js
│ │ │ ├── lb.js
│ │ │ ├── ro.js
│ │ │ ├── ii.js
│ │ │ ├── pl.js
│ │ │ ├── sc.js
│ │ │ ├── sq.js
│ │ │ ├── zu.js
│ │ │ ├── ch.js
│ │ │ ├── tr.js
│ │ │ ├── tt.js
│ │ │ ├── cs.js
│ │ │ ├── tw.js
│ │ │ ├── lt.js
│ │ │ ├── lv.js
│ │ │ ├── sk.js
│ │ │ ├── zh.js
│ │ │ ├── hu.js
│ │ │ ├── az.js
│ │ │ ├── ja.js
│ │ │ ├── ko.js
│ │ │ ├── vi.js
│ │ │ └── he.js
│ └── accounts.js
├── secure_destination.png
├── b3theme
│ ├── font-awesome
│ │ ├── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ ├── less
│ │ │ ├── fixed-width.less
│ │ │ ├── core.less
│ │ │ ├── bordered-pulled.less
│ │ │ ├── rotated-flipped.less
│ │ │ ├── larger.less
│ │ │ ├── list.less
│ │ │ ├── font-awesome.less
│ │ │ └── stacked.less
│ │ └── scss
│ │ │ ├── _fixed-width.scss
│ │ │ ├── _core.scss
│ │ │ ├── _bordered-pulled.scss
│ │ │ ├── _larger.scss
│ │ │ ├── _rotated-flipped.scss
│ │ │ ├── _list.scss
│ │ │ ├── font-awesome.scss
│ │ │ └── _stacked.scss
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── css
│ │ └── plugins
│ │ │ └── morris
│ │ │ └── morris-0.4.3.min.css
│ └── js
│ │ └── sb-admin.js
└── css
│ └── custom.css
├── _version.py
├── init_scripts
├── memcached_config
├── beanstalkd_config
└── gunicorn_fod
├── locale
└── el
│ └── LC_MESSAGES
│ └── django.mo
├── flowspy
└── __init__.py
├── .gitignore
├── initial_data
└── README.txt
├── requirements.txt
├── apache
└── django.wsgi
├── cron_fetch_networks.py
└── mkdocs.yml
/peers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/poller/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/utils/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/accounts/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/context/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/flowspec/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/djangobackends/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/peers/management/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/peers/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/widget_tweaks/models.py:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/accounts/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/flowspec/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/flowspec/templatetags/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/widget_tweaks/__init__.py:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/peers/management/commands/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/widget_tweaks/templatetags/__init__.py:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/longerusername/views.py:
--------------------------------------------------------------------------------
1 | # Create your views here.
2 |
--------------------------------------------------------------------------------
/templates/registration/activation_complete_subject.txt:
--------------------------------------------------------------------------------
1 | Activation complete
--------------------------------------------------------------------------------
/static/dots.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/dots.gif
--------------------------------------------------------------------------------
/static/rule.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/rule.png
--------------------------------------------------------------------------------
/peers/.tests.py.swp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/peers/.tests.py.swp
--------------------------------------------------------------------------------
/static/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/favicon.ico
--------------------------------------------------------------------------------
/static/fod_logo.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/fod_logo.xcf
--------------------------------------------------------------------------------
/static/fodlogo2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/fodlogo2.png
--------------------------------------------------------------------------------
/static/img/bg2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/bg2.gif
--------------------------------------------------------------------------------
/static/itoggle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/itoggle.png
--------------------------------------------------------------------------------
/_version.py:
--------------------------------------------------------------------------------
1 | VERSION = '1.2'
2 |
3 | if __name__ == "__main__":
4 | print VERSION
5 |
--------------------------------------------------------------------------------
/static/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/background.png
--------------------------------------------------------------------------------
/static/img/slide2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/slide2.jpg
--------------------------------------------------------------------------------
/static/logo.dist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/logo.dist.png
--------------------------------------------------------------------------------
/static/shib_login.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/shib_login.png
--------------------------------------------------------------------------------
/templates/registration/activation_email_subject.txt:
--------------------------------------------------------------------------------
1 | Account registered at {{ site.name }}
2 |
--------------------------------------------------------------------------------
/init_scripts/memcached_config:
--------------------------------------------------------------------------------
1 | # Set this to no to disable memcached.
2 | ENABLE_MEMCACHED=yes
3 |
--------------------------------------------------------------------------------
/static/img/fod_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/fod_logo.png
--------------------------------------------------------------------------------
/static/img/sort_asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/sort_asc.png
--------------------------------------------------------------------------------
/static/img/sort_both.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/sort_both.png
--------------------------------------------------------------------------------
/static/img/sort_desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/sort_desc.png
--------------------------------------------------------------------------------
/static/threat_source.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/threat_source.png
--------------------------------------------------------------------------------
/static/img/facebook_img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/facebook_img.png
--------------------------------------------------------------------------------
/static/img/twitter_img.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/twitter_img.png
--------------------------------------------------------------------------------
/static/shib_login.dist.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/shib_login.dist.png
--------------------------------------------------------------------------------
/templates/poll_message.html:
--------------------------------------------------------------------------------
1 |
{{ message.body }}
2 |
--------------------------------------------------------------------------------
/static/img/bgbrick3_crop.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/bgbrick3_crop.jpg
--------------------------------------------------------------------------------
/static/js/select2/select2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/select2/select2.png
--------------------------------------------------------------------------------
/static/secure_destination.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/secure_destination.png
--------------------------------------------------------------------------------
/locale/el/LC_MESSAGES/django.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/locale/el/LC_MESSAGES/django.mo
--------------------------------------------------------------------------------
/static/img/fod_footer_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/fod_footer_logo.png
--------------------------------------------------------------------------------
/static/img/sort_asc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/sort_asc_disabled.png
--------------------------------------------------------------------------------
/static/js/select2/select2x2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/select2/select2x2.png
--------------------------------------------------------------------------------
/static/img/sort_desc_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/sort_desc_disabled.png
--------------------------------------------------------------------------------
/static/img/glyphicons-halflings.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/glyphicons-halflings.png
--------------------------------------------------------------------------------
/static/js/select2/select2-spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/select2/select2-spinner.gif
--------------------------------------------------------------------------------
/static/img/glyphicons-halflings-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/img/glyphicons-halflings-white.png
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/example/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.example',{
2 | desc : 'This is just a template button'
3 | });
4 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/example/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.example_dlg',{
2 | title : 'This is just a example title'
3 | });
4 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/flash.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/flash.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/trans.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/trans.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/img/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/img/icons.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/img/icons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/simple/img/icons.gif
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/font-awesome/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advimage/img/sample.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/advimage/img/sample.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/example/img/example.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/example/img/example.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/quicktime.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/quicktime.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/realmedia.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/realmedia.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/shockwave.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/shockwave.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/pagebreak/img/trans.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/pagebreak/img/trans.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ar_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ar.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/bn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bn.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/cy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cy.advhr_dlg',{
2 | width:"Lled",
3 | size:"Uchder",
4 | noshade:"Dim cysgod"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/dv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('dv.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/es_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('es.advhr_dlg',{
2 | width:"Ancho",
3 | size:"Alto",
4 | noshade:"Sin sombra"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/gl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gl.advhr_dlg',{
2 | width:"Ancho",
3 | size:"Alto",
4 | noshade:"Sen sombra"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/gu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gu.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/hi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hi.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/kl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('kl.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ml_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ml.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ps_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ps.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/si_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('si.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ta_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ta.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/te_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('te.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ur_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ur.advhr_dlg',{
2 | width:"Width",
3 | size:"Height",
4 | noshade:"No shadow"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/flv_player.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/flv_player.swf
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/img/windowsmedia.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/media/img/windowsmedia.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/spellchecker/img/wline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/spellchecker/img/wline.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/wordcount/editor_plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/wordcount/editor_plugin.js
--------------------------------------------------------------------------------
/static/b3theme/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/static/b3theme/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/static/b3theme/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/br_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('br.advhr_dlg',{
2 | width:"Largura",
3 | size:"Altura",
4 | noshade:"Sem sombra"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/fi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fi.advhr_dlg',{
2 | width:"Leveys",
3 | size:"Korkeus",
4 | noshade:"Ei varjoa"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/fr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fr.advhr_dlg',{
2 | width:"Largeur",
3 | size:"Hauteur",
4 | noshade:"Pas d'ombre"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/id_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('id.advhr_dlg',{
2 | width:"Lebar",
3 | size:"Tinggi",
4 | noshade:"Tanpa bayangan"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ms_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ms.advhr_dlg',{
2 | width:"Lebar",
3 | size:"Tinggi",
4 | noshade:"Tanpa bayang"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/nl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nl.advhr_dlg',{
2 | width:"Breedte",
3 | size:"Hoogte",
4 | noshade:"Geen schaduw"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/nn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nn.advhr_dlg',{
2 | width:"Breidd",
3 | size:"Storleik",
4 | noshade:"Inga skugge"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/pt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pt.advhr_dlg',{
2 | width:"Largura",
3 | size:"Altura",
4 | noshade:"Sem sombra"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-cool.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-cool.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-cry.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-cry.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-kiss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-kiss.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-wink.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-wink.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-yell.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-yell.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/pagebreak/img/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/pagebreak/img/pagebreak.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/spellchecker/css/content.css:
--------------------------------------------------------------------------------
1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;}
2 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/img/colorpicker.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/img/colorpicker.jpg
--------------------------------------------------------------------------------
/templates/registration/activation_email_peer_notify_subject.txt:
--------------------------------------------------------------------------------
1 | GRNET Firewall on Demand new account registration at {{ site.name }} on behalf of {{peer}}
2 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/font-awesome/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/font-awesome/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/bs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bs.advhr_dlg',{
2 | width:"\u0160irina",
3 | size:"Visina",
4 | noshade:"Bez sjene"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ca_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ca.advhr_dlg',{
2 | width:"Amplada",
3 | size:"Al\u00E7ada",
4 | noshade:"Sense sombra"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ch_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ch.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u957F",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/da_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('da.advhr_dlg',{
2 | width:"Bredde",
3 | size:"H\u00F8jde",
4 | noshade:"Ingen skygge"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/de_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('de.advhr_dlg',{
2 | width:"Breite",
3 | size:"H\u00F6he",
4 | noshade:"Kein Schatten"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/et_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('et.advhr_dlg',{
2 | width:"Laius",
3 | size:"K\u00F5rgus",
4 | noshade:"Ilma varjuta"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/eu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('eu.advhr_dlg',{
2 | width:"Zabalera",
3 | size:"Altuera",
4 | noshade:"Itzalik gabe"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/hr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hr.advhr_dlg',{
2 | width:"\u0160irina",
3 | size:"Visina",
4 | noshade:"Bez sjene"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ia_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ia.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u957F",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ii_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ii.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u9AD8",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/lb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lb.advhr_dlg',{
2 | width:"Breet",
3 | size:"H\u00E9icht",
4 | noshade:"Kee Schiet"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/lv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lv.advhr_dlg',{
2 | width:"Platums",
3 | size:"Augstums",
4 | noshade:"Bez \u0113nas"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/mk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mk.advhr_dlg',{
2 | width:"\u0160irina",
3 | size:"Visina",
4 | noshade:"Bez sjene"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sc_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sc.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u957F",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/se_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('se.advhr_dlg',{
2 | width:"Bredd",
3 | size:"H\u00F6jd",
4 | noshade:"Ingen skugga"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sr.advhr_dlg',{
2 | width:"\u0160irina",
3 | size:"Visina",
4 | noshade:"Bez sjene"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sv.advhr_dlg',{
2 | width:"Bredd",
3 | size:"H\u00F6jd",
4 | noshade:"Ingen skugga"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/tt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tt.advhr_dlg',{
2 | width:"\u5BEC",
3 | size:"\u9577",
4 | noshade:"\u7121\u9670\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/tw_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tw.advhr_dlg',{
2 | width:"\u5BEC",
3 | size:"\u9AD8",
4 | noshade:"\u7121\u9670\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/zh_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zh.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u9AD8",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/zu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zu.advhr_dlg',{
2 | width:"\u5BBD",
3 | size:"\u957F",
4 | noshade:"\u65E0\u9634\u5F71"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-frown.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-frown.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-sealed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-sealed.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-smile.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/spellchecker/editor_plugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/spellchecker/editor_plugin.js
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/wordcount/editor_plugin_src.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/wordcount/editor_plugin_src.js
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/b3theme/font-awesome/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/is_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('is.advhr_dlg',{
2 | width:"Breidd",
3 | size:"H\u00E6\u00F0",
4 | noshade:"Enginn skuggi"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/it_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('it.advhr_dlg',{
2 | width:"Larghezza",
3 | size:"Altezza",
4 | noshade:"Senza ombreggiatura"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/nb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nb.advhr_dlg',{
2 | width:"Bredde",
3 | size:"St\u00F8rrelse",
4 | noshade:"Ingen skygge"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/no_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('no.advhr_dlg',{
2 | width:"Bredde",
3 | size:"St\u00F8rrelse",
4 | noshade:"Ingen skygge"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sq_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sq.advhr_dlg',{
2 | width:"Gjer\u00EBsia",
3 | size:"Gjat\u00EBsia",
4 | noshade:"Pa hije"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-innocent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-innocent.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-laughing.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-laughing.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-surprised.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-surprised.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-undecided.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-undecided.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/spellchecker/editor_plugin_src.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/spellchecker/editor_plugin_src.js
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ja_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ja.advhr_dlg',{
2 | width:"\u5E45",
3 | size:"\u9AD8\u3055",
4 | noshade:"\u5F71\u306A\u3057"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sl.advhr_dlg',{
2 | width:"\u0160irina",
3 | size:"Vi\u0161ina",
4 | noshade:"Brez sen\u010Denja"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-embarassed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-embarassed.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-money-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-money-mouth.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-tongue-out.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-tongue-out.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/items.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/items.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/tabs.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/tabs.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg.png
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/skins/o2k7/img/button_bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/simple/skins/o2k7/img/button_bg.png
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/lt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lt.advhr_dlg',{
2 | width:"Ilgis",
3 | size:"Auk\u0161tis",
4 | noshade:"Be \u0161e\u0161\u0117lio"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/sk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sk.advhr_dlg',{
2 | width:"\u0160\u00EDrka",
3 | size:"V\u00FD\u0161ka",
4 | noshade:"Bez tie\u0148a"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/tr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tr.advhr_dlg',{
2 | width:"Geni\u015Flik",
3 | size:"Y\u00FCkseklik",
4 | noshade:"G\u00F6lge yok"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/emotions/img/smiley-foot-in-mouth.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/buttons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/buttons.png
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/progress.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/cs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cs.advhr_dlg',{
2 | width:"\u0160\u00ED\u0159ka",
3 | size:"V\u00FD\u0161ka",
4 | noshade:"Bez st\u00EDnu"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ko_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ko.advhr_dlg',{
2 | width:"\uD3ED",
3 | size:"\uB192\uC774",
4 | noshade:"\uADF8\uB9BC\uC790\uC5C6\uC74C"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/pl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pl.advhr_dlg',{
2 | width:"Szeroko\u015B\u0107",
3 | size:"Wysoko\u015B\u0107",
4 | noshade:"Bez cienia"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/menu_arrow.gif
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/default/img/menu_check.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/default/img/menu_check.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/az_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('az.advhr_dlg',{
2 | width:"Eni",
3 | size:"H\u00FCnd\u00FCrl\u00FCy\u00FC",
4 | noshade:"K\u00F6lg\u0259 yoxdur"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_black.png
--------------------------------------------------------------------------------
/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/themes/advanced/skins/o2k7/img/button_bg_silver.png
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/fixed-width.less:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .@{fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ro_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ro.advhr_dlg',{
2 | width:"L\u0103\u0163ime",
3 | size:"\u00CEn\u0103l\u0163ime",
4 | noshade:"F\u0103r\u0103 umbre"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/button.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_fixed-width.scss:
--------------------------------------------------------------------------------
1 | // Fixed Width Icons
2 | // -------------------------
3 | .#{$fa-css-prefix}-fw {
4 | width: (18em / 14);
5 | text-align: center;
6 | }
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/hu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hu.advhr_dlg',{
2 | width:"Sz\u00E9less\u00E9g",
3 | size:"Magass\u00E1g",
4 | noshade:"\u00C1rny\u00E9k n\u00E9lk\u00FCl"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/vi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('vi.advhr_dlg',{
2 | width:"Chi\u1EC1u d\u00E0i",
3 | size:"Chi\u1EC1u r\u1ED9ng",
4 | noshade:"Kh\u00F4ng c\u00F3 b\u00F3ng"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/grnet/flowspy/HEAD/static/js/tinymce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/he_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('he.advhr_dlg',{
2 | width:"\u05E8\u05D5\u05D7\u05D1",
3 | size:"\u05D2\u05D5\u05D1\u05D4",
4 | noshade:"\u05DC\u05DC\u05D0 \u05E6\u05DC"
5 | });
--------------------------------------------------------------------------------
/templates/poll.html:
--------------------------------------------------------------------------------
1 |
2 | {% for message in messages %}
3 | {% include "poll_message.html" %}
4 | {% endfor %}
5 |
6 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/pagebreak/css/content.css:
--------------------------------------------------------------------------------
1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;}
2 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/th_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('th.advhr_dlg',{
2 | width:"\u0E01\u0E27\u0E49\u0E32\u0E07",
3 | size:"\u0E2A\u0E39\u0E07",
4 | noshade:"\u0E44\u0E21\u0E48\u0E21\u0E35\u0E40\u0E07\u0E32"
5 | });
--------------------------------------------------------------------------------
/longerusername/__init__.py:
--------------------------------------------------------------------------------
1 | from django.conf import settings
2 |
3 | def MAX_USERNAME_LENGTH():
4 | if hasattr(settings,"MAX_USERNAME_LENGTH"):
5 | return settings.MAX_USERNAME_LENGTH
6 | else:
7 | return 255
8 |
--------------------------------------------------------------------------------
/flowspy/__init__.py:
--------------------------------------------------------------------------------
1 |
2 | from __future__ import absolute_import
3 |
4 | # This will make sure the app is always imported when
5 | # Django starts so that shared_task will use this app.
6 | from .celery import app as celery_app # noqa
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/fa_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fa.advhr_dlg',{
2 | width:"\u067E\u0647\u0646\u0627",
3 | size:"\u0627\u0631\u062A\u0641\u0627\u0639",
4 | noshade:"\u0628\u062F\u0648\u0646 \u0633\u0627\u06CC\u0647"
5 | });
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | flowspy/settings.py
2 | *.pyc
3 | celerybeat-schedule
4 | *.log
5 | celery_var/
6 | *~
7 | celeryd@*
8 | doc_rst/
9 | static/rest_framework/
10 | static/admin
11 | static/tiny_mce
12 | static/django_tinymce
13 |
14 | *.swp
15 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/el_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('el.advhr_dlg',{
2 | width:"\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2",
3 | size:"\u038E\u03C8\u03BF\u03C2",
4 | noshade:"\u03A7\u03C9\u03C1\u03AF\u03C2 \u03C3\u03BA\u03B9\u03AC"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/mn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mn.advhr_dlg',{
2 | width:"\u04E8\u0440\u0433\u04E9\u043D",
3 | size:"\u04E8\u043D\u0434\u04E9\u0440",
4 | noshade:"\u0421\u04AF\u04AF\u0434\u044D\u0440\u0433\u04AF\u0439"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ru_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ru.advhr_dlg',{
2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430",
3 | size:"\u0412\u044B\u0441\u043E\u0442\u0430",
4 | noshade:"\u0411\u0435\u0437 \u0442\u0435\u043D\u0438"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/uk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('uk.advhr_dlg',{
2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430",
3 | size:"\u0412\u0438\u0441\u043E\u0442\u0430",
4 | noshade:"\u0411\u0435\u0437 \u0442\u0456\u043D\u0456"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/id_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('id.paste_dlg',{
2 | text_title:"Gunakan CTRL+V pada keyboard untuk paste.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Gunakan CTRL+V pada keyboard untuk paste."
5 | });
--------------------------------------------------------------------------------
/templates/polldash.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {% for message in messages %}
4 | {% include "poll_message.html" %}
5 | {% endfor %}
6 |
7 |
8 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/be_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('be.advhr_dlg',{
2 | width:"\u0428\u044B\u0440\u044B\u043D\u044F",
3 | size:"\u0412\u044B\u0448\u044B\u043D\u044F",
4 | noshade:"\u041D\u044F\u043C\u0430 \u0446\u0435\u043D\u044E"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/br_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('br.paste_dlg',{
2 | text_title:"Use CTRL+V para colar o texto na janela.",
3 | text_linebreaks:"Manter quebras de linha",
4 | word_title:"Use CTRL+V para colar o texto na janela."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/eu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('eu.paste_dlg',{
2 | text_title:"Erabili CTRL+V testua lehioan itsasteko.",
3 | text_linebreaks:"Mantendu lerro-jauziak",
4 | word_title:"Erabili CTRL+V testua lehioan itsasteko.."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/pt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pt.paste_dlg',{
2 | text_title:"Use CTRL+V para colar o texto na janela.",
3 | text_linebreaks:"Manter quebras de linha",
4 | word_title:"Use CTRL+V para colar o texto na janela."
5 | });
--------------------------------------------------------------------------------
/initial_data/README.txt:
--------------------------------------------------------------------------------
1 | The 'fixtures_manual.xml' file fills the site table along with the flatpages
2 | Before running make sure you have set the default site name
3 |
4 | Run from root folder:
5 |
6 | ./manage.py loaddata initial_data/fixtures_manual.xml
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/css/searchreplace.css:
--------------------------------------------------------------------------------
1 | .panel_wrapper {height:85px;}
2 | .panel_wrapper div.current {height:85px;}
3 |
4 | /* IE */
5 | * html .panel_wrapper {height:100px;}
6 | * html .panel_wrapper div.current {height:100px;}
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/bg_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bg.advhr_dlg',{
2 | width:"\u0428\u0438\u0440\u0438\u043D\u0430",
3 | size:"\u0412\u0438\u0441\u043E\u0447\u0438\u043D\u0430",
4 | noshade:"\u0411\u0435\u0437 \u0441\u044F\u043D\u043A\u0430"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/nl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nl.paste_dlg',{
2 | text_title:"Gebruik Ctrl+V om tekst in het venster te plakken.",
3 | text_linebreaks:"Regelafbreking bewaren",
4 | word_title:"Gebruik Ctrl+V om tekst in het venster te plakken."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sq_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sq.paste_dlg',{
2 | text_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin.",
3 | text_linebreaks:"Ruaj linjat e reja",
4 | word_title:"P\u00EBrdor CTRL+V p\u00EBr t\u00EB ngjitur tekstin."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/table/css/table.css:
--------------------------------------------------------------------------------
1 | /* CSS file for table dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 245px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #class {
12 | width: 150px;
13 | }
14 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/es_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('es.paste_dlg',{
2 | text_title:"Use CTRL+V en su teclado para pegar el texto en la ventana.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V en su teclado para pegar el texto en la ventana."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/gl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gl.paste_dlg',{
2 | text_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1.",
3 | text_linebreaks:"Manter salto de li\u00F1as",
4 | word_title:"Use CTRL+V no teclado pra pega-lo texto na vent\u00E1."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/mk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mk.paste_dlg',{
2 | text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
3 | text_linebreaks:"Zadr\u017Ei prelome",
4 | word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sr.paste_dlg',{
2 | text_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor.",
3 | text_linebreaks:"Zadr\u017Ei prelome",
4 | word_title:"Koristite CTRL+V na tipkovnici da zalepite tekst u prozor."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/ka_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ka.advhr_dlg',{
2 | width:"\u10E1\u10D8\u10D2\u10D0\u10DC\u10D4",
3 | size:"\u10E1\u10D8\u10DB\u10D0\u10E6\u10DA\u10D4",
4 | noshade:"\u10E9\u10E0\u10D3\u10D8\u10DA\u10D8\u10E1 \u10D2\u10D0\u10E0\u10D4\u10E8\u10D4"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ar_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ar.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/bn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bn.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/bs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bs.paste_dlg',{
2 | text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
3 | text_linebreaks:"Zadr\u017Ei prijelome",
4 | word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/da_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('da.paste_dlg',{
2 | text_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten.",
3 | text_linebreaks:"Bevar linieskift",
4 | word_title:"Anvend CTRL+V p\u00E5 tastaturet for at inds\u00E6tte teksten."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/dv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('dv.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/et_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('et.paste_dlg',{
2 | text_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks.",
3 | text_linebreaks:"J\u00E4ta reavahetused",
4 | word_title:"Vajuta CTRL+V oma klaviatuuril teksti aknasse kleepimiseks."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/gu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gu.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/hi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hi.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/hr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hr.paste_dlg',{
2 | text_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor.",
3 | text_linebreaks:"Zadr\u017Ei prijelome",
4 | word_title:"Koristite CTRL+V na tipkovnici da zalijepite tekst u prozor."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/is_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('is.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/kl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('kl.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ml_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ml.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ps_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ps.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/si_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('si.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sk.paste_dlg',{
2 | text_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna.",
3 | text_linebreaks:"Zachova\u0165 zalamovanie riadkov",
4 | word_title:"Pou\u017Eite CTRL+V pre vlo\u017Eenie textu do okna."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ta_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ta.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/te_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('te.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/th_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('th.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ur_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ur.paste_dlg',{
2 | text_title:"Use CTRL+V on your keyboard to paste the text into the window.",
3 | text_linebreaks:"Keep linebreaks",
4 | word_title:"Use CTRL+V on your keyboard to paste the text into the window."
5 | });
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | Django==1.8
2 | pyyaml==3.11
3 | celery==3.1.23
4 | django-registration==2.0.4
5 | django-tinymce==1.5.3
6 | djangorestframework==2.3.14
7 | gevent==0.13.6
8 | greenlet==0.4.11
9 | ncclient==0.5.3
10 | redis==2.10.1
11 | ipaddr==2.1.10
12 | git+https://code.grnet.gr/git/nxpy
13 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/css/advhr.css:
--------------------------------------------------------------------------------
1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;}
2 | .panel_wrapper div.current {height:80px;}
3 | #width {width:50px; vertical-align:middle;}
4 | #width2 {width:50px; vertical-align:middle;}
5 | #size {width:100px;}
6 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/nb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nb.paste_dlg',{
2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.",
3 | text_linebreaks:"Behold tekstbryting",
4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/no_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('no.paste_dlg',{
2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet.",
3 | text_linebreaks:"Behold tekstbryting",
4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vinduet."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sl.paste_dlg',{
2 | text_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno.",
3 | text_linebreaks:"Obdr\u017Ei prelome vrstic",
4 | word_title:"Uporabite kombinacijo tipk CTRL+V, da prilepite vsebino v okno."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/xhtmlxtras/css/attributes.css:
--------------------------------------------------------------------------------
1 | .panel_wrapper div.current {
2 | height: 290px;
3 | }
4 |
5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey {
6 | width: 200px;
7 | }
8 |
9 | #events_panel input {
10 | width: 200px;
11 | }
12 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/fi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fi.paste_dlg',{
2 | text_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan.",
3 | text_linebreaks:"S\u00E4ilyt\u00E4 rivinvaihdot",
4 | word_title:"Paina CTRL+V liitt\u00E4\u00E4ksesi sis\u00E4ll\u00F6n ikkunaan."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/nn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nn.paste_dlg',{
2 | text_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget.",
3 | text_linebreaks:"Behald tekstbryting",
4 | word_title:"Bruk CTRL+V p\u00E5 tastaturet for \u00E5 lime inn i dette vindauget."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/autosave/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.autosave',{
2 | restore_content: "Restore auto-saved content",
3 | warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?"
4 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/cs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cs.paste_dlg',{
2 | text_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna.",
3 | text_linebreaks:"Zachovat zalamov\u00E1n\u00ED \u0159\u00E1dk\u016F",
4 | word_title:"Pou\u017Eijte CTRL+V pro vlo\u017Een\u00ED textu do okna."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/it_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('it.paste_dlg',{
2 | text_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.",
3 | text_linebreaks:"Mantieni interruzioni di riga",
4 | word_title:"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ms_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ms.paste_dlg',{
2 | text_title:"Guna CTRL+V pada papan kekunci anda untuk Tempel teks ke dalam tetingkap.",
3 | text_linebreaks:"Biarkan garisan pemisah",
4 | word_title:"Guna CTRL+V pada papan kekunci anda untuk teks ke dalam tetingkap."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/cy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cy.paste_dlg',{
2 | text_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest.",
3 | text_linebreaks:"Cadw toriadau llinell",
4 | word_title:"Defnyddiwch CTRL+V ar eich bysellfwrdd i ludo'r testun i fewn i'r ffenest."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ca_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ca.paste_dlg',{
2 | text_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra.",
3 | text_linebreaks:"Conserva els salts de l\u00EDnia",
4 | word_title:"Amb el teclat utilitzeu CTRL+V per a enganxar el text dins la finestra."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/de_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('de.paste_dlg',{
2 | text_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen.",
3 | text_linebreaks:"Zeilenumbr\u00FCche beibehalten",
4 | word_title:"Dr\u00FCcken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00FCgen."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/pl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pl.paste_dlg',{
2 | text_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna.",
3 | text_linebreaks:"Zachowaj ko\u0144ce linii.",
4 | word_title:"U\u017Cyj CTRL+V na swojej klawiaturze \u017Ceby wklei\u0107 tekst do okna."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ro_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ro.paste_dlg',{
2 | text_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103.",
3 | text_linebreaks:"P\u0103streaz\u0103 separatoarele de linii.",
4 | word_title:"Folosi\u0163i CTRL+V pentru a lipi \u00EEn aceast\u0103 zon\u0103."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/table/css/cell.css:
--------------------------------------------------------------------------------
1 | /* CSS file for cell dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 200px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #action {
12 | margin-bottom: 3px;
13 | }
14 |
15 | #class {
16 | width: 150px;
17 | }
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advhr/langs/hy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hy.advhr_dlg',{
2 | width:"\u053C\u0561\u0575\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
3 | size:"\u0532\u0561\u0580\u0571\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576",
4 | noshade:"\u0531\u057C\u0561\u0576\u0581 \u057D\u057F\u057E\u0565\u0580\u056B"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/hu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hu.paste_dlg',{
2 | text_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez.",
3 | text_linebreaks:"Sort\u00F6r\u00E9sek megtart\u00E1sa",
4 | word_title:"Haszn\u00E1lja a Ctrl+V-t a billenty\u0171zet\u00E9n a beilleszt\u00E9shez."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/lb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lb.paste_dlg',{
2 | text_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, fir den Text an ze f\u00FCgen.",
3 | text_linebreaks:"Zeilen\u00EBmbr\u00EBch b\u00E4ibehalen",
4 | word_title:"Dr\u00E9ckt op \u00C4rer Tastatur Ctrl+V, um den Text an ze f\u00FCgen."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/lt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lt.paste_dlg',{
2 | text_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105.",
3 | text_linebreaks:"Palikti eilu\u010Di\u0173 l\u016B\u017Eius",
4 | word_title:"Naudokite CTRL+V tekstui \u012Fd\u0117ti \u012F \u0161\u012F lang\u0105."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/fr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fr.paste_dlg',{
2 | text_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre.",
3 | text_linebreaks:"Conserver les retours \u00E0 la ligne",
4 | word_title:"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00EAtre."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/se_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('se.paste_dlg',{
2 | text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
3 | text_linebreaks:"Spara radbrytningar",
4 | word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sv.paste_dlg',{
2 | text_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster.",
3 | text_linebreaks:"Spara radbrytningar",
4 | word_title:"Anv\u00E4nd ctrl-v p\u00E5 ditt tangentbord f\u00F6r att klistra in i detta f\u00F6nster."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/tr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tr.paste_dlg',{
2 | text_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n.",
3 | text_linebreaks:"Sat\u0131r kesmelerini tut",
4 | word_title:"Pencereye metin yap\u0131\u015Ft\u0131rmak i\u00E7in klavyeden CTRL+V i kullan\u0131n."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/lv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lv.paste_dlg',{
2 | text_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101.",
3 | text_linebreaks:"Sagl\u0101b\u0101t l\u012Bniju sadal\u012Bt\u0101jus",
4 | word_title:"Izmantojiet CTRL+V uz j\u016Bsu tastat\u016Bras lai iekop\u0113t tekstu log\u0101."
5 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font-family: FontAwesome;
7 | font-style: normal;
8 | font-weight: normal;
9 | line-height: 1;
10 | -webkit-font-smoothing: antialiased;
11 | -moz-osx-font-smoothing: grayscale;
12 | }
13 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/no.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('no.simple',{
2 | bold_desc:"Fet",
3 | italic_desc:"Kursiv",
4 | underline_desc:"Understrek",
5 | striketrough_desc:"Gjennomstrek",
6 | bullist_desc:"Punktliste",
7 | numlist_desc:"Nummerliste",
8 | undo_desc:"Angre",
9 | redo_desc:"Gj\u00F8r om",
10 | cleanup_desc:"Rens grisete kode"
11 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font-family: FontAwesome;
7 | font-style: normal;
8 | font-weight: normal;
9 | line-height: 1;
10 | -webkit-font-smoothing: antialiased;
11 | -moz-osx-font-smoothing: grayscale;
12 | }
13 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ia_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ia.paste_dlg',{
2 | text_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002",
3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
4 | word_title:"\u5C06\u590D\u5236(CTRL + C)\u7684\u5185\u5BB9\u7C98\u8D34(CTRL + V)\u5230\u7A97\u53E3\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/tt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tt.paste_dlg',{
2 | text_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002",
3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u865F\u865F",
4 | word_title:"\u5C07\u8907\u88FD(CTRL + C)\u7684\u5167\u5BB9\u8CBC\u4E0A(CTRL + V)\u5230\u8996\u7A97\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/nn.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nn.simple',{
2 | bold_desc:"Feit",
3 | italic_desc:"Kursiv",
4 | underline_desc:"Understreking",
5 | striketrough_desc:"Gjennomstreking",
6 | bullist_desc:"Punktliste",
7 | numlist_desc:"Nummerliste",
8 | undo_desc:"Angre",
9 | redo_desc:"Gjer om",
10 | cleanup_desc:"Rens grisete kode"
11 | });
--------------------------------------------------------------------------------
/flowspec/templatetags/tofqdn.py:
--------------------------------------------------------------------------------
1 | from django import template
2 | import socket
3 |
4 | register = template.Library()
5 |
6 |
7 | @register.filter
8 | def tofqdn(value):
9 | try:
10 | fqdn = socket.getfqdn(value)
11 | if fqdn == value:
12 | return False
13 | else:
14 | return fqdn
15 | except:
16 | return False
17 |
--------------------------------------------------------------------------------
/apache/django.wsgi:
--------------------------------------------------------------------------------
1 | import os
2 | import sys
3 |
4 | sys.path.append('/home/leopoul/projects/')
5 | sys.path.append('/home/leopoul/projects/flowspy')
6 |
7 | os.environ['DJANGO_SETTINGS_MODULE'] = 'flowspy.settings'
8 |
9 | from gevent import monkey; monkey.patch_all()
10 |
11 |
12 | import django.core.handlers.wsgi
13 | application = django.core.handlers.wsgi.WSGIHandler()
14 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/nb.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nb.simple',{
2 | bold_desc:"Fet",
3 | italic_desc:"Kursiv",
4 | underline_desc:"Understreking",
5 | striketrough_desc:"Gjennomstreking",
6 | bullist_desc:"Punktliste",
7 | numlist_desc:"Nummerliste",
8 | undo_desc:"Angre (Ctrl+Z)",
9 | redo_desc:"Gj\u00F8r om (Ctrl + Y)",
10 | cleanup_desc:"Rens ukurant kode"
11 | });
--------------------------------------------------------------------------------
/init_scripts/beanstalkd_config:
--------------------------------------------------------------------------------
1 | ## Defaults for the beanstalkd init script, /etc/init.d/beanstalkd on
2 | ## Debian systems. Append ``-b /var/lib/beanstalkd'' for persistent
3 | ## storage.
4 | BEANSTALKD_LISTEN_ADDR=127.0.0.1
5 | BEANSTALKD_LISTEN_PORT=11300
6 | DAEMON_OPTS="-l $BEANSTALKD_LISTEN_ADDR -p $BEANSTALKD_LISTEN_PORT"
7 |
8 | ## Uncomment to enable startup during boot.
9 | START=yes
10 |
--------------------------------------------------------------------------------
/templates/add_rate_limit.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ch_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ch.paste_dlg',{
2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002",
3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7",
4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u7C98\u8D34\u5230\u6B64\u7A97\u53E3\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ar.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ar.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/dv.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('dv.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/en.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/gu.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gu.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/hi.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hi.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/id.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('id.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/kl.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('kl.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ps.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ps.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ta.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ta.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/te.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('te.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ur.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ur.simple',{
2 | bold_desc:"Bold (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Underline (Ctrl+U)",
5 | striketrough_desc:"Strikethrough",
6 | bullist_desc:"Unordered list",
7 | numlist_desc:"Ordered list",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Redo (Ctrl+Y)",
10 | cleanup_desc:"Cleanup messy code"
11 | });
--------------------------------------------------------------------------------
/flowspec/templatetags/unescape.py:
--------------------------------------------------------------------------------
1 | from django import template
2 | from django.utils.safestring import mark_safe
3 | from django.utils.encoding import force_unicode
4 |
5 | register = template.Library()
6 |
7 | @register.filter
8 | def unescape(value):
9 | return mark_safe(force_unicode(value).replace('<', '<').replace('>', '>').replace('"', '"').replace(''', "'").replace('&', '&'))
10 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/vi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('vi.paste_dlg',{
2 | text_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5.",
3 | text_linebreaks:"Gi\u1EEF ng\u1EAFt d\u00F2ng",
4 | word_title:"S\u1EED d\u1EE5ng CTRL+V tr\u00EAn b\u00E0n ph\u00EDm \u0111\u1EC3 d\u00E1n v\u0103n b\u1EA3n v\u00E0o c\u1EEDa s\u1ED5."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/nl.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nl.simple',{
2 | bold_desc:"Vet (Ctrl+B)",
3 | italic_desc:"Cursief (Ctrl+I)",
4 | underline_desc:"Onderstrepen (Ctrl+U)",
5 | striketrough_desc:"Doorhalen",
6 | bullist_desc:"Opsommingstekens",
7 | numlist_desc:"Nummering",
8 | undo_desc:"Ongedaan maken (Ctrl+Z)",
9 | redo_desc:"Herhalen (Ctrl+Y)",
10 | cleanup_desc:"Code opruimen"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/cy.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cy.simple',{
2 | bold_desc:"Trwm (Ctrl+B)",
3 | italic_desc:"Italig (Ctrl+I)",
4 | underline_desc:"Tanlinellu (Ctrl+U)",
5 | striketrough_desc:"Taro drwodd",
6 | bullist_desc:"Rhestr didrenus",
7 | numlist_desc:"Rhestr trenus",
8 | undo_desc:"Dadwneud (Ctrl+Z)",
9 | redo_desc:"Ailwneud (Ctrl+Y)",
10 | cleanup_desc:"Glanhau c\u00F4d anhrefnus"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/es.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('es.simple',{
2 | bold_desc:"Negrita (Ctrl+B)",
3 | italic_desc:"Cursiva (Ctrl+I)",
4 | underline_desc:"Subrayado (Ctrl+U)",
5 | striketrough_desc:"Tachado",
6 | bullist_desc:"Lista desordenada",
7 | numlist_desc:"Lista ordenada",
8 | undo_desc:"Deshacer (Ctrl+Z)",
9 | redo_desc:"Rehacer (Ctrl+Y)",
10 | cleanup_desc:"Limpiar c\u00F3digo basura"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/template/blank.htm:
--------------------------------------------------------------------------------
1 |
2 |
3 | blank_page
4 |
5 |
8 |
9 |
10 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/bs.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bs.simple',{
2 | bold_desc:"Podebljaj (Ctrl+B)",
3 | italic_desc:"Kurziv (Ctrl+I)",
4 | underline_desc:"Podcrtaj (Ctrl+U)",
5 | striketrough_desc:"Precrtaj",
6 | bullist_desc:"Neure\u0111ena lista",
7 | numlist_desc:"Ure\u0111ena lista",
8 | undo_desc:"Poni\u0161ti (Ctrl+Z)",
9 | redo_desc:"Ponovi (Ctrl+Y)",
10 | cleanup_desc:"Po\u010Disti kod"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ca.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ca.simple',{
2 | bold_desc:"Negreta (Ctrl+B)",
3 | italic_desc:"Cursiva (Ctrl+I)",
4 | underline_desc:"Subratllat (Ctrl+U)",
5 | striketrough_desc:"Barrat",
6 | bullist_desc:"Llista sense numeraci\u00F3",
7 | numlist_desc:"Llista numerada",
8 | undo_desc:"Desf\u00E9s (Ctrl+Z)",
9 | redo_desc:"Ref\u00E9s (Ctrl+Y)",
10 | cleanup_desc:"Poleix el codi"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/eu.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('eu.simple',{
2 | bold_desc:"Beltza (Ctrl+B)",
3 | italic_desc:"Etzana (Ctrl+I)",
4 | underline_desc:"Azpimarratua (Ctrl+U)",
5 | striketrough_desc:"Gainetik marra duena",
6 | bullist_desc:"Zerrenda",
7 | numlist_desc:"Zerrenda ordenatua",
8 | undo_desc:"Desegin (Ctrl+Z)",
9 | redo_desc:"Berregin (Ctrl+Y)",
10 | cleanup_desc:"Kode zikina garbitu"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/hr.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hr.simple',{
2 | bold_desc:"Podebljaj (Ctrl+B)",
3 | italic_desc:"Kurziv (Ctrl+I)",
4 | underline_desc:"Podcrtaj (Ctrl+U)",
5 | striketrough_desc:"Precrtaj",
6 | bullist_desc:"Neure\u0111ena lista",
7 | numlist_desc:"Ure\u0111ena lista",
8 | undo_desc:"Poni\u0161ti (Ctrl+Z)",
9 | redo_desc:"Ponovi (Ctrl+Y)",
10 | cleanup_desc:"Po\u010Disti kod"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/mk.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mk.simple',{
2 | bold_desc:"Podebljaj (Ctrl+B)",
3 | italic_desc:"Kurziv (Ctrl+I)",
4 | underline_desc:"Podcrtaj (Ctrl+U)",
5 | striketrough_desc:"Precrtaj",
6 | bullist_desc:"Neure\u0111ena lista",
7 | numlist_desc:"Ure\u0111ena lista",
8 | undo_desc:"Poni\u0161ti (Ctrl+Z)",
9 | redo_desc:"Ponovi (Ctrl+Y)",
10 | cleanup_desc:"Po\u010Disti kod"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/se.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('se.simple',{
2 | bold_desc:"Fet (Ctrl+B)",
3 | italic_desc:"Kursiv (Ctrl+I)",
4 | underline_desc:"Understruken (Ctrl+U)",
5 | striketrough_desc:"Genomstruken",
6 | bullist_desc:"Punktlista",
7 | numlist_desc:"Nummerlista",
8 | undo_desc:"\u00C5ngra (Ctrl+Z)",
9 | redo_desc:"G\u00F6r om (Ctrl+Y)",
10 | cleanup_desc:"St\u00E4da upp i k\u00E4llkoden"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sl.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sl.simple',{
2 | bold_desc:"Krepko (Ctrl+B)",
3 | italic_desc:"Po\u0161evno (Ctrl+I)",
4 | underline_desc:"Pod\u010Drtano (Ctrl+U)",
5 | striketrough_desc:"Pre\u010Drtano",
6 | bullist_desc:"Alineje",
7 | numlist_desc:"Na\u0161tevanje",
8 | undo_desc:"Razveljavi (Ctrl+Z)",
9 | redo_desc:"Uveljavi (Ctrl+Y)",
10 | cleanup_desc:"Pre\u010Disti kodo"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sr.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sr.simple',{
2 | bold_desc:"Podebljaj (Ctrl+B)",
3 | italic_desc:"Iskosi (Ctrl+I)",
4 | underline_desc:"Podcrtaj (Ctrl+U)",
5 | striketrough_desc:"Precrtaj",
6 | bullist_desc:"Neure\u0111ena lista",
7 | numlist_desc:"Ure\u0111ena lista",
8 | undo_desc:"Poni\u0161ti (Ctrl+Z)",
9 | redo_desc:"Ponovi (Ctrl+Y)",
10 | cleanup_desc:"Po\u010Disti kod"
11 | });
--------------------------------------------------------------------------------
/cron_fetch_networks.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | import os
3 | import sys
4 |
5 | def populate_networks():
6 | peers = Peer.objects.all()
7 | for peer in peers:
8 | peer.fill_networks()
9 |
10 | if __name__ == "__main__":
11 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "flowspy.settings")
12 | from django.core.mail import send_mail
13 | from peers.models import *
14 | populate_networks()
15 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/template/css/template.css:
--------------------------------------------------------------------------------
1 | #frmbody {
2 | padding: 10px;
3 | background-color: #FFF;
4 | border: 1px solid #CCC;
5 | }
6 |
7 | .frmRow {
8 | margin-bottom: 10px;
9 | }
10 |
11 | #templatesrc {
12 | border: none;
13 | width: 320px;
14 | height: 240px;
15 | }
16 |
17 | .title {
18 | padding-bottom: 5px;
19 | }
20 |
21 | .mceActionPanel {
22 | padding-top: 5px;
23 | }
24 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/gl.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gl.simple',{
2 | bold_desc:"Negri\u00F1a (Ctrl+B)",
3 | italic_desc:"Cursiva (Ctrl+I)",
4 | underline_desc:"Suli\u00F1ado (Ctrl+U)",
5 | striketrough_desc:"Tachado",
6 | bullist_desc:"Lista desordenada",
7 | numlist_desc:"Lista ordenada",
8 | undo_desc:"Desfacer (Ctrl+Z)",
9 | redo_desc:"Re-facer (Ctrl+Y)",
10 | cleanup_desc:"Limpar lixo no c\u00F3digo"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/it.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('it.simple',{
2 | bold_desc:"Grassetto (Ctrl+B)",
3 | italic_desc:"Corsivo (Ctrl+I)",
4 | underline_desc:"Sottolineato (Ctrl+U)",
5 | striketrough_desc:"Barrato",
6 | bullist_desc:"Lista non ordinata",
7 | numlist_desc:"Lista ordinata",
8 | undo_desc:"Annulla (Ctrl+Z)",
9 | redo_desc:"Ripristina (Ctrl+Y)",
10 | cleanup_desc:"Pulisci codice disordinato"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sv.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sv.simple',{
2 | bold_desc:"Fet (Ctrl+B)",
3 | italic_desc:"Kursiv (Ctrl+I)",
4 | underline_desc:"Understruken (Ctrl+U)",
5 | striketrough_desc:"Genomstruken",
6 | bullist_desc:"Punktlista",
7 | numlist_desc:"Nummerlista",
8 | undo_desc:"\u00C5\u0085ngra (Ctrl+Z)",
9 | redo_desc:"G\u00F6r om (Ctrl+Y)",
10 | cleanup_desc:"St\u00E4da upp i k\u00E4llkoden"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/br.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('br.simple',{
2 | bold_desc:"Negrito (Ctrl+B)",
3 | italic_desc:"It\u00E1lico (Ctrl+I)",
4 | underline_desc:"Sublinhado (Ctrl+U)",
5 | striketrough_desc:"Riscado",
6 | bullist_desc:"Lista n\u00E3o-ordenada",
7 | numlist_desc:"Lista ordenada",
8 | undo_desc:"Desfazer (Ctrl+Z)",
9 | redo_desc:"Refazer (Ctrl+Y)",
10 | cleanup_desc:"Limpar c\u00F3digo incorreto"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/fr.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fr.simple',{
2 | bold_desc:"Gras (Ctrl+B)",
3 | italic_desc:"Italique (Ctrl+I)",
4 | underline_desc:"Soulign\u00E9 (Ctrl+U)",
5 | striketrough_desc:"Barr\u00E9",
6 | bullist_desc:"Liste \u00E0 puces",
7 | numlist_desc:"Liste num\u00E9rot\u00E9e",
8 | undo_desc:"Annuler (Ctrl+Z)",
9 | redo_desc:"R\u00E9tablir (Ctrl+Y)",
10 | cleanup_desc:"Nettoyer le code"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ms.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ms.simple',{
2 | bold_desc:"Tebal (Ctrl+B)",
3 | italic_desc:"Condong (Ctrl+I)",
4 | underline_desc:"Garis bawah (Ctrl+U)",
5 | striketrough_desc:"Garis tengah",
6 | bullist_desc:"Senarai tidak tertib",
7 | numlist_desc:"Senarai tertib",
8 | undo_desc:"Buat asal (Ctrl+Z)",
9 | redo_desc:"Buat semula (Ctrl+Y)",
10 | cleanup_desc:"Bersihkan kod yang bersepah"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/pt.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pt.simple',{
2 | bold_desc:"Negrito (Ctrl+B)",
3 | italic_desc:"It\u00E1lico (Ctrl+I)",
4 | underline_desc:"Sublinhado (Ctrl+U)",
5 | striketrough_desc:"Riscado",
6 | bullist_desc:"Lista n\u00E3o-ordenada",
7 | numlist_desc:"Lista ordenada",
8 | undo_desc:"Desfazer (Ctrl+Z)",
9 | redo_desc:"Refazer (Ctrl+Y)",
10 | cleanup_desc:"Limpar c\u00F3digo incorreto"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/sc_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sc.paste_dlg',{
2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 ",
3 | text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26\u53F7",
4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002 "
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/tw_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tw.paste_dlg',{
2 | text_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCtrl \u548CV \u9375\uFF0C\u5C07\u6587\u5B57\u8CBC\u4E0A\u5230\u6B64\u8996\u7A97\u3002 ",
3 | text_linebreaks:"\u4FDD\u7559\u63DB\u884C\u7B26",
4 | word_title:"\u5728\u9375\u76E4\u4E0A\u540C\u6642\u6309\u4E0BCtrl \u548CV \u9375\uFF0C\u5C07\u6587\u5B57\u8CBC\u4E0A\u5230\u6B64\u8996\u7A97\u3002 "
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/zh_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zh.paste_dlg',{
2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCtrl \u548CV \u952E\uFF0C\u5C06\u6587\u5B57\u8D34\u4E0A\u5230\u6B64\u89C6\u7A97\u3002 ",
3 | text_linebreaks:"\u4FDD\u7559\u6362\u884C\u7B26",
4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCtrl \u548CV \u952E\uFF0C\u5C06\u6587\u5B57\u8D34\u4E0A\u5230\u6B64\u89C6\u7A97\u3002 "
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/de.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('de.simple',{
2 | bold_desc:"Fett (Strg+B)",
3 | italic_desc:"Kursiv (Strg+I)",
4 | underline_desc:"Unterstrichen (Strg+U)",
5 | striketrough_desc:"Durchgestrichen",
6 | bullist_desc:"Aufz\u00E4hlung",
7 | numlist_desc:"Nummerierung",
8 | undo_desc:"R\u00FCckg\u00E4ngig (Strg+Z)",
9 | redo_desc:"Wiederholen (Strg+Y)",
10 | cleanup_desc:"Quellcode s\u00E4ubern"
11 | });
--------------------------------------------------------------------------------
/longerusername/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from django.contrib.auth.admin import UserAdmin
3 | from django.contrib.auth.models import User
4 |
5 | from longerusername.forms import UserCreationForm, UserChangeForm
6 |
7 | class LongerUserNameUserAdmin(UserAdmin):
8 | add_form = UserCreationForm
9 | form = UserChangeForm
10 |
11 | admin.site.unregister(User)
12 | admin.site.register(User, LongerUserNameUserAdmin)
13 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ii_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ii.paste_dlg',{
2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002",
3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u7C98\u8D34\u6587\u5B57\u5230\u6B64\u7A97\u53E3\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/zu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zu.paste_dlg',{
2 | text_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002",
3 | text_linebreaks:"\u4FDD\u7559\u5206\u884C\u7B26\u53F7\u53F7",
4 | word_title:"\u5728\u952E\u76D8\u4E0A\u540C\u65F6\u6309\u4E0BCTRL\u548CV\u952E\uFF0C\u4EE5\u8D34\u4E0A\u6587\u5B57\u5230\u6B64\u89C6\u7A97\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/da.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('da.simple',{
2 | bold_desc:"Fed (Ctrl+B)",
3 | italic_desc:"Kursiv (Ctrl+I)",
4 | underline_desc:"Understreget (Ctrl+U)",
5 | striketrough_desc:"Gennemstreget",
6 | bullist_desc:"Unummereret punktopstilling",
7 | numlist_desc:"Nummereret punktopstilling",
8 | undo_desc:"Fortryd (Ctrl+Z)",
9 | redo_desc:"Gendan (Ctrl+Y)",
10 | cleanup_desc:"Ryd op i uordentlig kode"
11 | });
--------------------------------------------------------------------------------
/init_scripts/gunicorn_fod:
--------------------------------------------------------------------------------
1 | CONFIG = {
2 | 'mode': 'django',
3 | 'working_dir': '/home/to/projects/flowspy',
4 | #'python': '/usr/bin/python',
5 | 'args': (
6 | '--bind=127.0.0.1:8081',
7 | '--workers=1',
8 | '--timeout=360',
9 | #'--keepalive=90',
10 | '--worker-class=egg:gunicorn#gevent',
11 | '--log-level=debug',
12 | '--log-file=/var/www/fod.log',
13 | 'settings.py',
14 | ),
15 | }
16 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/bordered-pulled.less:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em @fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .@{fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/rotated-flipped.less:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); }
5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); }
6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); }
7 |
8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); }
9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); }
10 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_bordered-pulled.scss:
--------------------------------------------------------------------------------
1 | // Bordered & Pulled
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-border {
5 | padding: .2em .25em .15em;
6 | border: solid .08em $fa-border-color;
7 | border-radius: .1em;
8 | }
9 |
10 | .pull-right { float: right; }
11 | .pull-left { float: left; }
12 |
13 | .#{$fa-css-prefix} {
14 | &.pull-left { margin-right: .3em; }
15 | &.pull-right { margin-left: .3em; }
16 | }
17 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/et.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('et.simple',{
2 | bold_desc:"Rasvane (Ctrl+B)",
3 | italic_desc:"Kursiiv (Ctrl+I)",
4 | underline_desc:"Allajoonitud (Ctrl+U)",
5 | striketrough_desc:"L\u00E4bijoonitud",
6 | bullist_desc:"Ebakorrap\u00E4rane loetelu",
7 | numlist_desc:"Korrap\u00E4rane loetelu",
8 | undo_desc:"V\u00F5ta tagasi (Ctrl+Z)",
9 | redo_desc:"Tee uuesti (Ctrl+Y)",
10 | cleanup_desc:"Puhasta segane kood"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/fi.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fi.simple',{
2 | bold_desc:"Lihavointi (Ctrl+B)",
3 | italic_desc:"Kursivointi (Ctrl+I)",
4 | underline_desc:"Alleviivaus (Ctrl+U)",
5 | striketrough_desc:"Yliviivaus",
6 | bullist_desc:"J\u00E4rjest\u00E4m\u00E4t\u00F6n lista",
7 | numlist_desc:"J\u00E4rjestetty lista",
8 | undo_desc:"Peru (Ctrl+Z)",
9 | redo_desc:"Tee uudestaan (Ctrl+Y)",
10 | cleanup_desc:"Siisti sekainen koodi"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ia.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ia.simple',{
2 | bold_desc:"\u7C97\u4F53(Ctrl+B)",
3 | italic_desc:"\u659C\u4F53(Ctrl+I)",
4 | underline_desc:"\u5E95\u7EBF (Ctrl+U)",
5 | striketrough_desc:"\u4E2D\u5212\u7EBF",
6 | bullist_desc:"\u6E05\u5355\u7B26\u53F7",
7 | numlist_desc:"\u7F16\u53F7",
8 | undo_desc:"\u64A4\u9500 (Ctrl+Z)",
9 | redo_desc:"\u6062\u590D (Ctrl+Y)",
10 | cleanup_desc:"\u5220\u9664\u5197\u4F59\u7801"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/is.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('is.simple',{
2 | bold_desc:"Feitletra (Ctrl+B)",
3 | italic_desc:"Sk\u00E1letra (Ctrl+I)",
4 | underline_desc:"Undirstrika (Ctrl+U)",
5 | striketrough_desc:"Yfirstrika",
6 | bullist_desc:"B\u00F3lulisti",
7 | numlist_desc:"N\u00FAmera\u00F0ur listi",
8 | undo_desc:"Taka til baka (Ctrl+Z)",
9 | redo_desc:"Endurtaka (Ctrl+Y)",
10 | cleanup_desc:"Hreinsa sk\u00EDtugan k\u00F3\u00F0a"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/lb.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lb.simple',{
2 | bold_desc:"Fett (Strg+B)",
3 | italic_desc:"Kursiv (Strg+I)",
4 | underline_desc:"\u00CBnnerstrach (Strg+U)",
5 | striketrough_desc:"Duerchgestrach",
6 | bullist_desc:"Onsort\u00E9iert L\u00EBscht",
7 | numlist_desc:"Sort\u00E9iert L\u00EBscht",
8 | undo_desc:"R\u00E9ckg\u00E4ngeg (Strg+Z)",
9 | redo_desc:"Widderhuelen (Strg+Y)",
10 | cleanup_desc:"Quellcode botzen"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ro.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ro.simple',{
2 | bold_desc:"\u00CEngro\u015Fat (Ctrl+B)",
3 | italic_desc:"Italic (Ctrl+I)",
4 | underline_desc:"Subliniat (Ctrl+U)",
5 | striketrough_desc:"T\u0103iat",
6 | bullist_desc:"List\u0103 neordonat\u0103",
7 | numlist_desc:"List\u0103 ordonat\u0103",
8 | undo_desc:"Undo (Ctrl+Z)",
9 | redo_desc:"Ref\u0103 (Ctrl+Y)",
10 | cleanup_desc:"Cur\u0103\u0163\u0103 cod invalid"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/table/css/row.css:
--------------------------------------------------------------------------------
1 | /* CSS file for row dialog in the table plugin */
2 |
3 | .panel_wrapper div.current {
4 | height: 200px;
5 | }
6 |
7 | .advfield {
8 | width: 200px;
9 | }
10 |
11 | #action {
12 | margin-bottom: 3px;
13 | }
14 |
15 | #rowtype,#align,#valign,#class,#height {
16 | width: 150px;
17 | }
18 |
19 | #height {
20 | width: 50px;
21 | }
22 |
23 | .col2 {
24 | padding-left: 20px;
25 | }
26 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ii.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ii.simple',{
2 | bold_desc:"\u9ED1\u4F53(Ctrl+B)",
3 | italic_desc:"\u659C\u4F53(Ctrl+I)",
4 | underline_desc:"\u5E95\u7EBF(Ctrl+U)",
5 | striketrough_desc:"\u5220\u9664\u7EBF",
6 | bullist_desc:"\u4E13\u6848\u7B26\u53F7",
7 | numlist_desc:"\u7F16\u53F7",
8 | undo_desc:"\u64A4\u9500(Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A(Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u4F59\u4EE3\u7801"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/pl.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pl.simple',{
2 | bold_desc:"Pogrubienie (Ctrl+B)",
3 | italic_desc:"Kursywa (Ctrl+I)",
4 | underline_desc:"Podkre\u015Blenie (Ctrl+U)",
5 | striketrough_desc:"Przekre\u015Blenie",
6 | bullist_desc:"Lista nienumerowana",
7 | numlist_desc:"Lista numerowana",
8 | undo_desc:"Cofnij (Ctrl+Z)",
9 | redo_desc:"Pon\u00F3w (Ctrl+Y)",
10 | cleanup_desc:"Wyczy\u015B\u0107 nieuporz\u0105dkowany kod"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sc.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sc.simple',{
2 | bold_desc:"\u9ED1\u4F53(Ctrl+B)",
3 | italic_desc:"\u659C\u4F53(Ctrl+I)",
4 | underline_desc:"\u5E95\u7EBF(Ctrl+U)",
5 | striketrough_desc:"\u5220\u9664\u7EBF",
6 | bullist_desc:"\u4E13\u6848\u7B26\u53F7",
7 | numlist_desc:"\u7F16\u53F7",
8 | undo_desc:"\u64A4\u9500(Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A(Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u4F59\u4EE3\u7801"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sq.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sq.simple',{
2 | bold_desc:"I Trash\u00EB (Ctrl+B)",
3 | italic_desc:"I Pjerr\u00EBt (Ctrl+I)",
4 | underline_desc:"I N\u00EBnvizuar (Ctrl+U)",
5 | striketrough_desc:"Vij\u00EB n\u00EB mes",
6 | bullist_desc:"List\u00EB e parregullt",
7 | numlist_desc:"List\u00EB e rregullt",
8 | undo_desc:"\u00C7b\u00EBj (Ctrl+Z)",
9 | redo_desc:"Rib\u00EBj (Ctrl+Y)",
10 | cleanup_desc:"Pastro kodin"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/zu.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zu.simple',{
2 | bold_desc:"\u9ED1\u4F53(Ctrl+B)",
3 | italic_desc:"\u659C\u4F53(Ctrl+I)",
4 | underline_desc:"\u5E95\u7EBF(Ctrl+U)",
5 | striketrough_desc:"\u5220\u9664\u7EBF",
6 | bullist_desc:"\u4E13\u6848\u7B26\u53F7",
7 | numlist_desc:"\u7F16\u53F7",
8 | undo_desc:"\u64A4\u9500(Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A(Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u4F59\u4EE3\u7801"
11 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/larger.less:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .@{fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .@{fa-css-prefix}-2x { font-size: 2em; }
11 | .@{fa-css-prefix}-3x { font-size: 3em; }
12 | .@{fa-css-prefix}-4x { font-size: 4em; }
13 | .@{fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ch.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ch.simple',{
2 | bold_desc:"\u52A0\u7C97(Ctrl+B)",
3 | italic_desc:"\u503E\u659C(Ctrl+I)",
4 | underline_desc:"\u4E0B\u5212\u7EBF(Ctrl+U)",
5 | striketrough_desc:"\u5220\u9664\u7EBF",
6 | bullist_desc:"\u9879\u76EE\u7B26\u53F7",
7 | numlist_desc:"\u7F16\u53F7",
8 | undo_desc:"\u64A4\u9500(Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A(Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u4F59\u4EE3\u7801"
11 | });
--------------------------------------------------------------------------------
/mkdocs.yml:
--------------------------------------------------------------------------------
1 | site_name: Firewall On Demand
2 | repo_url: https://github.com/grnet/flowspy/
3 | docs_dir: doc
4 | site_author: Stavros Kroustouris
5 | theme: readthedocs
6 | pages:
7 | - 'Introduction': 'index.md'
8 | - 'Installation':
9 | - 'Generic': 'installation/generic.md'
10 | - 'Debian': 'installation/debian_wheezy.md'
11 | - 'Red Hat': 'installation/redhat.md'
12 | - 'Configuration': 'configuration.md'
13 | - 'API': 'api.md'
14 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_larger.scss:
--------------------------------------------------------------------------------
1 | // Icon Sizes
2 | // -------------------------
3 |
4 | /* makes the font 33% larger relative to the icon container */
5 | .#{$fa-css-prefix}-lg {
6 | font-size: (4em / 3);
7 | line-height: (3em / 4);
8 | vertical-align: -15%;
9 | }
10 | .#{$fa-css-prefix}-2x { font-size: 2em; }
11 | .#{$fa-css-prefix}-3x { font-size: 3em; }
12 | .#{$fa-css-prefix}-4x { font-size: 4em; }
13 | .#{$fa-css-prefix}-5x { font-size: 5em; }
14 |
--------------------------------------------------------------------------------
/static/css/custom.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-color: white !important;
3 | }
4 |
5 |
6 | .slideshow {
7 | margin-bottom: 20px;
8 | }
9 |
10 | .navbar-brand {
11 | float: left;
12 | font-size: 18px;
13 | height: 20px;
14 | line-height: 20px;
15 | padding: 1px;
16 | }
17 |
18 | .footer {
19 | border-top: 1px solid #E5E5E5;
20 | color: #777777;
21 | padding-bottom: 40px;
22 | padding-top: 40px;
23 | text-align: center;
24 | }
25 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/tr.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tr.simple',{
2 | bold_desc:"Kal\u0131n (Ctrl+B)",
3 | italic_desc:"\u0130talik (Ctrl+I)",
4 | underline_desc:"Alt\u0131 \u00E7izili (Ctrl+U)",
5 | striketrough_desc:"\u00DCst\u00FC \u00E7izili",
6 | bullist_desc:"S\u0131ras\u0131z liste",
7 | numlist_desc:"S\u0131ral\u0131 liste",
8 | undo_desc:"Geri al (Ctrl+Z)",
9 | redo_desc:"Yinele (Ctrl+Y)",
10 | cleanup_desc:"Da\u011F\u0131n\u0131k kodu temizle"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/tt.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tt.simple',{
2 | bold_desc:"\u7C97\u9AD4(Ctrl+B)",
3 | italic_desc:"\u659C\u9AD4(Ctrl+I)",
4 | underline_desc:"\u5E95\u7DDA (Ctrl+U)",
5 | striketrough_desc:"\u4E2D\u5283\u7DDA",
6 | bullist_desc:"\u6E05\u55AE\u7B26\u865F",
7 | numlist_desc:"\u7DE8\u865F",
8 | undo_desc:"\u53D6\u6D88\u8B8A\u66F4 (Ctrl+Z)",
9 | redo_desc:"\u91CD\u4F5C\u8B8A\u66F4 (Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u5167\u5BB9"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ko_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ko.paste_dlg',{
2 | text_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85C Ctrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694.",
3 | text_linebreaks:"\uAC1C\uD589\uC744 \uBCF4\uAD00 \uC720\uC9C0",
4 | word_title:"\uC708\uB3C4\uC6B0\uC5D0 \uD14D\uC2A4\uD2B8\uB97C \uBD99\uC774\uB824\uBA74 \uD0A4\uBCF4\uB4DC\uB85CCtrl+V\uB97C \uC785\uB825\uD574 \uC8FC\uC138\uC694."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/cs.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cs.simple',{
2 | bold_desc:"Tu\u010Dn\u00E9 (Ctrl+B)",
3 | italic_desc:"Kurz\u00EDva (Ctrl+I)",
4 | underline_desc:"Podtr\u017Een\u00E9 (Ctrl+U)",
5 | striketrough_desc:"P\u0159e\u0161krtnut\u00E9",
6 | bullist_desc:"Seznam s odr\u00E1\u017Ekami",
7 | numlist_desc:"\u010C\u00EDslovan\u00FD seznam",
8 | undo_desc:"Zp\u011Bt (Ctrl+Z)",
9 | redo_desc:"Znovu (Ctrl+Y)",
10 | cleanup_desc:"Vy\u010Distit k\u00F3d"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/tw.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tw.simple',{
2 | bold_desc:"\u7C97\u9AD4 (Ctrl+B)",
3 | italic_desc:"\u659C\u9AD4 (Ctrl+I)",
4 | underline_desc:"\u4E0B\u5283\u7DDA(Ctrl+U)",
5 | striketrough_desc:"\u522A\u9664\u7DDA",
6 | bullist_desc:"\u7B26\u865F\u5217\u8868",
7 | numlist_desc:"\u7DE8\u865F\u5217\u8868",
8 | undo_desc:"\u9084\u539F (Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A (Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u9918\u4EE3\u78BC"
11 | });
--------------------------------------------------------------------------------
/static/b3theme/css/plugins/morris/morris-0.4.3.min.css:
--------------------------------------------------------------------------------
1 | .morris-hover{position:absolute;z-index:1000;}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255, 255, 255, 0.8);border:solid 2px rgba(230, 230, 230, 0.8);font-family:sans-serif;font-size:12px;text-align:center;}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0;}
2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0;}
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/az_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('az.paste_dlg',{
2 | text_title:"P\u0259nc\u0259r\u0259y\u0259 m\u0259tn \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin.",
3 | text_linebreaks:"S\u0259tr s\u0131nmalar\u0131n\u0131 saxla",
4 | word_title:"P\u0259nc\u0259r\u0259y\u0259 s\u00F6z \u0259lav\u0259 etm\u0259k \u00FC\u00E7\u00FCn CTRL+V klavi\u015F birl\u0259\u015Fm\u0259sini istifad\u0259 edin."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/lt.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lt.simple',{
2 | bold_desc:"Pusjuodis (Ctrl+B)",
3 | italic_desc:"Kursyvas (Ctrl+I)",
4 | underline_desc:"Pabrauktas (Ctrl+U)",
5 | striketrough_desc:"Perbrauktas",
6 | bullist_desc:"Nesunumeruotas s\u0105ra\u0161as",
7 | numlist_desc:"Sunumeruotas s\u0105ra\u0161as",
8 | undo_desc:"At\u0161aukti (Ctrl+Z)",
9 | redo_desc:"Gr\u0105\u017Einti (Ctrl+Y)",
10 | cleanup_desc:"I\u0161valyti netvarking\u0105 kod\u0105"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/lv.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lv.simple',{
2 | bold_desc:"Treknraksts (Ctrl+B)",
3 | italic_desc:"Sl\u012Bpraksts (Ctrl+I)",
4 | underline_desc:"Pasv\u012Btrojums (Ctrl+U)",
5 | striketrough_desc:"P\u0101rsv\u012Btrojums",
6 | bullist_desc:"Nenumur\u0113ts saraksts",
7 | numlist_desc:"Numur\u0113ts saraksts",
8 | undo_desc:"Atsaukt (Ctrl+Z)",
9 | redo_desc:"Atatsaukt (Ctrl+Y)",
10 | cleanup_desc:"Izt\u012Br\u012Bt nek\u0101rt\u012Bgu kodu"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ja_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ja.paste_dlg',{
2 | text_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002",
3 | text_linebreaks:"\u6539\u884C\u3092\u4FDD\u6301\u3059\u308B",
4 | word_title:"\u30AD\u30FC\u30DC\u30FC\u30C9\u3067CTRL+V\u3092\u62BC\u3057\u3066\u30C6\u30AD\u30B9\u30C8\u3092\u8CBC\u308A\u4ED8\u3051\u3066\u304F\u3060\u3055\u3044\u3002"
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/sk.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sk.simple',{
2 | bold_desc:"Tu\u010Dn\u00E9 (Ctrl+B)",
3 | italic_desc:"Kurz\u00EDva (Ctrl+I)",
4 | underline_desc:"Pod\u010Diarknut\u00E9 (Ctrl+U)",
5 | striketrough_desc:"Pre\u010Diarknut\u00E9",
6 | bullist_desc:"Zoznam s odr\u00E1\u017Ekami",
7 | numlist_desc:"\u010C\u00EDslovan\u00FD zoznam",
8 | undo_desc:"Sp\u00E4\u0165 (Ctrl+Z)",
9 | redo_desc:"Znovu (Ctrl+Y)",
10 | cleanup_desc:"Vy\u010Disti\u0165 k\u00F3d"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/zh.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zh.simple',{
2 | bold_desc:"\u7C97\u4F53 (Ctrl+B)",
3 | italic_desc:"\u659C\u4F53 (Ctrl+I)",
4 | underline_desc:"\u4E0B\u5212\u7EBF(Ctrl+U)",
5 | striketrough_desc:"\u5220\u9664\u7EBF",
6 | bullist_desc:"\u7B26\u53F7\u5217\u8868",
7 | numlist_desc:"\u7F16\u53F7\u5217\u8868",
8 | undo_desc:"\u8FD8\u539F (Ctrl+Z)",
9 | redo_desc:"\u91CD\u505A (Ctrl+Y)",
10 | cleanup_desc:"\u6E05\u9664\u591A\u9980\u539F\u59CB\u7801"
11 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: -@fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_rotated-flipped.scss:
--------------------------------------------------------------------------------
1 | // Rotated & Flipped Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); }
5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); }
6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); }
7 |
8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); }
9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); }
10 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/hu.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hu.simple',{
2 | bold_desc:"F\u00E9lk\u00F6v\u00E9r (Ctrl+B)",
3 | italic_desc:"D\u0151lt (Ctrl+I)",
4 | underline_desc:"Al\u00E1h\u00FAzott (Ctrl+U)",
5 | striketrough_desc:"\u00C1th\u00FAzott",
6 | bullist_desc:"Felsorol\u00E1sos lista",
7 | numlist_desc:"Sorrendezett lista",
8 | undo_desc:"Visszavon\u00E1s (Ctrl+Z)",
9 | redo_desc:"M\u00E9gis v\u00E9grehajt (Ctrl+Y)",
10 | cleanup_desc:"Rendetlen k\u00F3d tiszt\u00EDt\u00E1sa"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/az.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('az.simple',{
2 | bold_desc:"Yar\u0131qal\u0131n (Ctrl+B)",
3 | italic_desc:"Kursiv (Ctrl+I)",
4 | underline_desc:"Altdan x\u0259tt (Ctrl+U)",
5 | striketrough_desc:"Qaralanm\u0131\u015F",
6 | bullist_desc:"Qeyd edilmi\u015F siyah\u0131",
7 | numlist_desc:"N\u00F6mr\u0259l\u0259nmi\u015F siyah\u0131",
8 | undo_desc:"L\u0259\u011Fv et (Ctrl+Z)",
9 | redo_desc:"T\u0259krarla (Ctrl+Y)",
10 | cleanup_desc:"\u018Fyri kodu t\u0259mizl\u0259"
11 | });
--------------------------------------------------------------------------------
/static/b3theme/js/sb-admin.js:
--------------------------------------------------------------------------------
1 | $(function() {
2 |
3 | $('#side-menu').metisMenu();
4 |
5 | });
6 |
7 | //Loads the correct sidebar on window load,
8 | //collapses the sidebar on window resize.
9 | $(function() {
10 | $(window).bind("load resize", function() {
11 | if ($(this).width() < 768) {
12 | $('div.sidebar-collapse').addClass('collapse')
13 | } else {
14 | $('div.sidebar-collapse').removeClass('collapse')
15 | }
16 | })
17 | })
18 |
--------------------------------------------------------------------------------
/templates/registration/activation_complete.txt:
--------------------------------------------------------------------------------
1 | Ο λογαριασμός σας με όνομα χρήστη «{{user.username}}» ενεργοποιήθηκε.
2 | Μπορείτε να χρησιμοποιήσετε την υπηρεσία FoD, κάνοντας login στην παρακάτω
3 | διεύθυνση:
4 |
5 | http://{{ site.domain }}{% url 'login' %}
6 |
7 | ---------------------------------------------------------------------------
8 | Your account with username “{{ user.username }}” has been activated.
9 | You may login to FoD using the following URL:
10 |
11 | http://{{ site.domain }}{% url 'login' %}
12 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/font-awesome.less:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "spinning";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/font-awesome.scss:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 |
6 | @import "variables";
7 | @import "mixins";
8 | @import "path";
9 | @import "core";
10 | @import "larger";
11 | @import "fixed-width";
12 | @import "list";
13 | @import "bordered-pulled";
14 | @import "spinning";
15 | @import "rotated-flipped";
16 | @import "stacked";
17 | @import "icons";
18 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/print/editor_plugin.js:
--------------------------------------------------------------------------------
1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})();
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ar_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ar.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/bn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bn.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/dv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('dv.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/gu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gu.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/hi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hi.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/id_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('id.emotions_dlg',{
2 | title:"sisipkan emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/kl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('kl.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ml_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ml.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ps_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ps.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/si_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('si.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ta_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ta.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/te_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('te.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ur_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ur.emotions_dlg',{
2 | title:"Insert emotion",
3 | desc:"Emotions",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ja.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ja.simple',{
2 | bold_desc:"\u592A\u5B57 (Ctrl+B)",
3 | italic_desc:"\u659C\u4F53 (Ctrl+I)",
4 | underline_desc:"\u4E0B\u7DDA (Ctrl+U)",
5 | striketrough_desc:"\u6253\u6D88\u3057\u7DDA",
6 | bullist_desc:"\u756A\u53F7\u306A\u3057\u30EA\u30B9\u30C8",
7 | numlist_desc:"\u756A\u53F7\u3064\u304D\u30EA\u30B9\u30C8",
8 | undo_desc:"\u5143\u306B\u623B\u3059 (Ctrl+Z)",
9 | redo_desc:"\u3084\u308A\u76F4\u3059 (Ctrl+Y)",
10 | cleanup_desc:"\u30B3\u30FC\u30C9\u6574\u5F62"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/ko.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ko.simple',{
2 | bold_desc:"\uAD75\uC740 \uAE00\uC528(Ctrl+B)",
3 | italic_desc:"\uC774\uD0E4\uB9AD(Ctrl+I)",
4 | underline_desc:"\uBC11\uC904(Ctrl+U)",
5 | striketrough_desc:"\uCDE8\uC18C\uC120",
6 | bullist_desc:"\uBE44\uC21C\uCC28\uBAA9\uB85D",
7 | numlist_desc:"\uC21C\uCC28\uBAA9\uB85D",
8 | undo_desc:"\uC2E4\uD589\uCDE8\uC18C(Ctrl+Z)",
9 | redo_desc:"\uB2E4\uC2DC\uC2E4\uD589(Ctrl+Y)",
10 | cleanup_desc:"\uC9C0\uC800\uBD84\uD55C \uCF54\uB4DC \uC0AD\uC81C"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/gl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gl.emotions_dlg',{
2 | title:"Insertar emoticon",
3 | desc:"Emoticones",
4 | cool:"Guay",
5 | cry:"Chora",
6 | embarassed:"Vergo\u00F1a",
7 | foot_in_mouth:"A que dixen",
8 | frown:"Triste",
9 | innocent:"Inocente",
10 | kiss:"Beso",
11 | laughing:"Risa",
12 | money_mouth:"Cartos",
13 | sealed:"Selado",
14 | smile:"Sorriso",
15 | surprised:"Sorprendido",
16 | tongue_out:"Canso",
17 | undecided:"Indeciso",
18 | wink:"Gui\u00F1o",
19 | yell:"Anoxado"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/pl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pl.emotions_dlg',{
2 | title:"Wstaw emotikon\u0119",
3 | desc:"Emotikony",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/advlink/css/advlink.css:
--------------------------------------------------------------------------------
1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;}
2 | .mceActionPanel {margin-top:7px;}
3 | .panel_wrapper div.current {height:320px;}
4 | #classlist, #title, #href {width:280px;}
5 | #popupurl, #popupname {width:200px;}
6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;}
7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;}
8 | #events_panel input {width:200px;}
9 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/nn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nn.emotions_dlg',{
2 | title:"Set inn hum\u00F8rfjes",
3 | desc:"Hum\u00F8rfjes",
4 | cool:"Cool",
5 | cry:"Gret",
6 | embarassed:"Flau",
7 | foot_in_mouth:"Fot i munnen",
8 | frown:"Skuffa",
9 | innocent:"Uskyldig",
10 | kiss:"Kyss",
11 | laughing:"Ler",
12 | money_mouth:"Pengar i munnen",
13 | sealed:"Hemmeleg",
14 | smile:"Glad",
15 | surprised:"Overraska",
16 | tongue_out:"Rekkje tunge",
17 | undecided:"Skeptisk",
18 | wink:"Blunke",
19 | yell:"Skri"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/no_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('no.emotions_dlg',{
2 | title:"Sett inn hum\u00F8rfjes",
3 | desc:"Hum\u00F8rfjes",
4 | cool:"Cool",
5 | cry:"Gret",
6 | embarassed:"Flau",
7 | foot_in_mouth:"Fot i munnen",
8 | frown:"Skuffa",
9 | innocent:"Uskyldig",
10 | kiss:"Kyss",
11 | laughing:"Ler",
12 | money_mouth:"Pengar i munnen",
13 | sealed:"Hemmelig",
14 | smile:"Glad",
15 | surprised:"Overraska",
16 | tongue_out:"Rekke tunge",
17 | undecided:"Skeptisk",
18 | wink:"Blunke",
19 | yell:"Skrik"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ms_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ms.emotions_dlg',{
2 | title:"Masukkan emosi",
3 | desc:"Simbol Emosi",
4 | cool:"Tampan",
5 | cry:"Menangis",
6 | embarassed:"Malu",
7 | foot_in_mouth:"Kaki dalam mulut",
8 | frown:"Mengerut",
9 | innocent:"Tidak bersalah",
10 | kiss:"Cium",
11 | laughing:"Gelak",
12 | money_mouth:"Duit mulut",
13 | sealed:"Kacip",
14 | smile:"Senyum",
15 | surprised:"Terkejut",
16 | tongue_out:"Jelir lidah",
17 | undecided:"Tak pasti",
18 | wink:"Kenyit",
19 | yell:"Menguap"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ms_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ms.searchreplace_dlg',{
2 | searchnext_desc:"Cari lagi",
3 | notfound:"Carian tamat. Perkataan yang dicari tiada.",
4 | search_title:"Cari",
5 | replace_title:"Cari/Ganti",
6 | allreplaced:"Kesemua perkataan telah digantikan.",
7 | findwhat:"Cari apa",
8 | replacewith:"Ganti dengan",
9 | direction:"Arah",
10 | up:"Atas",
11 | down:"Bawah",
12 | mcase:"Samakan kes",
13 | findnext:"Carian seterusnya",
14 | replace:"Ganti",
15 | replaceall:"Ganti kesemuanya"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/vi.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('vi.simple',{
2 | bold_desc:"Ch\u1EEF \u0111\u1EADm (Ctrl+B)",
3 | italic_desc:"Ch\u1EEF nghi\u00EAng (Ctrl+I)",
4 | underline_desc:"G\u1EA1ch ch\u00E2n (Ctrl+U)",
5 | striketrough_desc:"G\u1EA1ch ngang",
6 | bullist_desc:"Danh s\u00E1ch kh\u00F4ng theo th\u1EE9 t\u1EF1",
7 | numlist_desc:"Danh s\u00E1ch theo th\u1EE9 t\u1EF1",
8 | undo_desc:"Tr\u1EDF v\u1EC1 (Ctrl+Z)",
9 | redo_desc:"Ti\u1EBFn t\u1EDBi (Ctrl+Y)",
10 | cleanup_desc:"D\u1ECDn d\u1EB9p m\u00E3 l\u1ED9n x\u1ED9n"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/cy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cy.emotions_dlg',{
2 | title:"Mewnosod emosiwn",
3 | desc:"Emosiynau",
4 | cool:"Iawn",
5 | cry:"Crio",
6 | embarassed:"Rhwystrus",
7 | foot_in_mouth:"Troed yn ceg",
8 | frown:"Cuchio",
9 | innocent:"Dieuog",
10 | kiss:"Sws",
11 | laughing:"Chwerthin",
12 | money_mouth:"Ceg arian",
13 | sealed:"Wedi'i selio",
14 | smile:"Gw\u00EAn",
15 | surprised:"Wedi synnu",
16 | tongue_out:"Tafod allan",
17 | undecided:"Heb penderfynu",
18 | wink:"Wincio",
19 | yell:"Gweiddi"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/nb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nb.emotions_dlg',{
2 | title:"Sett inn hum\u00F8rfjes",
3 | desc:"Hum\u00F8rfjes",
4 | cool:"Cool",
5 | cry:"Gr\u00E5ter",
6 | embarassed:"Flau",
7 | foot_in_mouth:"Fot i munnen",
8 | frown:"Skuffet",
9 | innocent:"Uskyldig",
10 | kiss:"Kyss",
11 | laughing:"Ler",
12 | money_mouth:"Penger i munnen",
13 | sealed:"Hemmelig",
14 | smile:"Glad",
15 | surprised:"Overrasket",
16 | tongue_out:"Rekke tunge",
17 | undecided:"Skeptisk",
18 | wink:"Blunke",
19 | yell:"Skri"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/nl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nl.emotions_dlg',{
2 | title:"Emotie invoegen",
3 | desc:"Emoties",
4 | cool:"Stoer",
5 | cry:"Huilen",
6 | embarassed:"Schamen",
7 | foot_in_mouth:"Verstomd",
8 | frown:"Wenkbrauw ophalen",
9 | innocent:"Onschuldig",
10 | kiss:"Zoenen",
11 | laughing:"Lachen",
12 | money_mouth:"Hebberig",
13 | sealed:"Afgesloten",
14 | smile:"Lachen",
15 | surprised:"Verrast",
16 | tongue_out:"Tong uitsteken",
17 | undecided:"Onbeslist",
18 | wink:"Knipogen",
19 | yell:"Roepen"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/id_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('id.searchreplace_dlg',{
2 | searchnext_desc:"Cari Lagi",
3 | notfound:"Pencarian selesai. Hasil tidak ditemukan.",
4 | search_title:"Cari",
5 | replace_title:"Cari/Ganti",
6 | allreplaced:"Seluruh kata dari string pencarian telah digantikan",
7 | findwhat:"Cari apa...",
8 | replacewith:"Ganti dengan...",
9 | direction:"Arah",
10 | up:"Atas",
11 | down:"Bawah",
12 | mcase:"Match case",
13 | findnext:"Cari selanjutnya",
14 | replace:"Ganti",
15 | replaceall:"Ganti semua"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/da_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('da.emotions_dlg',{
2 | title:"Inds\u00E6t hum\u00F8rikon",
3 | desc:"Hum\u00F8rikoner",
4 | cool:"Cool",
5 | cry:"Gr\u00E6de",
6 | embarassed:"Flov",
7 | foot_in_mouth:"Fod i munden",
8 | frown:"Forskr\u00E6kket",
9 | innocent:"Uskyldig",
10 | kiss:"Kys",
11 | laughing:"Grine",
12 | money_mouth:"Pengemund",
13 | sealed:"Lukket",
14 | smile:"Smil",
15 | surprised:"Overrasket",
16 | tongue_out:"Tunge ud",
17 | undecided:"Ubeslutsom",
18 | wink:"Vink",
19 | yell:"R\u00E5be"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/es_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('es.emotions_dlg',{
2 | title:"Insertar emoticon",
3 | desc:"Emoticones",
4 | cool:"Todo bien",
5 | cry:"Llora",
6 | embarassed:"Verg\u00FCenza",
7 | foot_in_mouth:"Pie en la boca",
8 | frown:"Triste",
9 | innocent:"Inocente",
10 | kiss:"Beso",
11 | laughing:"Risa",
12 | money_mouth:"Dinero boca",
13 | sealed:"Sellado",
14 | smile:"Sonrisa",
15 | surprised:"Sorprendido",
16 | tongue_out:"Lengua fuera",
17 | undecided:"Indeciso",
18 | wink:"Gui\u00F1o",
19 | yell:"Enfadado"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/eu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('eu.emotions_dlg',{
2 | title:"Ikonotxoa sartu",
3 | desc:"Ikonotsoak",
4 | cool:"Ondo",
5 | cry:"Negarrez",
6 | embarassed:"Lotsatuta",
7 | foot_in_mouth:"Hanka ahoan",
8 | frown:"Desadostasuna",
9 | innocent:"Ni ez naiz izan",
10 | kiss:"Muxua",
11 | laughing:"Barrez",
12 | money_mouth:"Ahoa diruz beteta",
13 | sealed:"Ixilik",
14 | smile:"Irriparra",
15 | surprised:"Harrituta",
16 | tongue_out:"Mihia atera",
17 | undecided:"Zalantzan",
18 | wink:"Keinua",
19 | yell:"Ohiua"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sr.emotions_dlg',{
2 | title:"Umetni emociju",
3 | desc:"Emocije",
4 | cool:"Cool",
5 | cry:"Pla\u010D",
6 | embarassed:"Sramim se",
7 | foot_in_mouth:"Izlanuo se",
8 | frown:"Mr\u0161ti se",
9 | innocent:"Nevina\u0161ce",
10 | kiss:"Poljubac",
11 | laughing:"Smeh",
12 | money_mouth:"Bogata\u0161",
13 | sealed:"\u0160utim",
14 | smile:"Osmeh",
15 | surprised:"Iznena\u0111en",
16 | tongue_out:"Belji se",
17 | undecided:"Neodlu\u010Dan",
18 | wink:"Namigiva",
19 | yell:"Vi\u010De"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/br_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('br.emotions_dlg',{
2 | title:"Inserir emoticon",
3 | desc:"Emoticons",
4 | cool:"Fixe",
5 | cry:"Chor\u00E3o",
6 | embarassed:"Embara\u00E7ado",
7 | foot_in_mouth:"Disse asneira",
8 | frown:"Decep\u00E7\u00E3o",
9 | innocent:"Inocente",
10 | kiss:"Beijo",
11 | laughing:"Riso",
12 | money_mouth:"Avarez",
13 | sealed:"Boca Fechada",
14 | smile:"Sorriso",
15 | surprised:"Surpresa",
16 | tongue_out:"L\u00EDngua de fora",
17 | undecided:"Indeciso",
18 | wink:"Piscadela",
19 | yell:"Irado"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/bs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bs.emotions_dlg',{
2 | title:"Umetni emociju",
3 | desc:"Emocije",
4 | cool:"Cool",
5 | cry:"Pla\u010D",
6 | embarassed:"Sramim se",
7 | foot_in_mouth:"Izlanuo se",
8 | frown:"Mr\u0161ti se",
9 | innocent:"Nevina\u0161ce",
10 | kiss:"Poljubac",
11 | laughing:"Smijeh",
12 | money_mouth:"Bogata\u0161",
13 | sealed:"\u0160utim",
14 | smile:"Osmijeh",
15 | surprised:"Iznena\u0111en",
16 | tongue_out:"Belji se",
17 | undecided:"Neodlu\u010Dan",
18 | wink:"Namigiva",
19 | yell:"Vi\u010De"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/hr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hr.emotions_dlg',{
2 | title:"Umetni emociju",
3 | desc:"Emocije",
4 | cool:"Cool",
5 | cry:"Pla\u010D",
6 | embarassed:"Sramim se",
7 | foot_in_mouth:"Izlanuo se",
8 | frown:"Mr\u0161ti se",
9 | innocent:"Nevina\u0161ce",
10 | kiss:"Poljubac",
11 | laughing:"Smijeh",
12 | money_mouth:"Bogata\u0161",
13 | sealed:"\u0160utim",
14 | smile:"Osmijeh",
15 | surprised:"Iznena\u0111en",
16 | tongue_out:"Belji se",
17 | undecided:"Neodlu\u010Dan",
18 | wink:"Namigiva",
19 | yell:"Vi\u010De"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/it_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('it.emotions_dlg',{
2 | title:"Inserisci faccina",
3 | desc:"Faccina",
4 | cool:"Fico",
5 | cry:"Piango",
6 | embarassed:"Imbarazzato",
7 | foot_in_mouth:"Piede in bocca",
8 | frown:"Triste",
9 | innocent:"Santarellino",
10 | kiss:"Bacio",
11 | laughing:"Risatona",
12 | money_mouth:"Bocca danarosa",
13 | sealed:"Bocca sigillata",
14 | smile:"Sorridente",
15 | surprised:"Sorpreso",
16 | tongue_out:"Linguaccia",
17 | undecided:"Indeciso",
18 | wink:"Occhiolino",
19 | yell:"Arrabbiato"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/pt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pt.emotions_dlg',{
2 | title:"Inserir emoticon",
3 | desc:"Emoticons",
4 | cool:"Fixe",
5 | cry:"Chor\u00E3o",
6 | embarassed:"Embara\u00E7ado",
7 | foot_in_mouth:"Disse asneira",
8 | frown:"Decep\u00E7\u00E3o",
9 | innocent:"Inocente",
10 | kiss:"Beijo",
11 | laughing:"Riso",
12 | money_mouth:"Avarez",
13 | sealed:"Boca Fechada",
14 | smile:"Sorriso",
15 | surprised:"Surpresa",
16 | tongue_out:"L\u00EDngua de fora",
17 | undecided:"Indeciso",
18 | wink:"Piscadela",
19 | yell:"Irado"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/se_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('se.emotions_dlg',{
2 | title:"Infoga smiley",
3 | desc:"Smileys",
4 | cool:"Cool",
5 | cry:"Gr\u00E5ter",
6 | embarassed:"Sk\u00E4ms",
7 | foot_in_mouth:"Foten i munnen",
8 | frown:"Rynkar p\u00E5 n\u00E4san",
9 | innocent:"Oskyldig",
10 | kiss:"Kyss",
11 | laughing:"Skrattande",
12 | money_mouth:"Guld i mun",
13 | sealed:"Tyst",
14 | smile:"Glad",
15 | surprised:"F\u00F6rv\u00E5nad",
16 | tongue_out:"Tungan ute",
17 | undecided:"Obest\u00E4md",
18 | wink:"Fl\u00F6rt",
19 | yell:"Skrikandes"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sv.emotions_dlg',{
2 | title:"Infoga smiley",
3 | desc:"Smileys",
4 | cool:"Cool",
5 | cry:"Gr\u00E5ter",
6 | embarassed:"Sk\u00E4ms",
7 | foot_in_mouth:"Foten i munnen",
8 | frown:"Rynkar p\u00E5 n\u00E4san",
9 | innocent:"Oskyldig",
10 | kiss:"Kyss",
11 | laughing:"Skrattande",
12 | money_mouth:"Guld i mun",
13 | sealed:"Tyst",
14 | smile:"Glad",
15 | surprised:"F\u00F6rv\u00E5nad",
16 | tongue_out:"Tungan ute",
17 | undecided:"Obest\u00E4md",
18 | wink:"Fl\u00F6rt",
19 | yell:"Skrikandes"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/media/css/content.css:
--------------------------------------------------------------------------------
1 | .mceItemFlash, .mceItemShockWave, .mceItemQuickTime, .mceItemWindowsMedia, .mceItemRealMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc;}
2 | .mceItemShockWave {background-image: url(../img/shockwave.gif);}
3 | .mceItemFlash {background-image:url(../img/flash.gif);}
4 | .mceItemQuickTime {background-image:url(../img/quicktime.gif);}
5 | .mceItemWindowsMedia {background-image:url(../img/windowsmedia.gif);}
6 | .mceItemRealMedia {background-image:url(../img/realmedia.gif);}
7 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ar_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ar.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/bn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bn.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/dv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('dv.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/en_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('en.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/et_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('et.searchreplace_dlg',{
2 | searchnext_desc:"Otsi uuesti",
3 | notfound:"Otsing on l\u00F5petatud. Otsis\u00F5na ei leitud.",
4 | search_title:"Otsi",
5 | replace_title:"Otsi/Asenda",
6 | allreplaced:"K\u00F5ik otsis\u00F5na ilmingud on asendatud.",
7 | findwhat:"Otsi mida",
8 | replacewith:"Asenda millega",
9 | direction:"Suund",
10 | up:"\u00DCles",
11 | down:"Alla",
12 | mcase:"Vasta suurusele",
13 | findnext:"Otsi j\u00E4rgmine",
14 | replace:"Asenda",
15 | replaceall:"Asenda k\u00F5ik"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/gu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gu.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/hi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hi.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/kl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('kl.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ml_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ml.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ps_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ps.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/si_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('si.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ta_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ta.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/te_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('te.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ur_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ur.searchreplace_dlg',{
2 | searchnext_desc:"Find again",
3 | notfound:"The search has been completed. The search string could not be found.",
4 | search_title:"Find",
5 | replace_title:"Find/Replace",
6 | allreplaced:"All occurrences of the search string were replaced.",
7 | findwhat:"Find what",
8 | replacewith:"Replace with",
9 | direction:"Direction",
10 | up:"Up",
11 | down:"Down",
12 | mcase:"Match case",
13 | findnext:"Find next",
14 | replace:"Replace",
15 | replaceall:"Replace all"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/skins/o2k7/content.css:
--------------------------------------------------------------------------------
1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;}
2 |
3 | body {background: #FFF;}
4 | .mceVisualAid {border: 1px dashed #BBB;}
5 |
6 | /* IE */
7 |
8 | * html body {
9 | scrollbar-3dlight-color: #F0F0EE;
10 | scrollbar-arrow-color: #676662;
11 | scrollbar-base-color: #F0F0EE;
12 | scrollbar-darkshadow-color: #DDDDDD;
13 | scrollbar-face-color: #E0E0DD;
14 | scrollbar-highlight-color: #F0F0EE;
15 | scrollbar-shadow-color: #F0F0EE;
16 | scrollbar-track-color: #F5F5F5;
17 | }
18 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/de_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('de.emotions_dlg',{
2 | title:"Smiley einf\u00FCgen",
3 | desc:"Smilies",
4 | cool:"Cool",
5 | cry:"Weinend",
6 | embarassed:"Verlegen",
7 | foot_in_mouth:"Reingefallen",
8 | frown:"Stirnrunzelnd",
9 | innocent:"Unschuldig",
10 | kiss:"K\u00FCssend",
11 | laughing:"Lachend",
12 | money_mouth:"Geld",
13 | sealed:"Verschlossen",
14 | smile:"L\u00E4chelnd",
15 | surprised:"\u00DCberrascht",
16 | tongue_out:"Zunge raus",
17 | undecided:"Unentschlossen",
18 | wink:"Zwinkernd",
19 | yell:"Br\u00FCllend"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/et_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('et.emotions_dlg',{
2 | title:"Sisesta emotsioon",
3 | desc:"Emotsioonid",
4 | cool:"Lahe",
5 | cry:"Nutt",
6 | embarassed:"H\u00E4bitunne",
7 | foot_in_mouth:"Jalg suus",
8 | frown:"Kulmu kortsutamine",
9 | innocent:"S\u00FC\u00FCtu",
10 | kiss:"Suudlus",
11 | laughing:"Naermine",
12 | money_mouth:"Rahasuu",
13 | sealed:"Suletud",
14 | smile:"Naeratus",
15 | surprised:"\u00DCllatunud",
16 | tongue_out:"Keel v\u00E4ljas",
17 | undecided:"K\u00F5hklev",
18 | wink:"Silmapilgutus",
19 | yell:"Karje"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/lb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lb.emotions_dlg',{
2 | title:"Smiley af\u00FCgen",
3 | desc:"Smileyen",
4 | cool:"Cool",
5 | cry:"Kr\u00E4ischend",
6 | embarassed:"Gen\u00E9iert",
7 | foot_in_mouth:"Eragefall",
8 | frown:"D'Stir ronzelend",
9 | innocent:"Onsch\u00EBlleg",
10 | kiss:"Kussend",
11 | laughing:"Laachend",
12 | money_mouth:"Suen",
13 | sealed:"Verschlossen",
14 | smile:"Laachend",
15 | surprised:"Iwwerrascht",
16 | tongue_out:"Zong eraus",
17 | undecided:"Onentschloss",
18 | wink:"Zwinkernd",
19 | yell:"Br\u00EBllend"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sl.emotions_dlg',{
2 | title:"Vstavi sme\u0161ka",
3 | desc:"Sme\u0161ki",
4 | cool:"kul",
5 | cry:"jok",
6 | embarassed:"v zadregi",
7 | foot_in_mouth:"zare\u010Deni kruh",
8 | frown:"nagubano \u010Delo",
9 | innocent:"nedol\u017Een",
10 | kiss:"poljub",
11 | laughing:"smeh",
12 | money_mouth:"zlati kljun",
13 | sealed:"zape\u010Dateno",
14 | smile:"nasmeh",
15 | surprised:"presene\u010Den",
16 | tongue_out:"ka\u017Ee jezik",
17 | undecided:"neodlo\u010Den",
18 | wink:"me\u017Eik",
19 | yell:"krik"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/xhtmlxtras/css/popup.css:
--------------------------------------------------------------------------------
1 | input.field, select.field {width:200px;}
2 | input.picker {width:179px; margin-left: 5px;}
3 | input.disabled {border-color:#F2F2F2;}
4 | img.picker {vertical-align:text-bottom; cursor:pointer;}
5 | h1 {padding: 0 0 5px 0;}
6 | .panel_wrapper div.current {height:160px;}
7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;}
8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;}
9 | #datetime {width:180px;}
10 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ja_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ja.emotions_dlg',{
2 | title:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3\u306E\u633F\u5165",
3 | desc:"\u8868\u60C5\u30A2\u30A4\u30B3\u30F3",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/mk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mk.emotions_dlg',{
2 | title:"\u0412\u043C\u0435\u0442\u043D\u0438 emociju",
3 | desc:"Emocije",
4 | cool:"Cool",
5 | cry:"Pla\u010D",
6 | embarassed:"Sramim se",
7 | foot_in_mouth:"Izlanuo se",
8 | frown:"Mr\u0161ti se",
9 | innocent:"Nevina\u0161ce",
10 | kiss:"Poljubac",
11 | laughing:"Smeh",
12 | money_mouth:"Bogata\u0161",
13 | sealed:"\u0160utim",
14 | smile:"Osmeh",
15 | surprised:"Iznena\u0111en",
16 | tongue_out:"Belji se",
17 | undecided:"Neodlu\u010Dan",
18 | wink:"Namigiva",
19 | yell:"Vi\u010De"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/da_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('da.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F8g igen",
3 | notfound:"S\u00F8gningen gav intet resultat.",
4 | search_title:"S\u00F8g",
5 | replace_title:"S\u00F8g / erstat",
6 | allreplaced:"Alle forekomster af s\u00F8gestrengen er erstattet.",
7 | findwhat:"S\u00F8g efter",
8 | replacewith:"Erstat med",
9 | direction:"Retning",
10 | up:"Op",
11 | down:"Ned",
12 | mcase:"Forskel p\u00E5 store og sm\u00E5 bogstaver",
13 | findnext:"Find n\u00E6ste",
14 | replace:"Erstat",
15 | replaceall:"Erstat alle"
16 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/less/stacked.less:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; }
21 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ca_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ca.emotions_dlg',{
2 | title:"Insereix una emoticona",
3 | desc:"Emoticones",
4 | cool:"Guai",
5 | cry:"Plorant",
6 | embarassed:"Avergonyit",
7 | foot_in_mouth:"Amb un peu a la boca",
8 | frown:"Arrufant les celles",
9 | innocent:"Innocent",
10 | kiss:"Pet\u00F3",
11 | laughing:"Rient",
12 | money_mouth:"Amb fam de diners",
13 | sealed:"Censurat",
14 | smile:"Somriure",
15 | surprised:"Sorpr\u00E8s",
16 | tongue_out:"Llengua a fora",
17 | undecided:"Indec\u00EDs",
18 | wink:"Fent l\'ullet",
19 | yell:"Cridant"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/fi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fi.emotions_dlg',{
2 | title:"Lis\u00E4\u00E4 hymi\u00F6",
3 | desc:"Hymi\u00F6t",
4 | cool:"Cool",
5 | cry:"Itku",
6 | embarassed:"Nolostunut",
7 | foot_in_mouth:"Jalka suussa",
8 | frown:"Otsan rypistys",
9 | innocent:"Viaton",
10 | kiss:"Pusu",
11 | laughing:"Nauru",
12 | money_mouth:"Klink Klink (raha)",
13 | sealed:"Tukittu",
14 | smile:"Hymy",
15 | surprised:"Yll\u00E4ttynyt",
16 | tongue_out:"Kieli ulkona",
17 | undecided:"P\u00E4\u00E4tt\u00E4m\u00E4t\u00F6n",
18 | wink:"Silm\u00E4nisku",
19 | yell:"Huuto"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/cy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cy.searchreplace_dlg',{
2 | searchnext_desc:"Canfod eto",
3 | notfound:"Mae'r chwiliad wedi cwblhau. Methu canfod y llinyn chwiliad.",
4 | search_title:"Canfod",
5 | replace_title:"Canfod/Amnewid",
6 | allreplaced:"Amnewidwyd pob digwyddiad o'r llinyn chwiliad.",
7 | findwhat:"Canfod beth",
8 | replacewith:"Adnewid gyda",
9 | direction:"Cyfeiriad",
10 | up:"I fyny",
11 | down:"I lawr",
12 | mcase:"Cydweddu priflythrennedd",
13 | findnext:"Canfod nesaf",
14 | replace:"Amnewid",
15 | replaceall:"Amnewid pob un"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/fi_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fi.searchreplace_dlg',{
2 | searchnext_desc:"Etsi uudestaan",
3 | notfound:"Haku on valmis. Haettua teksti\u00E4 ei l\u00F6ytynyt.",
4 | search_title:"Haku",
5 | replace_title:"Etsi ja korvaa",
6 | allreplaced:"Kaikki l\u00F6ydetyt merkkijonot korvattiin.",
7 | findwhat:"Etsit\u00E4\u00E4n",
8 | replacewith:"Korvataan",
9 | direction:"Suunta",
10 | up:"Yl\u00F6s",
11 | down:"Alas",
12 | mcase:"Huomioi isot ja pienet kirjaimet",
13 | findnext:"Etsi seuraavaa",
14 | replace:"Korvaa",
15 | replaceall:"Korvaa kaikki"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/fr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('fr.emotions_dlg',{
2 | title:"Ins\u00E9rer une \u00E9motic\u00F4ne",
3 | desc:"\u00C9motic\u00F4nes",
4 | cool:"Cool",
5 | cry:"En pleurs",
6 | embarassed:"Embarrass\u00E9",
7 | foot_in_mouth:"Pied de nez",
8 | frown:"D\u00E9\u00E7u",
9 | innocent:"Innocent",
10 | kiss:"Bisou",
11 | laughing:"Rigolant",
12 | money_mouth:"Avare",
13 | sealed:"Bouche cousue",
14 | smile:"Sourire",
15 | surprised:"Surpris",
16 | tongue_out:"Langue tir\u00E9e",
17 | undecided:"Incertain",
18 | wink:"Clin d'\u0153il",
19 | yell:"Criant"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/it_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('it.searchreplace_dlg',{
2 | searchnext_desc:"Trova successivo",
3 | notfound:"Ricerca completata. Nessun risultato trovato.",
4 | search_title:"Trova",
5 | replace_title:"Trova/Sostituisci",
6 | allreplaced:"Tutte le occorrenze del criterio di ricerca sono state sostituite.",
7 | findwhat:"Trova:",
8 | replacewith:"Sostituisci con:",
9 | direction:"Direzione",
10 | up:"Avanti",
11 | down:"Indietro",
12 | mcase:"Maiuscole/minuscole",
13 | findnext:"Trova succ.",
14 | replace:"Sostituisci",
15 | replaceall:"Sost. tutto"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/nb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nb.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F8k igjen",
3 | notfound:"S\u00F8ket er avsluttet. Fant ikke s\u00F8kestrengen.",
4 | search_title:"S\u00F8k",
5 | replace_title:"S\u00F8k/Erstatt",
6 | allreplaced:"Alle forekomster av s\u00F8kestrengen er erstattet.",
7 | findwhat:"Finn hva",
8 | replacewith:"Erstatt med",
9 | direction:"Retning",
10 | up:"Oppover",
11 | down:"Nedover",
12 | mcase:"Skill mellom store og sm\u00E5 tegn",
13 | findnext:"Finn neste",
14 | replace:"Erstatt",
15 | replaceall:"Erstatt alt"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/no_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('no.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F8k igjen",
3 | notfound:"S\u00F8ket avsluttet. Fant ikke s\u00F8kestrengen.",
4 | search_title:"S\u00F8k",
5 | replace_title:"S\u00F8k/Erstatt",
6 | allreplaced:"Alle forekomster av s\u00F8kestrengen er erstattet.",
7 | findwhat:"Finn hva",
8 | replacewith:"Erstatt med",
9 | direction:"Retning",
10 | up:"Oppover",
11 | down:"Nedover",
12 | mcase:"Skill mellom store og sm\u00E5 tegn",
13 | findnext:"Finn neste",
14 | replace:"Erstatt",
15 | replaceall:"Erstatt alt"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/sl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sl.searchreplace_dlg',{
2 | searchnext_desc:"Najdi znova",
3 | notfound:"Preiskovanje zaklju\u010Deno. Iskanega besedila nisem na\u0161el.",
4 | search_title:"Najdi",
5 | replace_title:"Najdi/zamenjaj",
6 | allreplaced:"Vse pojavitve iskanega besedila so bile zamenjane.",
7 | findwhat:"I\u0161\u010Dem za",
8 | replacewith:"Zamenjam z",
9 | direction:"Smer",
10 | up:"navzgor",
11 | down:"navzdol",
12 | mcase:"ujemanje velikosti",
13 | findnext:"Najdi nasled.",
14 | replace:"Zamenjaj",
15 | replaceall:"Zamenjaj vse"
16 | });
--------------------------------------------------------------------------------
/static/b3theme/font-awesome/scss/_stacked.scss:
--------------------------------------------------------------------------------
1 | // Stacked Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-stack {
5 | position: relative;
6 | display: inline-block;
7 | width: 2em;
8 | height: 2em;
9 | line-height: 2em;
10 | vertical-align: middle;
11 | }
12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x {
13 | position: absolute;
14 | left: 0;
15 | width: 100%;
16 | text-align: center;
17 | }
18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; }
19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; }
20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; }
21 |
--------------------------------------------------------------------------------
/static/js/accounts.js:
--------------------------------------------------------------------------------
1 | // If the user clicks on Generate token,
2 | // then the following function will ask django
3 | // for a token and then present it
4 |
5 | $(document).ready(function() {
6 | $('a#generate_token').one('click', function (ev) {
7 | ev.preventDefault();
8 | var url = $(this).prop('href');
9 | var result = $(this).parent()
10 | result.text('loading...');
11 | $.ajax({
12 | url: url,
13 | success: function (data) {
14 | result.text(data);
15 | },
16 | })
17 | .fail(function() {
18 | result.text('An error has occured...');
19 | });
20 | });
21 | });
22 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/is_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('is.emotions_dlg',{
2 | title:"Setja inn broskall",
3 | desc:"Broskarlar",
4 | cool:"T\u00F6ff",
5 | cry:"Gr\u00E1tandi",
6 | embarassed:"Skammast s\u00EDn",
7 | foot_in_mouth:"F\u00F3tur \u00ED munni",
8 | frown:"Frown",
9 | innocent:"Saklaus",
10 | kiss:"Koss",
11 | laughing:"Hl\u00E6gjandi",
12 | money_mouth:"Peningamunnur",
13 | sealed:"Rennil\u00E1samunnur",
14 | smile:"Bros",
15 | surprised:"Hissa",
16 | tongue_out:"Tungan \u00FAt",
17 | undecided:"\u00D3\u00E1kve\u00F0inn",
18 | wink:"Wink",
19 | yell:"\u00D6skrandi"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ru_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ru.emotions_dlg',{
2 | title:"\u0412\u044B\u0431\u043E\u0440 \u0441\u043C\u0430\u0439\u043B\u0430",
3 | desc:"\u0421\u043C\u0430\u0439\u043B\u044B",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/nn_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nn.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F8k igjen",
3 | notfound:"S\u00F8ket avslutta. Fann ikkje s\u00F8kjestrengen.",
4 | search_title:"S\u00F8k",
5 | replace_title:"S\u00F8k/Erstatt",
6 | allreplaced:"Alle f\u00F8rekomstar av s\u00F8kjestrengen er erstatta.",
7 | findwhat:"Finn kva",
8 | replacewith:"Erstatt med",
9 | direction:"Retning",
10 | up:"Oppover",
11 | down:"Nedover",
12 | mcase:"Skill mellom store og sm\u00E5 teikn",
13 | findnext:"Finn neste",
14 | replace:"Erstatt",
15 | replaceall:"Erstatt alt"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/eu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('eu.searchreplace_dlg',{
2 | searchnext_desc:"Berriz bilatu",
3 | notfound:"Bilaketa bukatu da. Bilatutakoa ez da aurkitu.",
4 | search_title:"Bilatu",
5 | replace_title:"Bilatu/Ordezkatu",
6 | allreplaced:"Bilatutakoaren agerpen guztiak ordezkatu dira.",
7 | findwhat:"Zer bilatu",
8 | replacewith:"Zerekin ordezkatu",
9 | direction:"Norabidea",
10 | up:"Gorantz",
11 | down:"Beherantz",
12 | mcase:"Maiuskulak eta minuskulak kontuan hartu",
13 | findnext:"Hurrengoa",
14 | replace:"Ordezkatu",
15 | replaceall:"Ordezkatu guztiak"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/langs/he.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('he.simple',{
2 | bold_desc:"\u05DE\u05D5\u05D3\u05D2\u05E9 (Ctrl+B)",
3 | italic_desc:"\u05E0\u05D8\u05D5\u05D9 (Ctrl+I)",
4 | underline_desc:"\u05E7\u05D5 \u05EA\u05D7\u05EA\u05D5\u05DF (Ctrl+U)",
5 | striketrough_desc:"\u05E7\u05D5 \u05D7\u05D5\u05E6\u05D4",
6 | bullist_desc:"\u05EA\u05D1\u05DC\u05D9\u05D8\u05D9\u05DD",
7 | numlist_desc:"\u05DE\u05E1\u05E4\u05D5\u05E8",
8 | undo_desc:"\u05D1\u05D9\u05D8\u05D5\u05DC \u05E4\u05E2\u05D5\u05DC\u05D4 (Ctrl+Z)",
9 | redo_desc:" (Ctrl+Y)",
10 | cleanup_desc:"\u05E0\u05E7\u05D4 \u05E7\u05D5\u05D3"
11 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ch_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ch.emotions_dlg',{
2 | title:"\u63D2\u5165\u8868\u60C5",
3 | desc:"\u8868\u60C5",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u5413",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u8003\u8651",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ii_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ii.emotions_dlg',{
2 | title:"\u63D2\u5165\u56FE\u91CA",
3 | desc:"\u56FE\u91CA",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u5413",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u8003\u8651",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sc_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sc.emotions_dlg',{
2 | title:"\u63D2\u5165\u56FE\u91CA",
3 | desc:"\u56FE\u91CA",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u5413",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u8003\u8651",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/tw_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tw.emotions_dlg',{
2 | title:"\u63D2\u5165\u8868\u60C5",
3 | desc:"\u8868\u60C5",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C37\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76BA\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u767C\u8CA1",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u9A5A\u8A1D",
16 | tongue_out:"\u5410\u820C\u982D",
17 | undecided:"\u601D\u7D22",
18 | wink:"\u7728\u773C",
19 | yell:"\u5927\u53EB"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/zh_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zh.emotions_dlg',{
2 | title:"\u63D2\u5165\u8868\u60C5",
3 | desc:"\u8868\u60C5",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u8BB6",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u601D\u7D22",
18 | wink:"\u7728\u773C",
19 | yell:"\u5927\u53EB"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/zu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zu.emotions_dlg',{
2 | title:"\u63D2\u5165\u56FE\u91CA",
3 | desc:"\u56FE\u91CA",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u5413",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u8003\u8651",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/es_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('es.searchreplace_dlg',{
2 | searchnext_desc:"Buscar de nuevo",
3 | notfound:"La b\u00FAsqueda se ha completado. No se encontr\u00F3 el texto introducido.",
4 | search_title:"Buscar",
5 | replace_title:"Buscar/Reemplazar",
6 | allreplaced:"Se ha reemplazado el texto.",
7 | findwhat:"Qu\u00E9 buscar",
8 | replacewith:"Reemplazar por",
9 | direction:"Direcci\u00F3n",
10 | up:"Arriba",
11 | down:"Abajo",
12 | mcase:"Min\u00FAs./May\u00FAs.",
13 | findnext:"Buscar siguiente",
14 | replace:"Reemplazar",
15 | replaceall:"Reemplazar todo"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/gl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('gl.searchreplace_dlg',{
2 | searchnext_desc:"Buscar outra vez",
3 | notfound:"A busca rematou. No se atopou o texto buscado.",
4 | search_title:"Buscar",
5 | replace_title:"Buscar/Reemplazar",
6 | allreplaced:"T\u00F3da-las coincidencias do texto buscado foron reemplazadas.",
7 | findwhat:"Localizar",
8 | replacewith:"Reemplazar por",
9 | direction:"Direcci\u00F3n",
10 | up:"Arriba",
11 | down:"Abaixo",
12 | mcase:"Min\u00FAs./Mai\u00FAs.",
13 | findnext:"Buscar seginte",
14 | replace:"Reemplazar",
15 | replaceall:"Reemplazar todo"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/nl_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('nl.searchreplace_dlg',{
2 | searchnext_desc:"Opnieuw zoeken",
3 | notfound:"Het doorzoeken is voltooid. De zoekterm kon niet meer worden gevonden.",
4 | search_title:"Zoeken",
5 | replace_title:"Zoeken/Vervangen",
6 | allreplaced:"Alle instanties van de zoekterm zijn vervangen.",
7 | findwhat:"Zoeken naar",
8 | replacewith:"Vervangen door",
9 | direction:"Richting",
10 | up:"Omhoog",
11 | down:"Omlaag",
12 | mcase:"Identieke hoofdletters/kleine letters",
13 | findnext:"Zoeken",
14 | replace:"Vervangen",
15 | replaceall:"Alles verv."
16 | });
--------------------------------------------------------------------------------
/accounts/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | This file demonstrates two different styles of tests (one doctest and one
3 | unittest). These will both pass when you run "manage.py test".
4 |
5 | Replace these with more appropriate tests for your application.
6 | """
7 |
8 | from django.test import TestCase
9 |
10 | class SimpleTest(TestCase):
11 | def test_basic_addition(self):
12 | """
13 | Tests that 1 + 1 always equals 2.
14 | """
15 | self.failUnlessEqual(1 + 1, 2)
16 |
17 | __test__ = {"doctest": """
18 | Another way to test that 1 + 1 is equal to 2.
19 |
20 | >>> 1 + 1 == 2
21 | True
22 | """}
23 |
24 |
--------------------------------------------------------------------------------
/peers/tests.py:
--------------------------------------------------------------------------------
1 | """
2 | This file demonstrates two different styles of tests (one doctest and one
3 | unittest). These will both pass when you run "manage.py test".
4 |
5 | Replace these with more appropriate tests for your application.
6 | """
7 |
8 | from django.test import TestCase
9 |
10 | class SimpleTest(TestCase):
11 | def test_basic_addition(self):
12 | """
13 | Tests that 1 + 1 always equals 2.
14 | """
15 | self.failUnlessEqual(1 + 1, 2)
16 |
17 | __test__ = {"doctest": """
18 | Another way to test that 1 + 1 is equal to 2.
19 |
20 | >>> 1 + 1 == 2
21 | True
22 | """}
23 |
24 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ro_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ro.emotions_dlg',{
2 | title:"Insereaz\u0103 o figurin\u0103",
3 | desc:"Figurine emotive",
4 | cool:"Cool",
5 | cry:"Trist",
6 | embarassed:"Ru\u015Finat",
7 | foot_in_mouth:"Picior \u00EEn gur\u0103",
8 | frown:"\u00CEncruntat",
9 | innocent:"Nevinovat",
10 | kiss:"Pupic",
11 | laughing:"R\u00E2de",
12 | money_mouth:"Bani \u00EEn gur\u0103",
13 | sealed:"Sigilat",
14 | smile:"Z\u00E2mbet",
15 | surprised:"Surprins",
16 | tongue_out:"Cu limba afar\u0103",
17 | undecided:"Indecis",
18 | wink:"Face cu ochiul",
19 | yell:"\u0162ip\u0103"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/lb_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lb.searchreplace_dlg',{
2 | searchnext_desc:"Weidersichen",
3 | notfound:"D'Sich ass um Enn ukomm. D'Zeechekette konnt net fonnt ginn.",
4 | search_title:"Sichen",
5 | replace_title:"Sichen/Ersetzen",
6 | allreplaced:"All d'Virkomme vun der Zeechekette goufen ersat.",
7 | findwhat:"Ze sichenden Text",
8 | replacewith:"Ersetzen duerch",
9 | direction:"Sichrichtung",
10 | up:"No uewen",
11 | down:"No \u00EBnnen",
12 | mcase:"Grouss-/Klengschreiwung beuechten",
13 | findnext:"Weidersichen",
14 | replace:"Ersetzen",
15 | replaceall:"All ersetzen"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/mk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('mk.searchreplace_dlg',{
2 | searchnext_desc:"Prona\u0111i opet",
3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.",
4 | search_title:"Prona\u0111i",
5 | replace_title:"Prona\u0111i/Zameni",
6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamenjena.",
7 | findwhat:"Prona\u0111i tekst",
8 | replacewith:"Zameni sa",
9 | direction:"Smjer",
10 | up:"Gore",
11 | down:"Dolje",
12 | mcase:"Match case",
13 | findnext:"Prona\u0111i sljede\u0107e",
14 | replace:"Zameni",
15 | replaceall:"Zameni sve"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/pt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('pt.searchreplace_dlg',{
2 | searchnext_desc:"Localizar novamente",
3 | notfound:"A pesquisa foi conclu\u00EDda sem resultados.",
4 | search_title:"Localizar",
5 | replace_title:"Localizar/substituir",
6 | allreplaced:"Todas as substitui\u00E7\u00F5es foram efetuadas.",
7 | findwhat:"Localizar",
8 | replacewith:"Substituir com",
9 | direction:"Dire\u00E7\u00E3o",
10 | up:"Acima",
11 | down:"Abaixo",
12 | mcase:"Diferenciar mai\u00FAsculas",
13 | findnext:"Localizar pr\u00F3ximo",
14 | replace:"Substituir",
15 | replaceall:"Substituir todos"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/sr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sr.searchreplace_dlg',{
2 | searchnext_desc:"Prona\u0111i opet",
3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.",
4 | search_title:"Prona\u0111i",
5 | replace_title:"Prona\u0111i/Zameni",
6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamenjena.",
7 | findwhat:"Prona\u0111i tekst",
8 | replacewith:"Zameni sa",
9 | direction:"Smjer",
10 | up:"Gore",
11 | down:"Dolje",
12 | mcase:"Match case",
13 | findnext:"Prona\u0111i sljede\u0107e",
14 | replace:"Zameni",
15 | replaceall:"Zameni sve"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ia_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ia.emotions_dlg',{
2 | title:"\u63D2\u5165\u8868\u60C5",
3 | desc:"\u8868\u60C5\u5217\u8868",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C34\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76B1\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u53D1\u8D22",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u60CA\u5413",
16 | tongue_out:"\u5410\u820C\u5934",
17 | undecided:"\u601D\u8003",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/ka_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ka.emotions_dlg',{
2 | title:"\u10E1\u10DB\u10D0\u10D8\u10DA\u10D8\u10E1 \u10D0\u10E0\u10E9\u10D4\u10D5\u10D0",
3 | desc:"\u10E1\u10DB\u10D0\u10D8\u10DA\u10D4\u10D1\u10D8",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/tt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tt.emotions_dlg',{
2 | title:"\u63D2\u5165\u8868\u60C5",
3 | desc:"\u8868\u60C5\u5217\u8868",
4 | cool:"\u51B7\u9177",
5 | cry:"\u54ED\u6CE3",
6 | embarassed:"\u5C37\u5C2C",
7 | foot_in_mouth:"\u54A7\u5634",
8 | frown:"\u76BA\u7709",
9 | innocent:"\u5929\u771F",
10 | kiss:"\u543B",
11 | laughing:"\u5927\u7B11",
12 | money_mouth:"\u767C\u8CA1",
13 | sealed:"\u4FDD\u5BC6",
14 | smile:"\u5FAE\u7B11",
15 | surprised:"\u9A5A\u5687",
16 | tongue_out:"\u5410\u820C\u982D",
17 | undecided:"\u601D\u8003",
18 | wink:"\u7728\u773C",
19 | yell:"\u53EB\u56B7"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/is_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('is.searchreplace_dlg',{
2 | searchnext_desc:"Finna aftur",
3 | notfound:"Leitinni er loki\u00F0. Leitarstrengurinn fannst ekki.",
4 | search_title:"Finna",
5 | replace_title:"Finna/Skipta \u00FAt",
6 | allreplaced:"\u00D6llum ni\u00F0urst\u00F6\u00F0um leitar var skipt \u00FAt.",
7 | findwhat:"Finna hva\u00F0",
8 | replacewith:"Skipta \u00FAt me\u00F0",
9 | direction:"\u00C1tt",
10 | up:"Upp",
11 | down:"Ni\u00F0ur",
12 | mcase:"Match case",
13 | findnext:"Finna n\u00E6sta",
14 | replace:"Skipta \u00FAt",
15 | replaceall:"Skipta \u00FAt \u00F6llu"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/bs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bs.searchreplace_dlg',{
2 | searchnext_desc:"Prona\u0111i opet",
3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.",
4 | search_title:"Prona\u0111i",
5 | replace_title:"Prona\u0111i/Zamijeni",
6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamijenjena.",
7 | findwhat:"Prona\u0111i tekst",
8 | replacewith:"Zamijeni sa",
9 | direction:"Smjer",
10 | up:"Gore",
11 | down:"Dolje",
12 | mcase:"Match case",
13 | findnext:"Prona\u0111i sljede\u0107e",
14 | replace:"Zamijeni",
15 | replaceall:"Zamijeni sve"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/hr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hr.searchreplace_dlg',{
2 | searchnext_desc:"Prona\u0111i opet",
3 | notfound:"Pretra\u017Eivanje je zavr\u0161eno. Tra\u017Eeni tekst nije prona\u0111en.",
4 | search_title:"Prona\u0111i",
5 | replace_title:"Prona\u0111i/Zamijeni",
6 | allreplaced:"Sva pojavljivanja tra\u017Eenog teksta su zamijenjena.",
7 | findwhat:"Prona\u0111i tekst",
8 | replacewith:"Zamijeni sa",
9 | direction:"Smjer",
10 | up:"Gore",
11 | down:"Dolje",
12 | mcase:"Match case",
13 | findnext:"Prona\u0111i sljede\u0107e",
14 | replace:"Zamijeni",
15 | replaceall:"Zamijeni sve"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/bg_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('bg.emotions_dlg',{
2 | title:"\u0412\u043C\u044A\u043A\u043D\u0438 \u0435\u043C\u043E\u0442\u0438\u043A\u043E\u043D",
3 | desc:"\u0415\u043C\u043E\u0442\u0438\u043A\u043E\u043D\u0438",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/lt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lt.emotions_dlg',{
2 | title:"\u012Eterpti jaustuk\u0105",
3 | desc:"Jaustukai",
4 | cool:"J\u0117ga",
5 | cry:"Verksmas",
6 | embarassed:"Susig\u0117d\u0119s",
7 | foot_in_mouth:"Koja burnoje",
8 | frown:"Susirauk\u0119s",
9 | innocent:"Nekaltas",
10 | kiss:"Bu\u010Dinys",
11 | laughing:"Juokimasis",
12 | money_mouth:"Piniginga burna",
13 | sealed:"Sandarus",
14 | smile:"\u0160ypsena",
15 | surprised:"Nusteb\u0119s",
16 | tongue_out:"I\u0161ki\u0161tas lie\u017Euvis",
17 | undecided:"Neapsisprend\u0119s",
18 | wink:"Mirk\u010Diojimas",
19 | yell:"Klyksmas"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sq_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sq.emotions_dlg',{
2 | title:"Fut emocion",
3 | desc:"Emocionet",
4 | cool:"I/e lezetsh\u00EBm",
5 | cry:"Qaj",
6 | embarassed:"Turp",
7 | foot_in_mouth:"K\u00EBmba n\u00EB goj\u00EB",
8 | frown:"Rrudh vetullat",
9 | innocent:"I/e pafajsh\u00EBm",
10 | kiss:"Puth",
11 | laughing:"Qesh",
12 | money_mouth:"Lek\u00EB n\u00EB goj\u00EB",
13 | sealed:"Dh\u00EBmb\u00EBt e mbyllur",
14 | smile:"Buz\u00EBqesh",
15 | surprised:"I/e \u00E7uditur",
16 | tongue_out:"Gjuha jasht\u00EB",
17 | undecided:"I/e pavendosur",
18 | wink:"Shkel syrin",
19 | yell:"B\u00EBrtit"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/br_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('br.searchreplace_dlg',{
2 | searchnext_desc:"Localizar novamente",
3 | notfound:"A pesquisa foi conclu\u00EDda sem resultados.",
4 | search_title:"Localizar",
5 | replace_title:"Localizar/substituir",
6 | allreplaced:"Todas as substitui\u00E7\u00F5es foram efetuadas.",
7 | findwhat:"Localizar",
8 | replacewith:"Substituir com",
9 | direction:"Dire\u00E7\u00E3o",
10 | up:"Acima",
11 | down:"Abaixo",
12 | mcase:"Diferenciar mai\u00FAsculas/min\u00FAsculas",
13 | findnext:"Localizar pr\u00F3ximo",
14 | replace:"Substituir",
15 | replaceall:"Substituir todos"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/lv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lv.emotions_dlg',{
2 | title:"Ievietot smaidi\u0146u",
3 | desc:"Smaidi\u0146i",
4 | cool:"V\u0113sais",
5 | cry:"Raudul\u012Bgais",
6 | embarassed:"Nokautr\u0113jies",
7 | foot_in_mouth:"K\u0101jmutis",
8 | frown:"Satraukts",
9 | innocent:"Nevain\u012Bgs",
10 | kiss:"Sk\u016Bpsts",
11 | laughing:"Smejo\u0161s",
12 | money_mouth:"Naudmutis",
13 | sealed:"Nosl\u0113gts",
14 | smile:"Smaid\u012Bgs",
15 | surprised:"P\u0101rsteigts",
16 | tongue_out:"M\u0113d\u012Bgs",
17 | undecided:"Neizl\u0113m\u012Bgs",
18 | wink:"Aci miedzo\u0161s",
19 | yell:"Kliedzo\u0161s"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/tr_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tr.emotions_dlg',{
2 | title:"\u0130fade ekle",
3 | desc:"\u0130fadeler",
4 | cool:"Sakin",
5 | cry:"A\u011Flayan",
6 | embarassed:"Utanga\u00E7",
7 | foot_in_mouth:"Pot k\u0131rm\u0131\u015F",
8 | frown:"As\u0131k",
9 | innocent:"Masum",
10 | kiss:"\u00D6p\u00FCc\u00FCk",
11 | laughing:"Kahkaha",
12 | money_mouth:"Para g\u00F6z",
13 | sealed:"Gizli",
14 | smile:"G\u00FCl\u00FCmseme",
15 | surprised:"\u015Ea\u015F\u0131rma",
16 | tongue_out:"Dil \u00E7\u0131karma",
17 | undecided:"Karars\u0131z",
18 | wink:"G\u00F6z k\u0131rpma",
19 | yell:"Ba\u011F\u0131rma"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/he_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('he.paste_dlg',{
2 | text_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V.",
3 | text_linebreaks:"\u05D4\u05E9\u05D0\u05E8 \u05D0\u05EA \u05E9\u05D5\u05E8\u05D5\u05EA \u05D4\u05E8\u05D5\u05D5\u05D7",
4 | word_title:"\u05D4\u05D3\u05D1\u05D9\u05E7\u05D5 \u05D1\u05D7\u05DC\u05D5\u05DF \u05D6\u05D4 \u05D0\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D4\u05DE\u05E7\u05E9\u05D9\u05DD CTRL+V."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/de_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('de.searchreplace_dlg',{
2 | searchnext_desc:"Weitersuchen",
3 | notfound:"Die Suche ist am Ende angelangt. Die Zeichenkette konnte nicht gefunden werden.",
4 | search_title:"Suchen",
5 | replace_title:"Suchen/Ersetzen",
6 | allreplaced:"Alle Vorkommen der Zeichenkette wurden ersetzt.",
7 | findwhat:"Zu suchender Text",
8 | replacewith:"Ersetzen durch",
9 | direction:"Suchrichtung",
10 | up:"Aufw\u00E4rts",
11 | down:"Abw\u00E4rts",
12 | mcase:"Gro\u00DF-/Kleinschreibung beachten",
13 | findnext:"Weitersuchen",
14 | replace:"Ersetzen",
15 | replaceall:"Alle ersetzen"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/hy_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hy.emotions_dlg',{
2 | title:"\u054F\u0565\u0572\u0561\u0564\u0580\u0565\u056C \u057D\u0574\u0561\u0575\u056C\u056B\u056F",
3 | desc:"\u054D\u0574\u0561\u0575\u056C\u056B\u056F\u0576\u0565\u0580",
4 | cool:"Cool",
5 | cry:"Cry",
6 | embarassed:"Embarassed",
7 | foot_in_mouth:"Foot in mouth",
8 | frown:"Frown",
9 | innocent:"Innocent",
10 | kiss:"Kiss",
11 | laughing:"Laughing",
12 | money_mouth:"Money mouth",
13 | sealed:"Sealed",
14 | smile:"Smile",
15 | surprised:"Surprised",
16 | tongue_out:"Tongue out",
17 | undecided:"Undecided",
18 | wink:"Wink",
19 | yell:"Yell"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/cs_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('cs.searchreplace_dlg',{
2 | searchnext_desc:"Naj\u00EDt dal\u0161\u00ED",
3 | notfound:"Hled\u00E1n\u00ED bylo dokon\u010Deno. Hledan\u00FD text nebyl nalezen.",
4 | search_title:"Naj\u00EDt",
5 | replace_title:"Naj\u00EDt/nahradit",
6 | allreplaced:"V\u0161echny v\u00FDskyty byly nahrazeny.",
7 | findwhat:"Co hledat",
8 | replacewith:"\u010C\u00EDm nahradit",
9 | direction:"Sm\u011Br",
10 | up:"Nahoru",
11 | down:"Dol\u016F",
12 | mcase:"Rozli\u0161ovat velikost",
13 | findnext:"Naj\u00EDt dal\u0161\u00ED",
14 | replace:"Nahradit",
15 | replaceall:"Nahradit v\u0161e"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/ca_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ca.searchreplace_dlg',{
2 | searchnext_desc:"Cerca de nou",
3 | notfound:"S\'ha completat la cerca. No s\'ha trobat la cadena cercada.",
4 | search_title:"Cerca",
5 | replace_title:"Cerca/Reempla\u00E7a",
6 | allreplaced:"S\'han reempla\u00E7at totes les ocurr\u00E8ncies de la cadena cercada.",
7 | findwhat:"Cerca",
8 | replacewith:"Reempla\u00E7a amb",
9 | direction:"Direcci\u00F3",
10 | up:"Amunt",
11 | down:"Avall",
12 | mcase:"Distingeix maj\u00FAscules/min\u00FAscules",
13 | findnext:"Seg\u00FCent",
14 | replace:"Reempla\u00E7a",
15 | replaceall:"Reempla\u00E7a-ho tot"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/lt_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('lt.searchreplace_dlg',{
2 | searchnext_desc:"Ie\u0161koti dar kart\u0105",
3 | notfound:"Paie\u0161ka baigta. Paie\u0161kos fraz\u0117 nerasta.",
4 | search_title:"Ie\u0161koti",
5 | replace_title:"Ie\u0161koti/Pakeisti",
6 | allreplaced:"Visi paie\u0161kos fraz\u0117s pasikartojimai pakeisti.",
7 | findwhat:"Ko ie\u0161koti",
8 | replacewith:"Kuo pakeisti",
9 | direction:"Kryptis",
10 | up:"\u012E vir\u0161\u0173",
11 | down:"\u012E apa\u010Di\u0105",
12 | mcase:"Visi\u0161kas atitikimas",
13 | findnext:"Ie\u0161koti sek.",
14 | replace:"Pakeisti",
15 | replaceall:"Pakeisti visus"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/se_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('se.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F6k igen",
3 | notfound:"S\u00F6kningen har slutf\u00F6rts. S\u00F6kstr\u00E4ngen kunde inte hittas.",
4 | search_title:"S\u00F6k",
5 | replace_title:"S\u00F6k/ers\u00E4tt",
6 | allreplaced:"Alla st\u00E4llen d\u00E4r s\u00F6kstr\u00E4ngen kunde hittas har ersatts.",
7 | findwhat:"Hitta vad",
8 | replacewith:"Ers\u00E4tt med",
9 | direction:"Riktning",
10 | up:"Upp\u00E5t",
11 | down:"Ner\u00E5t",
12 | mcase:"Matcha gemener/versaler",
13 | findnext:"Hitta n\u00E4sta",
14 | replace:"Ers\u00E4tt",
15 | replaceall:"Ers\u00E4tt alla"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/sv_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sv.searchreplace_dlg',{
2 | searchnext_desc:"S\u00F6k igen",
3 | notfound:"S\u00F6kningen har slutf\u00F6rts. S\u00F6kstr\u00E4ngen kunde inte hittas.",
4 | search_title:"S\u00F6k",
5 | replace_title:"S\u00F6k/ers\u00E4tt",
6 | allreplaced:"Alla st\u00E4llen d\u00E4r s\u00F6kstr\u00E4ngen kunde hittas har ersatts.",
7 | findwhat:"Hitta vad",
8 | replacewith:"Ers\u00E4tt med",
9 | direction:"Riktning",
10 | up:"Upp\u00E5t",
11 | down:"Ner\u00E5t",
12 | mcase:"Matcha gemener/versaler",
13 | findnext:"Hitta n\u00E4sta",
14 | replace:"Ers\u00E4tt",
15 | replaceall:"Ers\u00E4tt alla"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/hu_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('hu.emotions_dlg',{
2 | title:"Hangulatjel besz\u00FAr\u00E1sa",
3 | desc:"Hangulatjelek",
4 | cool:"Kir\u00E1ly",
5 | cry:"S\u00EDr\u00F3s",
6 | embarassed:"Zavarban van",
7 | foot_in_mouth:"L\u00E1b a sz\u00E1jban",
8 | frown:"Rosszall",
9 | innocent:"\u00C1rtatlan",
10 | kiss:"Cs\u00F3k",
11 | laughing:"Nevet\u00E9s",
12 | money_mouth:"P\u00E9nz besz\u00E9l",
13 | sealed:"Lakat a sz\u00E1j\u00E1n",
14 | smile:"Vigyor",
15 | surprised:"Meglepett",
16 | tongue_out:"Nyelv\u00F6lt\u00E9s",
17 | undecided:"Hat\u00E1rozatlan",
18 | wink:"Kacsint\u00E1s",
19 | yell:"\u00DCv\u00F6lt\u00E9s"
20 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/paste/langs/ru_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('ru.paste_dlg',{
2 | text_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E.",
3 | text_linebreaks:"\u0421\u043E\u0445\u0440\u0430\u043D\u0438\u0442\u044C \u043F\u0435\u0440\u0435\u043D\u043E\u0441\u044B \u0441\u0442\u0440\u043E\u043A",
4 | word_title:"\u0418\u0441\u043F\u043E\u043B\u044C\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043B\u044F \u0432\u0441\u0442\u0430\u0432\u043A\u0438 \u0442\u0435\u043A\u0441\u0442\u0430 \u0432 \u043E\u043A\u043D\u043E."
5 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/tw_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('tw.searchreplace_dlg',{
2 | searchnext_desc:"\u518D\u5C0B\u627E\u4E00\u6B21",
3 | notfound:"\u672A\u627E\u5230\u5C0B\u627E\u9805\u3002 ",
4 | search_title:"\u5C0B\u627E",
5 | replace_title:"\u5C0B\u627E/\u53D6\u4EE3",
6 | allreplaced:"\u66F4\u65B0\u5B8C\u6210\u3002 ",
7 | findwhat:"\u5C0B\u627E\u5167\u5BB9",
8 | replacewith:"\u53D6\u4EE3\u6210",
9 | direction:"\u5C0B\u627E\u65B9\u5411",
10 | up:"\u5F80\u4E0A",
11 | down:"\u5F80\u4E0B",
12 | mcase:"\u5340\u5206\u5927\u5C0F\u5BEB",
13 | findnext:"\u4E0B\u4E00\u500B",
14 | replace:"\u53D6\u4EE3",
15 | replaceall:"\u5168\u90E8\u53D6\u4EE3"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/searchreplace/langs/zh_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('zh.searchreplace_dlg',{
2 | searchnext_desc:"\u518D\u5BFB\u627E\u4E00\u6B21",
3 | notfound:"\u672A\u627E\u5230\u5BFB\u627E\u9879\u3002 ",
4 | search_title:"\u5BFB\u627E",
5 | replace_title:"\u5BFB\u627E/\u53D6\u4EE3",
6 | allreplaced:"\u66F4\u65B0\u5B8C\u6210\u3002 ",
7 | findwhat:"\u5BFB\u627E\u5185\u5BB9",
8 | replacewith:"\u53D6\u4EE3\u6210",
9 | direction:"\u5BFB\u627E\u65B9\u5411",
10 | up:"\u5F80\u4E0A",
11 | down:"\u5F80\u4E0B",
12 | mcase:"\u533A\u5206\u5927\u5C0F\u5199",
13 | findnext:"\u4E0B\u4E00\u4E2A",
14 | replace:"\u53D6\u4EE3",
15 | replaceall:"\u5168\u90E8\u53D6\u4EE3"
16 | });
--------------------------------------------------------------------------------
/static/js/tinymce/themes/simple/skins/default/content.css:
--------------------------------------------------------------------------------
1 | body, td, pre {
2 | font-family: Verdana, Arial, Helvetica, sans-serif;
3 | font-size: 10px;
4 | }
5 |
6 | body {
7 | background-color: #FFFFFF;
8 | }
9 |
10 | .mceVisualAid {
11 | border: 1px dashed #BBBBBB;
12 | }
13 |
14 | /* MSIE specific */
15 |
16 | * html body {
17 | scrollbar-3dlight-color: #F0F0EE;
18 | scrollbar-arrow-color: #676662;
19 | scrollbar-base-color: #F0F0EE;
20 | scrollbar-darkshadow-color: #DDDDDD;
21 | scrollbar-face-color: #E0E0DD;
22 | scrollbar-highlight-color: #F0F0EE;
23 | scrollbar-shadow-color: #F0F0EE;
24 | scrollbar-track-color: #F5F5F5;
25 | }
26 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/js/emotions.js:
--------------------------------------------------------------------------------
1 | tinyMCEPopup.requireLangPack();
2 |
3 | var EmotionsDialog = {
4 | init : function(ed) {
5 | tinyMCEPopup.resizeToInnerSize();
6 | },
7 |
8 | insert : function(file, title) {
9 | var ed = tinyMCEPopup.editor, dom = ed.dom;
10 |
11 | tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', {
12 | src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file,
13 | alt : ed.getLang(title),
14 | title : ed.getLang(title),
15 | border : 0
16 | }));
17 |
18 | tinyMCEPopup.close();
19 | }
20 | };
21 |
22 | tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog);
23 |
--------------------------------------------------------------------------------
/static/js/tinymce/plugins/emotions/langs/sk_dlg.js:
--------------------------------------------------------------------------------
1 | tinyMCE.addI18n('sk.emotions_dlg',{
2 | title:"Vlo\u017Ei\u0165 emotikonu",
3 | desc:"Emotikony",
4 | cool:"\u00DA\u017Easn\u00FD",
5 | cry:"Pla\u010D\u00FAci",
6 | embarassed:"Zahanben\u00FD",
7 | foot_in_mouth:"\u0160liapol ved\u013Ea",
8 | frown:"Zamra\u010Den\u00FD",
9 | innocent:"Nevinn\u00FD",
10 | kiss:"Bozkaj\u00FAci",
11 | laughing:"Smej\u00FAci sa",
12 | money_mouth:"Je na prachy",
13 | sealed:"Ml\u010Diaci",
14 | smile:"Usmiaty",
15 | surprised:"Prekvapen\u00FD",
16 | tongue_out:"S vyplazen\u00FDm jazykom",
17 | undecided:"Nerozhodn\u00FD",
18 | wink:"\u017Dmurkaj\u00FAci",
19 | yell:"Kri\u010Diaci"
20 | });
--------------------------------------------------------------------------------