[openriverbed-build~subversion:24] svn struktur anlegen

  • From: jens.klose@kenai.com
  • To: commits@openriverbed-build.kenai.com
  • Subject: [openriverbed-build~subversion:24] svn struktur anlegen
  • Date: Wed, 9 Sep 2009 06:16:44 +0000

Project:    openriverbed-build
Repository: subversion
Revision:   24
Author:     jens.klose
Date:       2009-09-08 18:04:43 UTC
Link:       

Log Message:
------------
svn struktur anlegen


Revisions:
----------
24


Added Paths:
------------
branches/3.0.0/openriverbed/.buildpath
branches/3.0.0/openriverbed/cvsignore
branches/3.0.0/openriverbed/installDevelopVersion.xml
branches/3.0.0/openriverbed
branches/3.0.0/openriverbed/filecompressor
branches/3.0.0/openriverbed/build.xml
branches/3.0.0/openriverbed/_versionZend-1.9.0
branches/3.0.0/openriverbed/_versionPHPUnit-3.3.17
branches/3.0.0/openriverbed/htaccess.production
branches/3.0.0/openriverbed/installNewProjectWithJQuery.xml
branches/3.0.0/openriverbed/_versionOrb-0.1
branches/3.0.0/openriverbed/htaccess.staging
branches/3.0.0/openriverbed/installLibFolder.xml
branches/3.0.0/openriverbed/README
branches/3.0.0/openriverbed/htaccess.development


Diffs:
------
Index: branches/3.0.0/openriverbed/cvsignore
===================================================================
--- branches/3.0.0/openriverbed/cvsignore       (revision 0)
+++ branches/3.0.0/openriverbed/cvsignore       (revision 24)
@@ -0,0 +1,6 @@
+.project
+.settings
+.cache
+PHPUnit
+
+nbproject
\ No newline at end of file
Index: branches/3.0.0/openriverbed/htaccess.production
===================================================================
--- branches/3.0.0/openriverbed/htaccess.production     (revision 0)
+++ branches/3.0.0/openriverbed/htaccess.production     (revision 24)
@@ -0,0 +1,8 @@
+SetEnv APPLICATION_ENV production
+
+RewriteEngine On
+RewriteCond %{REQUEST_FILENAME} -s [OR]
+RewriteCond %{REQUEST_FILENAME} -l [OR]
+RewriteCond %{REQUEST_FILENAME} -d
+RewriteRule ^.*$ - [NC,L]
+RewriteRule ^.*$ index.php [NC,L]
\ No newline at end of file
Index: branches/3.0.0/openriverbed/installNewProjectWithJQuery.xml
===================================================================
--- branches/3.0.0/openriverbed/installNewProjectWithJQuery.xml (revision 0)
+++ branches/3.0.0/openriverbed/installNewProjectWithJQuery.xml (revision 24)
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--****************************************************************************
+ * Install the directories and checkout the sources
+ *
+ * @author    Jens Klose <jens.klose@gmail.com>
+ * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version   $Id: installDevelopVersion.xml,v 1.4 2009/04/13 23:45:35 jens 
Exp $

