You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/09/01 17:48:24 UTC

[1/3] tinkerpop git commit: Now that there is an index.html file in root of /src in docs, it can't look for asciidocs in subdirs CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master 95f536f61 -> 455aaf379


Now that there is an index.html file in root of /src in docs, it can't look for asciidocs in subdirs CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/a26d6d82
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/a26d6d82
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/a26d6d82

Branch: refs/heads/master
Commit: a26d6d82873471cd70e3ef9528676396a9976310
Parents: 998157d
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Sep 1 13:35:47 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Sep 1 13:35:47 2016 -0400

----------------------------------------------------------------------
 docs/preprocessor/preprocess.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a26d6d82/docs/preprocessor/preprocess.sh
----------------------------------------------------------------------
diff --git a/docs/preprocessor/preprocess.sh b/docs/preprocessor/preprocess.sh
index 0e9fa73..808eacd 100755
--- a/docs/preprocessor/preprocess.sh
+++ b/docs/preprocessor/preprocess.sh
@@ -130,7 +130,7 @@ echo "============================"
 ec=0
 for subdir in $(find "${TP_HOME}/docs/src/" -name index.asciidoc | xargs -n1 dirname)
 do
-  find "${subdir}" -name "*.asciidoc" |
+  find "${subdir}" -maxdepth 1 -name "*.asciidoc" |
        xargs -n1 basename |
        xargs -n1 -I {} echo "echo -ne {}' '; (grep -n {} ${subdir}/index.asciidoc || echo 0) | head -n1 | cut -d ':' -f1" | /bin/bash | sort -nk2 | cut -d ' ' -f1 |
        xargs -n1 -I {} echo "${subdir}/{}" |


[2/3] tinkerpop git commit: Write Gremlin Server log to file during process-docs.sh TINKERPOP-1416 CTR

Posted by sp...@apache.org.
Write Gremlin Server log to file during process-docs.sh TINKERPOP-1416 CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/09e84271
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/09e84271
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/09e84271

Branch: refs/heads/master
Commit: 09e842714856996ca5f1335f2037b79a58b0f928
Parents: a26d6d8
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Sep 1 13:46:45 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Sep 1 13:46:45 2016 -0400

----------------------------------------------------------------------
 docs/preprocessor/preprocess.sh | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/09e84271/docs/preprocessor/preprocess.sh
----------------------------------------------------------------------
diff --git a/docs/preprocessor/preprocess.sh b/docs/preprocessor/preprocess.sh
index 808eacd..3fafef0 100755
--- a/docs/preprocessor/preprocess.sh
+++ b/docs/preprocessor/preprocess.sh
@@ -66,6 +66,7 @@ function directory {
 }
 
 mkdir -p target/postprocess-asciidoc/tmp
+mkdir -p target/postprocess-asciidoc/logs
 cp -R docs/{static,stylesheets} target/postprocess-asciidoc/
 
 TP_HOME=`pwd`
@@ -80,7 +81,7 @@ HISTORY_FILE=".gremlin_groovy_history"
 [ -f ~/${HISTORY_FILE} ] && cp ~/${HISTORY_FILE} ${TMP_DIR}
 
 pushd gremlin-server/target/apache-tinkerpop-gremlin-server-*-standalone > /dev/null
-bin/gremlin-server.sh conf/gremlin-server-modern.yaml > /dev/null 2> /dev/null &
+bin/gremlin-server.sh conf/gremlin-server-modern.yaml > ${TP_HOME}/target/postprocess-asciidoc/logs/gremlin-server.log 2>&1 &
 GREMLIN_SERVER_PID=$!
 popd > /dev/null
 


[3/3] tinkerpop git commit: Merge remote-tracking branch 'origin/tp31'

Posted by sp...@apache.org.
Merge remote-tracking branch 'origin/tp31'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/455aaf37
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/455aaf37
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/455aaf37

Branch: refs/heads/master
Commit: 455aaf37900af1998774c4081484babf8c1aaa8e
Parents: 95f536f 09e8427
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Thu Sep 1 13:48:14 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Thu Sep 1 13:48:14 2016 -0400

----------------------------------------------------------------------
 docs/preprocessor/preprocess.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------