Conjunto de mudanças 6579 no repositório publico
- Timestamp:
- 29/06/2012 11:46:14 (9 anos atrás)
- Localização:
- Ombudsman/trunk
- Arquivos:
-
- 5 editados
Legenda:
- Não Modificado
- Adicionado
- Removido
-
Ombudsman/trunk/README.txt
r6577 r6579 10 10 * ArchGenXML code generator 11 11 * Poi issue tracker 12 * Zope application aerver12 * Zope application server 13 13 * Python language 14 14 … … 20 20 Licence 21 21 22 * GPL 2 22 * Copyright by Interlegis 23 * Licenced under GNU General Public Licence (GPL 2) 23 24 24 25 Icons -
Ombudsman/trunk/content/Ombudsman.py
r6571 r6579 103 103 104 104 class Ombudsman(PoiTracker): 105 """ Class that contains all registered claims.105 """Repository that contains all registered claims and it responses. 106 106 """ 107 107 security = ClassSecurityInfo() … … 118 118 allow_discussion = False 119 119 content_icon = 'ombudsman_icon.png' 120 immediate_view = ' base_view'120 immediate_view = 'ombudsman_view' 121 121 default_view = 'ombudsman_view' 122 122 suppl_views = () 123 typeDescription = " Class that contains all registered claims"123 typeDescription = "Repository that contains all registered claims and it responses." 124 124 typeDescMsgId = 'description_edit_ombudsman' 125 125 … … 254 254 return '%s%06d' % (this_year, sequence) 255 255 256 security.declarePublic('resolve_protocol') 257 def resolve_protocol(self): 258 """Search OmbudsmanClaim objects by id. 259 """ 260 pass 261 256 262 257 263 registerType(Ombudsman, PROJECTNAME) -
Ombudsman/trunk/content/OmbudsmanResponse.py
r6527 r6579 84 84 global_allow = 0 85 85 allow_discussion = False 86 content_icon = 'ombudsman_response .png'86 content_icon = 'ombudsman_response_icon.png' 87 87 immediate_view = 'base_view' 88 88 default_view = 'base_view' -
Ombudsman/trunk/doc/INSTALL.txt
r6577 r6579 1 1 Ombudsman install 2 2 3 1) Donwload it from http://plone.org/products/ombudsman 3 Installation 4 5 1) Download it from http://plone.org/products/ombudsman 4 6 2) Uncompress it in the Products directory 5 7 3) Restart Zope … … 8 10 5) Go to the Plone portal and add an Ombudsman instance 9 11 6) Configure it as you wish 10 7) Enjoy!11 12 13 Upgrade 14 15 1) Download it from http://plone.org/products/ombudsman 16 2) Remove the old Ombudsman directory from the Products directory 17 2) Uncompress it in the Products directory 18 3) Restart Zope 19 4) Go to the portal_quickinstaller tool or the control panel of your Plone 20 portal, select Ombudsman and do reinstall 21 6) May be you need to reconfigure it as you wish 22 -
Ombudsman/trunk/skins/Ombudsman/ombudsman_claim_view.pt
r6576 r6579 143 143 </tal:block> 144 144 145 146 <h1 i18n:translate="Ombudsman_label_responses">Responses</h1> 147 148 <br /> 145 146 <h2 i18n:translate="Ombudsman_label_responses">Responses</h2> 149 147 150 148 <tal:block define="responses python:here.getFolderContents(full_objects = True); 151 149 dummy python:responses.sort(lambda x, y: cmp(int(x.getId()), int(y.getId())));"> 152 <tal:responses repeat="response responses"> 153 150 <fieldset tal:repeat="response responses"> 151 152 <legend>Consideracoes</legend> 153 154 154 <div class="response-details" metal:define-macro="response_view" 155 155 tal:attributes="class string:response-${response/determineResponseType}"> 156 156 157 157 <span class="response-actions" 158 158 tal:define="canEdit python:user.has_permission('Modify portal content', response); … … 207 207 <hr> 208 208 209 </ tal:responses>209 </fieldset> 210 210 211 211 </tal:block>
Note: Veja
TracChangeset
para ajuda no uso do visualizador de conjunto de mudanças.