Here's some, I'm afraid I've run out of time ATM!

> -----Original Message-----
> From: Davanum Srinivas [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 18 July 2001 12:33 pm
> To: [EMAIL PROTECTED]
> Subject: RE: [C2][PATCH] Document spelling corrections
> 
> 
> John,
> 
> If you have some time, can you look at the email archives to 
> see what we can add as faq's? Have
> been meaning to do this for some time, but have not gotten 
> around to it.
> 
> cocoon-dev  : http://marc.theaimsgroup.com/?l=xml-cocoon-dev&r=1&w=2
> cocoon-users: http://marc.theaimsgroup.com/?l=xml-cocoon-dev&r=1&w=2
> 
> Thanks,
> dims
> 
> --- "Morrison, John" <[EMAIL PROTECTED]> wrote:
> > Consider it some payback for helping me getting C2 working 
> on SE.  I don't
> > know what I can look at next though.  I'm not very good at 
> documentation,
> > proof-reading is about my limit :(
> > 
> > J.
> > 
> > > -----Original Message-----
> > > From: Davanum Srinivas [mailto:[EMAIL PROTECTED]]
> > > Sent: Wednesday, 18 July 2001 12:17 pm
> > > To: [EMAIL PROTECTED]
> > > Subject: Re: [C2][PATCH] Document spelling corrections
> > > 
> > > 
> > > Done. Thanks John. Keep 'em patches coming :)
> > > 
> > > -- dims
> > 
> > 
> > 
> ==============================================================
> =========
> > Information in this email and any attachments are 
> confidential, and may
> > not be copied or used by anyone other than the addressee, 
> nor disclosed
> > to any third party without our permission.  There is no intention to
> > create any legally binding contract or other commitment 
> through the use
> > of this email.
> > 
> > Experian Limited (registration number 653331).  
> > Registered office: Talbot House, Talbot Street, Nottingham NG1 5HF
> > 
> > 
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, email: [EMAIL PROTECTED]
> > 
> 
> 
> =====
> Davanum Srinivas, JNI-FAQ Manager
> http://www.jGuru.com/faq/JNI
> 
> __________________________________________________
> Do You Yahoo!?
> Get personalized email addresses from Yahoo! Mail
> http://personal.mail.yahoo.com/
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, email: [EMAIL PROTECTED]
> 

Index: xdocs/faq.xml
===================================================================
RCS file: /home/cvspublic/xml-cocoon2/xdocs/faq.xml,v
retrieving revision 1.5
diff -u -r1.5 faq.xml
--- xdocs/faq.xml       2001/07/18 11:11:38     1.5
+++ xdocs/faq.xml       2001/07/18 14:16:24
@@ -199,4 +199,89 @@
 </source>
  </answer>
 </faq>
+<faq>
+ <question>I don't want to hand edit the sitemap.  Are there any
+   tools?</question>
+ <answer>
+   <p>Try <fork href="http://outerthought.org/cocoon/resources/cocoon2/";>this</fork>
+     by Bruno Dumon.</p>
+ </answer>
+</faq>
+<faq>
+ <question>How do I create some content which isn't directly visible to
+   everyone?</question>
+ <answer>
+   <p>Put the content in an internal pipeline...</p>
+   <source>
+     <![CDATA[
+<map:pipelines>
+ <map:pipeline internal-only="true">
+   <map:match pattern="int">
+     <map:generate src="docs/description.xml"/>
+     <map:serialize type="xml"/>
+   </map:match>
+ </map:pipeline>
+ <map:pipeline>
+   <map:match pattern="desc.html">
+     <map:generate src="cocoon:/int"/>
+     <map:transform src="stylesheets/description2html.xsl"/>
+     <map:serialize type="html"/>
+   </map:match>
+ </map:pipeline>
+</map:pipelines>
+     ]]>
+   </source>
+ </answer>
+</faq>
+<faq>
+ <question>How can I concatenate two xml files?</question>
+ <answer>
+   <source>
+     <![CDATA[
+<map:pipelines>
+ <map:pipeline internal-only="true">
+   <map:match pattern="one">
+     <map:generate src="docs/one.xml"/>
+     <map:serialize type="xml"/>
+   </map:match>
+   <map:match pattern="two">
+     <map:generate src="docs/two.xml"/>
+     <map:serialize type="xml"/>
+   </map:match>
+ </map:pipeline>
+ <map:pipeline>
+   <map:match pattern="desc.html">
+     <map:aggregate element="newRootElement">
+       <map:part src="cocoon:/one" element="firstXMLfile"/>
+       <map:part src="cocoon:/two" element="secondXMLfile"/>
+     </map:aggregate>
+     <map:transform src="stylesheets/merge2html.xsl"/>
+     <map:serialize type="html"/>
+   </map:match>
+ </map:pipeline>
+</map:pipelines>
+     ]]>
+   </source>
+   <p>Where the element attribute names are replaced with something more
+     meaningful!  Note that the map:part element attributes can be left off,
+     which results in the two parts being placed one immediately after the
+     other.</p>
+ </answer>
+</faq>
+<faq>
+ <question>I want to use the XXX matcher/serializer/selecter/etc but there's no
+   examples :(</question>
+ <answer>
+   <p>If you've checked the sample webapps which come with Cocoon, and you've
+     looked in the documentation (which does exist!) check both the user and
+     dev archives.  If it hasn't been resolved before <strong>first</strong>
+     email the user group and, after a <strong>reasonable</strong> (ie 1 or 2
+     days) length of time (remember not everyone lives in your timezone) email
+     the dev group. If neither generate a suitable answer - use the source ;)</p>
+   <p>Please don't cross-post to both the user and dev groups - very few people
+     like getting bombarded!</p>
+   <p>Oh, and once you do get it working - how about documenting it and
+     contributing it back to the group?</p>
+ </answer>
+</faq>
 </faqs>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to