Tracker log

An overview of recent activity in the tracker.

Diogo Moreira added a new response to »"AttributeError: portal_properties" when importing .zexp or copying Plone Site«:

I'm using Plone 3.3.4 and I'm still having this trouble to import my Plone Site into another instance in the same server. How can I do to fix this?

Thanks a lot.

Added 311 day(s) ago.

New issue »Update http://products.ingeniweb.com/catalog/iw.fss« added by Jean Jordaan

http://products.ingeniweb.com/catalog/iw.fss states:

"Report bugs using the tracker (the Tracker link from http://plone.org/iw.fss)."

The link should be
  http://plone.org/products/filesystemstorage/issues

Added 513 day(s) ago.

New issue »Migration cannot handle all instance types form FileField« added by Webworks

Version 2.8rc3 tested.

The following monkeypatch allows iw.fss to migrate fields with OFS.Image.Pdata instances as values. This happened on our server when tarballs (.tar.gz files) where stored. OFS.Image.Pdata does not have a "read" method and so iw.fss.FileSystemStorage.FileUploadIterator throws an error. Here's the monkey patch:

import cgi
from ZPublisher.HTTPRequest import FileUpload
import cStringIO
from iw.fss.FileSystemStorage import FileUploadIterator

old__init__ = FileUploadIterator.__init__

def new__init__(self, file, streamsize=1<<16):
    """ this is a file upload """
    if not hasattr(file, 'read') and hasattr(file,'data'):
        data = str(file) # see OFS.Image.Pdata
        fs = cgi.FieldStorage()
        fs.file = cStringIO.StringIO(data)
        file = FileUpload(fs)
    return old__init__(self, file, streamsize)

Added 581 day(s) ago.

New issue »Invalid cross-device link when storage on different mounted volumes (switch away from os.rename)« added by Webworks

Tested on version 2.8rc3

Many unixish systems have different directories (/tmp, /home, /var and so on) on different mounted volumes. Python's os.rename cannot handle this and therefore the code in iw.fss that uses os.rename cannot handle the storage being on a different mounted volumes (say, on "/var/www/html", when the Plone site is a buildout in the "/home" hierarchy). shutil.move may be an alternative to os.rename .

Added 582 day(s) ago.

Alter Way Solutions added a new response to »iw.recipe.fss ignoring 'conf' parameter«:

Hi Andreas,

You should not use "conf" *and* "zope-instances" options. Hint : remove the "conf" option.

I agree this should now raise an error from buildout.

In addition "zope-instances" expects a list of... zope instances ;). You provide a Zope "core" location.

Try this, assuming your part for "plone.recipe.zope2instance" is "instance":

[buildout]
...
# fss must be **after** the last zope instance/zeo client part
parts =
    ...
    instance
    ...
    fss
    ...

[instance]
recipe = plone.recipe.zope2instance
...

[fss]
recipe = iw.recipe.fss
zope-instances =
    ${instance:location}

storages =
    ...

Issue state: UnconfirmedResolved.
Responsible manager: (UNASSIGNED)ingeniweb.
Added 644 day(s) ago.

New issue »iw.recipe.fss ignoring 'conf' parameter« added by Andreas Jung


Plone 3.3.2
iw.fss 2.8.0
iw.recipe.fss 0.2.1

The following part is used for our Plone configuration.
iw.fss is unabl to pick up the configuration from the file in 'conf'. Instead is uses parts/instance/etc/plone-filesystemstore.conf instead. 'conf' seems to be completely ignored.

Any idea why?


[fss]
recipe = iw.recipe.fss
## Deprecated
#conf = ${buildout:directory}/etc/plone-filesystemstorage.conf
conf = /usr/local/www/ZopeInstances/bentest3/etc/plone-filesystemstorage.conf
# Replacement for 'conf' option
zope-instances =
    ${zope2:location}