****************************************************************************-->
+<project name="openriverbed.build" default="build" basedir=".">
+  <property name="project" value="example" />
+  <property name="server" value="cvsserver.de" />
+
+  <target name="_clean">
+    <delete dir="../pub" />
+    <delete dir="../app" />
+    <delete dir="../tests" />
+  </target>
+
+
+  <target name="build" depends="checkout,move" />
+
+
+  <!--
+  Exports for the working copy.
+  -->
+  <target name="checkout">
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.app" />
+    </exec>
+    <delete dir="../${project}.app/.git" />
+
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.pub" />
+    </exec>
+    <delete dir="../${project}.pub/.git" />
+
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.tests" />
+    </exec>
+    <delete dir="../${project}.tests/.git" />
+
+  </target>
+
+  <target name="move">
+      <move todir="../app"><fileset dir="../${project}.app" /></move>
+      <move todir="../pub"><fileset dir="../${project}.pub" /></move>
+      <move todir="../tests"><fileset dir="../${project}.tests" /></move>
+      <copy tofile="../.cvsignore"><fileset file="cvsignore"  /></copy>
+      <delete dir="../.svn" />
+  </target>
+     
+  <target name="sandbox">
+    <copy tofile="../.cvsignore"><fileset file="cvsignore"  /></copy>
+  </target>
+
+</project>
Index: branches/3.0.0/openriverbed/_versionOrb-0.1
===================================================================
Index: branches/3.0.0/openriverbed/_versionPHPUnit-3.3.17
===================================================================
Index: branches/3.0.0/openriverbed/_versionZend-1.9.0
===================================================================
Index: branches/3.0.0/openriverbed/htaccess.staging
===================================================================
--- branches/3.0.0/openriverbed/htaccess.staging        (revision 0)
+++ branches/3.0.0/openriverbed/htaccess.staging        (revision 24)
@@ -0,0 +1,8 @@
+SetEnv APPLICATION_ENV staging
+
+RewriteEngine On
+RewriteCond %{REQUEST_FILENAME} -s [OR]
+RewriteCond %{REQUEST_FILENAME} -l [OR]
+RewriteCond %{REQUEST_FILENAME} -d
+RewriteRule ^.*$ - [NC,L]
+RewriteRule ^.*$ index.php [NC,L]
\ No newline at end of file
Index: branches/3.0.0/openriverbed/installLibFolder.xml
===================================================================
--- branches/3.0.0/openriverbed/installLibFolder.xml    (revision 0)
+++ branches/3.0.0/openriverbed/installLibFolder.xml    (revision 24)
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--****************************************************************************
+ * Install the directories and checkout the sources
+ *
+ * @author    Jens Klose <jens.klose@gmail.com>
+ * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version   $Id: installDevelopVersion.xml,v 1.4 2009/04/13 23:45:35 jens 
Exp $

****************************************************************************-->
+<project name="openriverbed.libraries" default="build" basedir=".">
+  <property name="server" value="cvsserver.de" />
+
+  <target name="build" depends="init,clean,checkout" />
+
+  <target name="init">
+    <!-- Create the library directory -->
+    <mkdir dir="../lib" />
+  </target>
+
+  <target name="clean">
+    <delete dir="../lib/Zend" />
+    <delete dir="../lib/Orb" />
+    <delete dir="../PHPUnit" />
+  </target>
+
+  <target name="checkout">
+    <!-- Checkout openriverbed -->
+    <exec executable="git" dir="../lib">
+      <arg line="clone git://${server}/Orb" />
+    </exec>
+    <delete dir="../lib/Orb/.git" />
+
+    <parallel>
+        <!-- Checkout Zend_Framework -->
+        <exec executable="svn" dir="../lib">
+          <arg line="export 
http://framework.zend.com/svn/framework/standard/tags/release-1.9.0/library/Zend";
 />
+        </exec>
+        <!-- Checkout PHPUnit -->
+        <exec executable="svn" dir="..">
+          <arg line="export 
svn://svn.phpunit.de/phpunit/phpunit/branches/release/3.3/PHPUnit" />
+        </exec>
+    </parallel>
+
+    <copy todir="../lib"><fileset file="./_version*" /></copy>
+
+  </target>
+
+</project>
Index: branches/3.0.0/openriverbed/.buildpath
===================================================================
--- branches/3.0.0/openriverbed/.buildpath      (revision 0)
+++ branches/3.0.0/openriverbed/.buildpath      (revision 24)
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<buildpath>
+       <buildpathentry kind="src" path=""/>
+       <buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
+</buildpath>
Index: branches/3.0.0/openriverbed/installDevelopVersion.xml
===================================================================
--- branches/3.0.0/openriverbed/installDevelopVersion.xml       (revision 0)
+++ branches/3.0.0/openriverbed/installDevelopVersion.xml       (revision 24)
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--****************************************************************************
+ * Install the directories and checkout the sources
+ *
+ * @author    Jens Klose <jens.klose@gmail.com>
+ * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version   $Id: installDevelopVersion.xml,v 1.4 2009/04/13 23:45:35 jens 
Exp $

