From 208071b7eb011d2adb6aba4afea518494daac2ee Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 17 Jun 2012 18:04:51 -0400 Subject: [PATCH] Remove the feedback app --- apps/feedback/__init__.py | 11 -- apps/feedback/api.py | 12 -- apps/feedback/forms.py | 92 ------------- apps/feedback/locale/en/LC_MESSAGES/django.po | 103 --------------- apps/feedback/locale/es/LC_MESSAGES/django.mo | Bin 3159 -> 0 bytes apps/feedback/locale/es/LC_MESSAGES/django.po | 122 ------------------ apps/feedback/locale/it/LC_MESSAGES/django.mo | Bin 3115 -> 0 bytes apps/feedback/locale/it/LC_MESSAGES/django.po | 104 --------------- apps/feedback/locale/pl/LC_MESSAGES/django.mo | Bin 562 -> 0 bytes apps/feedback/locale/pl/LC_MESSAGES/django.po | 103 --------------- apps/feedback/locale/pt/LC_MESSAGES/django.mo | Bin 492 -> 0 bytes apps/feedback/locale/pt/LC_MESSAGES/django.po | 104 --------------- apps/feedback/locale/ru/LC_MESSAGES/django.mo | Bin 4086 -> 0 bytes apps/feedback/locale/ru/LC_MESSAGES/django.po | 104 --------------- apps/feedback/models.py | 3 - apps/feedback/urls.py | 5 - apps/feedback/views.py | 30 ----- settings.py | 3 +- urls.py | 1 - 19 files changed, 1 insertion(+), 796 deletions(-) delete mode 100644 apps/feedback/__init__.py delete mode 100644 apps/feedback/api.py delete mode 100644 apps/feedback/forms.py delete mode 100644 apps/feedback/locale/en/LC_MESSAGES/django.po delete mode 100644 apps/feedback/locale/es/LC_MESSAGES/django.mo delete mode 100644 apps/feedback/locale/es/LC_MESSAGES/django.po delete mode 100644 apps/feedback/locale/it/LC_MESSAGES/django.mo delete mode 100644 apps/feedback/locale/it/LC_MESSAGES/django.po delete mode 100644 apps/feedback/locale/pl/LC_MESSAGES/django.mo delete mode 100644 apps/feedback/locale/pl/LC_MESSAGES/django.po delete mode 100644 apps/feedback/locale/pt/LC_MESSAGES/django.mo delete mode 100644 apps/feedback/locale/pt/LC_MESSAGES/django.po delete mode 100644 apps/feedback/locale/ru/LC_MESSAGES/django.mo delete mode 100644 apps/feedback/locale/ru/LC_MESSAGES/django.po delete mode 100644 apps/feedback/models.py delete mode 100644 apps/feedback/urls.py delete mode 100644 apps/feedback/views.py diff --git a/apps/feedback/__init__.py b/apps/feedback/__init__.py deleted file mode 100644 index 8e6c005ae4..0000000000 --- a/apps/feedback/__init__.py +++ /dev/null @@ -1,11 +0,0 @@ -from __future__ import absolute_import - -from django.utils.translation import ugettext_lazy as _ - -from navigation.api import register_links -from common import about_view, license_view - -form_view = {'text': _('Feedback'), 'view': 'form_view', 'famfam': 'telephone'} - -register_links(['form_view'], [about_view, license_view], menu_name='secondary_menu') -register_links(['form_view', 'about_view', 'license_view'], [form_view], menu_name='secondary_menu') diff --git a/apps/feedback/api.py b/apps/feedback/api.py deleted file mode 100644 index 083cd0e79e..0000000000 --- a/apps/feedback/api.py +++ /dev/null @@ -1,12 +0,0 @@ -import requests - -from django.utils.simplejson import dumps - -FORM_SUBMIT_URL = 'https://docs.google.com/spreadsheet/formResponse' -FORM_KEY = 'dGZrYkw3SDl5OENMTG15emp1UFFEUWc6MQ' -FORM_RECEIVER_FIELD = 'entry.0.single' -TIMEOUT = 10 - - -def submit_form(form): - requests.post(FORM_SUBMIT_URL, data={'formkey': FORM_KEY, FORM_RECEIVER_FIELD: dumps(form.cleaned_data)}, timeout=TIMEOUT) diff --git a/apps/feedback/forms.py b/apps/feedback/forms.py deleted file mode 100644 index e7cfcd196c..0000000000 --- a/apps/feedback/forms.py +++ /dev/null @@ -1,92 +0,0 @@ -from __future__ import absolute_import - -import logging - -from django import forms -from django.utils.translation import ugettext_lazy as _ - -logger = logging.getLogger(__name__) - - -class FeedbackForm(forms.Form): - attract = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features of Mayan EDMS attracted you to start using it or consider using it?'), - required=False - ) - - future = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features would you like to see implemented in Mayan EDMS?'), - required=False - ) - - deploy = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'Could you tell us a bit about how you are deploying or plan to deploy Mayan EDMS (OS, webserver, cloud/local, hardware specs)?'), - required=False - ) - - hardest = forms.CharField( - widget=forms.widgets.Textarea( - attrs={'rows': 2}, - ), - label=_(u'What features of Mayan EDMS did you find hardest to understand or implement?'), - required=False - ) - - support = forms.BooleanField( - label=_(u'Would you be interested in purchasing paid support for Mayan EDMS?'), - required=False - ) - - sell_support = forms.BooleanField( - label=_(u'Are currently providing or planning to provide paid support for Mayan EDMS?'), - required=False - ) - - hosted = forms.BooleanField( - label=_(u'Would you be interested in a cloud hosted solution for Mayan EDMS?'), - required=False - ) - - turn_key = forms.BooleanField( - label=_(u'Would you be interested in a turn-key solution for Mayan EDMS that included a physical server appliance?'), - required=False - ) - - name = forms.CharField( - label=_(u'Your name:'), - required=False - ) - - email = forms.CharField( - label=_(u'Your email:'), - required=False - ) - - company = forms.CharField( - label=_(u'Company name:'), - required=False - ) - - website = forms.CharField( - label=_(u'Company website:'), - required=False - ) - - use_info = forms.BooleanField( - label=_(u'May we display your company name & logo in our website as a user of Mayan EDMS with a link back to your website?'), - required=False - ) - - mailing_list = forms.BooleanField( - label=_(u'May we keep your contact information to keep you up to date with developments or oferings related to Mayan EDMS?'), - required=False - ) diff --git a/apps/feedback/locale/en/LC_MESSAGES/django.po b/apps/feedback/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index c06fa17bd4..0000000000 --- a/apps/feedback/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/es/LC_MESSAGES/django.mo b/apps/feedback/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index b4c24481899f3d4a595b3cdef27471562a82794d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3159 zcma)8&2Jk;6d#~`8OlcyLVQVsfGQDL+lfGmTv9{R6e^lFO;Re3eXMWq*dDAWQ32P9715PwC5#D(9RwPQC@N>^I{yt8lKy!U%w``4iZ zUoc$H;C>1Bcer21ed<2^;Q9gh0q{rQLEypr8G8!&BJdO79PoMIH^4`LKLK;#?;~tJ zz}R6tUj?28{s}wHHhO8?fb9;Bh>E z_Aq150)HFf-@vc%d>i;G@Jkp)dcFsK3j7)PIq>~Q8G8-*2k<=bHn0smjl))e*MaAN z{{jo(StwZt{sMds_`>6*T?;_+e+dY)*ps;FdZL8gUmP1b9xs3f1{c^N+%PrT2#CHu z1SF2hU%EgEgL&}+t?_yqzc`Yycb(*E;hZ!<4|wkEw#t<0aO-%kg)#I$*wG8gbD=Ws zi#)e3@HT{2#XuOoa(s28$(C&|7iPeX=*h#Qr`i@-P1{uHIo=g6>yt8{%hb;{ z*@|Q)yOk0 z$ddwAaNC}?udhNEZ?rO7ob;0yQRir5b9~^Il==8H6GR$t0+}a*vW9kz1$dE1DnyVx zYR}}h)Hd%Se4b)v+tR@~&z;l|%1C-TM4Md!V<-j`ya^f6toDe9Dm&j52(J{Oa1wg& z@JfW>U?Oyr8tC^yAQ=izq#~Tqn_A;l20q4%&AV#MkWsV)40J#{R-sh& zaxKZxy~_G_oL5?H$!L+36LA=dcukXVes@C)awbSPN&Y}glu3kaj4R&iBF12Es^3)w zSTo6%9PoX%^FZ_}ljiU)JY1+OZJWnzI*V8j_P)@*zk^-ZiE;tE@|^_+-_0RF)hoIzHL74PIG0vzaVA zKST!=#&;yAHU(0JfYHo?ldcGE*sV04G zc2{|WOJ7+%xwh_0Sz8cnZTylY&G&+mV4%Of63j6F%b= zDzGQG&80(rZQHq69V$aBK>wWMra<-9(2!9$(oY)xZmV~aI=!URq>fo$z*c3;rjKC- zrs&z1{>UDAfh;3wv&)7r#%%CG?EXRJP-t*I`~r#j@KQ$^K}HctXj{IBsR{}vU59!i zaU_ifL#TP^#aKi}V_$R1f}WuKLAW3=ngXdBUNezV!1zOk8=o~ahA^?m!$Y|JkAc=sLDP(=#23ZXt_, 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-02 18:28+0000\n" -"Last-Translator: Roberto Rosario \n" -"Language-Team: Spanish (Castilian) (http://www.transifex.net/projects/p/" -"mayan-edms/team/es/)\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Comentarios" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" -"¿Qué características de Mayan EDMS le atrajo a empezar a usarlo o considerar " -"usarlo?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "¿Qué características le gustaría ver implementadas en Mayan EDMS?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" -"¿Podría hablarnos un poco acerca de cómo se está implementando o planea " -"implementar Mayan EDMS (sistema operativo, servidor web, nube / locales, " -"hardware)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" -"¿Qué características de Mayan EDMS se le hizo más difícil de encontrar, " -"comprender o implementar?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" -"¿Estaría usted interesado en la compra de apoyo técnico pagado para Mayan " -"EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "¿Esta actualmente o planifica proveer apoyo pagado para Mayan EDMS?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" -"¿Estaría usted interesado en una solución pagada alojada en la nube de Mayan " -"EDMS?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" -"¿Estaría usted interesado en una solución completa para Mayan EDMS que " -"incluye un dispositivo de servidor físico?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Su nombre:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Su correo electrónico:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Nombre de la empresa:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Web de la compañía:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" -"¿Podemos usar el nombre de su empresa y logotipo en nuestra página web como " -"usuario de Mayan EDMS con un enlace a su sitio web?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" -"¿Podemos mantener su información de contacto para mantenerle al día con los " -"ultimos desarollos u ofertas relacionados con Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Gracias por remitir sus comentarios." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Error remitiendo el formulario; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "formulario de comentarios" diff --git a/apps/feedback/locale/it/LC_MESSAGES/django.mo b/apps/feedback/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index 79cce4965d59798b76e1c619c10fe7abc5de1eda..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3115 zcma)8J#QRE7+y&DG6^4{KoKClDUvwCdv~^o6m4*h#IcbfRvg<9A<@k3j_(G~%`7vs zcR5Q?@fYYR5Ct?rf&$S15d{*WMWUdl1`0}^clOSAvE(Q#?>^p{+4tjlzwXad$3IPQ zy@2~=+~44S1^10d@WAy0@NM9az>~m}k0!};z?Xm@0~dg&fnNci1pW*xfxnHheJn}N z;r%Y~7VvlA4d8|2Npb}^0A2%r3+w^^8^4RklH_T;e-4}j-UYJ$?}2~7mS2Dyy#GXP z&)-0{`xuP)1b7C>{(J$%UvdwRkAS}dhrqX@Q!SB!PMH0LlfrbJ7GoqSD!cDwOGxbyR9$4F4bOctcVtR6)KfOX~vd z;?RZ|2}7&bH@4f!itU%ejL3+-%nsg$vg1{V3zaTtWGf0%YpOg6>Zm}XW2--(4KtZyW1QWhPN?-O5j#g%mSU!6ZWsW~=PZaJ+Sx&T>Ao2hWY@P_p8vbf>fT}W5A%dhRy^sT`ZP`co zJjcxLN(bjWIjM1|;M21q+UW@x!!h9CP05I6?T&e9B)5A4;gup(PD1W|UWpJKOoVI} z1NlA(BtzwyRD=_9b8EaRz{g~<{XmHYaw?jnOcCQIePF?rfec8;Duk+jsUdK`u#Ub7_JKKP)6b0$bQ$^PJ&sFMiU7+1X2RgA&mRDYldux8RdIie#z zr@-_olk2L0T0v!RP#k4mRbpuOSpQpt!3r%o`|$Ruq@x>T$O#Hbe6>b>-wBT zI~GE+>FftG59xZ5z6;Wkci9YQb6b)tKHczLRixLdu1|MtM!gWqtl8`$&#O)YmC|(9 z3#Y7W_PH-KmG_nObDKAJ(iMkvg4pyr@-m~P*5XpyT1pp}Xz^mU)Jj{gwOTlsZpndS z^@q+aEmEtMU0i&%g=_AH@FCrC!gyr4bs25hj&w+wty(|5?&^ic*q}z&nth?={u^B; zf^EG5DW+SAu1t5N=x4MZ1hY=_W4DIGVFRg-RNj?$8b*dD+9Q+Xn`P}^DvQ2vqD@9I zO%<9K<~G(hR;Ls$Hd=El7Aa<6@2G_1LEeENEtI)T2%qyZEWfj}mR_2kW1Xnubk*dR zn{h^$&?gVf%}`}?o4RsBr)%gEJ|k1cSHHY;8Eu<)mgfzfS*FDcbICR;$XE`uk*2T| zyLndzE-bWF6?YVO%DS&x&PdTk6E|SAL>bQ(&z9&SI+C_+u0Uv(Y%83KRRoIArL`7u zQ-*t=Wyxk`6?C{H%DW6N2g_Y8wp%vVMr<<^B#sZq3>G-A^ zSg32FEu(zYLTvVGSLHo3&s*+9Xy%K#(NWcox_V;;w zC{2dVtsV35njNFK5r+XbZ~~671E3;0S8>Fn8&mGMEiwsl9-!DmHU0t)wWr$qg3|>( zi8Oa7gsm_3K{+$RA_5w49hP`(ph$EP5@%3e2w_*_IZzt0RN(affuQ)bo?)|{yy+kv zgB@X>@S|wJ{;;;1nnrSq387p#D942HAyN#3X554No}f4$CKf8A_7$@z3d{oGG-uyr zI`FzakN(P3$EZl}ZTq2gK@kWap!lg&_r3!)yNJ31V+C3`MmB!XV0ds=9n1~rJ4*P# z;ujD)K5_EltLZmE@K~67*-o}0hmVd2hiBT^JtJbj=TJ!+C#I-^nv4_Us8Hku>D;*X;v%@+BGC_hZ_n9vW^0oLo( Z#jsW`Ms7S?#_L=ySrXH>&e(Bz{SOVL)c*hg diff --git a/apps/feedback/locale/it/LC_MESSAGES/django.po b/apps/feedback/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index d49175a6fa..0000000000 --- a/apps/feedback/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Roberto Rosario , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-21 00:51+0000\n" -"Last-Translator: Roberto Rosario \n" -"Language-Team: Italian (http://www.transifex.net/projects/p/mayan-edms/language/it/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Commenti" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "Quali caratteristiche di Mayan EDMS ti ha attratto per iniziare ad usarlo o considerare l'utilizzo di esso?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "Quali caratteristiche vorreste vedere implementata in Mayan EDMS?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "Puoi dirci un po 'su come si distribuisce o si prevede di distribuire Mayan EDMS (webserver, nuvola / locali, specifiche hardware)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "Quali caratteristiche di Mayan EDMS ha trovato più difficile da comprendere o implementare?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "Sareste interessati ad acquistare il supporto a pagamento per Mayan EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "Stanno fornendo o progettando di fornire supporto a pagamento per Mayan EDMS?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "Sareste interessati ad una soluzione nuvola automatica per Mayan EDMS?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "Saresti interessato ad una soluzione automatica per Mayan EDMS che hanno incluso un apparecchio fisico server?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Il tuo nome:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Il tuo indirizzo email:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Ragione Sociale:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Sito internet della Società:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "Possiamo visualizzare il nome della società e il logo del nostro sito come utente di Mayan EDMS con un link al tuo sito web?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "Possiamo mantenere le informazioni di contatto per tenervi aggiornati sugli sviluppi o oferings relativi al Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Grazie per l'invio i vostri commenti." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Errore l'invio di forma; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "forma di commenti" diff --git a/apps/feedback/locale/pl/LC_MESSAGES/django.mo b/apps/feedback/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 282d506bf21906af9f2529c3f52a867810b09b3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 562 zcmZ8dO-~y!5CxUf9((R#4lPR5I<~hUr6vna$wrElZKGuA-6Uq?YS&)b-UcN8M*kka zgJZ`5fy78p9?yI8`SAYe-vQbo;sfF%;vM1(BH9q~h~zhXqvpjH&i+yBKxP~ATRE?- z5m3lGX&|2zt7NHK>jEi!r8ne9S9wxe0oxE-L20GKw!0pzZ9|>)(rN2x6LYEdzEeI~ z{3^+%Q!-##GLb=o@uA zFe=dY=@6c_PdgB`X*{i;tI)Ql{iK)``RkeZfF+mK1Z8lhyB3!V>J|&tQkyeaZ>94p zWLM>s3}1Dz=Z$hCH*34mrV=o`*5PGZ0d1Wu>dwiUOs#9Y0MqWjKKpuxWMs0Q$ubTX ozyRq_oSkPW93Su9QFapDUJSDlXK;VNk4FvbV-Clhw4WUO2UBdI<^TWy diff --git a/apps/feedback/locale/pl/LC_MESSAGES/django.po b/apps/feedback/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index c75a5f625a..0000000000 --- a/apps/feedback/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,103 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-02 18:21+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Polish (http://www.transifex.net/projects/p/mayan-edms/language/pl/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/pt/LC_MESSAGES/django.mo b/apps/feedback/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index 675ae005c70a944d18ba6d5abb4fd7f186e53408..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 492 zcmZ8d!Ab)$5LNWFN6#K2c(CZ~W*3E;S`ljn!NpQn?`b=(k=WE| zf)5^(OdfA0?|WzabAz$T+-2@Fx0pxF4t?eqKb~^!G;2(}d%-!u%>o|L2ji>~xqjDH zjIZ+hXo`*V1bHaU0xsJ!K;e{#CU*slJZfS+TxmijGMQ!|Ge|R$o~TTMJeHD$FvVBX z`To;M*7a4E9!f@Zs{=vdwGEXf=arbc8G3SDgZ9RWGrwxYe$|LeXFqg>9~WhZVnA{5Ow_0(SuU3`bz{sEzQq\n" -"Language-Team: Portuguese (http://www.transifex.net/projects/p/mayan-edms/" -"team/pt/)\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "" - -#: forms.py:65 -msgid "Your name:" -msgstr "" - -#: forms.py:70 -msgid "Your email:" -msgstr "" - -#: forms.py:75 -msgid "Company name:" -msgstr "" - -#: forms.py:80 -msgid "Company website:" -msgstr "" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "" - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "" - -#: views.py:28 -msgid "feedback form" -msgstr "" diff --git a/apps/feedback/locale/ru/LC_MESSAGES/django.mo b/apps/feedback/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index de875a435ff73a2a31a0bba1475f658c49684dfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4086 zcmbW2-ESOc6~+f>`7r%}a>Ylb7o$coc)hzORjW-LL(>FR#A-+k6_?}P*Y@DqnbCaM zT`5$FLr5xzSXAN$(LyA|4L7!H*PGaJ;DQToVCDt{Nc<68ATE&Lch2l)*P#uRu{>vH z-t#`^InO!o*}p#Z$d4SZPx1db{clS}p`8e-C z$Btk(uo8a{`xw~2#r}f#KYYY-MzP-|_-C*`!#)kyJ?t^w|MW4qVxIuy&)6?w|BihW zaN+e&>|d~7c&yClU)Y5A*9dkI`#0=QvEdVr)4@LZWQqGaR&+SP3eNAbA{j<6+z(yQ zQH}c_k-;Ga=PCY4L371ut{=t|Eld`XTdMrW0l+wZ3n%#JFb8ON~1hW~o^WS9HyVP|HSs*cqZB6v~f70nO2uFN_<3 zxAC%#$4%1@vsTp)o31}@7TvhDB49~mo5|R;b2^UUn`CosFBNFmw~w1=k_qRGwXHd~ zx#W-xc&6ngTnLR97+LCNW?ac6gM|s_hxx5|=^`t>7c3dUmn;;s zw{f~3aLL-JA1z4TW=aI1=cZm5$gaMF$s(1)O|4P%mR+`f7_}*1A~g%=ZA@~BiLH-Q zOT33mG`r|RMrt6%8;GH_=6gC!IIk?al-Igx7F%!+W#y)63`MX72K*#-X@)EjQ7I?5 z%`iy37JBqQPCpc}MNcUuFKB7qY?2Ca7JvadUjg;nk#8l@2f)w)#UMP%Wq|*^YUS?Ism@y`br5EyB7c zTI?hqU2DotHf|L8o*OhRslGSYD2tnmuFC$XWAaY-6%ksU54;aIBoS%btXP zz;E(7Q#;mpw*I9W*T`8nNh`Cl8zgjj7&puX8!sUE*L*K^&54C%`MKIxB;$!VJBfF& zkhu%CGHcy-!<^5O1a-~P9{rV-l?hs!mYuh+P6RfsG6qGAq#BiZRBWrAR2hc~Q;oCg z*vQOFGp7eq)hB8rr$SmOfLA9X!PLGAkneiIaYLEn#HLf@7sk%9G#K>dq^HcS@ znKm_pJMSl_Ci_b#rjE&@?x>xp*UZI>cI>m`?UL-K~iAK7=HwV@n+A&Yf>E%UdE>-cPnH-#XUxRaASN=|oB4>)$y z5o_fSDcm+?St`hVU1)C66uZR@C;tf%-VyOkDL1>y3aiS+nuH%H{jjpqUV@<&AXGQM zr|nwy>~#%6V6D59cuPxDTtfmW3YwL1MW5X=Z9eZv`wmMD1jVHdpteW42l?$@7$JIH za?=oK^=_%j_Ts9FCH=4MtsCiLMY~H-8isqX+q*pU1SNn}>n63kh6801vHAz0CzGIE zF4Ln?E)kH#q%pUMESc`WSPAUvT}r)5XvFIs&uuOJ+eEr5>1Y^Sy7_Hw8Z8|h??P-% zU54}_?OSrv*e7kmQGkyWmjhFF%C6LO!pVOuY2pMscu5qPf!Sl(9Re*2v&pR3?sM#A z*=47UgF{7=k+D+q36C5#glALNRF@ITTDC@F1*p z5c1OUqT~(|yszAJXv)F3t|ve!YNn_w!fk5@YL>!dUzP95wCze6cX(&0>Oj)t`@e)Q z=h@YguSP9fX$v4}Cuz$=*!?M>oTOE@hRY*ES0O|XvGlOLG|KeB9R?$P5%Bk&jq5gQnLIh&;Jn&;k^Z{duEPZ9* z$Dx)InBoUiXh#MN9}Ykn;K)!Z*7$YQO_Ct(R;)Li!Tixf!p3rz3jwNH4ur1rZ_uBP AoB#j- diff --git a/apps/feedback/locale/ru/LC_MESSAGES/django.po b/apps/feedback/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 10eaac9dfa..0000000000 --- a/apps/feedback/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,104 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# Sergey Glita , 2012. -msgid "" -msgstr "" -"Project-Id-Version: Mayan EDMS\n" -"Report-Msgid-Bugs-To: http://github.com/rosarior/mayan/issues\n" -"POT-Creation-Date: 2012-02-12 15:20-0400\n" -"PO-Revision-Date: 2012-02-27 04:51+0000\n" -"Last-Translator: Sergey Glita \n" -"Language-Team: Russian (http://www.transifex.net/projects/p/mayan-edms/language/ru/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: __init__.py:9 -msgid "Feedback" -msgstr "Обратная связь" - -#: forms.py:16 -msgid "" -"What features of Mayan EDMS attracted you to start using it or consider " -"using it?" -msgstr "Какие особенности Mayan EDMS побудили вас использовать её или рассмотривать вопрос об использовании её в документообороте?" - -#: forms.py:24 -msgid "What features would you like to see implemented in Mayan EDMS?" -msgstr "Какие особенности Вы хотели бы видеть реализованными в Mayan EDMS ?" - -#: forms.py:32 -msgid "" -"Could you tell us a bit about how you are deploying or plan to deploy Mayan " -"EDMS (OS, webserver, cloud/local, hardware specs)?" -msgstr "Не могли бы Вы рассказать нам немного о том, как вы устанавливаете или планируете развернуть Mayan EDMS (ОС, сервер, облако/локально, спецификации оборудования)?" - -#: forms.py:40 -msgid "" -"What features of Mayan EDMS did you find hardest to understand or implement?" -msgstr "Какие особенности Mayan EDMS вы нашли трудным для понимания и реализации?" - -#: forms.py:45 -msgid "Would you be interested in purchasing paid support for Mayan EDMS?" -msgstr "Вы были бы заинтересованы в приобретении платной поддержки Mayan EDMS?" - -#: forms.py:50 -msgid "" -"Are currently providing or planning to provide paid support for Mayan EDMS?" -msgstr "В настоящее время вы осуществляете или планируете предоставлять платную поддержку Mayan EDMS ?" - -#: forms.py:55 -msgid "Would you be interested in a cloud hosted solution for Mayan EDMS?" -msgstr "Вы были бы заинтересованы реализации \"облачного\" решения для Mayan EDMS ?" - -#: forms.py:60 -msgid "" -"Would you be interested in a turn-key solution for Mayan EDMS that included " -"a physical server appliance?" -msgstr "Вы были бы заинтересованы в решении \"под ключ\" для Mayan EDMS, которое включало бы и \"железо\"?" - -#: forms.py:65 -msgid "Your name:" -msgstr "Ваше имя:" - -#: forms.py:70 -msgid "Your email:" -msgstr "Ваш адрес электронной почты:" - -#: forms.py:75 -msgid "Company name:" -msgstr "Название компании:" - -#: forms.py:80 -msgid "Company website:" -msgstr "Сайт компании:" - -#: forms.py:85 -msgid "" -"May we display your company name & logo in our website as a user of Mayan " -"EDMS with a link back to your website?" -msgstr "Можем ли мы показывать название компании и логотип на нашем сайте в качестве пользователя Mayan EDMS со ссылкой на ваш сайт?" - -#: forms.py:90 -msgid "" -"May we keep your contact information to keep you up to date with " -"developments or oferings related to Mayan EDMS?" -msgstr "Можем ли мы сохранить вашу контактную информацию, чтобы держать вас в курсе новостей разработки или других событий, связанных с Mayan EDMS?" - -#: views.py:20 -msgid "Thank you for submiting your feedback." -msgstr "Спасибо вам за отзыв." - -#: views.py:23 -#, python-format -msgid "Error submiting form; %s." -msgstr "Ошибка при отправке формы; %s." - -#: views.py:28 -msgid "feedback form" -msgstr "форма обратной связи" diff --git a/apps/feedback/models.py b/apps/feedback/models.py deleted file mode 100644 index 71a8362390..0000000000 --- a/apps/feedback/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/apps/feedback/urls.py b/apps/feedback/urls.py deleted file mode 100644 index 53380a2d92..0000000000 --- a/apps/feedback/urls.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.conf.urls.defaults import patterns, url - -urlpatterns = patterns('feedback.views', - url(r'^form/$', 'form_view', (), 'form_view'), -) diff --git a/apps/feedback/views.py b/apps/feedback/views.py deleted file mode 100644 index a4cf1ebca3..0000000000 --- a/apps/feedback/views.py +++ /dev/null @@ -1,30 +0,0 @@ -from __future__ import absolute_import - -from django.utils.translation import ugettext_lazy as _ -from django.http import HttpResponseRedirect -from django.shortcuts import render_to_response -from django.template import RequestContext -from django.contrib import messages - -from .forms import FeedbackForm -from .api import submit_form - - -def form_view(request): - if request.method == 'POST': - form = FeedbackForm(request.POST) - if form.is_valid(): - try: - submit_form(form) - messages.success(request, _(u'Thank you for submiting your feedback.')) - return HttpResponseRedirect('/') - except Exception, e: - messages.error(request, _(u'Error submiting form; %s.') % e) - else: - form = FeedbackForm() - - return render_to_response('generic_form.html', { - 'title': _(u'feedback form'), - 'form': form, - }, - context_instance=RequestContext(request)) diff --git a/settings.py b/settings.py index 16d29aad98..3257e013f6 100644 --- a/settings.py +++ b/settings.py @@ -157,7 +157,7 @@ INSTALLED_APPS = ( 'mimetype', 'scheduler', 'job_processor', - 'feedback', + 'installation', # Mayan EDMS 'storage', 'folders', @@ -175,7 +175,6 @@ INSTALLED_APPS = ( 'rest_api', 'document_signatures', 'checkouts', - 'installation', # Has to be last so the other apps can register it's signals 'signaler', diff --git a/urls.py b/urls.py index acb5126eda..79bc1fab54 100644 --- a/urls.py +++ b/urls.py @@ -31,7 +31,6 @@ urlpatterns = patterns('', (r'^api/', include('rest_api.urls')), (r'^gpg/', include('django_gpg.urls')), (r'^documents/signatures/', include('document_signatures.urls')), - (r'^feedback/', include('feedback.urls')), (r'^checkouts/', include('checkouts.urls')), (r'^installation/', include('installation.urls')), (r'^scheduler/', include('scheduler.urls')),