Changes between Initial Version and Version 1 of Ticket #11364, comment 3


Ignore:
Timestamp:
Oct 29, 2013, 5:38:39 PM (10 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #11364, comment 3

    initial v1  
    11To be able to use image maps I replaced the lines of code as listed below. Hopefully the only Python 2.4 compatibility issues. I now compiles fine. It worked in Chrome but not a clickable map in Internet Explorer 11.
    2 
     2{{{#!python
    33    cmap = self._read_cmapx_from_file(img_id) if \
    44        self._is_cmapx_existing(img_id) else ''
    5 
     5}}}
    66with:
    7 
     7{{{#!python
    88    if self._is_cmapx_existing(img_id):
    99        cmap = self._read_cmapx_from_file(img_id)
    1010    else:
    1111        cmap = ''
     12}}}