Changes between Initial Version and Version 3 of Ticket #7415


Ignore:
Timestamp:
Jun 16, 2008, 10:24:00 AM (16 years ago)
Author:
Ramiro Morales
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7415 – Description

    initial v3  
    11Right now (revision 7612) AdminFileWidget is implemented this way:
    2  if value:
    3             output.append('%s <a target="_blank" href="%s%s">%s</a> <br />%s ' % \
     2
     3{{{
     4if value:
     5    output.append('%s <a target="_blank" href="%s%s">%s</a> <br />%s ' % \
    46                (_('Currently:'), settings.MEDIA_URL, value, value, _('Change:')))
     7}}}
    58
    69The value in database contains \ as a path separator. It is shown as a url instead of needed / separator for urls. Works as is under Unix, but clearly not on Windows.
Back to Top