- Files:
-
- 22 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
/qPloneBlog/trunk
- Property svn:externals
-
old new 4 4 SimpleBlog http://svn.quintagroup.com/products/SimpleBlog/trunk 5 5 qPingTool http://svn.quintagroup.com/products/qPingTool/trunk 6 RPCAuth http://svn.plone.org/svn/collective/RPCAuth/trunk7 6 qTrackSpam http://svn.quintagroup.com/products/qTrackSpam/trunk 8 7 adsenseproduct http://svn.quintagroup.com/products/adsenseproduct/trunk 9 8 qRSS2Syndication http://svn.quintagroup.com/products/qRSS2Syndication/trunk 10 #XMLRPCMethod 11 #1.1 version source repository: http://www.zope.org/Members/EIONET/XMLRPC/1.1/XMLRPCMethod-1-1.tgz 9 XMLRPCMethod http://svn.quintagroup.com/products/XMLRPCMethod/current 10 RPCAuth http://svn.quintagroup.com/products/RPCAuth/current
-
- Property svn:externals
-
/qPloneBlog/trunk/EXTERNALS_qPloneBlog.txt
r20 r30 4 4 SimpleBlog http://svn.quintagroup.com/products/SimpleBlog/trunk 5 5 qPingTool http://svn.quintagroup.com/products/qPingTool/trunk 6 RPCAuth http://svn.plone.org/svn/collective/RPCAuth/trunk7 6 qTrackSpam http://svn.quintagroup.com/products/qTrackSpam/trunk 8 7 adsenseproduct http://svn.quintagroup.com/products/adsenseproduct/trunk 9 8 qRSS2Syndication http://svn.quintagroup.com/products/qRSS2Syndication/trunk 10 #XMLRPCMethod 11 #1.1 version source repository: http://www.zope.org/Members/EIONET/XMLRPC/1.1/XMLRPCMethod-1-1.tgz 9 XMLRPCMethod http://svn.quintagroup.com/products/XMLRPCMethod/current 10 RPCAuth http://svn.quintagroup.com/products/RPCAuth/current -
/qPloneSkinDump/branches/plone_3.0/skin_template/browser/interfaces.py
r20 r30 1 from zope.publisher.interfaces.browser import IDefaultBrowserLayer1 from plone.theme.interfaces import IDefaultPloneLayer 2 2 3 class ITheme%(skin_name_capital)s(IDefault BrowserLayer):3 class ITheme%(skin_name_capital)s(IDefaultPloneLayer): 4 4 """Marker interface that defines a Zope 3 skin layer. 5 5 """ -
/qPloneSkinDump/branches/plone_3.0/skin_template/fixes.py
r20 r30 1 from Acquisition import aq_base 1 2 from Products.CMFCore.utils import getToolByName 2 3 from Products.ZCatalog.ProgressHandler import ZLogHandler … … 20 21 def fix_linkintegrity(ob): 21 22 """Fix losed references.""" 22 ob_li_refs = reference_catalog.getReferences(ob, relationship=li_relation) 23 if ob_li_refs: 24 annotations = ob._getReferenceAnnotations() 25 uniqueUIDs = uid_catalog.uniqueValuesFor('UID') 26 # delete references to non-existent objects 27 [annotations._delObject(ref.id) for ref in ob_li_refs \ 28 if not ref.targetUID in uniqueUIDs] 23 uobject = aq_base(ob) 24 if reference_catalog.isReferenceable(uobject): 25 ob_li_refs = reference_catalog.getReferences(ob, relationship=li_relation) 26 if ob_li_refs: 27 annotations = ob._getReferenceAnnotations() 28 uniqueUIDs = uid_catalog.uniqueValuesFor('UID') 29 # delete references to non-existent objects 30 [annotations._delObject(ref.id) for ref in ob_li_refs \ 31 if not ref.targetUID in uniqueUIDs] 29 32 30 33 def fix_all(ob): -
/qPloneSkinDump/branches/plone_3.0/version.txt
r20 r30 1 0.8. 11 0.8.2 -
/qPloneTabs/trunk/skins/qPloneTabs/javascripts/qplonetabs.js
r20 r30 10 10 '#app #reorder' : function(el){ 11 11 el.onclick = function(ev){ 12 var ev = ev ?ev:window.event;12 var ev = ev ? ev : window.event; 13 13 gBeforeReorderFragment = document.getElementById('tabslist').innerHTML; 14 14 shiftClassNames('app', 'viewing', 'sorting'); … … 31 31 lis.each(function(el,idx){ 32 32 inputs(el).each(function(inpt){ 33 inpt.type =='hidden'?inpt.value=idx:inpt.name=inpt.name.replace(/i\d+_/, 'i'+idx+'_');33 inpt.type == 'hidden' ? inpt.value = idx : inpt.name = inpt.name.replace(/i\d+_/, 'i'+idx+'_'); 34 34 }); 35 35 }); … … 47 47 '#app #cancel' : function(el){ 48 48 el.onclick = function(ev){ 49 var ev = ev ?ev:window.event;49 var ev = ev ? ev : window.event; 50 50 Sortable.destroy('tabslist'); 51 51 shiftClassNames('app', 'sorting', 'viewing'); 52 52 Element.update('tabslist', gBeforeReorderFragment); 53 el.attachEvent ? ieHover() :'';53 el.attachEvent ? ieHover() : ''; 54 54 Behaviour.apply(); 55 55 Event.stop(ev); … … 374 374 375 375 function removeEdition(el) { 376 var el = el ?el:'tabslist';377 $A($(el).getElementsByTagName('LI')).each(function(li,idx){if(li != el) li.onclick= '';});378 }; 376 var el = el ? el : 'tabslist'; 377 $A($(el).getElementsByTagName('LI')).each(function(li,idx){if(li != el) li.onclick=function(event){return false;};}); 378 }; -
/qPloneTabs/trunk/skins/qPloneTabs/qplonetabs.css.dtml
r20 r30 36 36 #app #addaction.adding .field-id, 37 37 #app #addaction.adding .field-condition, 38 #app #addaction.adding .add-controls {display: block;} 38 #app #addaction.adding .add-controls { 39 display: block; 40 } 39 41 40 42 #app #busy, … … 55 57 #app .field-id, 56 58 #app .field-condition, 57 #app .add-controls {display: none;} 59 #app .add-controls { 60 display: none; 61 } 58 62 59 63 #app.working #busy, … … 64 68 #app ul#roottabs.csshover li:hover .visibility, 65 69 #app ul#roottabs.csshover li.onHover .visibility, 66 #app.sorting .drag-handle {display: inline;} 70 #app.sorting .drag-handle { 71 display: inline; 72 } 67 73 68 74 /**********************************************************/ 69 75 70 #app.sorting #tabslist img.drag-handle {cursor: move;} 71 72 #app .invisible span.tab-title {color:#aaa;} 76 #app.sorting #tabslist img.drag-handle { 77 cursor: move; 78 } 79 80 #app .invisible span.tab-title { 81 color:#aaa; 82 } 73 83 74 84 /*common***************************************************/ … … 129 139 position:absolute; 130 140 right:0; 141 margin-left:20%; 131 142 padding-right:0.5em; 143 overflow:hidden; 132 144 font-size:80%; 133 145 color:#aaa; 146 text-align: right; 147 width: 80%; 148 134 149 } 135 150
Note: See TracChangeset
for help on using the changeset viewer.