[Product-Developers] [plone.app.imaging] rendered scales will be persisted?

2011-05-25 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Just to be be sure: I am right that pone.app.imaging will persist a calculated image based on custom height/width parameters? Andreas -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.11 (Darwin) Comment: Using GnuPG with Mozilla -

[Product-Developers] ComponentLookupErrors with various add-ons unter Plone 4.1

2011-08-12 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I encountered the following error with multiple add-ons under Plone 4.1 (working nicely with Plone 4.0). Any idea? - -aj /__init__.py, line 86, in prepare self.startZope() File

Re: [Product-Developers] Alternative Editors to Kupu and FCKeditor

2011-09-10 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stay with TinyMCE - since it is part of Plone and therefore supported in some way. We checked collective.chkeditor as an alternative (for Produce Publish) - it's has more serious flaws than TinyMCE for Plone. - -aj Tom Gross wrote: hi there is

Re: [Product-Developers] Timeout decorator on external service call

2011-12-05 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 It's truly not recommendable calling external webservice from within a worker thread. If all of the (four) worker threads of Zope run into a timeout then you are doomed. Your complete system will be blocked and modifying the socket time out is also a

Re: [Product-Developers] How attached to POI issue trackers are we?

2012-02-08 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry guys but once again: you can not force a project to move to Github (sources and trackers) without explicit agreement of the package owner or current package maintainer - at least not for active packages where let's say the issue tracker is

[Product-Developers] [Dexterity] How to register a browser:page?

2012-02-09 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 browser:page ZCML registrations require a class or an interface. But how to I register a browser:page for a dexterity type that has been defined through the web? It seems to be possible to catch all Dexterity instance using a registration for

[Product-Developers] [LinguaPlone/plone.app.multilingual] Creation of in-between folders

2012-03-21 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, we are currently working in a large multi-lingual portal and we will use either LinguaPlone or plone.app.multilingual. The portal will be delivered with full content in DE to the customer. Translating the content to other languages is up

[Product-Developers] [LanguageTool] language codes in URL...

