svn commit: r1873349 - in /tinkerpop/site: docs/3.3.10-SNAPSHOT/dev/developer/ docs/3.3.10-SNAPSHOT/dev/provider/ docs/3.3.10-SNAPSHOT/recipes/ docs/3.3.10-SNAPSHOT/reference/ docs/3.3.10-SNAPSHOT/tut

2020-01-29 Thread spmallette
Author: spmallette
Date: Thu Jan 30 00:47:42 2020
New Revision: 1873349

URL: http://svn.apache.org/viewvc?rev=1873349&view=rev
Log:
Deploy docs for TinkerPop 3.3.10-SNAPSHOT


[This commit notification would consist of 127 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


[tinkerpop] branch master updated (669412f -> 3f67f94)

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 669412f  Merge branch '3.4-dev'
 add 2c60aa1  TINKERPOP-2332 JavaScript GLV: Fix structure toString() 
methods
 add dc5e457  TINKERPOP-2333 JavaScript GLV: Fix Edge GraphSON2+ 
serialization
 add e2c4b27  Merge pull request #1242 from apache/TINKERPOP-2332
 add 0dd374a  Merge branch '3.3-dev' into 3.4-dev
 new 3f67f94  Merge branch '3.4-dev'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/cucumber/feature-steps.js |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 4 files changed, 115 insertions(+), 14 deletions(-)
 create mode 100644 
gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/structure-types-test.js



[tinkerpop] 01/01: Merge branch '3.4-dev'

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 3f67f9492101aef3f147e4913cef6948f6f6d3a4
Merge: 669412f 0dd374a
Author: Jorge Bay Gondra 
AuthorDate: Wed Jan 29 17:22:56 2020 +0100

Merge branch '3.4-dev'

 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/cucumber/feature-steps.js |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 4 files changed, 115 insertions(+), 14 deletions(-)

diff --cc 
gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
index 3b3ddbf,4c0414a..1c6d512
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
+++ 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
@@@ -67,7 -66,8 +67,9 @@@ const ignoredScenarios = 
// An associative array containing the scenario name as key, for example:
'g_withSideEffectXa_setX_V_both_name_storeXaX_capXaX': new 
IgnoreError(ignoreReason.setNotSupported),
'g_withSideEffectXa_setX_V_both_name_aggregateXlocal_aX_capXaX': new 
IgnoreError(ignoreReason.setNotSupported),
 +  'g_V_group_byXageX': new 
IgnoreError(ignoreReason.nullKeysInMapNotSupportedWell),
+   'g_V_shortestPath_edgesIncluded': new 
IgnoreError(ignoreReason.needsFurtherInvestigation),
+   'g_V_shortestPath_edgesIncluded_edgesXoutEX': new 
IgnoreError(ignoreReason.needsFurtherInvestigation)
  };
  
  defineSupportCode(function(methods) {



[tinkerpop] 01/01: Merge branch '3.3-dev' into 3.4-dev

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a commit to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 0dd374a399360281577eb04b4112af72f7d06f1b
Merge: 7ea3dfa e2c4b27
Author: Jorge Bay Gondra 
AuthorDate: Wed Jan 29 16:30:31 2020 +0100

Merge branch '3.3-dev' into 3.4-dev

 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/cucumber/feature-steps.js |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 4 files changed, 115 insertions(+), 14 deletions(-)

diff --cc 
gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.js
index edbc02c,5019a9c..359e2f8
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.js
+++ 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.js
@@@ -165,11 -168,20 +168,20 @@@ function areEqual(obj1, obj2) 
return false;
  }
  
+ function summarize(value) {
+   if (value === null || value === undefined) {
+ return value;
+   }
+ 
+   const strValue = value.toString();
+   return strValue.length > 20 ? strValue.substr(0, 20) : strValue;
+ }
+ 
  module.exports = {
-   Edge: Edge,
-   Graph: Graph,
-   Path: Path,
-   Property: Property,
-   Vertex: Vertex,
-   VertexProperty: VertexProperty
+   Edge,
+   Graph,
+   Path,
+   Property,
+   Vertex,
+   VertexProperty
 -};
 +};