****************************************************************************-->
+<project name="openriverbed.build" default="build" basedir=".">
+  <property name="project" value="example" />
+  <property name="server" value="cvsserver.de" />
+
+  <target name="_clean">
+    <delete dir="../lib/Orb" />
+    <delete dir="../pub" />
+    <delete dir="../app" />
+    <delete dir="../tests" />
+  </target>
+
+
+  <target name="build" depends="init,checkout,setMaintainer,move" />
+
+   <!--
+  Initialize the project and creates the base directory structure.
+  -->
+  <target name="init">
+    <!-- Create the library directory -->
+    <mkdir dir="../lib" />
+  </target>
+
+  <!--
+  Performs an 'git clone' for the working copy.
+  -->
+  <target name="checkout">
+    <!-- Checkout Zend_Framework -->
+    <exec executable="git" dir="../lib">
+      <arg line="clone git://${server}/Orb" />
+    </exec>
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.app" />
+    </exec>
+    
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.pub" />
+    </exec>
+    
+    <exec executable="git" dir="..">
+      <arg line="clone git://${server}/${project}.tests" />
+    </exec>
+    
+  </target>
+
+  <target name="setMaintainer">
+    <exec executable="git" dir="../lib/Orb">
+      <arg line="remote add maintainer ssh://git@${server}/home/git/Orb" />
+    </exec>
+    <exec executable="git" dir="../${project}.app">
+      <arg line="remote add maintainer 
ssh://git@${server}/home/git/${project}.app" />
+    </exec>
+    <exec executable="git" dir="../${project}.pub">
+      <arg line="remote add maintainer 
ssh://git@${server}/home/git/${project}.pub" />
+    </exec>
+    <exec executable="git" dir="../${project}.tests">
+      <arg line="remote add maintainer 
ssh://git@${server}/home/git/${project}.tests" />
+    </exec>
+  </target>
+
+  <target name="move">
+      <move todir="../app"><fileset dir="../${project}.app" /></move>
+      <move todir="../pub"><fileset dir="../${project}.pub" /></move>
+      <move todir="../tests"><fileset dir="../${project}.tests" /></move>
+      <delete dir="../.svn" />
+  </target>
+
+</project>
Index: branches/3.0.0/openriverbed/filecompressor/yuicompressor-2.4.2.jar
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: 
branches/3.0.0/openriverbed/filecompressor/yuicompressor-2.4.2.jar
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream

Index: branches/3.0.0/openriverbed/filecompressor/build.xml
===================================================================
--- branches/3.0.0/openriverbed/filecompressor/build.xml        (revision 0)
+++ branches/3.0.0/openriverbed/filecompressor/build.xml        (revision 24)
@@ -0,0 +1,132 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--****************************************************************************
+ * Build script for ANT core or tools like cruiseControl
+ *
+ * @author    Jens Klose <jens.klose@gmail.com>
+ * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version   $Id: build.xml,v 1.1 2009/08/13 12:28:36 marcelk Exp $

