Changeset 142

Show
Ignore:
Timestamp:
Fri Dec 15 07:04:10 2006
Author:
manatlan
Message:

- plugin multiexport : upload to flickr works now very well, thanx to
pieter

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/plugins/multiexport/__init__.py

    r140 r142  
    379 379  
    380 380     def validateWin(self,url):  
    381           self.openURL("http://flickr.com/services/auth/?"+url)  
      381          
    381 381         msg=_("""You need to give jBrout permission to upload your photos to Flickr.  
    382   This is done via a Flickr-session in which you are logged in.  
    383   You must give your permission in the opened browser.  
      382 This is done via a Flickr-session in your web browser to which you are logged in.  
    384 383  
    385   After you give your permission, you could press the OK-button.""")  
    386           self.MessageBox(msg,_("Export to Flickr"))  
      384 If you press the OK-button, jBrout will open your browser.  
      385 When done, return to jBrout to finish the authentication procedure.""")  
      386         self.MessageBox(msg, _("Export to Flickr"))  
      387         self.openURL("http://flickr.com/services/auth/?"+url)  
      388         self.MessageBox(_("jBrout should now open a web broser. When you're done there, return to this message box and click the OK-button."),_("Export to Flickr"))  
    387 389         return True  
  • trunk/plugins/multiexport/libs/flickr.py

    r140 r142  
    150 150  
    151 151     # Add a terminator  
    152       terminator = "--%s--" % boundary  
      152     terminator = "\r\n--%s--" % boundary  
    152 152     terminator = terminator.encode("utf_8")  
    153 153     post_data += terminator