Re: [FYI] Struts flow proposal

2002-04-25 Thread Sylvain Wallez
Nicola Ken Barozzi wrote: >http://jakarta.apache.org/struts/proposals/workflow.html > Interesting proposal. But it's sooo much more verbose than the same thing in JavaScript with our flow engine... Hey, what about an XSL to translate this XML language to JavaScript ? I have the impression tha

Re: New Source Resolving

2002-04-25 Thread Sylvain Wallez
Carsten Ziegeler wrote: >Hi, > >it took a long time ... but there is a little light at the end of the >tunnel. > >Or in other words: most parts for reintegrating the avalon excalibur source >resolving into Cocoon and deprecating the Cocoon source resolving are >finished. > > >Status: >- The Excal

RE: New Source Resolving

2002-04-25 Thread Carsten Ziegeler
Sylvain Wallez wrote: > > Carsten Ziegeler wrote: > > >Hi, > > > >it took a long time ... but there is a little light at the end of the > >tunnel. > > > >Or in other words: most parts for reintegrating the avalon > excalibur source > >resolving into Cocoon and deprecating the Cocoon source resolv

Portal request

2002-04-25 Thread Matthew Langham
Hi, Carsten and I will be speaking/presenting on the additional portal and authentication components in Cocoon at a couple of conferences in the upcoming months. If you are using the (used to be called) sunRise and sunSpot components to build a portal then I would love to obtain some additional s

Re: Cocoon at NASA....

2002-04-25 Thread Bertrand Delacretaz
On Wednesday 24 April 2002 21:46, Lewis, Andrew J wrote: >. . . > Cocoon 2.x is being used as the core of a new portal that is being > built at NASA Kennedy Space Center. >. . . Great! Just curious, what are you using to store content? XML files? Database? -Bertrand --

cvs commit: xml-cocoon2/src/webapp/WEB-INF cocoon.xconf

2002-04-25 Thread cziegeler
cziegeler02/04/25 02:30:48 Modified:lib/core avalon-excalibur-20020424.jar src/java/org/apache/cocoon Cocoon.java cocoon.roles src/java/org/apache/cocoon/components/source/impl AvalonToCocoonSource.java SitemapSource.java

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/sitemap Handler.java

2002-04-25 Thread cziegeler
cziegeler02/04/25 02:37:01 Modified:src/java/org/apache/cocoon/environment Environment.java SourceResolver.java URLFactorySourceResolver.java src/java/org/apache/cocoon/sitemap Handler.java Log: Correcting interface Revision ChangesPa

DO NOT REPLY [Bug 8509] New: - Patch to allow actions within cocoon views

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 8509] - Patch to allow actions within cocoon views

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

AttributesImpl

2002-04-25 Thread Torsten Curdt
guys, I need a hand... I'm kinda lost. I am trying to add an attribute in a transformer: startElement(..) AttributesImpl newAttributes = null; try { getLogger().error("creating an attributes copy"); newAttributes =

Re: AttributesImpl

2002-04-25 Thread Konstantin Piroumian
Torsten, Check, that you are using the correct version of AttributesImpl class. Sometimes this class can be found in various places and can be of different and old versions. AttributesImpl was buggy a while ago, but it was fixed and I'm using it in I18nTransformer (see translateAttributes() metho

DO NOT REPLY [Bug 8509] - [PATCH] Allow actions within cocoon views

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

Re: [FYI] Struts flow proposal

2002-04-25 Thread Nicola Ken Barozzi
From: "Sylvain Wallez" <[EMAIL PROTECTED]> > Nicola Ken Barozzi wrote: > > >http://jakarta.apache.org/struts/proposals/workflow.html > > > > Interesting proposal. But it's sooo much more verbose than the same > thing in JavaScript with our flow engine... Definately. > Hey, what about an XSL to

DirectoryGenerator documentation

2002-04-25 Thread William Brogden
I am having a problem understanding the documentation of DirectoryGenerator in org.apache.cocoon.generation. In the Javadocs, the configuration options listed are: depth and dateFormat but the source shows that parameters named root, include, and exclude are also used to make regular express

