Changeset 793


Ignore:
Timestamp:
16.11.2009 15:47:15 (2 years ago)
Author:
cmeier
Message:

zms-2.12.0-02

Location:
ZMS/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • ZMS/trunk/changes.txt

    r792 r793  
    13851385+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
    13861386-------------------------------------------------- 
     13872009-10-29:zms2-2.12.0-02 
     1388[01277] Applied fix for SQL-Datasource: ignore-case checking of table-type (contributed by C. Meier). 
     1389[01278] Applied fix for adding link-elements to link-containers (reported by fh). 
     1390Risk: Adding link-element zombies without prefix ('e')! 
     1391---------------------------------------------------------------------------------------------------- 
  • ZMS/trunk/dtml/ZMSContainerObject/manage_main.dtml

    r750 r793  
    1717><input type="hidden" name="lang" value="<dtml-var lang>" 
    1818><input type="hidden" name="preview" value="preview" 
    19 ><input type="hidden" id="id_prefix" name="id_prefix" 
     19><input type="hidden" id="id_prefix" name="id_prefix" value="e" 
    2020><input type="hidden" id="_sort_id" name="_sort_id:int" value="0" 
    2121><input type="hidden" id="custom" name="custom" value="" 
  • ZMS/trunk/dtml/ZMSObject/manage_main.dtml

    r750 r793  
    2222   ><input type="hidden" name="preview" value="preview" 
    2323   ><input type="hidden" name="form_id" value="<dtml-var ZMI_TIME>" 
    24    ><input type="hidden" id="id_prefix" name="id_prefix" 
     24   ><input type="hidden" id="id_prefix" name="id_prefix" value="e" 
    2525   ><input type="hidden" id="_sort_id" name="_sort_id:int" value="0" 
    2626   ><input type="hidden" id="custom" name="custom" value="" 
  • ZMS/trunk/version.txt

    r792 r793  
    1 ZMS2 2.12.0-01 
     1ZMS2 2.12.0-02 
  • ZMS/trunk/zmssqldb.py

    r752 r793  
    455455          tableName = getattr(tableBrwsr,'Name',getattr(tableBrwsr,'name',None))() 
    456456          tableType = getattr(tableBrwsr,'Type',getattr(tableBrwsr,'type',None))() 
    457           if tableType == 'TABLE': 
     457          if tableType.upper() == 'TABLE': 
    458458            # +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+- 
    459459            # +- COLUMNS 
Note: See TracChangeset for help on using the changeset viewer.