Changeset 65
- Timestamp:
- 06/02/06 13:55:34
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/PloneSoftwareCenter/skins/plonesoftwarecenter/forge_product_view.pt
r63 r65 172 172 173 173 <div class="visualClear"></div> 174 175 <fieldset style="float: right; margin-left: 0.5em; margin-top: 0;"> 176 <legend>Development resources</legend> 177 <ul> 178 179 <li tal:condition="here/getTracker"> 180 <img src="" alt="" 181 tal:attributes="src string:${portal_url}/issuetracker_icon.gif" /> 182 <a href="" 183 class="link-plain" 184 title="A place to submit bug reports and feature requests for this project" 185 tal:attributes="href here/getTracker">Issue tracker</a> 186 </li> 187 188 <li tal:condition="here/getRepository"> 189 <img src="" alt="" 190 tal:attributes="src string:${portal_url}/sitemap_icon.gif" /> 191 <a href="" 192 class="link-plain" 193 title="Version control repository location for this project" 194 tal:attributes="href here/getRepository">Development repository</a> 195 </li> 196 197 <li tal:repeat="resource python:here.getAdditionalContainedResources(ignore=('PSCDocumentationFolder',))"> 198 <img tal:attributes="src resource/getIcon" 199 alt="" /> 200 <a href="" 201 class="link-plain" 202 tal:attributes="href resource/getId; 203 title resource/Description;" 204 tal:content="resource/Title">Additional resource</a> 205 </li> 206 207 208 </ul> 209 210 211 </fieldset> 174 212 175 213 … … 184 222 <div class="visualClear"></div> 185 223 224 <div> 225 <p> If you are the developer on this project you may wish to consider some of the tools offered to you by the OATS forge.</p> 226 <p> You may wish to: </p> 227 <ul> 228 <li> Develop the <a href="" tal:attributes="href string:$here_url/help/">help centre</a>. This is added automatically and displayed in the resources portlet to the right. If you identified an external documentation source then this will be displayed instead, to display the OATS help centre, simply remove the reference to the external documentation. </li> 229 <li> Start a bug tracker. FIXME: ADD LINK/BUTTON! </li> 230 <li> Add a Subversion Repository. If this has already been setup for you on the OATS server the simply FIXME add a SVNview. If you would like a subversion repository, simply <a href="mailto:FIXME@CONTACT-FORM"> contact us.</a></li> 231 </ul> 232 </div> 233 186 234 <div metal:use-macro="here/document_byline/macros/byline"> 187 235 Get the byline - contains details about author and modification date. trunk/PloneSoftwareCenter/skins/plonesoftwarecenter/listing.pt
r63 r65 50 50 <dl> 51 51 <tal:package tal:repeat="package packages"> 52 <dt> 53 <img tal:replace="structure here/product_icon.gif" /> 54 <a tal:condition="python:Forge=='Forge'" 55 tal:attributes="href string:${package/getURL}/forge_product_view" 56 tal:content="package/Title">Title</a> 57 <a tal:condition="python:Forge!='Forge'" 58 tal:attributes="href package/getURL" 59 tal:content="package/Title">Title</a> 60 </dt> 61 52 62 <dt tal:condition="here/getLogo| nothing"> 53 63 <a tal:attributes="href package/getURL"> … … 55 65 </a> 56 66 </dt> 57 <dt tal:condition="not: package/getLogo| nothing"> 58 <a tal:attributes="href package/getURL"> 59 <img tal:replace="structure here/product_icon.gif" /> 60 </a> 61 </dt> 62 <dt> 63 <a tal:attributes="href package/getURL" tal:content="package/Title">Title</a> 64 </dt> 67 65 68 <dd tal:content="package/Description">Description</dd> 66 69 </tal:package> … … 103 106 </h3> 104 107 105 <dl>108 <dl> 106 109 <tal:package tal:repeat="package packages"> 107 110 <dt> 111 <img tal:replace="structure here/product_icon.gif" /> 112 <a tal:condition="python:Forge=='Forge'" 113 tal:attributes="href string:${package/getURL}/forge_product_view" 114 tal:content="package/Title">Title</a> 115 <a tal:condition="python:Forge!='Forge'" 116 tal:attributes="href package/getURL" 117 tal:content="package/Title">Title</a> 118 </dt> 119 108 120 <dt tal:condition="here/getLogo| nothing"> 109 121 <a tal:attributes="href package/getURL"> … … 111 123 </a> 112 124 </dt> 113 <dt tal:condition="not: package/getLogo| nothing"> 114 <a tal:attributes="href package/getURL"> 115 <img tal:replace="structure here/product_icon.gif" /> 116 </a> 117 </dt> 118 <dt> 119 <a tal:attributes="href package/getURL" tal:content="package/Title">Title</a> 120 </dt> 121 125 122 126 <dd tal:content="package/Description">Description</dd> 123 127 </tal:package> 124 128 </dl> 129 125 130 </tal:packages> 126 131 trunk/PloneSoftwareCenter/skins/plonesoftwarecenter/psc_project_view.pt
r63 r65 174 174 175 175 <div class="visualClear"></div> 176 177 <fieldset tal:define="relatedSoftware here/getResourceSoftware" 178 tal:condition="relatedSoftware"> 179 <legend>Related OATS Software</legend> 176 180 177 <fieldset:related tal:define="relatedSoftware here/getResourceSoftware"178 tal:condition="relatedSoftware">179 180 <h3 i18n:translate="box_related_software">Related OATS Software</h3>181 181 <ul class="visualNoMarker"> 182 182 <li tal:repeat="related relatedSoftware"> … … 189 189 </li> 190 190 </ul> 191 </fieldset :related>192 193 <div class="visualClear"></div> 194 <div>195 < h3> Programmers </h3>196 <p> Interested in helping to devlop this project? Go to the <a href="" tal:attributes="href string:$here_url/forge_ view">forge page</a> for more information. </p>197 </div>191 </fieldset> 192 193 <div class="visualClear"></div> 194 <fieldset> 195 <legend> Programmers </legend> 196 <p> Interested in helping to devlop this project? Go to the <a href="" tal:attributes="href string:$here_url/forge_product_view">forge page</a> for more information. </p> 197 </fieldset> 198 198 199 199 <div class="visualClear"></div>
