Changeset 39
- Timestamp:
- 22/11/05 18:10:18
- Files:
-
- trunk/OATSPSC/TODO.txt (modified) (1 diff)
- trunk/OATSPSC/config.py (modified) (1 diff)
- trunk/OATSPSC/content/PSCProject.py (modified) (1 diff)
- trunk/OATSPSC/content/PSCReleaseFolder.py (modified) (2 diffs)
- trunk/OATSPSC/content/schemata.py (modified) (3 diffs)
- trunk/OATSPSC/skins/plonesoftwarecenter/forge_product_view.pt (modified) (1 diff)
- trunk/OATSPSC/skins/plonesoftwarecenter/forge_view.pt (modified) (1 diff)
- trunk/OATSPSC/skins/plonesoftwarecenter/psc_project_view.pt (modified) (3 diffs)
- trunk/OATSPSC/version.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/OATSPSC/TODO.txt
r24 r39 7 7 =============================================== 8 8 9 ****BROWSING (Simon) 10 11 - validate_avaliableCategoriesNeed in PloneSoftwareCentre :: write/adapt 12 - two/three category browsing 13 14 - Sort out displaying OATS and RECOMMENDED projects in the by-category template... below DOES NOT WORK! 15 # <dd tal:condition="package/isOats"> This is an OATS project. </dd> 16 # <dd tal:condition="package/isRecommended"> This is a recommended project. </dd> 17 18 19 20 ****SEARCHING (Jason) 21 9 SEE TRAC! oatsoft.org/trac/oats 22 10 23 11 ***BUGS?? trunk/OATSPSC/config.py
r19 r39 20 20 SOFT_DEPS = 'ATReferenceBrowserWidget', 21 21 22 RELEASES_ID = ' releases'22 RELEASES_ID = 'downloads' 23 23 IMPROVEMENTS_ID = 'roadmap' 24 24 DOCUMENTATION_ID = 'documentation' trunk/OATSPSC/content/PSCProject.py
r36 r39 84 84 poll.enable() 85 85 poll.setVisible() 86 87 self.invokeFactory(id='Forum', type_name='ForumNB', title=self.title_or_id()+' Forum') 88 forum = getattr(self, 'Forum') 89 forum.setTitle(self.title_or_id()+' Forum') 90 forum.setDescription('Discuss issues related to '+self.title_or_id()+'.') 86 91 87 92 # if not self.objectIds('PSCImprovementProposalFolder'): trunk/OATSPSC/content/PSCReleaseFolder.py
r1 r39 19 19 __implements__ = (OrderedBaseFolder.__implements__,) 20 20 21 archetype_name = ' Releases Section'21 archetype_name = 'Downloads Section' 22 22 immediate_view = default_view = 'psc_releasefolder_view' 23 23 content_icon = 'download_icon.gif' … … 53 53 54 54 typeDescMsgId = 'description_edit_releasefolder' 55 typeDescription = ('A Releases Section is used to hold software'56 ' releases.It is given a default short name and '55 typeDescription = ('A Releases Section is used to hold downloads.' 56 'It is given a default short name and ' 57 57 'title to ensure that projects are consistent. ' 58 58 'Please do not rename it.') trunk/OATSPSC/content/schemata.py
r36 r39 722 722 widget=StringWidget ( 723 723 label="Short name", 724 description="Short name of the container - this should be ' release' to comply with the standards.",724 description="Short name of the container - this should be 'downloads' to comply with the standards.", 725 725 i18n_domain="plonesoftwarecenter", 726 726 ), … … 729 729 StringField( 730 730 name='title', 731 default=' Releases',731 default='Downloads', 732 732 searchable=1, 733 733 accessor="Title", … … 741 741 StringField( 742 742 name='description', 743 default='Existing and upcoming releases for this project.',743 default='Existing and upcoming downloads for this project.', 744 744 searchable=1, 745 745 accessor="Description", trunk/OATSPSC/skins/plonesoftwarecenter/forge_product_view.pt
r36 r39 10 10 tal:content="string: @import url($portal_url/plonesoftwarecenter.css);"></style> 11 11 <style type="text/css" media="all" 12 tal:content="string: @import url($portal_url/Forge/ customforge.css);"></style>12 tal:content="string: @import url($portal_url/Forge/ploneForgeCustom.css);"></style> 13 13 </metal:css> 14 14 trunk/OATSPSC/skins/plonesoftwarecenter/forge_view.pt
r32 r39 9 9 <style type="text/css" media="all" 10 10 tal:content="string:@import url($portal_url/plonesoftwarecenter.css);"></style> 11 <style type="text/css" media="all" 12 tal:content="string: @import url($portal_url/Forge/ploneForgeCustom.css);"></style> 13 11 14 </metal:css> 12 15 trunk/OATSPSC/skins/plonesoftwarecenter/psc_project_view.pt
r37 r39 21 21 i18n:translate="description_cannot_add_before_approved" 22 22 tal:condition="python: is_editable and wtool.getInfoFor(here, 'review_state')!='published'"> 23 Thanks. For this project to be considered you <b>must SUBMIT it</b> using the 'submit' button above.24 If a software release is avaliable for this project, please add it first, using the 'add release' button.25 This project will then be reviewed by the OATS team before being published.23 Thanks. For this project to be considered you <b>must SUBMIT it</b> to do this click the 'submit' button above and choose 'submit'. 24 If a software release is avaliable for this project, please add it first, using the 'add new item' button. 25 This project will then be reviewed by the OATS team before being viewable by the general public. 26 26 </p> 27 27 … … 72 72 tal:condition="python:is_editable and wtool.getInfoFor(here, 'review_state')=='published'"> 73 73 <tal:noreleases i18n:translate="description_no_available_releases"> 74 Sorry - there are no software releases for this project yet.74 Sorry - there are no downloads for this project yet. 75 75 </tal:noreleases> 76 76 </p> … … 79 79 <a i18n:translate="label_goto_release_folder" 80 80 tal:attributes="href string:$here_url/releases"> 81 Go to the spoftware release folder to add or publish a software release.81 Go to the downloads folder to add or publish a download. 82 82 </a> 83 83 </p> trunk/OATSPSC/version.txt
r36 r39 1 1.0 beta 7 - OATS beta 3 61 1.0 beta 7 - OATS beta 39