2012-04-10 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, portal_languages supports to switch the language if there is a language code present in the URL path (like /en or /de) - fine. This is fine for _anonymous_ site visitors where e.g. the language of the forms (in particular the extended

Re: [Product-Developers] [LanguageTool] language codes in URL...

2012-04-10 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Martijn Pieters wrote: As Laurence points out, you can provide your own language negotiator that ignores the top-level language folder when logged in. Sounds reasonable however my debugger tells me that the security context inside the

Re: [Product-Developers] [LanguageTool] language codes in URL...

2012-04-10 Thread Andreas Jung
...workaround: I wrote a post-traversal hook (IPubAfterTraversal subscriber) where I could implement the desired behavior easily. - -aj Andreas Jung wrote: Martijn Pieters wrote: As Laurence points out, you can provide your own language negotiator that ignores the top-level language

Re: [Product-Developers] [LanguageTool] language codes in URL...

2012-04-10 Thread Andreas Jung
See http://pastie.org/3766124 -aj Mikko Ohtamaa wrote: Anyway...workaround: I wrote a post-traversal hook (IPubAfterTraversal subscriber) where I could implement the desired behavior easily. Care to drop some pointers to pastebin? -Mikko -- Mikko Ohtamaa

Re: [Product-Developers] [LanguageTool] language codes in URL...

2012-04-11 Thread Andreas Jung
/ Cordialement, JeanMichel FRANCOIS Find me on Twitter http://twitter.com/toutpt / Retrouvez moi sur Twitter http://twitter.com/toutpt_nantes Le 11 avril 2012 06:33, Andreas Jung li...@zopyx.com mailto:li...@zopyx.com a écrit : See http://pastie.org/3766124 -aj Mikko Ohtamaa wrote

Re: [Product-Developers] [LanguageTool] language codes in URL...

2012-04-11 Thread Andreas Jung
on Twitter http://twitter.com/toutpt / Retrouvez moi sur Twitter http://twitter.com/toutpt_nantes Le 11 avril 2012 06:33, Andreas Jung li...@zopyx.com mailto:li...@zopyx.com a écrit : See http://pastie.org/3766124 -aj Mikko Ohtamaa wrote: Anyway...workaround: I wrote a post

Re: [Product-Developers] Introducing collective.grok

2012-04-16 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 What particular problem will be solved here? Your example is just a 1:1 transformation from ZCML to Python. When I read Grok then I associate simplification and auto-configuration (some magic under the hood making my life easier). I am missing this

[Product-Developers] [JS/Plone 4.2] How to register onload handlers properly?

2012-04-17 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Short version: what is the correct way to register a custom onload handler with Plone 4.2? Background: I am using code ($(document).ready(...)) like

[Product-Developers] Default page filter in navigation portlet

2012-04-22 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Does anyone know where the default page of a folder is filtered out? The navigation portlet won't display an object if it is set as default page of a folderish object. Our editors find this behavior weird - so I need to revert it. I would prefer if

Re: [Product-Developers] Default page filter in navigation portlet

2012-04-22 Thread Andreas Jung
/ Retrouvez moi sur Twitter http://twitter.com/toutpt_nantes Le 22 avril 2012 15:29, Andreas Jung li...@zopyx.com mailto:li...@zopyx.com a écrit : Does anyone know where the default page of a folder is filtered out? The navigation portlet won't display an object if it is set as default

[Product-Developers] [plone.app.iterate] Why is working copy support tied to versioning?

2012-04-25 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I wonder why the working copy support of Plone is only working for content-types with versioning enabled? Is there any particular reason because I consider both features (working copy support and versioning) independent of each other.

Re: [Product-Developers] How to search and sort content based on owner last login time?

2012-05-13 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Sorry but you don't know what you are doing. You retrieve the last_login time *once* and pass the value to a date range query. That's it - nothing more, nothing less. - -aj zjs2k wrote: Sorry I didn't make it clear. I want to list and sort contents

Re: [Product-Developers] DataGridField

2012-07-05 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Héctor Velarde wrote: On 05/07/12 01:46, ajung wrote: What is the real usecase for storing empty data rows? what is the point on answering a question with another question that clarifies nothing? You had a bad night? There are enough

Re: [Product-Developers] DataGridField

2012-07-05 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Servilio Afre Puentes wrote: On Thu, 05 Jul 2012 15:29:32 +0200, Andreas Jung li...@zopyx.com wrote: Héctor Velarde wrote: On 05/07/12 01:46, ajung wrote: What is the real usecase for storing empty data rows? I think it is to understand

Re: [Product-Developers] Add new field to News Item

2012-07-27 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Two perfectly fine answers are not enough? http://plone.293351.n2.nabble.com/Add-field-to-News-Item-tp7557385.html - -aj Hernã Saldanha wrote: Dear friends, I need to put a new field into News Item content type, another image field. This

Re: [Product-Developers] [ANN] collective.newsflash

2012-09-25 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Honestly: pretty much unpolished for a 1.0 release. See screenshot. - -aj Héctor Velarde wrote: we are pleased to announce the release of version 1.0 of collective.newsflash, a news ticker inspired by the one on the BBC News website:

Re: [Product-Developers] [Dexterity] Why attribute storage instead of annotations

2012-10-01 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Martin Aspeli wrote: On 1 October 2012 15:15, Andreas Jung li...@zopyx.com wrote: Hi there, data defined through a schema in Dexterity seems to be stored directly as attribute on the persistent context object. Why is this the case? Wasn't

Re: [Product-Developers] Announcing collective.multilingual

2012-10-03 Thread Andreas Jung
And collective.multilingual fills exactly which gap? It's the LinguaPlone on top of all dexterity related-packages providing a similar UI functionality as LP? Andreas 2012/10/3 Ramon Navarro Bosch ramon...@gmail.com: We separated on 4 different packages because : * 1 for archetypes ( you can

[Product-Developers] Some Dexterity questions

2012-10-04 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, the Dexterity widget for related items seems to support to reference AT content. How about the other way round? Is it supposed to work to reference Dexterity content from AT content? If not: Dexterity content must not be referenceable from

[Product-Developers] Default value for fields introduced through a behavior

2012-11-16 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I have a Dexterity-based content-type that uses the following behavior: class IProductSelection2L(form.Schema): form.fieldset( 'product_selection2l', label=u'Produktauswahl', fields=['product_selection2l'], )

[Product-Developers] Better Subject widget for Dexterity types

2012-11-27 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The Subject widget for Dexterity content types (ICategorization behavior) currently uses a simple textarea (compared to more usable widget for AT types). Is there some more reasonable widget/behavior for 'Subject' available? A more approachable

Re: [Product-Developers] Announcing collective.ebook

2013-02-23 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 weasyprint is half-baked stuff - nothing for enterprise-level usage. - -aj Encolpe Degoute wrote: Do you know weasyprint : http://weasyprint.org/ It's a full python implementation of HTML to PDF transformation. They enter in the CSS3 working

[Product-Developers] Persistent broken five.intid.intid.IntIds after Plone 4.2 - 4.3 migration

2013-05-26 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Plone 4.3: calling img.target.to_object fails for all referenced objects of a Plone site migrated from Plone 4.2.X to Plone 4.3 /home/plone/.buildout/eggs/z3c.relationfield-0.6.2-py2.7.egg/z3c/relationfield/relation.py(111)_object() - -

Re: [Product-Developers] Persistent broken five.intid.intid.IntIds after Plone 4.2 - 4.3 migration

2013-05-26 Thread Andreas Jung
if upgrading to Dexterity 2. This is unfortunate but was necessary since no one has committed to maintaining the relation support, so it couldn't be submitted to be in core. David Glick (mobile) On May 26, 2013, at 6:30 AM, Andreas Jung li...@zopyx.com wrote: Plone 4.3: calling

[Product-Developers] Plone 4.3: AttributeError: 'FileChunk' object has no attribute 'read'

2013-05-26 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Next upgrade fun with Plone 4.3: 2013-05-26 19:24:47 ERROR root could not scale plone.namedfile.file.NamedImage object at 0x18f5c5f0 of 'http://zopyx.com:8089/Plone/de/rotator-1' Traceback (most recent call last): File

Re: [Product-Developers] Persistent broken five.intid.intid.IntIds after Plone 4.2 - 4.3 migration

2013-05-26 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Not working for me - neither with Chrome nor with Firefox. http://s14.directupload.net/file/d/3267/y8myh4zu_png.htm - -aj Nathan Van Gheem wrote: Working for me. No problems. On Sun, May 26, 2013 at 12:48 PM, Andreas Jung li...@zopyx.com

Re: [Product-Developers] Persistent broken five.intid.intid.IntIds after Plone 4.2 - 4.3 migration

2013-05-26 Thread Andreas Jung
26, 2013 at 1:01 PM, Andreas Jung li...@zopyx.com mailto:li...@zopyx.com wrote: The problem with addEventHandler remains. -aj Nathan Van Gheem wrote: Can anybody else confirm? I changed the js include for search.js to not be included on all pages, search the search page; however

Re: [Product-Developers] Plone CMIS components release

2013-05-27 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Awesome. Are there any technical barriers making content in CMS writable through Plone (through a lousely coupled integration)? Andreas Wim Boucquaert wrote: Hi all, Infrae has released three CMIS components into the Plone Collective to make

Re: [Product-Developers] pissed Generating the Dexterity boilerplate for Plone 4.3/pissed

2013-05-27 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Héctor Velarde wrote: having said so, we have to remember that, even as Dexterity is in Plone core now, as long as I understand it's not yet the preferred way of creating content types. You still have Archetypes and it will be there for long

Re: [Product-Developers] Plone CMIS components release

2013-06-01 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Karl Johan Kleist wrote: ajung wrote Not that I care much but I hear regularly of weird workarounds from people using Plone with MS Office and Windows. Support for WebDAV in Windows stinks. You say it. That's why it is sometimes hard standing

Re: [Product-Developers] Plone CMIS components release

2013-06-02 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Patrick Gerken wrote: Andreas Jung li...@zopyx.com schrieb: Karl Johan Kleist wrote: ajung wrote Not that I care much but I hear regularly of weird workarounds from people using Plone with MS Office and Windows. Support for WebDAV

[Product-Developers] collective.flowplayer 4.0 _broken_

2013-06-02 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, sorry but I have to continue to rant about Plone 4 and the reliability and quality of add-ons. Adding video support to Plone 4.2/4.3 is a frequently asked feature. collective.flowplayer 4.0 is still the solution that is supposed to use?

[Product-Developers] Getting hold of the context URL in JS

2013-09-28 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, it is 2013, we have Plone 4.3.2 and it still seems to be impossible getting hold of the URL of the current context object in Javascript? The variable is still not available from plone_javascript_variables.js. What is the recommended way for

[Product-Developers] ACE editor integration in Plone 4.3?

2013-10-06 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, does Plone ships with ACE editor integration? Wasn't ACE supposed to be used for plone.app.theming? I see that plone.resourceditor (seems to be outdated) contains the ACE editor but it is not used in Plone 4.3. So what is the state with ACE

[Product-Developers] plone.app.widgets/RelatedItemsWidget

2013-10-16 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I am trying to get the RelatedItemsWidget of plone.app.widgets flying with a Dexterity 2 content-type. I tried something like 17 class IConversion(form.Schema):$ 18 Project Folder $ 19 $ 20

[Product-Developers] Relation field issues with Dexterity 2

2013-10-17 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi there, I am trying to implement a simple one-to-one relationship between two Dexterity objects (zero or one related items). Nothing special from the code point of view: template = RelationChoice(title=uTemplate reference,

Re: [Product-Developers] conventions on version numbering

2013-10-30 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David Glick (Plone) wrote: On 10/30/13, 12:17 PM, Héctor Velarde wrote: according to our versioning scheme conventions, we should do the following: Given a version number MAJOR.MINOR.PATCH, increment the: * MAJOR version when you make

Re: [Product-Developers] conventions on version numbering

2013-10-31 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Christian Ledermann wrote: On Thu, Oct 31, 2013 at 8:37 AM, Andreas Jung li...@zopyx.com wrote: David Glick (Plone) wrote: On 10/30/13, 12:17 PM, Héctor Velarde wrote: according to our versioning scheme conventions, we should do the following

Re: [Product-Developers] Plone 4.3.2/plone.app.multilingual - 'Interface `plone.app.multilingual.interfaces.IMultiLanguageExtraOptionsSchema` defines a field `bypass_languageindependent_field_permissi

2013-11-02 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Looks like an upgrade problem with plone.app.multilingual (installed was v 1.0). Yet another upgrade pain. - -aj Andreas Jung wrote: Has anyone seen this error message (no further tracebacks)? 2013-11-02 11:18:15 ERROR plone.app.viewletmanager

Re: [Product Developers] Re: Insufficient Privileges when executing a script that modified content-objects.

2007-03-28 Thread Andreas Jung
--On 28. März 2007 19:14:02 + Zach Seifts [EMAIL PROTECTED] wrote: Martin, First off I wasn't sure which list to put it in. I am using the invokeFactory function like your saying in my script but that is to create the new object. I think I've got it narrowed down to whenever I try to

Re: [Product Developers] TextIndexNG3 / Catalog / Indexes

2007-03-29 Thread Andreas Jung
Please put this into the TXNG bugtracker. I'll look into this issue after my vacation. Andreas --On 29. März 2007 21:20:29 +0200 Kai Diefenbach [EMAIL PROTECTED] wrote: Hi (Andreas), I running across following issue concerning TextIndexNG3: after adding and removing some word to and from

Re: Event Handler

2007-05-26 Thread Andreas Jung
--On 26. Mai 2007 19:02:18 +0200 Godefroid Chapelle [EMAIL PROTECTED] wrote: Alain Hernandez Lopez wrote: Hello Often I've used events like at_post_create_script() , I need to use an event that activates when an object is deleted, and another that activates when Zope restart, please if

[Plone3.0] Some JS questions

2007-06-17 Thread Andreas Jung
Hi, some questions about doing it the plone-ish way in Plone 3.0.. Clicking on a document action icon should trigger a JS method that performs two tasks: - obtain the HTML code of the main slot - send the HTML fragment through a async POST request back to Plone It there some common API in

Re: Audit Log

2007-06-20 Thread Andreas Jung
--On 20. Juni 2007 16:32:42 -0300 Roberto Machado [EMAIL PROTECTED] wrote: Hi, I would like to know if there is any product that logs all changes in an object. Here is a moneky-patch we used in some project to keep track on per-field changes...perhaps a good starting point: -aj

Zope 2.10.4, 2.9.8 tagged - please test!!!

2007-07-04 Thread Andreas Jung
Hi, I just prepared the upcoming Zope releases. They are tagged as http://svn.zope.org/Zope/tags/2.10.4 http://svn.zope.org/Zope/tags/2.9.8 Tar-balls for testing are available from ftp://ftp.zopyx.com/zope Please test the releases - especially against the current Plone releases. I'll make

Re: Zope 2.10.4, 2.9.8 tagged - please test!!!

2007-07-04 Thread Andreas Jung
--On 4. Juli 2007 09:22:44 + Maurits van Rees [EMAIL PROTECTED] wrote: I tested the svn branches when you announced an upcoming release two weeks ago. I saw one problem on both branches, that I reported here with a fix: http://www.zope.org/Collectors/Zope/2337 Nothing serious, just

Re: .ics to Plone ATEvent, any reliable solution ?

2007-09-10 Thread Andreas Jung
--On 10. September 2007 00:47:21 -0700 bertdelongue [EMAIL PROTECTED] wrote: Hi all, I am trying to find my way in the jungle of plone events management and I am facing to a major gap in the plenty of possibibilities kindly offered by the Plone Developper's community. Is there any SIMPLE

Re: svn on production site

2007-10-03 Thread Andreas Jung
--On 3. Oktober 2007 16:08:12 +0100 Chris Derson [EMAIL PROTECTED] wrote: Quoting George Lee [EMAIL PROTECTED]: Is it acceptable practice to use svn checkouts on a production site? No. An SVN checkout is, almost by definition, _not_ Your referring to trunk checkout or something

Re: Can the testbrowser handle REQUEST.SESSION?

2007-10-19 Thread Andreas Jung
--On 19. Oktober 2007 22:29:35 -0200 Rodrigo Bernardo Pimentel [EMAIL PROTECTED] wrote: Hi! I have a product with one particular python script that, at a certain point, needs to set a value in SESSION. That seems to work fine when I try the product manually, but, when I was writing

Re: [Product-Developers] [Plone3/Navigation] creating a new navigation root

2007-12-17 Thread Andreas Jung
--On 17. Dezember 2007 17:37:45 +0100 Wichert Akkerman [EMAIL PROTECTED] wrote: Previously Andreas Jung wrote: during a workshop with a potential customer we came across the question if it would be possible to make a custom folder the root for the navigation. This means: the horizontal

Re: [Product-Developers] extending News Items with schemaextender in Plone 2.5

2007-12-17 Thread Andreas Jung
--On 17. Dezember 2007 22:34:54 -0600 Héctor Velarde [EMAIL PROTECTED] wrote: I'm starting a new project to extend Plone news items and include a bunch of new fields in order to support something called NITF (News Industry Text Format) using schemaextender. Are you using the *latest*

Re: [Product-Developers] Installing a product through its extension profile

2007-12-22 Thread Andreas Jung
--On 23. Dezember 2007 02:52:47 +0100 Wichert Akkerman [EMAIL PROTECTED] wrote: Previously Andreas Jung wrote: I created a new Plone 3 site using the PloneBoard extension profile (latest eggified PB version). After creating the site PB I was surprised that the PB content types showed up

[Product-Developers] Re: [Zope] Re: ZPL and GPL: What should one consider when choosing a license?

2007-12-26 Thread Andreas Jung
--On 26. Dezember 2007 18:56:43 -0800 Ross Patterson [EMAIL PROTECTED] wrote: The amusing thing is much of the most useful information I've gotten has been off list. :) It seems as though a creating an informative resource on licensing in the Zope and/or Plone communities is not possible

[Product-Developers] Overriding navigation.pt for the navigation portlet

2008-01-01 Thread Andreas Jung
Hi, for a recent project we had to create a customized version of navigation.pt in order to fulfill customer requirements. The current code is located in portal_view_customizations. What is the recommended way to integrate this file into a theme? AFAIK GS does not support

Re: [Product-Developers] Proposal: adding a pre-commit hook in the collective

2008-01-02 Thread Andreas Jung
--On 2. Januar 2008 04:53:30 -0800 Tarek Ziadé [EMAIL PROTECTED] wrote: Hello, I have found some places in the collective where the code has some CR ending line (^M) and some tabulation. It has broken some products lately with indentation problems, (LinguaPlone, PloneBoard IIRC) I would

Re: [Product-Developers] Non persistent data

2008-01-11 Thread Andreas Jung
--On 10. Januar 2008 20:46:42 +0200 George Gozadinos [EMAIL PROTECTED] wrote: Hi, I'm developing a kss-based live chat product to be released as open source. While the basic functionality is working, I have the following problem. I would like to avoid storing messages sent by users to the

Re: [Product-Developers] Dynamic resources

2008-01-16 Thread Andreas Jung
--On 16. Januar 2008 01:13:07 -0800 Tarek Ziadé [EMAIL PROTECTED] wrote: Hello, I was wondering how you guys work with dynamic resources like css files or js files, that need templating under Plone 3. What do you mean with need templating. So far the resource registry were sufficient

Re: [Product-Developers] PloneGetPaid Question

2008-01-17 Thread Andreas Jung
--On 18. Januar 2008 01:15:44 -0500 Eric S. Tyrer II [EMAIL PROTECTED] wrote: Hi. I would like to know if the PloneGetPaid product supports a USAepay gateway? This gateway is connected to our Vital processor. See http://www.plonegetpaid.com/features Would this be hard to implement?

Re: [Product-Developers] [Plone2.5] PDF export

2008-01-24 Thread Andreas Jung
--On 24. Januar 2008 11:53:23 +0100 JeanMichel FRANCOIS [EMAIL PROTECTED] wrote: Hi , I would like to know if there is a product to export a content to a PDF on Plone 2.5.X version. I have some custom content types, and i need to export those in PDF. SmartPrintNG. -aj

[Product-Developers] Best practice writing Zopeskel templates?

2008-01-30 Thread Andreas Jung
Hi, I am currently working on templates based on Zopeskel for some internal projects. What is the best and fastest way for testing changes made to the buildout.cfg_templ? Right now I have to build an development egg first, easy_install it and then run paster...any idea how to avoid the

[Product-Developers] PTProfiler unusable on Plone 3

2008-02-18 Thread Andreas Jung
Hi, PTProfiler 1.2 does seem to work properly with Plone 3. Instead of seeing the requested pages (by default) within in the profiler view, I see all calls to viewlet templates etc...any solution for this? Andreas -- ZOPYX Ltd. Co. KG - Charlottenstr. 37/1 - 72070 Tübingen - Germany Web:

Re: [Product-Developers] Importing users currently stored in a RDBMS

2008-02-22 Thread Andreas Jung
--On 22. Februar 2008 23:00:41 +1300 Tim Knapp [EMAIL PROTECTED] wrote: Hello, I have a client who currently has all their customers stored in a Firebird database and they would like to import these into Plone. The setup I'm currently using is a SQLPASPlugin(v1.0 but with Firebird support

Re: [Product-Developers] Calender widget in custom view.

2008-02-29 Thread Andreas Jung
--On 29. Februar 2008 09:16:16 -0800 swank [EMAIL PROTECTED] wrote: Hello, Is it possible to use any of the widgets of archetypes in a custom view? My view has some form inputs that let a user do some searching and filtering on the fields of a certain content type. One of the fields of

Re: [Product-Developers] Catalog search problems

2008-03-06 Thread Andreas Jung
--On 6. März 2008 08:49:48 -0800 swank [EMAIL PROTECTED] wrote: Hello, I am having trouble with catalog searches. When I do a search for a portal_type such as: brains = portal_catalog(portal_type=FtirRecord) I get no results (brains = []). My portal catalog seems to be fine when I look

Re: [Product-Developers] Indexing contents in external database

2008-03-24 Thread Andreas Jung
--On 24. März 2008 01:57:12 -0700 Marica Odagaki [EMAIL PROTECTED] wrote: Hi all, I'm quite new to the Plone framework. What is the best way to integrate contents in external database to the Plone's indexing system? You might check out

Re: [Product-Developers] How to modify the Seach Results Page

2008-03-24 Thread Andreas Jung
--On 24. März 2008 12:17:28 -0700 Mark Phillips [EMAIL PROTECTED] wrote: I have a custom event type that extends ATEvent, and it works. I use it for scheduling games on the calendar. When I do a search for team a in the search box, I get all the games scheduled for that team. However, the

Re: [Product-Developers] Re: Re: UnicodeDecodeError

2008-03-24 Thread Andreas Jung
--On 24. März 2008 17:19:48 -0300 Derek Broughton [EMAIL PROTECTED] wrote: What are you talking about? Python has nothing like a 'unicode' default. Likely you're referring to sys.getdefaultencoding() which is ascii by default. Why do you always have to be so confrontational? Because the

Re: [Product-Developers] Re: UnicodeDecodeError

2008-03-25 Thread Andreas Jung
--On 25. März 2008 08:49:58 -0300 Walter Cruz [EMAIL PROTECTED] wrote: 2008/3/24, Andreas Jung [EMAIL PROTECTED]: What are you talking about? Python has nothing like a 'unicode' default. Likely you're referring to sys.getdefaultencoding() which is ascii by default. General rule #1

Re: [Product-Developers] Re: Re: Re: UnicodeDecodeError

2008-03-25 Thread Andreas Jung
--On 25. März 2008 10:06:18 -0300 Derek Broughton [EMAIL PROTECTED] wrote: Andreas Jung wrote: --On 24. März 2008 17:19:48 -0300 Derek Broughton [EMAIL PROTECTED] wrote: What are you talking about? Python has nothing like a 'unicode' default. Likely you're referring

Re: [Product-Developers] Re: Re: Re: UnicodeDecodeError

2008-03-25 Thread Andreas Jung
--On 25. März 2008 15:06:59 +0100 Gilles Lenfant [EMAIL PROTECTED] wrote: Le 25 mars 08 à 14:51, Andreas Jung a écrit : [...] How clearer can I be: don't touch the encoding - never ever. And it is perfectly ok for Plone not to touch the default encoding. Implicit charset conversions

Re: [Product-Developers] Re: Re: Re: UnicodeDecodeError

2008-03-25 Thread Andreas Jung
--On 25. März 2008 15:06:59 +0100 Gilles Lenfant [EMAIL PROTECTED] wrote: Le 25 mars 08 à 14:51, Andreas Jung a écrit : [...] How clearer can I be: don't touch the encoding - never ever. And it is perfectly ok for Plone not to touch the default encoding. Implicit charset conversions

Re: [Product-Developers] Ask to display a system in Plone

2008-04-13 Thread Andreas Jung
--On 13. April 2008 14:49:54 +0700 Hoang Bao Thien [EMAIL PROTECTED] wrote: Hi all, I now have a problem in giving my site into Plone. Let me explain more. I have built my own site. To build it, I have write in Zope in the folder called 'ACVSYS' and use Test function in Zope to test it.

Re: [Product-Developers] is schemaextender the way to add more metadata to pdfs

2008-04-15 Thread Andreas Jung
--On 15. April 2008 16:45:54 +1000 Dylan Jay [EMAIL PROTECTED] wrote: I've got a requirement to make uploading of some special pdfs easier and extend their metadata. My thoughts are to allow upload via webdav or FlashUpload and then use a custom workflow ensure all the new metadata is filled

Re: [Product-Developers] To build a product

2008-04-15 Thread Andreas Jung
--On 15. April 2008 16:44:56 +0700 Hoang Bao Thien [EMAIL PROTECTED] wrote: Hi all, I now want to build a product that can install to Plone by using Add/remove products. Could you please tell me how to do with it?

[Product-Developers] Integration of Captchas with existing content-types?

2008-05-03 Thread Andreas Jung
Hi, what is the recommended way nowadays to extend the functionality of Plone 3.0/3.1 compatible content-types with a captcha? collective.captcha seems to be the best implementation but it seems to be bound to formlib and I see no direct way for integrating it with Archetypes (using

Re: [Product-Developers] Re: How can we win the battle for developers?

2008-05-07 Thread Andreas Jung
--On 7. Mai 2008 16:11:03 +1000 Dylan Jay [EMAIL PROTECTED] wrote: And this will mean that in the future there will be less Plone work and less Plone core development. So I'm asking where do people think good developers come from and why aren't using Plone? Because different people have

Re: [Product-Developers] Feedfeeder 1.0 (Beta release 2) on Plone 3

2008-05-12 Thread Andreas Jung
--On 11. Mai 2008 23:19:19 -0700 Ross Patterson [EMAIL PROTECTED] wrote: The page for Feedfeeder 1.0 (Beta release 2) claims that it was tested with Plone 3. I tried it out in a Plone 3 buildout and got an ImportError on Products.CMFCore.CMFCorePermissions. Has anyone used this successfully

Re: [Product-Developers] ATManagedFile on Plone 3

2008-05-12 Thread Andreas Jung
--On 11. Mai 2008 22:54:37 -0700 Ross Patterson [EMAIL PROTECTED] wrote: I have a client with a Plone 2.5 site running ATManagedFile. The are using version 1.0.8 or 1.1.0, I can't tell since both have 1.0.8 in the versiont.txt file. :) They want to migrate Plone 3. For my part, since Plone

Re: [Product-Developers] Re: Feedfeeder 1.0 (Beta release 2) on Plone 3

2008-05-12 Thread Andreas Jung
--On 12. Mai 2008 00:28:24 -0700 Ross Patterson [EMAIL PROTECTED] wrote: Andreas Jung [EMAIL PROTECTED] writes: --On 11. Mai 2008 23:19:19 -0700 Ross Patterson [EMAIL PROTECTED] wrote: The page for Feedfeeder 1.0 (Beta release 2) claims that it was tested with Plone 3. I tried it out

[Product-Developers] GS/QS installing issues on Plone 3.1

2008-05-12 Thread Andreas Jung
For a new project/product (for Plone 3.1) I am setting up a complete installation infrastructure. - defining an extension profile for the project creates a new item within the add/remove programs control panel - fine Questions: - how do you define additional 3rd-party products that should

Re: [Product-Developers] Re: GS/QS installing issues on Plone 3.1

2008-05-12 Thread Andreas Jung
--On 12. Mai 2008 16:10:17 +0200 Daniel Nouri [EMAIL PROTECTED] wrote: Andreas Jung writes: For a new project/product (for Plone 3.1) I am setting up a complete installation infrastructure. - defining an extension profile for the project creates a new item within the add/remove

Re: [Product-Developers] Re: GS/QS installing issues on Plone 3.1

2008-05-12 Thread Andreas Jung
--On 12. Mai 2008 17:21:16 +0200 Daniel Nouri [EMAIL PROTECTED] wrote: Bad naming from my part probably. By setup handler I meant a various handler, which is simply Python code. See the aforementioned link to setuphandlers.py. You need to hook it in via 'import_steps.xml'. There's

[Product-Developers] Schema extender definition shadowing more general extenders

2008-05-12 Thread Andreas Jung
Hi, I have two schema extenders: - extender A adapting IATContentType (the most generic interface for ATCT base content) adds an 'audience' field to every content-type - extender B adapting IATNewsItem adds a 'remote_target' field to ATNewsItem I did expect that a news item instance has

Re: [Product-Developers] Schema extender definition shadowing more general extenders

2008-05-12 Thread Andreas Jung
--On 12. Mai 2008 11:02:55 -0700 David Glick [EMAIL PROTECTED] wrote: This should work as long as you register the schema extenders as *named* adapters. Thanks, this works - however the 'remote_target' field now shows up twice: in the 'audience' schemata and the 'news' schemata. Smells like

[Product-Developers] [iw.fss]

2008-05-13 Thread Andreas Jung
First FSS is a great product - however there are some issues: - I created a new Plone 3.1 setup using Buildout + iw.recipe.fss. I created two sites using FSS. Both sites store their data under subdirectory - they share the same top-level directory - bug or feature? - while development or

Re: [Product-Developers] Is it possible to restrict the number of simultaneous logins for a given user account?

2008-05-14 Thread Andreas Jung
--On 14. Mai 2008 12:17:22 +0530 Sreekanth S Rameshaiah [EMAIL PROTECTED] wrote: Hi All, Greetings! Is it possible to restrict the user to to be logged to a plone site from only one browser at any point of time? Not out-of-the-box...but wait, what is the _real_ usecase??? -aj

Re: [Product-Developers] [iw.fss]

2008-05-14 Thread Andreas Jung
--On 14. Mai 2008 15:08:30 +0200 Gilles Lenfant [EMAIL PROTECTED] wrote: Le 13 mai 08 à 20:14, Andreas Jung a écrit : First FSS is a great product - however there are some issues: - I created a new Plone 3.1 setup using Buildout + iw.recipe.fss. I created two sites using FSS. Both sites

Re: [Product-Developers] [iw.fss]

2008-05-14 Thread Andreas Jung
--On 14. Mai 2008 18:28:37 +0200 Gilles Lenfant [EMAIL PROTECTED] wrote: Le 14 mai 08 à 18:05, Andreas Jung a écrit : sites storage-strategy site1 storage-path $$INSTANCEHOME/var//%(site_id)s/fss # storage-path $$INSTANCEHOME/var//%(path_to_site)s/fss /sites FSS could fill in either

[Product-Developers] [GS] Creating members within an extension profile

2008-05-15 Thread Andreas Jung
Hi, a minor issue with an extension profile under GS: - rolemap.xml introduces two new roles A and B (both roles a created and are visible within the Plone users control panel) - import_steps.xml defines a set with dependency step=plone-final. Within the handler I create new members using

Re: [Product-Developers] [GS] Creating members within an extension profile

2008-05-15 Thread Andreas Jung
--On 15. Mai 2008 17:08:37 +0200 Wichert Akkerman [EMAIL PROTECTED] wrote: Previously Andreas Jung wrote: Hi, a minor issue with an extension profile under GS: - rolemap.xml introduces two new roles A and B (both roles a created and are visible within the Plone users control panel

Re: [Product-Developers] Re: Twisted 8.0.1 Installation error

2008-05-18 Thread Andreas Jung
--On 17. Mai 2008 19:17:58 -0700 Jayaprakash [EMAIL PROTECTED] wrote: Jayaprakash wrote: Hi, I want to install qi.Livechat, so i try to install it using python 2.4, while installation it automatically downloaded twisted 8.0.1 and when it try to install the twisted 8.0.1 i got this

Re: [Product-Developers] Dynamic Content Types - FormGen like

2008-05-19 Thread Andreas Jung
--On 19. Mai 2008 00:23:32 -0700 lynucs_ [EMAIL PROTECTED] wrote: Hello everybody. I'm new to Plone and was searching for a while, but didn't find anything that would help on my problem. You're on the wrong list. Please use the plone-users mailinglist. And check out

[Product-Developers] Using a folder default-page without hiding it in the nav tree?

2008-05-20 Thread Andreas Jung
Hi, I brought this issue up some time ago but the usability of default pages for folders is still broken in Plone 3.1. Is there any way to protect the disappearance of the default page from the navigation? Neither by using a redirection python script nor by adding something like a link object

  1   2   3   >