****************************************************************************-->
+<project name="fileToShrink" default="build" basedir="./../../pub/">
+    <property name="compPath" value="./../openriverbed/filecompressor/" />
+    <property name="jsPath" value="${basedir}/js"/>
+    <property name="jsPathMin" value="${basedir}/js/min"/>
+    <property name="cssPath" value="${basedir}/css"/>
+    <property name="cssJsPath" value="${basedir}/css/js"/>
+    <property name="cssPathMin" value="${basedir}/css/min"/>
+
+    <target name="build" depends="init, clean, yuiCompressor, deploy" />
+
+    <target name="init">
+        <mkdir dir="${jsPathMin}" />
+        <mkdir dir="${cssPathMin}" />
+    </target>
+
+    <target name="clean">
+        <delete>
+            <fileset dir="${jsPathMin}" includes="**.*" />
+        </delete>
+        <delete>
+            <fileset dir="${cssPathMin}" includes="**.*" />
+        </delete>
+        <!-- <delete>
+            <fileset dir="${compPath}/build" includes="**.*" />
+        </delete> -->
+    </target>
+
+    <target name="yuiCompressor">
+        <!-- js Dateien-->
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${jsPath}/jquery.fixcorners.dev.js -o 
${jsPathMin}/jquery.fixcorners.js" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${jsPath}/imageflow.dev.js -o 
${jsPathMin}/imageflow.js" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${jsPath}/jquery.easing.dev.js -o 
${jsPathMin}/jquery.easing.js" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${jsPath}/jquery.fancybox.dev.js -o 
${jsPathMin}/jquery.fancybox.js" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${jsPath}/jquery.qtip.dev.js -o 
${jsPathMin}/jquery.qtip.js" />
+        </java>
+
+        <!-- css Dateien -->
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/960.dev.css -o ${cssPathMin}/960.css" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/base.dev.css -o ${cssPathMin}/base.css" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/default.dev.css -o 
${cssPathMin}/default.css" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/reset.dev.css -o ${cssPathMin}/reset.css" 
/>
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/style.dev.css -o ${cssPathMin}/style.css" 
/>
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssPath}/text.dev.css -o ${cssPathMin}/text.css" />
+        </java>
+
+        <!-- css Dateien aus dem js ordner-->
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssJsPath}/imageflow.dev.css -o 
${cssPathMin}/imageflow.css" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssJsPath}/jquery.fancybox.dev.css -o 
${cssPathMin}/jquery.fancybox.css" />
+        </java>
+        <java jar="${compPath}/yuicompressor-2.4.2.jar">
+            <arg line="${cssJsPath}/jquery.fixcorners.dev.css -o 
${cssPathMin}/jquery.fixcorners.css" />
+        </java>
+    </target>
+
+    <target name="deploy">
+        <!-- jss Dateien -->
+        <copy file="${jsPath}/jquery.fixcorners.dev.js" 
tofile="${compPath}/build/jquery.fixcorners.dev.js"/>
+        <copy file="${jsPathMin}/jquery.fixcorners.js" 
tofile="${compPath}/build/jquery.fixcorners.js"/>
+
+        <copy file="${jsPath}/imageflow.dev.js" 
tofile="${compPath}/build/imageflow.dev.js"/>
+        <copy file="${jsPathMin}/imageflow.js" 
tofile="${compPath}/build/imageflow.js"/>
+
+        <copy file="${jsPath}/jquery.easing.dev.js" 
tofile="${compPath}/build/jquery.easing.dev.js"/>
+        <copy file="${jsPathMin}/jquery.easing.js" 
tofile="${compPath}/build/jquery.easing.js"/>
+
+        <copy file="${jsPath}/jquery.fancybox.dev.js" 
tofile="${compPath}/build/jquery.fancybox.dev.js"/>
+        <copy file="${jsPathMin}/jquery.fancybox.js" 
tofile="${compPath}/build/jquery.fancybox.js"/>
+
+        <copy file="${jsPath}/jquery.qtip.dev.js" 
tofile="${compPath}/build/jquery.qtip.dev.js"/>
+        <copy file="${jsPathMin}/jquery.qtip.js" 
tofile="${compPath}/build/jquery.qtip.js"/>
+        
+        <!-- css Dateien -->
+        <copy file="${cssPath}/960.dev.css" 
tofile="${compPath}/build/960.dev.css"/>
+        <copy file="${cssPathMin}/960.css" 
tofile="${compPath}/build/960.css"/>
+
+        <copy file="${cssPath}/base.dev.css" 
tofile="${compPath}/build/base.dev.css"/>
+        <copy file="${cssPathMin}/base.css" 
tofile="${compPath}/build/base.css"/>
+
+        <copy file="${cssPath}/default.dev.css" 
tofile="${compPath}/build/default.dev.css"/>
+        <copy file="${cssPathMin}/default.css" 
tofile="${compPath}/build/default.css"/>
+
+        <copy file="${cssPath}/reset.dev.css" 
tofile="${compPath}/build/reset.dev.css"/>
+        <copy file="${cssPathMin}/reset.css" 
tofile="${compPath}/build/reset.css"/>
+
+        <copy file="${cssPath}/style.dev.css" 
tofile="${compPath}/build/style.dev.css"/>
+        <copy file="${cssPathMin}/style.css" 
tofile="${compPath}/build/style.css"/>
+
+        <copy file="${cssPath}/text.dev.css" 
tofile="${compPath}/build/text.dev.css"/>
+        <copy file="${cssPathMin}/text.css" 
tofile="${compPath}/build/text.css"/>
+        
+        <!-- css Dateien aus dem js ordner-->
+        <copy file="${cssJsPath}/imageflow.dev.css" 
tofile="${compPath}/build/imageflow.dev.css"/>
+        <copy file="${cssPathMin}/imageflow.css" 
tofile="${compPath}/build/imageflow.css"/>
+
+        <copy file="${cssJsPath}/jquery.fancybox.dev.css" 
tofile="${compPath}/build/jquery.fancybox.dev.css"/>
+        <copy file="${cssPathMin}/jquery.fancybox.css" 
tofile="${compPath}/build/jquery.fancybox.css"/>
+
+        <copy file="${cssJsPath}/jquery.fixcorners.dev.css" 
tofile="${compPath}/build/jquery.fixcorners.dev.css"/>
+        <copy file="${cssPathMin}/jquery.fixcorners.css" 
tofile="${compPath}/build/jquery.fixcorners.css"/>
+    </target>
+</project>
Index: branches/3.0.0/openriverbed/README
===================================================================
--- branches/3.0.0/openriverbed/README  (revision 0)
+++ branches/3.0.0/openriverbed/README  (revision 24)
@@ -0,0 +1,23 @@
+Installationsvoraussetungen:
+
+- Versionsverwaltung Git ist installiert
+-- Systemaufruf von "git" mit den Rechten des Users möglich
+-- unter Windows den PATH zu git.exe als Systenvariable setzen
+-- Anleitung: http://support.microsoft.com/kb/310519/de
+
+- Versionverwaltung Subversion ist installiert
+--  a windows client 32/64bit http://www.sliksvn.com/en/download
+
+- Java Enviroment
+- Ant Builder (JAVA Tool) und die entsprechenden Rechte alternativ
+
+optional:
+- Installation aus freier Entwicklungsumgebung NetBeans IDE (6.5) getestet
+-- Plugin ANT installiert
+
+Die Installation erfolgt dann einfach mit Hilfe der
+installNewProjectWithJQuery.xml.
+Unter Netbeans: Rechtklick -> Run Target -> build
+
+Es erfolgen Ausgaben im Output Fenster, die auf eventuelle Fehler hinweisen.
+"BUILD SUCCESSFUL (total time: XY seconds)" ist dort bei Erfolg zu finden.
Index: branches/3.0.0/openriverbed/build.xml
===================================================================
--- branches/3.0.0/openriverbed/build.xml       (revision 0)
+++ branches/3.0.0/openriverbed/build.xml       (revision 24)
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--****************************************************************************
+ * Build script for cruiseControl
+ *
+ * @author    Jens Klose <jens.klose@gmail.com>
+ * @license   http://www.opensource.org/licenses/bsd-license.php  BSD License
+ * @version   $Id: build.xml,v 1.14 2009/04/05 18:12:15 jens Exp $

