Changeset 3642 in products


Ignore:
Timestamp:
Apr 4, 2013 12:19:16 PM (11 years ago)
Author:
kroman0
Message:

Use remote url for links

Location:
quintagroup.dropdownmenu/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.dropdownmenu/trunk/docs/HISTORY.txt

    r3637 r3642  
    11Changelog 
    22========= 
     3 
     41.2.13 - April 04, 2013 
     5 
     6* Use getRemoteUrl for links [kroman0] 
    37 
    481.2.12 - April 02, 2013 
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/browser/templates/sections_recurse.pt

    r3631 r3642  
    88                             is_in_path      node/currentParent; 
    99                             li_id           string:portaltab-${node/id}-level$level; 
     10                             item_url        node/getURL; 
     11                             item_remote_url node/getRemoteUrl; 
     12                             link_remote     node/link_remote|nothing; 
     13                             item_url        python:link_remote and item_remote_url or item_url; 
    1014                             li_curr_class   python:is_current and 'selected' or ''; 
    1115                             li_extr_class   python:(is_in_path and not is_current) and 'selected' or ''; 
     
    2024                            item_type node/normalized_portal_type | nothing; 
    2125                            a_class python:children and 'hasChildrens' or nothing" 
    22                     ><a tal:attributes="href node/getURL; 
     26                    ><a tal:attributes="href item_url; 
    2327                                        title node/Description|nothing; 
    2428                                        class a_class" 
  • quintagroup.dropdownmenu/trunk/setup.py

    r3637 r3642  
    22import os 
    33 
    4 version = '1.2.12' 
     4version = '1.2.13' 
    55 
    66tests_require = ['zope.testing', 
Note: See TracChangeset for help on using the changeset viewer.