Ignore:
Timestamp:
13 Jan 2015, 07:59:19 (10 years ago)
Author:
Henrik Bettermann
Message:

Do not restrict download_filename length.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/documents/fileviewlets.py

    r12446 r12458  
    4545    @property
    4646    def download_filename(self):
    47         return u"%s.pdf" % self.context.document_id[:9]
     47        return u"%s.pdf" % self.context.document_id
    4848
    4949
     
    6161    @property
    6262    def download_filename(self):
    63         return u"%s.pdf" % self.context.document_id[:9]
     63        return u"%s.pdf" % self.context.document_id
    6464
    6565
     
    7474    @property
    7575    def download_filename(self):
    76         return u"%s" % self.context.document_id[:9]
     76        return u"%s" % self.context.document_id
    7777
    7878    def update(self):
Note: See TracChangeset for help on using the changeset viewer.