****************************************************************************-->
+<project name="example" default="build" basedir=".">
+  <target name="build" depends="init, clean, php-codesniffer, 
php-documentor, phpunit" />
+
+  <target name="init">
+    <!-- Create the different build directories -->
+    <mkdir dir="${basedir}/build/logs" />
+    <mkdir dir="${basedir}/build/api" />
+    <mkdir dir="${basedir}/build/coverage" />
+  </target>
+
+  <target name="clean">
+       <!-- Remove old log files -->
+    <delete>
+      <fileset dir="${basedir}/build/logs" includes="**.*" />
+    </delete>
+    <delete>
+      <fileset dir="${basedir}/build/api" includes="**.*" />
+    </delete>
+    <delete>
+      <fileset dir="${basedir}/build/coverage" includes="**.*" />
+    </delete>
+  </target>
+
+  <target name="checkout">
+    <exec executable="git" dir="../tests">
+      <arg line="pull" />
+    </exec>
+    <exec executable="git" dir="../pub">
+      <arg line="pull" />
+    </exec>
+     <exec executable="git" dir="../app">
+      <arg line="pull" />
+    </exec>
+     <exec executable="git" dir="../lib/Orb">
+      <arg line="pull" />
+    </exec>
+  </target>
+
+  <target name="php-documentor">
+    <exec executable="phpdoc" dir="${basedir}/..">
+      
+      <arg line="-t ${basedir}/build/api
+                 -o HTML:frames:earthli
+                 -d lib/Orb/"/>
+    </exec>
+  </target>
+
+  <target name="php-codesniffer">
+    <exec executable="phpcs"
+          dir="${basedir}/.."
+          output="${basedir}/build/logs/checkstyle.xml">
+        <arg line="--report=checkstyle
+                   --standard=PEAR
+                   --ignore=src/autoload
+                   lib/Orb/"/>
+    </exec>
+  </target>
+
+  <target name="phpunit">
+    <exec executable="phpunit" dir="../tests" failonerror="off">
+      <arg line="--log-xml ${basedir}/build/logs/phpunit.xml
+                 --log-pmd ${basedir}/build/logs/phpunit.pmd.xml
+                 --log-metrics ${basedir}/build/logs/phpunit.metrics.xml
+                 --coverage-xml  ${basedir}/build/logs/phpunit.coverage.xml
+                 --coverage-html ${basedir}/build/coverage
+                 --configuration phpunit.xml" />
+    </exec>
+  </target>
+</project>
Index: branches/3.0.0/openriverbed/htaccess.development
===================================================================
--- branches/3.0.0/openriverbed/htaccess.development    (revision 0)
+++ branches/3.0.0/openriverbed/htaccess.development    (revision 24)
@@ -0,0 +1,8 @@
+SetEnv APPLICATION_ENV development
+
+RewriteEngine On
+RewriteCond %{REQUEST_FILENAME} -s [OR]
+RewriteCond %{REQUEST_FILENAME} -l [OR]
+RewriteCond %{REQUEST_FILENAME} -d
+RewriteRule ^.*$ - [NC,L]
+RewriteRule ^.*$ index.php [NC,L]
\ No newline at end of file

Property changes on: branches/3.0.0/openriverbed
___________________________________________________________________
Added: svn:ignore
   + nbproject
.project
thumb.db







[openriverbed-build~subversion:24] svn struktur anlegen

jens . klose 09/09/2009
  • Mysql
  • Glassfish
  • Jruby
  • Rails
  • Nblogo
Terms of Use; Privacy Policy;
© 2010, Oracle Corporation and/or its affiliates
(revision 20120518.3c65429)
 
 
Close
loading
Please Confirm
Close