Re: URI of the Sitemap Schema?

2003-01-27 Thread Konstantin Piroumian
There is a draft sitemap schema in
/src/documentation/xdocs/drafts/sitemap-2.1-draft.xsd which can be used to
validate most of the sitemaps.

--
  Konstantin

- Original Message -
From: Robert Simmons
To: Cocoon Users
Sent: Monday, January 27, 2003 04:21
Subject: URI of the Sitemap Schema?


Greetings,

Is there a uri for a sitemap schema that users can use to validate the
sitemap during development ? If so, Id like to have it.

TIA

-- Robert


-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

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




URI of the Sitemap Schema?

2003-01-26 Thread Robert Simmons



Greetings, 

Is there a uri for a sitemap schema that users can 
use to validate the sitemap during development ? If so, Id like to have it. 


TIA

-- Robert


RE: Sitemap schema

2002-05-31 Thread Bert Van Kets

Here's an updated version that works with 2.1-dev
I haven't checked with sub sitemaps and I need to add tag/attribute 
references to make it really useful.
Bert

At 11:42 31/05/2002 +0200, you wrote:
Rogier Peters showed me the Sitemap DTD (Cocoon 
root\documentation\resources\entities\sitemap-v02.dtd). That will do.

Arjé

-Oorspronkelijk bericht-
Van: Arjé Cahn
Verzonden: 30 May 2002 11:48
Aan: [EMAIL PROTECTED]
Onderwerp: Sitemap schema


All,

In response to Leona's question (development tools that support Cocoon 
2) I was wondering wheter there exists a schema for the Cocoon 2 sitemap. 
Is anyone working on this?

Regards,

Arjé Cahn


-
Content Management Department
Hippo Webworks
Grasweg 35
1031 HW Amsterdam
The Netherlands
Tel  +31 (0)20 6345173
Fax +31 (0)20 6345179
arje(at)hippo(dot)nl / www.hippo.nl




-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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


-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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


!-- ===

 Apache Cocoon Sitemap DTD (Version 0.2)

PURPOSE:
  INITIAL DRAFT DTD for the Cocoon2 sitemap.xmap files.

TYPICAL INVOCATION:

  !DOCTYPE map:sitemap PUBLIC
   -//APACHE//DTD Cocoon Sitemap Vx.yz//EN
   sitemap-vxyz.dtd

  where

x := major version
y := minor version
z := status identifier (optional)

NOTES:
* ATTENTION: This initial DTD was reverse-engineered from the various
  sitemap.xmap instances included in the current distribution. This is
  just an attempt to document the existing rules for sitemap structure.
  In many cases a very lax content model is used, simply to get around
  validation issues.
  A proper design process is still required.
* Needed by XML editing tools for creation of reliable documents.
* Can generate XSD once DTD is locked down.
* We need to synchronise this DTD with the relax-ng work
  by [EMAIL PROTECTED] ... cocoon-dev 2001-07-18
  http://marc.theaimsgroup.com/?l=xml-cocoon-devm=99545886226916w=2
* This DTD has been tested with various XML validating parsers.
* The big questions (still) are: 
  What possibilities were not included in the examples? and 
  What in the example sitemap.xmap files is mandatory versus optional?

AUTHORS:
  Jeffrey Ricker NG (Usonia Holdings) [EMAIL PROTECTED]
  David Crossley [EMAIL PROTECTED]

FIXME:
  - map:act is used in various contexts, so it has a loose definition
  - Completely rewrite this DTD looking from the application
point-of-view (do not rely on this temporary initial DTD)
  - map:when and map:otherwise are shown in xdocs/sitemap.xml but are
not used in the sitemap.xmap files
  - align elements and attributes with sitemap*.xsl
  - review all xdocs/userdocs/generators/*.xml etc. and sync with this DTD

CHANGE HISTORY:
  20010715 V0.1 Initial version. (RNG)
  20011106 V0.2 Reviewed all */sitemap.xmap and added definitions (DC)
  20011106 V0.2 All elements now have map: prefix. (DC)
  20011106 V0.2 Incorporated comments Bruno Dumon cocoon-dev 20010718 (DC)
  2006 V0.2 Changes from label/view discussion cocoon-dev 2005 (DC)
  20011219 V0.2 Deprecated 'redirect-to resource'. Added 'map:call resource'(CH)
  20020426 V0.3 added logges attributes, added authentication, portlet and session 
action attributes and elements (BVK)

 --
!ELEMENT map:sitemap (map:components, map:views?, map:resources?, map:action-sets?, 
map:pipelines)
!ATTLIST map:sitemap
  xmlns:map CDATA #FIXED http://apache.org/cocoon/sitemap/1.0;

