|
From: <tho...@us...> - 2013-11-06 16:08:05
|
Revision: 7511
http://bigdata.svn.sourceforge.net/bigdata/?rev=7511&view=rev
Author: thompsonbry
Date: 2013-11-06 16:07:58 +0000 (Wed, 06 Nov 2013)
Log Message:
-----------
forcing javadoc build target to verbose=no
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-04 20:43:34 UTC (rev 7510)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 16:07:58 UTC (rev 7511)
@@ -381,7 +381,7 @@
<target name="javadoc" depends="prepare" if="javadoc">
<mkdir dir="${build.dir}/docs/api" />
<javadoc destdir="${build.dir}/docs/api" defaultexcludes="yes"
- author="true" version="true" use="true"
+ author="true" version="true" use="true" verbose="no"
overview="${bigdata.dir}/overview.html"
windowtitle="bigdata® v${build.ver}"
classpathref="build.classpath"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2013-11-06 16:12:14
|
Revision: 7512
http://bigdata.svn.sourceforge.net/bigdata/?rev=7512&view=rev
Author: thompsonbry
Date: 2013-11-06 16:12:07 +0000 (Wed, 06 Nov 2013)
Log Message:
-----------
added -quiet for javadoc target
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 16:07:58 UTC (rev 7511)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 16:12:07 UTC (rev 7512)
@@ -387,6 +387,7 @@
classpathref="build.classpath"
>
<arg value="-J-Xmx1000m" />
+ <arg value="-quiet" />
<packageset dir="${bigdata.dir}/bigdata/src/java" />
<packageset dir="${bigdata.dir}/bigdata/src/samples" />
<packageset dir="${bigdata.dir}/bigdata-jini/src/java" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2013-11-06 18:39:48
|
Revision: 7513
http://bigdata.svn.sourceforge.net/bigdata/?rev=7513&view=rev
Author: thompsonbry
Date: 2013-11-06 18:39:41 +0000 (Wed, 06 Nov 2013)
Log Message:
-----------
Fixed case-based spelling error in the HATest.dir property name that was preventing CI builds from succeeding on EC2.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 16:12:07 UTC (rev 7512)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-06 18:39:41 UTC (rev 7513)
@@ -1992,8 +1992,8 @@
<mkdir dir="${test.results.dir}" />
<!-- Clear out the old HA test suite logs. -->
- <property name="HAtest.dir" location="benchmark/CI-HAJournal-1" />
- <delete dir="${HAtest.dir}" quiet="true" />
+ <property name="HATest.dir" location="benchmark/CI-HAJournal-1" />
+ <delete dir="${HATest.dir}" quiet="true" />
<mkdir dir="${HATest.dir}" />
<condition property="testClass" value="${testName}">
@@ -2187,7 +2187,7 @@
<tar destfile="${test.results.dir}/report.tgz" basedir="${test.results.dir}/report" compression="gzip"/>
<!-- Archive the HA test suite output logs. -->
- <tar destfile="${test.results.dir}/HAtest-report.tgz" basedir="${HAtest.dir}" compression="gzip"/>
+ <tar destfile="${test.results.dir}/HAtest-report.tgz" basedir="${HATest.dir}" compression="gzip"/>
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2013-11-10 16:11:17
|
Revision: 7523
http://bigdata.svn.sourceforge.net/bigdata/?rev=7523&view=rev
Author: thompsonbry
Date: 2013-11-10 16:11:10 +0000 (Sun, 10 Nov 2013)
Log Message:
-----------
Apparently com.sun.jini.reggie.ConstrainableRegistrarProxy was in reggie.jar and that file was not included in the lookupstarter.jar manifest. Including that jar in the classpath appears to be enough for the LUS to start. I am going to commit this change to CI and then verify that lookup is properly started and stopped on ci.bigdata.com
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 15:01:49 UTC (rev 7522)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 16:11:10 UTC (rev 7523)
@@ -1693,7 +1693,7 @@
<jar destfile="${bigdata-test.lib}/lookupstarter.jar" index="false">
<manifest>
<attribute name="Manifest-Version" value="1.0" />
- <attribute name="Class-Path" value="log4j.jar jsk-platform.jar jsk-lib.jar start.jar bigdata.jar" />
+ <attribute name="Class-Path" value="log4j.jar jsk-platform.jar jsk-lib.jar start.jar reggie.jar bigdata.jar" />
<attribute name="Main-Class" value="com.bigdata.service.jini.util.LookupStarter" />
</manifest>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2013-11-10 16:21:12
|
Revision: 7524
http://bigdata.svn.sourceforge.net/bigdata/?rev=7524&view=rev
Author: thompsonbry
Date: 2013-11-10 16:21:06 +0000 (Sun, 10 Nov 2013)
Log Message:
-----------
Further modified to copy reggie.jar into bigdata-test/lib for lookupStarter start/stop.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 16:11:10 UTC (rev 7523)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-10 16:21:06 UTC (rev 7524)
@@ -1715,6 +1715,7 @@
<delete file="${bigdata-test.lib}/jsk-platform.jar" quiet="true" />
<delete file="${bigdata-test.lib}/jsk-lib.jar" quiet="true" />
<delete file="${bigdata-test.lib}/start.jar" quiet="true" />
+ <delete file="${bigdata-test.lib}/reggie.jar" quiet="true" />
<delete file="${bigdata-test.lib}/bigdata.jar" quiet="true" />
<copy file="${dist.lib}/log4j.jar"
@@ -1725,6 +1726,8 @@
todir="${bigdata-test.lib}" />
<copy file="${dist.lib}/start.jar"
todir="${bigdata-test.lib}" />
+ <copy file="${dist.lib}/reggie.jar"
+ todir="${bigdata-test.lib}" />
<copy file="${dist.lib}/bigdata.jar"
todir="${bigdata-test.lib}" />
</target>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2013-11-12 17:11:57
|
Revision: 7533
http://bigdata.svn.sourceforge.net/bigdata/?rev=7533&view=rev
Author: thompsonbry
Date: 2013-11-12 17:11:51 +0000 (Tue, 12 Nov 2013)
Log Message:
-----------
Addding an explicit reference to a MAVEN_HOME variable so we can find mvn on ci.bigdata.com.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-12 16:43:34 UTC (rev 7532)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2013-11-12 17:11:51 UTC (rev 7533)
@@ -333,7 +333,7 @@
<!-- Deploy the JAR to the maven repository. -->
<target name="maven-deploy" depends="jar"
description="Deploy the jar to the maven repository.">
- <exec command="mvn">
+ <exec command="${MAVEN_HOME}/bin/mvn">
<arg value="clean"/>
<arg value="deploy"/>
</exec>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-01-15 17:55:03
|
Revision: 7809
http://bigdata.svn.sourceforge.net/bigdata/?rev=7809&view=rev
Author: thompsonbry
Date: 2014-01-15 17:54:57 +0000 (Wed, 15 Jan 2014)
Log Message:
-----------
Bug fix to build.xml to correctly remove the sparql-* files (and implicitly remove empty directories remaining once those files are removed) after a CI run.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-01-15 17:20:04 UTC (rev 7808)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-01-15 17:54:57 UTC (rev 7809)
@@ -2313,13 +2313,18 @@
</target>
-<target name="clean-sparql-test-suite" description="delete the files unpacked by the Sesame SPARQL test suite.">
-<echo>"clearing: ${java.io.tmpdir}/sparql-*"</echo>
-<delete verbose="true">
- <dirset dir="${java.io.tmpdir}" includes="sparql-*" />
-</delete>
-</target>
-
+ <target name="clean-sparql-test-suite"
+ description="Delete the files unpacked by the Sesame SPARQL test suite.">
+ <echo>"clearing: ${java.io.tmpdir}/sparql-*"</echo>
+ <delete verbose="true" includeemptydirs="true">
+ <fileset dir="${java.io.tmpdir}">
+ <patternset>
+ <include name="sparql-*/**"/>
+ </patternset>
+ </fileset>
+ </delete>
+ </target>
+
<!-- -->
<!-- SESAME SERVER TARGETS -->
<!-- -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-04-04 15:24:49
|
Revision: 8048
http://sourceforge.net/p/bigdata/code/8048
Author: thompsonbry
Date: 2014-04-04 15:24:46 +0000 (Fri, 04 Apr 2014)
Log Message:
-----------
Fixes to build.xml for changed location of the configuration file for the init.d start of bigdata HA services to /etc/default/bigdata/bigdataHA.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-04-04 15:19:44 UTC (rev 8047)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-04-04 15:24:46 UTC (rev 8048)
@@ -1085,8 +1085,8 @@
todir="${dist.dir}/etc/init.d" />
<chmod file="${dist.dir}/etc/init.d/bigdataHA" perm="755" />
- <copy file="${src.resources}/etc/bigdata/bigdataHA.config"
- todir="${dist.dir}/etc/bigdata" />
+ <copy file="${src.resources}/etc/default/bigdata/bigdataHA"
+ todir="${dist.dir}/etc/default/bigdata" />
<copy file="${src.resources}/bin/config/browser.config"
todir="${dist.bin.config}" />
@@ -1245,7 +1245,7 @@
bigdata/doc/NOTICE - copyright NOTICE files.
bigdata/doc/docs - javadoc (FIXME INSTALL JAVADOC, HA wiki page)
bigdata/etc/init.d/bigdataHA - HA services start/stop script.
- bigdata/etc/bigdata/bigdataHA.config - HA services required config file.
+ bigdata/etc/default/bigdata/bigdataHA - HA services required config file.
Note: This directory structure is currently reused for the rpm, but the
top-level of the rpm directory structure includes the release version as
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-04-04 16:52:04
|
Revision: 8051
http://sourceforge.net/p/bigdata/code/8051
Author: thompsonbry
Date: 2014-04-04 16:52:01 +0000 (Fri, 04 Apr 2014)
Log Message:
-----------
Changed the location of the bigdataHA defaults from
/etc/default/bigdata/bigdataHA
to
/etc/default/bigdataHA
That is, there is no longer a /etc/default/bigdata directory.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-04-04 16:12:05 UTC (rev 8050)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-04-04 16:52:01 UTC (rev 8051)
@@ -1085,8 +1085,8 @@
todir="${dist.dir}/etc/init.d" />
<chmod file="${dist.dir}/etc/init.d/bigdataHA" perm="755" />
- <copy file="${src.resources}/etc/default/bigdata/bigdataHA"
- todir="${dist.dir}/etc/default/bigdata" />
+ <copy file="${src.resources}/etc/default/bigdataHA"
+ todir="${dist.dir}/etc/default" />
<copy file="${src.resources}/bin/config/browser.config"
todir="${dist.bin.config}" />
@@ -1245,7 +1245,7 @@
bigdata/doc/NOTICE - copyright NOTICE files.
bigdata/doc/docs - javadoc (FIXME INSTALL JAVADOC, HA wiki page)
bigdata/etc/init.d/bigdataHA - HA services start/stop script.
- bigdata/etc/default/bigdata/bigdataHA - HA services required config file.
+ bigdata/etc/default/bigdataHA - HA services required config file.
Note: This directory structure is currently reused for the rpm, but the
top-level of the rpm directory structure includes the release version as
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mrp...@us...> - 2014-05-05 16:24:44
|
Revision: 8198
http://sourceforge.net/p/bigdata/code/8198
Author: mrpersonick
Date: 2014-05-05 16:24:41 +0000 (Mon, 05 May 2014)
Log Message:
-----------
Ticket #907: bigdata quick start.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-05 15:38:22 UTC (rev 8197)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-05 16:24:41 UTC (rev 8198)
@@ -2464,6 +2464,17 @@
</java>
</target>
+ <target name="start" depends="compile" description="Start the Bigdata Server.">
+ <java classname="com.bigdata.rdf.sail.webapp.NanoSparqlServer" failonerror="true" fork="true" logerror="true">
+ <classpath refid="runtime.classpath" />
+ <jvmarg value="-server"/>
+ <jvmarg value="-Xmx1G"/>
+ <jvmarg value="-Dlog4j.configuration=bigdata-war/src/WEB-INF/classes/log4j.properties"/>
+ <arg value="9999"/>
+ <arg value="kb"/>
+ <arg value="bigdata-war/src/WEB-INF/RWStore.properties"/>
+ </java>
+ </target>
</project>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-05-15 18:38:19
|
Revision: 8339
http://sourceforge.net/p/bigdata/code/8339
Author: thompsonbry
Date: 2014-05-15 18:38:16 +0000 (Thu, 15 May 2014)
Log Message:
-----------
removed duplicate of gom/src in build.xml
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-15 18:02:59 UTC (rev 8338)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-15 18:38:16 UTC (rev 8339)
@@ -312,7 +312,6 @@
<fileset dir="${bigdata.dir}/bigdata/src/samples" />
<fileset dir="${bigdata.dir}/bigdata-ganglia/src/java" />
<fileset dir="${bigdata.dir}/bigdata-gas/src/java" />
- <fileset dir="${bigdata.dir}/bigdata-gom/src/java" />
<fileset dir="${bigdata.dir}/bigdata-jini/src/java" />
<fileset dir="${bigdata.dir}/bigdata-rdf/src/java" />
<fileset dir="${bigdata.dir}/bigdata-rdf/src/samples" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <mrp...@us...> - 2014-05-15 21:39:25
|
Revision: 8343
http://sourceforge.net/p/bigdata/code/8343
Author: mrpersonick
Date: 2014-05-15 21:39:21 +0000 (Thu, 15 May 2014)
Log Message:
-----------
fixed the rexster URL for the fetch-rexster task
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-15 21:21:54 UTC (rev 8342)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-15 21:39:21 UTC (rev 8343)
@@ -2592,7 +2592,7 @@
<target name="fetch-rexster" depends="prepare,compile,jar">
<echo>Installing Rexster...</echo>
<get
- src="http://www.tinkerpop.com/downloads/gremlin/rexster-console-2.5.0.zip"
+ src="http://www.tinkerpop.com/downloads/rexster/rexster-console-2.5.0.zip"
dest="${build.dir}/rexster-console-2.5.0.zip"/>
<unzip src="${build.dir}/rexster-console-2.5.0.zip" dest="${build.dir}/"/>
<delete file="${build.dir}/rexster-console-2.5.0.zip"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-05-18 15:48:13
|
Revision: 8357
http://sourceforge.net/p/bigdata/code/8357
Author: thompsonbry
Date: 2014-05-18 15:48:10 +0000 (Sun, 18 May 2014)
Log Message:
-----------
removed references to README-JINI and overview.html in the SVN root. These files were aged and have been removed. Their absence was breaking the cluster installer.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-18 14:55:58 UTC (rev 8356)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-18 15:48:10 UTC (rev 8357)
@@ -393,14 +393,16 @@
<!-- Note: the javadoc requires a LOT of RAM, but runs quickly on a
server class machine.
- @todo man page for [bigdata] script to @{build.dir}/docs
+ TODO man page for [bigdata] script to @{build.dir}/docs
+ TODO: New overview page. Old one was very dated and has been removed.
+
+ overview="${bigdata.dir}/overview.html"
-->
<target name="javadoc" depends="prepare" if="javadoc">
<mkdir dir="${build.dir}/docs/api" />
<javadoc destdir="${build.dir}/docs/api" defaultexcludes="yes"
author="true" version="true" use="true" verbose="no"
- overview="${bigdata.dir}/overview.html"
windowtitle="bigdata® v${build.ver}"
classpathref="build.classpath"
encoding="utf-8"
@@ -675,8 +677,6 @@
<!-- @todo cleanup LEGAL into one directory off the root in the src tree? -->
<fileset dir="${bigdata.dir}">
<include name="LICENSE.txt" />
- <include name="overview.html" />
- <include name="README-JINI" />
<include name="bigdata/LEGAL/*" />
<include name="bigdata-jini/LEGAL/*" />
<include name="bigdata-rdf/LEGAL/*" />
@@ -1474,8 +1474,6 @@
<copy tofile="${build.dir}/build.properties" file="build.properties" />
<copy tofile="${build.dir}/build.xml" file="build.xml" />
<copy tofile="${build.dir}/LICENSE.txt" file="LICENSE.txt" />
- <copy tofile="${build.dir}/overview.html" file="overview.html" />
- <copy tofile="${build.dir}/README-JINI" file="README-JINI" />
<copy toDir="${build.dir}/LEGAL" flatten="true">
<fileset dir="${bigdata.dir}">
<include name="**/LEGAL/*" />
@@ -1497,8 +1495,6 @@
<include name="build.xml" />
<include name="LICENSE.txt" />
<include name="NOTICE" />
- <include name="overview.html" />
- <include name="README-JINI" />
<include name="**/LEGAL/*" />
<include name="bigdata/src/**" />
@@ -1572,8 +1568,6 @@
<copy toDir="${install.doc.dir}">
<fileset dir="${bigdata.dir}">
<include name="LICENSE.txt" />
- <include name="overview.html" />
- <include name="README-JINI" />
<include name="bigdata/LEGAL/*" />
<include name="bigdata-jini/LEGAL/*" />
<include name="bigdata-rdf/LEGAL/*" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-05-20 13:28:33
|
Revision: 8376
http://sourceforge.net/p/bigdata/code/8376
Author: thompsonbry
Date: 2014-05-20 13:28:29 +0000 (Tue, 20 May 2014)
Log Message:
-----------
added google adsense to the generated javadoc.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-20 12:50:45 UTC (rev 8375)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-20 13:28:29 UTC (rev 8376)
@@ -406,33 +406,49 @@
windowtitle="bigdata® v${build.ver}"
classpathref="build.classpath"
encoding="utf-8"
- private="false"
+ private="false"
>
- <arg value="-J-Xmx1000m" />
+ <arg value="-J-Xmx1000m" />
<arg value="-quiet" />
- <packageset dir="${bigdata.dir}/bigdata/src/java" />
- <packageset dir="${bigdata.dir}/bigdata/src/samples" />
- <packageset dir="${bigdata.dir}/bigdata-jini/src/java" />
- <packageset dir="${bigdata.dir}/bigdata-rdf/src/java" />
- <packageset dir="${bigdata.dir}/bigdata-rdf/src/samples" />
- <packageset dir="${bigdata.dir}/bigdata-sails/src/java" />
- <packageset dir="${bigdata.dir}/bigdata-blueprints/src/java" />
- <packageset dir="${bigdata.dir}/bigdata-sails/src/samples" />
+ <packageset dir="${bigdata.dir}/bigdata/src/java" />
+ <packageset dir="${bigdata.dir}/bigdata/src/samples" />
+ <packageset dir="${bigdata.dir}/bigdata-jini/src/java" />
+ <packageset dir="${bigdata.dir}/bigdata-rdf/src/java" />
+ <packageset dir="${bigdata.dir}/bigdata-rdf/src/samples" />
+ <packageset dir="${bigdata.dir}/bigdata-sails/src/java" />
+ <packageset dir="${bigdata.dir}/bigdata-blueprints/src/java" />
+ <packageset dir="${bigdata.dir}/bigdata-sails/src/samples" />
<packageset dir="${bigdata.dir}/bigdata-gom/src/java" />
<packageset dir="${bigdata.dir}/bigdata-gom/src/samples" />
<packageset dir="${bigdata.dir}/bigdata-gas/src/java" />
- <packageset dir="${bigdata.dir}/ctc-striterators/src/java" />
- <doctitle>
+ <packageset dir="${bigdata.dir}/ctc-striterators/src/java" />
+ <doctitle>
<![CDATA[<h1>bigdata® v${build.ver}</h1>]]></doctitle>
- <bottom>
- <![CDATA[<i>Copyright © 2006-2014 SYSTAP, LLC. All Rights Reserved.</i>]]></bottom>
+ <bottom>
+ <![CDATA[<i>Copyright © 2006-2014 SYSTAP, LLC. All Rights Reserved.</i>
+<script>
+jQuery(document).ready(function(){
+ jQuery('ul.sf-menu').superfish({
+ pathClass: 'current',
+ cssArrows: false
+ });
+});
+
+(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+ga('create', 'UA-50971023-1', 'bigdata.com');
+ga('send', 'pageview');
+</script>
+]]></bottom>
<tag name="todo" scope="all" description="TODO:" />
<tag name="issue" scope="all" description="ISSUE:" />
<!--tag name="FIXME" scope="all" description="FIXME:"/-->
<link href="http://download.oracle.com/javase/7/docs/api/" />
<link href="http://openrdf.callimachus.net/sesame/2.7/apidocs/" />
<link href="http://lucene.apache.org/java/3_0_0/api/"/>
- <link href="http://lucene.apache.org/core/old_versioned_docs/versions/3_0_3/api/all/"/>
+ <link href="http://lucene.apache.org/core/old_versioned_docs/versions/3_0_3/api/all/"/>
<link href="http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/"/>
<link href="http://hc.apache.org/httpcomponents-core-ga/httpcore-nio/apidocs/"/>
<link href="http://hc.apache.org/httpcomponents-client-ga/httpclient/apidocs/"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-05-23 16:04:07
|
Revision: 8416
http://sourceforge.net/p/bigdata/code/8416
Author: thompsonbry
Date: 2014-05-23 16:04:05 +0000 (Fri, 23 May 2014)
Log Message:
-----------
Modified to chmod the bigdataNSS (versus bigdata) script as well.
See #941
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-23 15:53:35 UTC (rev 8415)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-05-23 16:04:05 UTC (rev 8416)
@@ -1272,7 +1272,7 @@
<chmod file="${dist.bin}/bigdata" perm="755" />
<copy file="${deploy.nss}/bin/bigdataNSS"
todir="${dist.bin}" />
- <chmod file="${dist.bin}/bigdata" perm="755" />
+ <chmod file="${dist.bin}/bigdataNSS" perm="755" />
<copy file="${deploy.nss}/bin/startNSS"
todir="${dist.bin}" />
<chmod file="${dist.bin}/startNSS" perm="755" />
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <tho...@us...> - 2014-06-03 14:58:12
|
Revision: 8442
http://sourceforge.net/p/bigdata/code/8442
Author: thompsonbry
Date: 2014-06-03 14:58:09 +0000 (Tue, 03 Jun 2014)
Log Message:
-----------
Documentation for the start-bigdata ant task.
Modified Paths:
--------------
branches/BIGDATA_RELEASE_1_3_0/build.xml
Modified: branches/BIGDATA_RELEASE_1_3_0/build.xml
===================================================================
--- branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-06-03 14:40:41 UTC (rev 8441)
+++ branches/BIGDATA_RELEASE_1_3_0/build.xml 2014-06-03 14:58:09 UTC (rev 8442)
@@ -2628,7 +2628,7 @@
</java>
</target>
- <target name="start-bigdata" depends="compile" description="Start the Bigdata Server.">
+ <target name="start-bigdata" depends="compile" description="Start the Bigdata Server (triples mode).">
<java classname="com.bigdata.rdf.sail.webapp.NanoSparqlServer" failonerror="true" fork="true" logerror="true">
<classpath refid="runtime.classpath" />
<jvmarg value="-server"/>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|