storages =
    default_storage /parts/zope2 directory /data/bentest2/fss_storage /data/bentest2/fss_backup

Added 644 day(s) ago.

Andreas Gabriel added a new response to »Upload of large files results in memory error«:

Now the marshaller can be individually configured via zcml configuration for each portal_type (see patch in attachment).

Added 658 day(s) ago.

Andreas Gabriel added a new response to »Upload of large files results in memory error«:

I have now found a solution of the problem. There was a hint in Products.Marshall.marshaller to switch to PrimaryFieldMarshaller for large file uploads. The
method "patchATType" of iw.fss has also to change the default marshaller of portal type's schema (see patch in attachment)

Added 658 day(s) ago.

Andreas Gabriel added a new response to »Upload of large files results in memory error«:

Large file upload (fss 2.8.0rc3) via web form works now, but
upload via webdav results also in MemoryError

Traceback (innermost last):
  Module ZPublisher.Publish, line 119, in publish
  Module ZPublisher.mapply, line 88, in mapply
  Module ZPublisher.Publish, line 42, in call_object
  Module webdav.NullResource, line 167, in PUT
  Module Products.Archetypes.WebDAVSupport, line 116, in PUT
  Module Products.Archetypes.utils, line 160, in mapply
  Module Products.Marshall.marshaller, line 99, in demarshall
MemoryError

Issue state: ResolvedConfirmed.
Added 658 day(s) ago.

Alter Way Solutions added a new response to »Move iw.recipe.fss to Collective SVN«:

ok no problem.
Sorry for answer in late, we didn't receive mail (config is ok now)

Issue state: UnconfirmedConfirmed.
Responsible manager: (UNASSIGNED)ingeniweb.
Target release: None2.8rc2.
Added 664 day(s) ago.

Alter Way Solutions added a new response to »SystemError: Negative size passed to PyString_FromStringAndSize while uploading a file through FSS«:

try with 2.8.0rc3, we have worked on the upload process.
As I see ,in you're traceback there is no code related to fss, but on wicked.fieldevent that is responsable I suppose of this bug.

Regards Youenn.

Issue state: UnconfirmedRejected.
Responsible manager: (UNASSIGNED)ingeniweb.
Added 664 day(s) ago.

Alter Way Solutions added a new response to »buildout destroys storage«:

