Changeset 97
- Timestamp:
- 04/17/09 17:52:46 (3 years ago)
- Location:
- installers/windows/src/eduCommons/src
- Files:
-
- 23 modified
-
collective.imstransport/collective.imstransport.egg-info/PKG-INFO (modified) (1 diff)
-
collective.imstransport/collective/imstransport/version.txt (modified) (1 diff)
-
collective.imstransport/setup.cfg (modified) (1 diff)
-
collective.plonebookmarklets/collective/plonebookmarklets/browser/bookmarklets_document_actions.pt (modified) (2 diffs)
-
collective.plonebookmarklets/collective/plonebookmarklets/skins/PloneBookmarklets/bookmarklets.css.dtml (modified) (2 diffs)
-
collective.plonebookmarklets/collective/plonebookmarklets/version.txt (modified) (1 diff)
-
collective.searchandreplace/collective/searchandreplace/SearchAndReplaceTool.py (modified) (1 diff)
-
collective.searchandreplace/collective/searchandreplace/version.txt (modified) (1 diff)
-
enpraxis.educommons/enpraxis/educommons/browser/icon_document_actions.pt (modified) (3 diffs)
-
enpraxis.educommons/enpraxis.educommons.egg-info/PKG-INFO (modified) (1 diff)
-
enpraxis.educommons/enpraxis.educommons.egg-info/SOURCES.txt (modified) (1 diff)
-
enpraxis.educommons/enpraxis/educommons/__pkginfo__.py (modified) (1 diff)
-
enpraxis.educommons/enpraxis/educommons/skins/eduCommons/eduCommonsContent.css.dtml (modified) (1 diff)
-
enpraxis.educommons/enpraxis/educommons/tests/test_object_edit.py (modified) (5 diffs)
-
enpraxis.educommons/enpraxis/educommons/tests/test_object_workflow.py (modified) (7 diffs)
-
enpraxis.educommons/enpraxis/educommons/version.txt (modified) (1 diff)
-
enpraxis.educommons/setup.cfg (modified) (1 diff)
-
enpraxis.leftskin/enpraxis/leftskin/browser/controlpanel.py (modified) (1 diff)
-
enpraxis.leftskin/enpraxis.leftskin.egg-info/PKG-INFO (modified) (1 diff)
-
enpraxis.leftskin/enpraxis/leftskin/version.txt (modified) (1 diff)
-
enpraxis.leftskin/setup.cfg (modified) (1 diff)
-
enpraxis.leftskin/setup.py (modified) (1 diff)
-
EXTERNALS.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
installers/windows/src/eduCommons/src/collective.imstransport/collective.imstransport.egg-info/PKG-INFO
r55 r97 1 1 Metadata-Version: 1.0 2 2 Name: collective.imstransport 3 Version: 2.1.0 dev3 Version: 2.1.0 4 4 Summary: An AddOn that supports importing and exporting of IMS content packages. 5 5 Home-page: http://plone.org/products/ims-transport/t -
installers/windows/src/eduCommons/src/collective.imstransport/collective/imstransport/version.txt
r55 r97 1 2. 0.1-final1 2.1.0 -
installers/windows/src/eduCommons/src/collective.imstransport/setup.cfg
r55 r97 1 1 [egg_info] 2 tag_build = dev3 tag_svn_revision = true2 #tag_build = dev 3 #tag_svn_revision = true -
installers/windows/src/eduCommons/src/collective.plonebookmarklets/collective/plonebookmarklets/browser/bookmarklets_document_actions.pt
r55 r97 20 20 </tal:condition> 21 21 <tal:condition tal:condition="python:daction['id'] == 'bookmarklets'"> 22 23 24 22 <script language="javascript"> 25 23 $(document).ready(function() { … … 41 39 tal:content="daction/title" /> 42 40 43 <div id="toggledBookmarks"> 41 <div id="toggledBookmarks"> 44 42 <div tal:replace="structure here/@@bookmarklets" /> 45 43 </div> -
installers/windows/src/eduCommons/src/collective.plonebookmarklets/collective/plonebookmarklets/skins/PloneBookmarklets/bookmarklets.css.dtml
r55 r97 7 7 8 8 #toggledBookmarks { 9 float:right; 9 10 margin-top: 10px; 10 float:right;11 11 background: &dtml-backgroundColor;; 12 12 display:none; 13 13 } 14 14 … … 16 16 border: 1px solid &dtml-globalBorderColor;; 17 17 padding: 5px 0; 18 18 19 19 } 20 20 21 21 22 /* </dtml-with> */ -
installers/windows/src/eduCommons/src/collective.plonebookmarklets/collective/plonebookmarklets/version.txt
r55 r97 1 2.1. 01 2.1.1 -
installers/windows/src/eduCommons/src/collective.searchandreplace/collective/searchandreplace/SearchAndReplaceTool.py
r55 r97 36 36 import re 37 37 38 import logging39 logger = logging.getLogger("SearchAndReplaceTool")40 logger.info("*********** Inside of search and replace *********")38 #import logging 39 #logger = logging.getLogger("SearchAndReplaceTool") 40 #logger.info("*********** Inside of search and replace *********") 41 41 42 42 pathIndexMatcher = re.compile(r'^(.*)\[([\d]+)\]$') -
installers/windows/src/eduCommons/src/collective.searchandreplace/collective/searchandreplace/version.txt
r55 r97 1 0.1 build 1 1 1.0 -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/browser/icon_document_actions.pt
r55 r97 5 5 6 6 <h5 class="hiddenStructure" i18n:translate="heading_document_actions">Document Actions</h5> 7 8 <script type="text/javascript" src="jquery.js"></script> 7 9 8 10 <ul tal:define="normalizeString nocall: context/@@plone/normalizeString"> … … 19 21 </tal:condition> 20 22 <tal:condition tal:condition="python:daction['id'] == 'bookmarklets'"> 21 <script language="javascript"> 22 function showBookmarklets() 23 { 24 bm = document.getElementById('bookmarklet'); 25 if (bm.style['display'] == 'none') { 26 bm.style['display'] = 'block'; 27 } else { 28 bm.style['display'] = 'none'; 29 } 30 31 } 32 </script> 33 23 <script language="javascript"> 24 $(document).ready(function() { 25 $('#toggleBookmarks').click(function() { 26 if ($('#toggledBookmarks').is(":hidden")) 27 { 28 $('#toggledBookmarks').fadeIn("slow"); 29 } else { 30 $('#toggledBookmarks').fadeOut("slow"); 31 } 32 }); 33 }); 34 </script> 34 35 35 36 <li i18n:domain="PloneBookmarklets"> 36 37 <a style="cursor:pointer;" 37 onclick="showBookmarklets()" 38 href="javascript:void(0);" 39 id="toggleBookmarks" 38 40 tal:define="title daction/title; 39 41 icon daction/icon" … … 47 49 </a> 48 50 49 <span id=" bookmarklet" style="display:none;">51 <span id="toggledBookmarks"> 50 52 <div tal:replace="structure here/@@bookmarklets" /> 51 53 </span> -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis.educommons.egg-info/PKG-INFO
r55 r97 1 1 Metadata-Version: 1.0 2 2 Name: enpraxis.educommons 3 Version: 3.2.0 dev3 Version: 3.2.0 4 4 Summary: A content management system for OpenCourseWare and OER rrelated materials. 5 5 Home-page: https://launchpad.net/educommons -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis.educommons.egg-info/SOURCES.txt
r55 r97 334 334 enpraxis/educommons/tests/test_double_byte_chars.py 335 335 enpraxis/educommons/tests/test_object_edit.py 336 enpraxis/educommons/tests/test_object_remove.py 336 337 enpraxis/educommons/tests/test_object_workflow.py 337 338 enpraxis/educommons/tests/test_ordering.py -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/__pkginfo__.py
r55 r97 23 23 24 24 modname = 'eduCommons' 25 version = '3. 0.0-final'26 numversion = (3, 0,0)27 at_versions = ('3. 0.0 final',)25 version = '3.2.0-pre' 26 numversion = (3,2,0) 27 at_versions = ('3.2.0 pre',) 28 28 29 29 -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/skins/eduCommons/eduCommonsContent.css.dtml
r55 r97 812 812 } 813 813 814 815 #toggledBookmarks { 816 position: absolute; 817 right: 150px; 818 margin-top: 25px; 819 background: &dtml-backgroundColor;; 820 display:none; 821 } 822 823 814 824 /* </dtml-with> */ -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/tests/test_object_edit.py
r55 r97 47 47 self.membership.addMember('qa', 'secret', ['QA', 'Member',], []) 48 48 self.membership.addMember('publisher', 'secret', ['Publisher','Member',], []) 49 self.membership.addMember('manager', 'secret', ['Manager','Member',], []) 49 50 50 51 self.loginAsPortalOwner() … … 61 62 self.logout() 62 63 63 def test OwnerModifyInProgressDocument(self):64 65 doc = self.division.course.document 66 self.login AsPortalOwner()64 def testManagerModifyInProgressDocument(self): 65 66 doc = self.division.course.document 67 self.login('manager') 67 68 doc.edit(title = 'Document 1') 68 69 self.assertEqual(doc.title, 'Document 1') … … 95 96 self.assertEqual(doc.title, 'Document 1') 96 97 97 def test OwnerModifyQADocument(self):98 99 doc = self.division.course.document 100 self.login AsPortalOwner()98 def testManagerModifyQADocument(self): 99 100 doc = self.division.course.document 101 self.login('manager') 101 102 self.workflow.doActionFor(doc, 'submit') 102 103 doc.edit(title = 'Document 1') … … 134 135 135 136 136 def test OwnerModifyReleasedDocument(self):137 138 doc = self.division.course.document 139 self.login AsPortalOwner()137 def testManagerModifyReleasedDocument(self): 138 139 doc = self.division.course.document 140 self.login('manager') 140 141 self.workflow.doActionFor(doc, 'submit') 141 142 self.workflow.doActionFor(doc, 'release') … … 177 178 178 179 179 def test OwnerModifyPublishedDocument(self):180 181 doc = self.division.course.document 182 self.login AsPortalOwner()180 def testManagerModifyPublishedDocument(self): 181 182 doc = self.division.course.document 183 self.login('manager') 183 184 self.workflow.doActionFor(doc, 'submit') 184 185 self.workflow.doActionFor(doc, 'release') -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/tests/test_object_workflow.py
r55 r97 49 49 self.membership.addMember('qa', 'secret', ['QA', 'Member',], []) 50 50 self.membership.addMember('publisher', 'secret', ['Publisher','Member',], []) 51 self.membership.addMember('manager', 'secret', ['Manager','Member',], []) 51 52 52 53 self.loginAsPortalOwner() … … 64 65 self.logout() 65 66 66 def test OwnerQADocument(self):67 self.login AsPortalOwner()68 self.assertEqual(self.workflow.getInfoFor(self.doc, 'review_state'), 'InProgress') 69 self.workflow.doActionFor(self.doc, 'submit') 70 self.assertEqual(self.workflow.getInfoFor(self.doc, 'review_state'), 'QA') 71 self.failUnless(self.catalog(id='document', review_state='QA')) 72 73 def test OwnerQAToInprogressDocument(self):74 self.login AsPortalOwner()67 def testManagerQADocument(self): 68 self.login('manager') 69 self.assertEqual(self.workflow.getInfoFor(self.doc, 'review_state'), 'InProgress') 70 self.workflow.doActionFor(self.doc, 'submit') 71 self.assertEqual(self.workflow.getInfoFor(self.doc, 'review_state'), 'QA') 72 self.failUnless(self.catalog(id='document', review_state='QA')) 73 74 def testManagerQAToInprogressDocument(self): 75 self.login('manager') 75 76 self.workflow.doActionFor(self.doc, 'submit') 76 77 self.workflow.doActionFor(self.doc, 'reviewer_rework') … … 78 79 self.failUnless(self.catalog(id='document', review_state='InProgress')) 79 80 80 def test OwnerQAToReleasedDocument(self):81 self.login AsPortalOwner()81 def testManagerQAToReleasedDocument(self): 82 self.login('manager') 82 83 self.workflow.doActionFor(self.doc, 'submit') 83 84 self.workflow.doActionFor(self.doc, 'release') … … 85 86 self.failUnless(self.catalog(id='document', review_state='Released')) 86 87 87 def test OwnerReleaseToPublished(self):88 self.login AsPortalOwner()88 def testManagerReleaseToPublished(self): 89 self.login('manager') 89 90 self.workflow.doActionFor(self.doc, 'submit') 90 91 self.workflow.doActionFor(self.doc, 'release') … … 93 94 self.failUnless(self.catalog(id='document', review_state='Published')) 94 95 95 def test OwnerReleaseToQA(self):96 self.login AsPortalOwner()96 def testManagerReleaseToQA(self): 97 self.login('manager') 97 98 self.workflow.doActionFor(self.doc, 'submit') 98 99 self.workflow.doActionFor(self.doc, 'release') … … 102 103 self.failUnless(self.catalog(id='document', review_state='QA')) 103 104 104 def test OwnerReleasedToInProgress(self):105 self.login AsPortalOwner()105 def testManagerReleasedToInProgress(self): 106 self.login('manager') 106 107 self.workflow.doActionFor(self.doc, 'submit') 107 108 self.workflow.doActionFor(self.doc, 'release') … … 111 112 self.failUnless(self.catalog(id='document', review_state='InProgress')) 112 113 113 def test OwnerPublishedToInProgress(self):114 self.login AsPortalOwner()114 def testManagerPublishedToInProgress(self): 115 self.login('manager') 115 116 self.workflow.doActionFor(self.doc, 'submit') 116 117 self.workflow.doActionFor(self.doc, 'release') -
installers/windows/src/eduCommons/src/enpraxis.educommons/enpraxis/educommons/version.txt
r55 r97 1 3. 1.1-final1 3.2.0-pre 2 2 3 3 -
installers/windows/src/eduCommons/src/enpraxis.educommons/setup.cfg
r55 r97 1 1 [egg_info] 2 tag_build = dev3 tag_svn_revision = true2 #tag_build = dev 3 #tag_svn_revision = true -
installers/windows/src/eduCommons/src/enpraxis.leftskin/enpraxis/leftskin/browser/controlpanel.py
r55 r97 357 357 return self.props.getProperty('fontColor') 358 358 359 def set_content_font_color(self ):359 def set_content_font_color(self, color): 360 360 self.props.manage_changeProperties(fontColor=color.encode('ascii')) 361 361 -
installers/windows/src/eduCommons/src/enpraxis.leftskin/enpraxis.leftskin.egg-info/PKG-INFO
r55 r97 1 1 Metadata-Version: 1.0 2 2 Name: enpraxis.leftskin 3 Version: 1. 1.0dev3 Version: 1.0.3 4 4 Summary: leftskin is a skin product that customizes the workflow and look of your Plone site. 5 5 Home-page: http://svn.enpraxis.net/svn/enpraxis.leftskin/trunk -
installers/windows/src/eduCommons/src/enpraxis.leftskin/enpraxis/leftskin/version.txt
r55 r97 1 1.0. 2-final1 1.0.3-final -
installers/windows/src/eduCommons/src/enpraxis.leftskin/setup.cfg
r55 r97 1 1 [egg_info] 2 tag_build = dev3 tag_svn_revision = true2 #tag_build = dev 3 #tag_svn_revision = true -
installers/windows/src/eduCommons/src/enpraxis.leftskin/setup.py
r55 r97 2 2 import os 3 3 4 version = '1. 1.0'4 version = '1.0.3' 5 5 6 6 setup(name='enpraxis.leftskin', -
installers/windows/src/eduCommons/src/EXTERNALS.txt
r55 r97 1 1 # svn propset svn:externals -F EXTERNALS.txt . 2 2 # eduCommons eggs 3 collective.plonebookmarklets https://svn.plone.org/svn/collective/collective.plonebookmarklets/trunk 4 collective.imstransport https://svn.plone.org/svn/collective/collective.imstransport/trunk 5 collective.searchandreplace https://svn.plone.org/svn/collective/collective.searchandreplace/trunk 6 enpraxis.leftskin https://enpraxis.net/svn/eduCommons32/enpraxis.leftskin/trunk 7 enpraxis.educommons https://enpraxis.net/svn/eduCommons32/enpraxis.educommons/trunk 3 collective.plonebookmarklets https://svn.plone.org/svn/collective/collective.plonebookmarklets/tags/2.1.1 4 collective.zipfile https://svn.plone.org/svn/collective/collective.zipfiletransport/tags/2.1.2 5 collective.imstransport https://enpraxis.net/svn/eduCommons32/collective.imstransport.orig/tags/2.1.0/ 6 collective.searchandreplace https://svn.plone.org/svn/collective/collective.searchandreplace/tags/1.0 7 enpraxis.leftskin https://enpraxis.net/svn/eduCommons32/enpraxis.leftskin/tags/1.0.3 8 enpraxis.educommons https://enpraxis.net/svn/eduCommons32/enpraxis.educommons/tags/3.2.0-pre
