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 2018/05/29 17:14:58 UTC

svn commit: r1832462 - in /tinkerpop/site: gremlin.html index.html js/prism.js

Author: spmallette
Date: Tue May 29 17:14:58 2018
New Revision: 1832462

URL: http://svn.apache.org/viewvc?rev=1832462&view=rev
Log:
Deploy TinkerPop homepage

Modified:
    tinkerpop/site/gremlin.html
    tinkerpop/site/index.html
    tinkerpop/site/js/prism.js

Modified: tinkerpop/site/gremlin.html
URL: http://svn.apache.org/viewvc/tinkerpop/site/gremlin.html?rev=1832462&r1=1832461&r2=1832462&view=diff
==============================================================================
--- tinkerpop/site/gremlin.html (original)
+++ tinkerpop/site/gremlin.html Tue May 29 17:14:58 2018
@@ -291,7 +291,7 @@ g.V().has("name","gremlin").
   out("bought").aggregate("stash").
   in("bought").out("bought").
     where(not(within("stash"))).
-  groupCount().order(local).by(values,decr)
+  groupCount().order(local).by(values,desc)
 </code></pre>
                 </div>
                 <div class="col-xs-7" style="border-left: thin solid #000000;height:148px">
@@ -315,7 +315,7 @@ g.V().hasLabel("person").
   pageRank().
     by("friendRank").
     by(outE("knows")).
-  order().by("friendRank",decr).
+  order().by("friendRank",desc).
   limit(10)</code></pre>
                 </div>
                 <div class="col-xs-7" style="border-left: thin solid #000000;height:148px">

Modified: tinkerpop/site/index.html
URL: http://svn.apache.org/viewvc/tinkerpop/site/index.html?rev=1832462&r1=1832461&r2=1832462&view=diff
==============================================================================
--- tinkerpop/site/index.html (original)
+++ tinkerpop/site/index.html Tue May 29 17:14:58 2018
@@ -271,7 +271,7 @@ limitations under the License.
       in("bought").out("bought").
         where(not(within("stash"))).
       groupCount().
-        order(local).by(values,decr)
+        order(local).by(values,desc)
           </code></pre>
          </div>
       </div>
@@ -417,6 +417,7 @@ limitations under the License.
          <a name="poweredby"></a>
          <h4 id="poweredby">Powered By</h4>
          <ul>
+            <li><a href="https://www.exakat.io/">exakat.io</a> - Static analysis engine for PHP, powered by Gremlin.</li>
             <li><a href="https://bricaud.github.io/graphexp/graphexp.html">Graphexp</a> - Interactive visualization of the Gremlin graph database with D3.js.</li>
             <li><a href="http://www.pitneybowes.com/us/customer-information-management/data-integration-management/spectrum-data-hub-module.html">Pitney Bowes Spectrum Data Hub Module</a> - Uses Gremlin OLTP to query Neo4j-powered master data management based graph database.</li>
          </ul>

Modified: tinkerpop/site/js/prism.js
URL: http://svn.apache.org/viewvc/tinkerpop/site/js/prism.js?rev=1832462&r1=1832461&r2=1832462&view=diff
==============================================================================
--- tinkerpop/site/js/prism.js (original)
+++ tinkerpop/site/js/prism.js Tue May 29 17:14:58 2018
@@ -233,7 +233,7 @@ Prism.languages.clike = {
     punctuation: /[{}[\];(),.:]/
 };
 Prism.languages.gremlin = Prism.languages.extend("clike", {
-    keyword: /\b(values,|decr|incr|local|global|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,
+    keyword: /\b(values,|decr|desc|incr|asc|local|global|async|await|break|case|catch|class|const|continue|debugger|default|delete|do|else|enum|export|extends|finally|for|from|function|get|if|implements|import|instanceof|interface|let|new|null|of|package|private|protected|public|return|set|static|super|switch|this|throw|try|typeof|var|void|while|with|yield)\b/,
     number: /\b-?(0x[\dA-Fa-f]+|0b[01]+|0o[0-7]+|\d*\.?\d+([Ee][+-]?\d+)?|NaN|Infinity)\b/,
     "function": /[_$a-zA-Z\xA0-\uFFFF][_$a-zA-Z0-9\xA0-\uFFFF]*(?=\()/i
 }), Prism.languages.insertBefore("gremlin", "keyword", {