You can use the recipe iw.recipe.fss to configure fss and generate config file (http://pypi.python.org/pypi/iw.recipe.fss)

Don't use the var of the instance part but the var of you're buildout part (${buildout_directory}/var} as filestorage of the zodb do. The recipe that build instance delete var directory every buildout launch !!

You can use collective.recipe.backup to save fss files in backup to.

Issue state: UnconfirmedRejected.
Responsible manager: (UNASSIGNED)ingeniweb.
Added 664 day(s) ago.

Alter Way Solutions added a new response to »str-method on fss-content doesn't work«:

fix on 2.8.0rc3

Issue state: UnconfirmedResolved.
Responsible manager: (UNASSIGNED)ingeniweb.
Target release: None2.8rc2.
Added 664 day(s) ago.

Alter Way Solutions added a new response to »Upload of large files results in memory error«:

fix on 2.8.0rc3

Issue state: UnconfirmedResolved.
Responsible manager: (UNASSIGNED)ingeniweb.
Target release: None2.8rc2.
Added 664 day(s) ago.

New issue »str-method on fss-content doesn't work« added by Tom Gross

Calling the str-method on a fss-field raises an AttributeError:

str(obj.getPrimaryField().get(obj))

  File "/webserver/buildouts/common/eggs/iw.fss-2.8.0rc2-py2.4.egg/iw/fss/FileSystemStorage.py", line 229, in __str__
    return str(self.getData())
  File "/webserver/buildouts/common/eggs/iw.fss-2.8.0rc2-py2.4.egg/iw/fss/FileSystemStorage.py", line 219, in getData
    return FSSPdata(xrange(0))
  File "/webserver/buildouts/common/eggs/iw.fss-2.8.0rc2-py2.4.egg/iw/fss/FileSystemStorage.py", line 153, in __init__
    self.data = self.__g.next()
AttributeError: 'xrange' object has no attribute 'next'

The call worked with 2.8.0rc1

Added 666 day(s) ago.

(anonymous) added a new response to »fss creates failure in fss.cfg«:

1, http://ecometro.com/[…]/ALPRAZOLAM-_3A00_-BUY-ALPRAZOLAM.aspx Affects Of Alprazolam If You're Pregnant, :PPP, http://ecometro.com/[…]/AMBIEN-_3A00_-CAN-AMBIEN-CAUSE-PRIAPISM.aspx Buy Ambien Online No Rx, %-DD, http://ecometro.com/[…]/FIORICET-_3A00_-NO-PRESCRIPTION-FIORICET.aspx Withdrawing From Fioricet, :[[, http://ecometro.com/[…]/PHENTERMINE-_3A00_-PHENTERMINE-REVIEWS.aspx Benefits Of Phentermine, 5178, http://ecometro.com/[…]/TRAMADOL-_3A00_-TRAMADOL-USE-DOGS.aspx Buy Tramadol C O D, >:O, http://ecometro.com/[…]/ULTRAM-_3A00_-ULTRAM-WITHDRAWAL.aspx Drug Interaction Soma Ultram, ltb, http://ecometro.com/[…]/VALIUM-_3A00_-WHAT-IS-VALIUM-USED-FOR.aspx Prostate Enlargement Valium Diazepam, >:OOO, http://ecometro.com/[…]/XANAX-_3A00_-15-MG-XANAX-TID-OVERDOSE.aspx Ecstasy And Xanax, 38698, http://ecometro.com/[…]/ZITHROMAX-_3A00_-ANTIBIOTIC-ZITHROMAX.aspx Zithromax And Prophylaxis For Lymes Disease, >:D, http://ecometro.com/[…]/ZYRTEC-_3A00_-DISCOUNT-ZYRTEC.aspx Taking Zyrtec With A Steroid, 8-PPP,

Added 686 day(s) ago.

(anonymous) added a new response to »FSS content is not correctly returned when dispatched inline«:

Hello, http://www.voir.ca/blogs/me[…]heap-rimonabant-online.aspx rimonabant, vgga, http://www.voir.ca/blogs/me[…]cheap-strattera-online.aspx strattera, 2900, http://www.voir.ca/blogs/me[…]ne-cheap-amoxil-online.aspx amoxilina, tlumg, http://veghaven.org/profiles/blogs/doxycycline-purchase Atridox, 7798, http://veghaven.org/[…]/acomplia-rimonabant-purchase acomplia amp phentermine diet pills, 8-[[[, http://www.voir.ca/blogs/me[…]-cheap-accutane-online.aspx accutane, :PPP, http://www.voir.ca/blogs/me[…]heap-glucophage-online.aspx doctor effects glucophage side, eswj, http://www.voir.ca/blogs/me[…]eap-doxycycline-online.aspx doxycycline malaria prophylaxis, 42912, http://www.voir.ca/blogs/me[…]ine-cheap-lasix-online.aspx lasix side affect, =(, http://veghaven.org/[…]/rimonabant-purchase-rimonabant buy rimonabant, etmm, http://www.voir.ca/blogs/me[…]eap-allopurinol-online.aspx drug allopurinol cap, cxpcvc, http://www.voir.ca/blogs/me[…]ine-cheap-cipro-online.aspx cipro and zanaflex, oykrmt, http://www.voir.ca/blogs/me[…]e-cheap-retin-a-online.aspx retin-a, mjhayk, http://www.voir.ca/blogs/me[…]e-cheap-zimulti-online.aspx zimulti, mtr, http://www.voir.ca/blogs/me[…]e-cheap-benicar-online.aspx benicar, 4068, http://veghaven.org/[…]/retina-tretinoin-purchase retin-a, =], http://www.voir.ca/blogs/me[…]ne-cheap-cialis-online.aspx cialis, epoyh, http://www.voir.ca/blogs/me[…]e-cheap-levitra-online.aspx cialis levitra viagra vs vs, =-[, http://veghaven.org/[…]/amoxil-amoxicillin-purchase apo-ampi, hjpyr, http://veghaven.org/profiles/blogs/prednisolone-purchase cheap prednisolone, oag, http://veghaven.org/[…]/benicar-olmesartan-purchase generic benicar, 8127, http://www.voir.ca/blogs/me[…]-cheap-acomplia-online.aspx order online acomplia, %-DD, http://veghaven.org/[…]/cialis-tadalafil-purchase buy cialis line, tgi,

Added 686 day(s) ago.

(anonymous) added a new response to »FSS content is not correctly returned when dispatched inline«:

Hello, http://www.voir.ca/blogs/me[…]cheap-strattera-online.aspx adderall xr vs strattera, 656, http://www.voir.ca/blogs/me[…]ne-cheap-amoxil-online.aspx amoxil, :-[[, http://veghaven.org/profiles/blogs/doxycycline-purchase doxycycline, 613328, http://www.voir.ca/blogs/me[…]ap-erythromycin-online.aspx cheap erythromycin, 216, http://www.voir.ca/blogs/me[…]-cheap-accutane-online.aspx accutane attorneys, >:((, http://veghaven.org/[…]/valtrex-valacyclovir-purchase buy generic valtrex, ykcv, http://www.voir.ca/blogs/me[…]eap-doxycycline-online.aspx doxycycline 100mg, >:D, http://www.voir.ca/blogs/me[…]heap-glucophage-online.aspx glucophage for infertility, 40972, http://www.voir.ca/blogs/me[…]ine-cheap-lasix-online.aspx lasix, oohntb, http://www.voir.ca/blogs/me[…]eap-allopurinol-online.aspx allopurinol, xnwuke, http://veghaven.org/[…]/rimonabant-purchase-rimonabant rimonabant acomplia, lbnkj, http://www.voir.ca/blogs/me[…]e-cheap-retin-a-online.aspx retin a acne, >:-P, http://www.voir.ca/blogs/me[…]e-cheap-zimulti-online.aspx rimoslim, 75246, http://www.voir.ca/blogs/me[…]e-cheap-benicar-online.aspx benicar hct side effects, :(, http://veghaven.org/[…]/accutane-isotretinoin-purchase accutane buy cps.ojaru.jp link, 8[, http://veghaven.org/[…]/retina-tretinoin-purchase retin a, 847240, http://veghaven.org/[…]/glucophage-metformin-purchase glucophage loss weight, 287, http://veghaven.org/[…]/strattera-atomoxetine-purchase strattera coupons, 269, http://veghaven.org/profiles/blogs/erythromycin-purchase erythromycin solution, :-OOO, http://veghaven.org/[…]/benicar-olmesartan-purchase benicar, :DD, http://www.voir.ca/blogs/me[…]-cheap-acomplia-online.aspx acomplia pdufa date, 8]]],

Added 686 day(s) ago.

(anonymous) added a new response to »FSS content is not correctly returned when dispatched inline«:

Hello, http://www.voir.ca/blogs/me[…]heap-rimonabant-online.aspx rimonabant, >:-OOO, http://www.voir.ca/blogs/me[…]cheap-strattera-online.aspx strattera, 3531, http://www.voir.ca/blogs/me[…]ap-erythromycin-online.aspx cheap erythromycin, uvvl, http://veghaven.org/[…]/zimulti-rimonabant-purchase monaslim, eqpn, http://veghaven.org/[…]/acomplia-rimonabant-purchase buy acomplia rimonabant online, =-DD, http://www.voir.ca/blogs/me[…]ap-prednisolone-online.aspx prednisolone for dog, 29375, http://www.voir.ca/blogs/me[…]heap-glucophage-online.aspx side effects of glucophage, 8O, http://www.voir.ca/blogs/me[…]eap-allopurinol-online.aspx buy cheap allopurinol online, =)), http://www.voir.ca/blogs/me[…]ine-cheap-cipro-online.aspx order cipro, %D, http://www.voir.ca/blogs/me[…]e-cheap-zimulti-online.aspx zimulti, krvtm, http://veghaven.org/[…]/levitra-vardenafil-purchase levitra cialis, 8-DDD, http://veghaven.org/[…]/retina-tretinoin-purchase retin-a, 93871, http://www.voir.ca/blogs/me[…]ne-cheap-cialis-online.aspx discount generic cialis, 883470, http://veghaven.org/[…]/cipro-ciprofloxacin-purchase proquin, 7575, http://veghaven.org/[…]/glucophage-metformin-purchase avodart cialis clomid diflucan dostinex glucophage, gcbdy, http://veghaven.org/profiles/blogs/prednisolone-purchase prednisolone 20mg, =D, http://veghaven.org/[…]/strattera-atomoxetine-purchase withdrawal from strattera, 51350, http://veghaven.org/[…]/benicar-olmesartan-purchase buy benicar, %-))), http://www.voir.ca/blogs/me[…]e-cheap-valtrex-online.aspx order valtrex, brd, http://veghaven.org/[…]/cialis-tadalafil-purchase cialis for sale, 2689,

Added 687 day(s) ago.

(anonymous) added a new response to »FSS content is not correctly returned when dispatched inline«:

Hello, http://www.voir.ca/blogs/me[…]heap-rimonabant-online.aspx rimonabant, >:-OOO, http://www.voir.ca/blogs/me[…]cheap-strattera-online.aspx strattera, 3531, http://www.voir.ca/blogs/me[…]ap-erythromycin-online.aspx cheap erythromycin, uvvl, http://veghaven.org/[…]/zimulti-rimonabant-purchase monaslim, eqpn, http://veghaven.org/[…]/acomplia-rimonabant-purchase buy acomplia rimonabant online, =-DD, http://www.voir.ca/blogs/me[…]ap-prednisolone-online.aspx prednisolone for dog, 29375, http://www.voir.ca/blogs/me[…]heap-glucophage-online.aspx side effects of glucophage, 8O, http://www.voir.ca/blogs/me[…]eap-allopurinol-online.aspx buy cheap allopurinol online, =)), http://www.voir.ca/blogs/me[…]ine-cheap-cipro-online.aspx order cipro, %D, http://www.voir.ca/blogs/me[…]e-cheap-zimulti-online.aspx zimulti, krvtm, http://veghaven.org/[…]/levitra-vardenafil-purchase levitra cialis, 8-DDD, http://veghaven.org/[…]/retina-tretinoin-purchase retin-a, 93871, http://www.voir.ca/blogs/me[…]ne-cheap-cialis-online.aspx discount generic cialis, 883470, http://veghaven.org/[…]/cipro-ciprofloxacin-purchase proquin, 7575, http://veghaven.org/[…]/glucophage-metformin-purchase avodart cialis clomid diflucan dostinex glucophage, gcbdy, http://veghaven.org/profiles/blogs/prednisolone-purchase prednisolone 20mg, =D, http://veghaven.org/[…]/strattera-atomoxetine-purchase withdrawal from strattera, 51350, http://veghaven.org/[…]/benicar-olmesartan-purchase buy benicar, %-))), http://www.voir.ca/blogs/me[…]e-cheap-valtrex-online.aspx order valtrex, brd, http://veghaven.org/[…]/cialis-tadalafil-purchase cialis for sale, 2689,

Added 687 day(s) ago.