Changeset 740

Show
Ignore:
Timestamp:
01/11/07 07:57:59
Author:
piv
Message:

release 0.1.3

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qSiloGroup/trunk/HISTORY.txt

    r739 r740  
     10.1.3 
     2 
     3  * fixed: corrected condition for displaying manager's links 
     4 
     50.1.2 
     6 
     7  * fixed bug: bad url in portlet_navigation form 
     8 
     90.1.1 
     10 
     11  * automatic selection default page for silo on portlet_navigation 
     12   
     13  * backward compatibility with 0.1.0 
     14 
    1150.1.0 
    216 
  • qSiloGroup/trunk/skins/qSiloGroup/getSiloData.py

    r739 r740  
    1 ## Controller Python Script "getSiloPortletData" 
     1## Controller Python Script "getSiloData" 
    22##bind container=container 
    33##bind context=context 
  • qSiloGroup/trunk/skins/qSiloGroup/getSiloNavigationDictionary.py

    r739 r740  
    2121    s = map(str, i.split('|')) 
    2222    try: 
    23         if s[1]: s[1] = '/'+s[1] 
    24         prop_dict[s[0]] = {'id': s[0], 'path':s[0]+s[1], 'title':s[2]} 
     23        if len(s) == 2: 
     24            title = s[1] 
     25            path = s[0] 
     26        else: 
     27            if s[1]: s[1] = '/'+s[1] 
     28            title = s[2] 
     29            path = s[0] + s[1] 
     30        prop_dict[s[0]] = {'id': s[0], 'path':path, 'title':title} 
    2531    except: continue 
    2632 
  • qSiloGroup/trunk/skins/qSiloGroup/portlet_navigation.pt

    r739 r740  
    3131        </ul> 
    3232    </dd> 
     33    <dd class="portletFooter even" 
     34        tal:condition="python:getattr(silo.aq_explicit, 'portal_type','')=='Folder' and not isAnon and checkPermission('Manage Portal', silo)"> 
     35        <span> 
     36            <a tal:attributes="href string:${silo/absolute_url}/folder_contents;"> 
     37                Contents</a> &nbsp;|&nbsp; 
     38            <a tal:attributes="href string:${silo/absolute_url}/silo_navigation_form;"> 
     39                Edit Nav</a> 
     40        </span> 
     41     </dd> 
    3342</dl> 
    3443 
  • qSiloGroup/trunk/version.txt

    r739 r740  
    1 0.1.0 
     10.1.3