I18n: What docs are autogenerated?

2002-04-25 Thread Enke, Michael
Hi, I have to document some changes for I18nTransformer. I found 3 locations where this must be taken into account: src/documentation/xdocs/userdocs/transformers/i18n-transformer.xml docs/userdocs/transformers/i18n-transformer.html docs/apidocs/org/apache/cocoon/transformation/I18nTransformer.htm

Re: I18n: What docs are autogenerated?

2002-04-25 Thread Gerhard Froehlich
Hi, ME> src/documentation/xdocs/userdocs/transformers/i18n-transformer.xml This should be enough. The rest is auto generated BTW: We habe some Problems with the latest patched, did you noticed the posting in bugzilla? Greets ~Gerhard ---

Re: AttributesImpl

2002-04-25 Thread Ivelin Ivanov
I think Vadim fixed a problem in the XMLFormTransformer, stating that AttributesImpl has a deadlock problem when the constructor argument is null or empty. The fix was: AttributesImpl atts; if (attributes == null || attributes.getLength() == 0) { atts = new Attribute

Re: I18n: What docs are autogenerated?

2002-04-25 Thread Enke, Michael
Gerhard Froehlich wrote: > > Hi, > > ME> src/documentation/xdocs/userdocs/transformers/i18n-transformer.xml > > This should be enough. The rest is auto generated Ok, thanks. > BTW: We habe some Problems with the latest patched, did you > noticed the posting in bugzilla? I'm near the mark ;-)

RE: DirectoryGenerator documentation

2002-04-25 Thread Vadim Gritsenko
> From: William Brogden [mailto:[EMAIL PROTECTED]] > > > I am having a problem understanding the documentation of > DirectoryGenerator > in org.apache.cocoon.generation. In the Javadocs, the configuration > options > listed are: > > depth and dateFormat > > but the source shows that parameters

Patch to DirectoryGenerator and Doc

2002-04-25 Thread Frank Ridderbusch
Hi folks, I found the format produced by the DirectoryGenerator somewhat limited. I particular I missed the size attribute. Therefore I added the size attribute and additionally included sorted output in different formats. I'm still a Java neophyte, therefore please review my changes and integ

Re: Patch to DirectoryGenerator and Doc

2002-04-25 Thread Konstantin Piroumian
Frank, would you please post your patch to Bugzilla (http://nagoya.apache.org/bugzilla/enter_bug.cgi?product=Cocoon%202). Use [PATCH] prefix in the 'Summary' field, provide a description, then post the diff file as an attachment. This way we won't forget about it and somebody will take care of.

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/environment AbstractEnvironment.java

2002-04-25 Thread cziegeler
cziegeler02/04/25 07:53:15 Modified:lib/core avalon-excalibur-20020424.jar src/java/org/apache/cocoon Cocoon.java src/java/org/apache/cocoon/environment AbstractEnvironment.java Log: Minor update Revision ChangesPath

DO NOT REPLY [Bug 7569] - esql:skip-rows, esql:max-rows problem

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: xml-cocoon2/src/webapp/samples/i18n/images - New directory

2002-04-25 Thread kpiroumian
kpiroumian02/04/25 09:19:04 xml-cocoon2/src/webapp/samples/i18n/images - New directory -- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mai

C1 compatible sitemap??

2002-04-25 Thread Berin Loritsch
Considering we have a number of people upgrading from C1 now that we said that C2 is stable, we need to do something to ease that migration. If we do not do this, we risk alienating otherwise faithful users. The C1 compatible sitemap follows the same rules as C1: Assembles the pipeline from PIs

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/transformation I18nTransformer.java

2002-04-25 Thread kpiroumian
kpiroumian02/04/25 09:24:37 Modified:src/java/org/apache/cocoon/transformation I18nTransformer.java Log: Removed dependency on LocaleAction. Locale is now set from the as a sitemap parameter. Revision ChangesPath 1.15 +9 -3 xml-cocoon

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/acting LocaleAction.java

2002-04-25 Thread kpiroumian
kpiroumian02/04/25 09:25:44 Modified:src/java/org/apache/cocoon/acting LocaleAction.java Log: Fixed locale attribute name setting. Revision ChangesPath 1.8 +15 -15xml-cocoon2/src/java/org/apache/cocoon/acting/LocaleAction.java Index: LocaleAction.java ==

cvs commit: xml-cocoon2/src/webapp sitemap.xmap

2002-04-25 Thread kpiroumian
kpiroumian02/04/25 09:26:29 Modified:src/webapp sitemap.xmap Log: LocaleAction declaration moved to /webapp/samples/i18n/sitemap.xmap Revision ChangesPath 1.48 +1 -2 xml-cocoon2/src/webapp/sitemap.xmap Index: sitemap.xmap

RE: C1 compatible sitemap??

2002-04-25 Thread Vadim Gritsenko
> From: Berin Loritsch [mailto:[EMAIL PROTECTED]] > > Considering we have a number of people upgrading from C1 now that > we said that C2 is stable, we need to do something to ease that > migration. > > If we do not do this, we risk alienating otherwise faithful users. > > The C1 compatible sit

cvs commit: xml-cocoon2/src/webapp/samples/i18n/images chapter.gif chapter_open.gif current.gif f-am.gif f-at.gif f-ca.gif f-ch.gif f-de.gif f-es.gif f-fr.gif f-gb.gif f-pl.gif f-pt.gif f-ru.gif f-us.gif page.gif

2002-04-25 Thread kpiroumian
kpiroumian02/04/25 09:34:33 Modified:src/webapp/samples/i18n simple.xml simple.xsl simple.xsp sitemap.xmap src/webapp/samples/i18n/translations messages.xml messages_de.xml messages_en.xml messages_es.xml

Re: C1 compatible sitemap??

2002-04-25 Thread Berin Loritsch
Vadim Gritsenko wrote: >>From: Berin Loritsch [mailto:[EMAIL PROTECTED]] >> > > > Why create the whole new sitemap? I feel this can be done by writing one > transformer: > > ReactorTransformer, or C1Transformer > > It can be implemented similar to the LogicsheetCodeGenerator, building

Re: AttributesImpl

2002-04-25 Thread Torsten Curdt
> Torsten, > > Check, that you are using the correct version of AttributesImpl class. > Sometimes this class can be found in various places and can be of different > and old versions. AttributesImpl was buggy a while ago, but it was fixed and > I'm using it in I18nTransformer (see translateAttribu

Re: [FYI] Struts flow proposal

2002-04-25 Thread Ovidiu Predescu
On Thu, 25 Apr 2002 09:54:49 +0200, Sylvain Wallez <[EMAIL PROTECTED]> wrote: > Nicola Ken Barozzi wrote: > > >http://jakarta.apache.org/struts/proposals/workflow.html > > > > Interesting proposal. But it's sooo much more verbose than the same > thing in JavaScript with our flow engine... Th

--- Help with document classification ---

2002-04-25 Thread Diana Shannon
Issue How should we classify Cocoon user documents to channel future content contributions -- from developers and users alike -- most effectively? What are the implications of such classifications on document structure, guidelines for contributors, and the Cocoon project's web site functionali

DO NOT REPLY [Bug 8531] New: - [PATCH] to DirectoryGenerator and Doc

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 8531] - [PATCH] to DirectoryGenerator and Doc

2002-04-25 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bu

cvs commit: xml-cocoon2/src/scratchpad/schecoon .cvsignore

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:16:00 Modified:src/scratchpad/schecoon .cvsignore Log: Added prj.rl. Revision ChangesPath 1.2 +1 -0 xml-cocoon2/src/scratchpad/schecoon/.cvsignore Index: .cvsignore ===

cvs commit: xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow AbstractInterpreter.java

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:16:41 Modified:src/scratchpad/schecoon/src/org/apache/cocoon/components/flow AbstractInterpreter.java Log: Remove the setResources() method. Revision ChangesPath 1.9 +5 -13 xml-cocoon2/src/scratchpad/schecoon/src/org

cvs commit: xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow Interpreter.java

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:17:05 Modified:src/scratchpad/schecoon/src/org/apache/cocoon/components/flow Interpreter.java Log: Remove the setResources() method. Revision ChangesPath 1.12 +0 -8 xml-cocoon2/src/scratchpad/schecoon/src/org/apache/

cvs commit: xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/treeprocessor/sitemap CallFunctionNode.java

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:17:45 Modified: src/scratchpad/schecoon/src/org/apache/cocoon/components/treeprocessor/sitemap CallFunctionNode.java Log: Don't call setResources() on the interpreter anymore. Revision ChangesPath 1.8 +0 -4 xml-coco

cvs commit: xml-cocoon2/src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/javascript system.js

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:18:21 Modified:src/scratchpad/schecoon/src/org/apache/cocoon/components/flow/javascript system.js Log: Added sendPageAndContinue. Revision ChangesPath 1.11 +5 -0 xml-cocoon2/src/scratchpad/schecoon/src/org/apache/coc

cvs commit: xml-cocoon2/src/scratchpad/schecoon build.xml

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:39:19 Modified:src/scratchpad/schecoon build.xml Log: clean: remove the prj.el file. Revision ChangesPath 1.20 +1 -0 xml-cocoon2/src/scratchpad/schecoon/build.xml Index: build.xml ==

cvs commit: xml-cocoon2/src/scratchpad/schecoon ChangeLog

2002-04-25 Thread ovidiu
ovidiu 02/04/25 14:39:32 Modified:src/scratchpad/schecoon ChangeLog Log: 2002-04-25 Ovidiu Predescu <[EMAIL PROTECTED]> * build.xml: clean: remove the prj.el file. * src/org/apache/cocoon/components/flow/javascript/system.js: Added sendPageAndContinu

DO NOT REPLY [PATCH QUEUE] Summary April 26 2002

2002-04-25 Thread nicolaken
--- This mail is generated automatically using Jakarta Ant. Contents are automatically downloaded from Apache's Bugzilla. --- Please do not reply to t

Cocoon and Web Services -- A Presentation at SD West 2002

2002-04-25 Thread KUMAR,PANKAJ (HP-Cupertino,ex1)
Hi, I made a presentation today at SD West 2002 on Cocoon title Cocoon: A Framework for Web Services. You can view the presentation as Powerpoint slides or html slides

Re: Cocoon and Web Services -- A Presentation at SD West 2002

2002-04-25 Thread Ivelin Ivanov
Good work ! Your earlier presentation on Cocoon got me excited about it. This should be referenced on the Cocoon Links page along with Ugo's sample. http://xml.apache.org/cocoon/cocoon-links.html Ivelin - Original Message - From: "KUMAR,PANKAJ (HP-Cupertino,ex1)" <[EMAIL PROTECTED]>

Re: --- Help with document classification ---

2002-04-25 Thread Bertrand Delacretaz
Great work Diana, your plan looks really cool to me! There are two additions that I'm thinking of: 1) Tracks: it might be worthwile at some point to create "tracks" into the documentation, task-oriented reading guides. For example: if you want to publish static XML to HTML, here's your readi

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/components ExtendedComponentSelector.java

2002-04-25 Thread cziegeler
cziegeler02/04/25 23:43:22 Modified:src/java/org/apache/cocoon/components ExtendedComponentSelector.java Log: Fixing hasComponent() bug Revision ChangesPath 1.2 +10 -1 xml-cocoon2/src/java/org/apache/cocoon/components/ExtendedComponentS

cvs commit: xml-cocoon2 build.xml

2002-04-25 Thread cziegeler
cziegeler02/04/25 23:46:00 Modified:.build.xml Log: Name of dist should begin with capital letter Revision ChangesPath 1.202 +1 -1 xml-cocoon2/build.xml Index: build.xml === RCS fil

cvs commit: xml-cocoon2/src/scratchpad/schecoon/webapp/docs index.xml

2002-04-25 Thread ovidiu
ovidiu 02/04/26 00:01:08 Modified:src/scratchpad/schecoon/webapp/docs index.xml Log: Updated. Revision ChangesPath 1.4 +9 -7 xml-cocoon2/src/scratchpad/schecoon/webapp/docs/index.xml Index: index.xml