!-- === --
!-- Components --
!-- === --
!ELEMENT map:components (map:generators, map:transformers, map:readers, 
map:serializers, map:matchers?, map:selectors?, map:actions?)
!-- RNG: must they appear in this order?
  must they all appear, even if they are empty? --
!-- DC: it seems that some sitemaps do not contain all components
 e.g. documentation/sitemap.xmap does not have map:selectors --
!-- Generators  --
!ELEMENT map:generators (map:generator*)
!ATTLIST map:generators
  default CDATA #IMPLIED

!ELEMENT map:generator EMPTY
!ATTLIST map:generator
  name CDATA #REQUIRED
  src CDATA #REQUIRED
  label CDATA #IMPLIED
  logger CDATA #IMPLIED
  pool-max CDATA #IMPLIED
  pool-min CDATA #IMPLIED
  pool-grow CDATA #IMPLIED

!-- RNG

Re: Sitemap schema

2002-05-31 Thread Konstantin Piroumian

I am working on a XML Schema for sitemap for my current needs. Now it
validates correctly the root, samples root and i18n samples sitemaps
correctly. I am going to make some cleanup and then will post it here for
comments. Hope to finish it today.

Konstantin

- Original Message -
From: Bert Van Kets [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 3:54 PM
Subject: RE: Sitemap schema


Here's an updated version that works with 2.1-dev
I haven't checked with sub sitemaps and I need to add tag/attribute
references to make it really useful.
Bert

At 11:42 31/05/2002 +0200, you wrote:
Rogier Peters showed me the Sitemap DTD (Cocoon
root\documentation\resources\entities\sitemap-v02.dtd). That will do.

Arjé

-Oorspronkelijk bericht-
Van: Arjé Cahn
Verzonden: 30 May 2002 11:48
Aan: [EMAIL PROTECTED]
Onderwerp: Sitemap schema


All,

In response to Leona's question (development tools that support Cocoon
2) I was wondering wheter there exists a schema for the Cocoon 2 sitemap.
Is anyone working on this?

Regards,

Arjé Cahn


-
Content Management Department
Hippo Webworks
Grasweg 35
1031 HW Amsterdam
The Netherlands
Tel  +31 (0)20 6345173
Fax +31 (0)20 6345179
arje(at)hippo(dot)nl / www.hippo.nl




-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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


-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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








 -
 Please check that your question has not already been answered in the
 FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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

-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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




RE: Sitemap schema

2002-05-31 Thread Arjé Cahn

Looking forward to it!

Arjé

-Oorspronkelijk bericht-
Van: Konstantin Piroumian [mailto:[EMAIL PROTECTED]]
Verzonden: 31 May 2002 14:15
Aan: [EMAIL PROTECTED]
Onderwerp: Re: Sitemap schema


I am working on a XML Schema for sitemap for my current needs. Now it
validates correctly the root, samples root and i18n samples sitemaps
correctly. I am going to make some cleanup and then will post it here for
comments. Hope to finish it today.

Konstantin

- Original Message -
From: Bert Van Kets [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, May 31, 2002 3:54 PM
Subject: RE: Sitemap schema


Here's an updated version that works with 2.1-dev
I haven't checked with sub sitemaps and I need to add tag/attribute
references to make it really useful.
Bert

At 11:42 31/05/2002 +0200, you wrote:
Rogier Peters showed me the Sitemap DTD (Cocoon
root\documentation\resources\entities\sitemap-v02.dtd). That will do.

Arjé

-Oorspronkelijk bericht-
Van: Arjé Cahn
Verzonden: 30 May 2002 11:48
Aan: [EMAIL PROTECTED]
Onderwerp: Sitemap schema


All,

In response to Leona's question (development tools that support Cocoon
2) I was wondering wheter there exists a schema for the Cocoon 2 sitemap.
Is anyone working on this?

Regards,

Arjé Cahn


-
Content Management Department
Hippo Webworks
Grasweg 35
1031 HW Amsterdam
The Netherlands
Tel  +31 (0)20 6345173
Fax +31 (0)20 6345179
arje(at)hippo(dot)nl / www.hippo.nl




-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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


-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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








 -
 Please check that your question has not already been answered in the
 FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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

-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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


-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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




Sitemap schema

2002-05-30 Thread Arjé Cahn

All,

In response to Leona's question (development tools that support Cocoon 2) I was 
wondering wheter there exists a schema for the Cocoon 2 sitemap. Is anyone working on 
this?

Regards,

Arjé Cahn


-
Content Management Department
Hippo Webworks
Grasweg 35
1031 HW Amsterdam
The Netherlands
Tel  +31 (0)20 6345173 
Fax +31 (0)20 6345179
arje(at)hippo(dot)nl / www.hippo.nl




-
Please check that your question has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faqs.html

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