[ros-diffs] [greatlrd] 25738: fixed ReactOS.xml to ReactOS.rbuild. some one forget change some place to ReactOS.rbuild and update the doc

greatlrd at svn.reactos.org greatlrd at svn.reactos.org
Tue Feb 6 14:34:47 CET 2007


Author: greatlrd
Date: Tue Feb  6 16:34:47 2007
New Revision: 25738

URL: http://svn.reactos.org/svn/reactos?rev=25738&view=rev
Log:
fixed ReactOS.xml to ReactOS.rbuild. 
some one forget change some place to ReactOS.rbuild and update the doc

Modified:
    trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp
    trunk/reactos/tools/rbuild/doc/rbuild.dbk
    trunk/reactos/tools/rbuild/doc/rbuild.txt

Modified: trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp?rev=25738&r1=25737&r2=25738&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp (original)
+++ trunk/reactos/tools/rbuild/backend/mingw/mingw.cpp Tue Feb  6 16:34:47 2007
@@ -267,7 +267,7 @@
 void
 MingwBackend::GenerateHeader () const
 {
-	fprintf ( fMakefile, "# THIS FILE IS AUTOMATICALLY GENERATED, EDIT 'ReactOS.xml' INSTEAD\n\n" );
+	fprintf ( fMakefile, "# THIS FILE IS AUTOMATICALLY GENERATED, EDIT 'ReactOS.rbuild' INSTEAD\n\n" );
 }
 
 string

Modified: trunk/reactos/tools/rbuild/doc/rbuild.dbk
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/doc/rbuild.dbk?rev=25738&r1=25737&r2=25738&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/doc/rbuild.dbk (original)
+++ trunk/reactos/tools/rbuild/doc/rbuild.dbk Tue Feb  6 16:34:47 2007
@@ -59,14 +59,14 @@
     <section>
       <title>Top-level XML Build File</title>
 
-      <para>The top-level XML build file (<filename>ReactOS.xml</filename>) is
+      <para>The top-level XML build file (<filename>ReactOS.rbuild</filename>) is
       processed by <command>rbuild</command>. The following is an example of
       how it could look like:<programlisting>&lt;?xml version="1.0"?&gt;
 &lt;!DOCTYPE project SYSTEM "tools/rbuild/project.dtd"&gt;
 &lt;project name="ReactOS" makefile="Makefile.auto" xmlns:xi="http://www.w3.org/2001/XInclude"&gt;
-  &lt;xi:include href="config.xml"&gt;
+  &lt;xi:include href="config.rbuild"&gt;
     &lt;xi:fallback&gt;
-      &lt;xi:include href="config.template.xml" /&gt;
+      &lt;xi:include href="config.template.rbuild" /&gt;
     &lt;/xi:fallback&gt;
   &lt;/xi:include&gt;
 
@@ -79,7 +79,7 @@
   &lt;include base="ReactOS"&gt;include&lt;/include&gt;
 
   &lt;directory name="boot"&gt;
-    &lt;xi:include href="boot/boot.xml" /&gt;
+    &lt;xi:include href="boot/boot.rbuild" /&gt;
   &lt;/directory&gt;
 
   &lt;module name="bootcd" type="iso"&gt;
@@ -92,7 +92,7 @@
 
       <para>XML files used by <command>rbuild</command> are modular and use
       XInclude to include other chunks of XML in the top-level
-      <filename>ReactOS.xml</filename> file. The namespace used by XInclude is
+      <filename>ReactOS.rbuild</filename> file. The namespace used by XInclude is
       <literal>xi</literal>.</para>
 
       <section id="element.xi.include">
@@ -105,9 +105,9 @@
         <section>
           <title>Syntax</title>
 
-          <programlisting>&lt;xi:include href="<replaceable>config.xml</replaceable>"&gt;
+          <programlisting>&lt;xi:include href="<replaceable>config.rbuild</replaceable>"&gt;
   &lt;xi:fallback&gt;
-    &lt;xi:include href="<replaceable>config.template.xml</replaceable>" /&gt;
+    &lt;xi:include href="<replaceable>config.template.rbuild</replaceable>" /&gt;
   &lt;/xi:fallback&gt;
 &lt;/xi:include&gt;</programlisting>
         </section>
@@ -152,7 +152,7 @@
           <title>Syntax</title>
 
           <programlisting>&lt;xi:fallback&gt;
-  &lt;xi:include href="<replaceable>config.template.xml</replaceable>" /&gt;
+  &lt;xi:include href="<replaceable>config.template.rbuild</replaceable>" /&gt;
 &lt;/xi:fallback&gt;</programlisting>
         </section>
 
@@ -1642,7 +1642,7 @@
           <title>Parents</title>
 
           <para>None. This is the top-level (root) element of
-          <filename>ReactOS.xml</filename> file.</para>
+          <filename>ReactOS.rbuild</filename> file.</para>
         </section>
 
         <section>

Modified: trunk/reactos/tools/rbuild/doc/rbuild.txt
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/doc/rbuild.txt?rev=25738&r1=25737&r2=25738&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/doc/rbuild.txt (original)
+++ trunk/reactos/tools/rbuild/doc/rbuild.txt Tue Feb  6 16:34:47 2007
@@ -19,14 +19,14 @@
 
 Top-level XML Build File
 ------------------------
-The top-level xml build file (ReactOS.xml) is processed by rbuild. The following is an example of how it could look like:
+The top-level xml build file (ReactOS.rbuild) is processed by rbuild. The following is an example of how it could look like:
 
 <?xml version="1.0"?>
 <!DOCTYPE project SYSTEM "tools/rbuild/project.dtd">
 <project name="ReactOS" makefile="Makefile.auto" xmlns:xi="http://www.w3.org/2001/XInclude">
-	<xi:include href="config.xml">
+	<xi:include href="config.rbuild">
 		<xi:fallback>
-			<xi:include href="config.template.xml" />
+			<xi:include href="config.template.rbuild" />
 		</xi:fallback>
 	</xi:include>
 
@@ -39,7 +39,7 @@
 	<include base="ReactOS">include</include>
 
 	<directory name="boot">
-		<xi:include href="boot/boot.xml" />
+		<xi:include href="boot/boot.rbuild" />
 	</directory>
 
 	<module name="bootcd" type="iso">
@@ -52,9 +52,9 @@
 It is possible to split an xml build file over several files. The include element in the xi namespace is used to accomplish this.
 
 Syntax:
-	<xi:include href="config.xml">
+	<xi:include href="config.rbuild">
 		<xi:fallback>
-			<xi:include href="config.template.xml" />
+			<xi:include href="config.template.rbuild" />
 		</xi:fallback>
 	</xi:include>
 




More information about the Ros-diffs mailing list