Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Orbit/IP Log

< Orbit
Revision as of 14:35, 15 March 2007 by Unnamed Poltroon (Talk) (New page: Here is an initial stab at a file format for the IP Log info for the Orbit projects. <pre> <!DOCTYPE project[ <!-- A "project" element represents a specific version of an Orbit project ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Here is an initial stab at a file format for the IP Log info for the Orbit projects.

<!DOCTYPE project[

<!-- A "project" element represents a specific version of an Orbit project -->
<!ELEMENT project info contact notes legal+>
<!ATTLIST project id CDATA #REQUIRED>
<!ATTLIST project version CDATA #REQUIRED>

<!-- An "info" element contains more information on the project including where we got it and optional references on the web, etc. -->
<!ELEMENT info (name? origin? reference? repository location tag?)>
<!ELEMENT name (#PCDATA)>
<!ELEMENT origin (#PCDATA)>
<!ELEMENT reference (#PCDATA)>
<!-- The "repository" is the path to the CVS repository. -->
<!ELEMENT repository (#PCDATA)>
<!-- The "location" is the path in the CVS repository. -->
<!ELEMENT location (#PCDATA)>
<!ELEMENT tag (#PCDATA)>

<!-- The "contact" element describes the person on Orbit who is the contact for that project. -->
<!ELEMENT contact (name email company?)>
<!ELEMENT email (#PCDATA)>
<!ELEMENT company (#PCDATA)>

<!-- The "notes" element is an area for free-form notes about the project. -->
<!ELEMENT notes (note+)>
<!ELEMENT note (#PCDATA)>

<!-- The "legal" element describes the legal items related to the project. There can be more than one if 
we have more than one package (JAR, package, or some other unit that has a different license than the 
enclosing project) The "package" element is not required (and there should only be one "legal" 
element) if the "legal" element applies to the whole project. -->
<!ELEMENT legal (ipzilla license package?)>
<!ELEMENT ipzilla>
<!ATTLIST ipzilla bug_id CDATA #REQUIRED>
<!ELEMENT license (name? reference)>
<!ELEMENT package (#PCDATA)>
]>


Example for Xerces:

<project id="org.apache.xerces" version="2.8.0">
 <info>
  <name>Apache Xerces</name>
  <origin>Apache</origin>
  <reference>http://xerces.apache.org</reference>
  <repository>/cvsroot/tools</repository>
  <location>org.eclipse.orbit/org.apache.xerces</location>
  <tag>v2_8_0</tag>
 </info>
 <contact>
  <name>Joe Smith</name>
  <email>joe@exmample.com</email>
  <company>Example Company</company>
 </contact>
 <notes>
  <note>We use this bundle for parsing XML.</note>
 </notes>
 <legal>
  <ipzilla bug_id="103"/>
  <license>
   <name>Apache License Version 2.0</name>
   <reference>http://apache.org/licenses/LICENSE-2.0</reference>
  </license>
  <package>xerces-apis.jar</package>
 </legal>
 <legal>
  <ipzilla bug_id="1234"/>
  <license>
   <name>Apache License Version 2.1</name>
   <reference>http://apache.org/licenses/LICENSE-2.1</reference>
  </license>
  <package>xerces-impl.jar</package>
 </legal>
</project>

Back to the top