Changes in / [20:30] in products


Ignore:
Files:
22 added
7 edited

Legend:

Unmodified
Added
Removed
  • /qPloneBlog/trunk

    • Property svn:externals
      •  

        old new  
        44SimpleBlog http://svn.quintagroup.com/products/SimpleBlog/trunk 
        55qPingTool http://svn.quintagroup.com/products/qPingTool/trunk 
        6 RPCAuth http://svn.plone.org/svn/collective/RPCAuth/trunk 
        76qTrackSpam http://svn.quintagroup.com/products/qTrackSpam/trunk 
        87adsenseproduct http://svn.quintagroup.com/products/adsenseproduct/trunk 
        98qRSS2Syndication 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 
         9XMLRPCMethod http://svn.quintagroup.com/products/XMLRPCMethod/current 
         10RPCAuth http://svn.quintagroup.com/products/RPCAuth/current 
  • /qPloneBlog/trunk/EXTERNALS_qPloneBlog.txt

    r20 r30  
    44SimpleBlog http://svn.quintagroup.com/products/SimpleBlog/trunk 
    55qPingTool http://svn.quintagroup.com/products/qPingTool/trunk 
    6 RPCAuth http://svn.plone.org/svn/collective/RPCAuth/trunk 
    76qTrackSpam http://svn.quintagroup.com/products/qTrackSpam/trunk 
    87adsenseproduct http://svn.quintagroup.com/products/adsenseproduct/trunk 
    98qRSS2Syndication 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 
     9XMLRPCMethod http://svn.quintagroup.com/products/XMLRPCMethod/current 
     10RPCAuth 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 IDefaultBrowserLayer 
     1from plone.theme.interfaces import IDefaultPloneLayer 
    22 
    3 class ITheme%(skin_name_capital)s(IDefaultBrowserLayer): 
     3class ITheme%(skin_name_capital)s(IDefaultPloneLayer): 
    44    """Marker interface that defines a Zope 3 skin layer. 
    55    """ 
  • /qPloneSkinDump/branches/plone_3.0/skin_template/fixes.py

    r20 r30  
     1from Acquisition import aq_base 
    12from Products.CMFCore.utils import getToolByName 
    23from Products.ZCatalog.ProgressHandler import ZLogHandler 
     
    2021def fix_linkintegrity(ob): 
    2122    """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] 
    2932         
    3033def fix_all(ob): 
  • /qPloneSkinDump/branches/plone_3.0/version.txt

    r20 r30  
    1 0.8.1 
     10.8.2 
  • /qPloneTabs/trunk/skins/qPloneTabs/javascripts/qplonetabs.js

    r20 r30  
    1010  '#app #reorder' : function(el){ 
    1111    el.onclick = function(ev){ 
    12       var ev = ev?ev:window.event; 
     12      var ev = ev ? ev : window.event; 
    1313      gBeforeReorderFragment = document.getElementById('tabslist').innerHTML; 
    1414      shiftClassNames('app', 'viewing', 'sorting'); 
     
    3131           lis.each(function(el,idx){ 
    3232             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+'_'); 
    3434             }); 
    3535           }); 
     
    4747  '#app #cancel' : function(el){ 
    4848    el.onclick = function(ev){ 
    49       var ev = ev?ev:window.event; 
     49      var ev = ev ? ev : window.event; 
    5050      Sortable.destroy('tabslist'); 
    5151      shiftClassNames('app', 'sorting', 'viewing'); 
    5252      Element.update('tabslist', gBeforeReorderFragment); 
    53       el.attachEvent ? ieHover():''; 
     53      el.attachEvent ? ieHover() : ''; 
    5454      Behaviour.apply(); 
    5555      Event.stop(ev); 
     
    374374 
    375375function 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  
    3636#app #addaction.adding              .field-id, 
    3737#app #addaction.adding              .field-condition, 
    38 #app #addaction.adding              .add-controls    {display: block;} 
     38#app #addaction.adding              .add-controls { 
     39    display: block; 
     40} 
    3941 
    4042#app                                #busy, 
     
    5557#app                                .field-id, 
    5658#app                                .field-condition, 
    57 #app                                .add-controls    {display: none;} 
     59#app                                .add-controls { 
     60    display: none; 
     61} 
    5862 
    5963#app.working #busy, 
     
    6468#app ul#roottabs.csshover li:hover   .visibility, 
    6569#app ul#roottabs.csshover li.onHover .visibility, 
    66 #app.sorting                         .drag-handle     {display: inline;} 
     70#app.sorting                         .drag-handle { 
     71    display: inline; 
     72} 
    6773 
    6874/**********************************************************/ 
    6975 
    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} 
    7383 
    7484/*common***************************************************/ 
     
    129139    position:absolute; 
    130140    right:0; 
     141    margin-left:20%; 
    131142    padding-right:0.5em; 
     143    overflow:hidden; 
    132144    font-size:80%; 
    133145    color:#aaa; 
     146    text-align: right; 
     147    width: 80%; 
     148 
    134149} 
    135150 
Note: See TracChangeset for help on using the changeset viewer.