[ros-diffs] [dreimer] 29844: Update part of the Documentation Add two new settings into the cmd Part of RosBE.

dreimer at svn.reactos.org dreimer at svn.reactos.org
Wed Oct 24 09:13:17 CEST 2007


Author: dreimer
Date: Wed Oct 24 11:13:17 2007
New Revision: 29844

URL: http://svn.reactos.org/svn/reactos?rev=29844&view=rev
Log:
Update part of the Documentation
Add two new settings into the cmd Part of RosBE.

Added:
    trunk/tools/RosBE-Windows/Documentation/files/options.html   (with props)
    trunk/tools/RosBE-Windows/Documentation/files/options.jpg   (with props)
Modified:
    trunk/tools/RosBE-Windows/Documentation/files/menu.html
    trunk/tools/RosBE-Windows/Root/Build.cmd
    trunk/tools/RosBE-Windows/Root/RosBE.cmd

Modified: trunk/tools/RosBE-Windows/Documentation/files/menu.html
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Documentation/files/menu.html?rev=29844&r1=29843&r2=29844&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Documentation/files/menu.html (original)
+++ trunk/tools/RosBE-Windows/Documentation/files/menu.html Wed Oct 24 11:13:17 2007
@@ -23,6 +23,7 @@
 		<li><a href="basic.html">Basic Functions</a></li>
 		<li><a href="adv.html">Advanced Functions</a></li>
 		<li><a href="howto.html">FAQ</a></li>
+		<li><a href="options.html">Configuration</a></li>
 		<li><a href="credits.html">Credits</a></li>
 	</ol>
 

Added: trunk/tools/RosBE-Windows/Documentation/files/options.html
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Documentation/files/options.html?rev=29844&view=auto
==============================================================================
--- trunk/tools/RosBE-Windows/Documentation/files/options.html (added)
+++ trunk/tools/RosBE-Windows/Documentation/files/options.html Wed Oct 24 11:13:17 2007
@@ -1,0 +1,27 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<html>
+<head>
+</head>
+<body>
+RosBE has a small configuration application, which lets you control
+many aspects of RosBE's look and feel. Additionally you can change
+settings which affect the build process.<br>
+<br>
+<div style="text-align: center;"><img
+ style="width: 389px; height: 425px;" alt="RosBE Configurator"
+ src="options.jpg"><br>
+<div style="text-align: left;"><br>
+As you can see, it is possible to edit the font and background color
+with RosBE Configurator. Additionally you can check the look in the
+Preview below.<br>
+Additionally you can Enable/Disable many Things with it. So you can
+switch on/off showing the time the build process needed. A new feature
+is the usage of ccache which can speed up the build process for ~5-10%
+for a cost of ~1,5 GB of Cache size. You can switch off/on the logging
+and stripping the Output Files, too. Stripping might help if you want
+to use ReactOS on a PC with less than 48 MB RAM, because stripped apps
+use less RAM.<br>
+</div>
+</div>
+</body>
+</html>

Propchange: trunk/tools/RosBE-Windows/Documentation/files/options.html
------------------------------------------------------------------------------
    svn:eol-style = native

Added: trunk/tools/RosBE-Windows/Documentation/files/options.jpg
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Documentation/files/options.jpg?rev=29844&view=auto
==============================================================================
Binary file - no diff available.

Propchange: trunk/tools/RosBE-Windows/Documentation/files/options.jpg
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: trunk/tools/RosBE-Windows/Root/Build.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Build.cmd?rev=29844&r1=29843&r2=29844&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Build.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Build.cmd Wed Oct 24 11:13:17 2007
@@ -51,7 +51,23 @@
         set TARGET_CPP=g++
     )
 )
-
+if defined _ROSBE_OBJPATH (
+    if not exist "%_ROSBE_OBJPATH%\." (
+        echo ERROR: The path specified doesn't seem to exist.
+        goto :EOB
+    ) else (
+        set ROS_INTERMEDIATE=%_ROSBE_OBJPATH%
+    )
+)
+if defined _ROSBE_OUTPATH (
+    if not exist "%_ROSBE_OUTPATH%\." (
+        echo ERROR: The path specified doesn't seem to exist.
+        goto :EOB
+    ) else (
+        set ROS_OUTPUT=%_ROSBE_OUTPATH%
+        set ROS_TEMPORARY=%_ROSBE_OUTPATH%
+    )
+)
 ::
 :: Get the current date and time for use in in our build log's file name.
 ::

Modified: trunk/tools/RosBE-Windows/Root/RosBE.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.cmd?rev=29844&r1=29843&r2=29844&view=diff
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.cmd Wed Oct 24 11:13:17 2007
@@ -26,7 +26,8 @@
 set _ROSBE_STRIP=0
 set _ROSBE_MINGWPATH=%_ROSBE_BASEDIR%\4.1.3
 set _ROSBE_LOGDIR=%CD%\RosBE-Logs
-
+set _ROSBE_OBJPATH=
+set _ROSBE_OUTPATH=
 ::
 :: Check if the user has used the options utility and
 :: if so, load their options.




More information about the Ros-diffs mailing list