[Product-Developers] PloneFormGen vs i18ndude, need help

2010-05-11 Thread toutpt
Hi, Most of translation are not synchronized because PloneFormGen doesn't use i18ndude. I have add a rebuild pot script to synch translation but most of translations are removed: http://pastebin.com/KMZAHs48 I have inspect translations in pfg code. Schemata use label_msgid and

[Product-Developers] Best way to Extend a Product to Make Small Change?

2010-05-11 Thread Mark Phillips
I need to make a small change to ATVocabularyManager. Specifically, I need a simple vocabulary value to be longer than 32 characters; ie a TextField and not a StringField for the value of the key-value pair. What is the right way to make this change - copy ATVocabularyManger to

Re: [Product-Developers] Best way to Extend a Product to Make Small Change?

2010-05-11 Thread Chris Crownhart
Mark, One way to accomplish this is to use a 'monkey patch'. This is a bit wonky, but commonly used to simply override methods or variables in Products without changing the live code. A monkey patch is basically a runtime override of another product. The simplest way to do this is to

Re: [Product-Developers] Best way to Extend a Product to Make Small Change?

2010-05-11 Thread Andreas Jung
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mark Phillips wrote: I need to make a small change to ATVocabularyManager. Specifically, I need a simple vocabulary value to be longer than 32 characters; ie a TextField and not a StringField for the value of the key-value pair. What is the right