diff --cc 
gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
index fed551d,2ad085f..4c0414a
--- 
a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
+++ 
b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js
@@@ -34,7 -34,6 +34,7 @@@ const traversal = require('../../lib/pr
  const Path = graphModule.Path;
  const __ = graphTraversalModule.statics;
  const t = traversalModule.t;
- const direction = traversalModule.direction
++const direction = traversalModule.direction;
  
  // Determines whether the feature maps (m[]), are deserialized as objects 
(true) or maps (false).
  // Use false for GraphSON3.
@@@ -65,7 -63,6 +65,9 @@@ const ignoreReason = 
  const ignoredScenarios = {
// An associative array containing the scenario name as key, for example:
'g_withSideEffectXa_setX_V_both_name_storeXaX_capXaX': new 
IgnoreError(ignoreReason.setNotSupported),
 +  'g_withSideEffectXa_setX_V_both_name_aggregateXlocal_aX_capXaX': new 
IgnoreError(ignoreReason.setNotSupported),
++  'g_V_shortestPath_edgesIncluded': new 
IgnoreError(ignoreReason.needsFurtherInvestigation),
++  'g_V_shortestPath_edgesIncluded_edgesXoutEX': new 
IgnoreError(ignoreReason.needsFurtherInvestigation)
  };
  
  defineSupportCode(function(methods) {



[tinkerpop] branch 3.4-dev updated (7ea3dfa -> 0dd374a)

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a change to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 7ea3dfa  TINKERPOP-2325 Refactored the filter traversal build for 
SPARQL
 add 2c60aa1  TINKERPOP-2332 JavaScript GLV: Fix structure toString() 
methods
 add dc5e457  TINKERPOP-2333 JavaScript GLV: Fix Edge GraphSON2+ 
serialization
 add e2c4b27  Merge pull request #1242 from apache/TINKERPOP-2332
 new 0dd374a  Merge branch '3.3-dev' into 3.4-dev

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/cucumber/feature-steps.js |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 4 files changed, 115 insertions(+), 14 deletions(-)
 create mode 100644 
gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/structure-types-test.js



[tinkerpop] 01/01: Merge pull request #1242 from apache/TINKERPOP-2332

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a commit to branch 3.3-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit e2c4b27cfe1aea50d159924b1883e08073d8e9a5
Merge: ea91070 dc5e457
Author: Jorge Bay Gondra 
AuthorDate: Wed Jan 29 16:27:11 2020 +0100

Merge pull request #1242 from apache/TINKERPOP-2332

TINKERPOP-2332 JavaScript GLV: Fix structure toString() methods

 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 3 files changed, 112 insertions(+), 13 deletions(-)



[GitHub] [tinkerpop] jorgebay merged pull request #1242: TINKERPOP-2332 JavaScript GLV: Fix structure toString() methods

2020-01-29 Thread GitBox
jorgebay merged pull request #1242: TINKERPOP-2332 JavaScript GLV: Fix 
structure toString() methods
URL: https://github.com/apache/tinkerpop/pull/1242
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[tinkerpop] branch 3.3-dev updated (ea91070 -> e2c4b27)

2020-01-29 Thread jorgebg
This is an automated email from the ASF dual-hosted git repository.

jorgebg pushed a change to branch 3.3-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from ea91070  Merge pull request #1241 from apache/TINKERPOP-2330
 add 2c60aa1  TINKERPOP-2332 JavaScript GLV: Fix structure toString() 
methods
 add dc5e457  TINKERPOP-2333 JavaScript GLV: Fix Edge GraphSON2+ 
serialization
 new e2c4b27  Merge pull request #1242 from apache/TINKERPOP-2332

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../gremlin-javascript/lib/structure/graph.js  | 34 ++---
 .../lib/structure/io/type-serializers.js   |  4 +-
 .../test/unit/structure-types-test.js  | 87 ++
 3 files changed, 112 insertions(+), 13 deletions(-)
 create mode 100644 
gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/structure-types-test.js



[GitHub] [tinkerpop] spmallette commented on issue #1242: TINKERPOP-2332 JavaScript GLV: Fix structure toString() methods

2020-01-29 Thread GitBox
spmallette commented on issue #1242: TINKERPOP-2332 JavaScript GLV: Fix 
structure toString() methods
URL: https://github.com/apache/tinkerpop/pull/1242#issuecomment-579806717
 
 
   VOTE +1


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services