Changeset 3650 in products


Ignore:
Timestamp:
Apr 17, 2013 12:55:40 PM (11 years ago)
Author:
potar
Message:

back to development: 1.8.1

Location:
quintagroup.plonegooglesitemaps/trunk
Files:
3 edited

Legend:

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

    r3510 r3650  
    11Changelog 
    22========= 
     3 
     41.8.1-dev(unreleased) 
     5--------------------- 
     6* Set the Content-type header for the verification file which 
     7  is added by user.  
     8   
    39 
    4101.8.0 (2012-08-22) 
  • quintagroup.plonegooglesitemaps/trunk/quintagroup/plonegooglesitemaps/browser/configletview.py

    r3510 r3650  
    174174            vfile = request.get("verification_file") 
    175175            vfilename, vftitle = cookId("", "", vfile) 
    176             portal.manage_addFile(id="", file=vfile, title=comment) 
     176            portal.manage_addFile( 
     177                id="", 
     178                file=vfile, 
     179                title=comment, 
     180                content_type='text/plain', 
     181            ) 
    177182            portal[vfilename].manage_addProperty( 
    178183                'CreatedBy', 'quintagroupt.plonegooglesitemaps', 'string') 
  • quintagroup.plonegooglesitemaps/trunk/setup.py

    r3596 r3650  
    33import os 
    44 
    5 version = '1.8.0' 
     5version = '1.8.1-dev' 
    66 
    77tests_require = ['zope.testing', 
Note: See TracChangeset for help on using the changeset viewer.