diff --git a/Documentation/Examples/HTML_01_routingCreateMultiPath.generated b/Documentation/Examples/HTML_04_routingCreateMultiPath.generated similarity index 82% rename from Documentation/Examples/HTML_01_routingCreateMultiPath.generated rename to Documentation/Examples/HTML_04_routingCreateMultiPath.generated index 27bbc951e9..517d49c4f9 100644 --- a/Documentation/Examples/HTML_01_routingCreateMultiPath.generated +++ b/Documentation/Examples/HTML_04_routingCreateMultiPath.generated @@ -2,31 +2,32 @@ arangosh> db._routing.save({ ........> url: { match: "/hello/world" }, ........> content: { contentType: "text/plain", body: "Match No 1"} }); { - "_id" : "_routing/102", - "_key" : "102", - "_rev" : "102" + "_id" : "_routing/110", + "_key" : "110", + "_rev" : "110" } arangosh> db._routing.save({ ........> url: { match: "/hello/:name", constraint: { name: "/[a-z]+/" } }, ........> content: { contentType: "text/plain", body: "Match No 2"} }); { - "_id" : "_routing/105", - "_key" : "105", - "_rev" : "105" + "_id" : "_routing/114", + "_key" : "114", + "_rev" : "114" } arangosh> db._routing.save({ ........> url: { match: "/:something/world" }, ........> content: { contentType: "text/plain", body: "Match No 3"} }); { - "_id" : "_routing/108", - "_key" : "108", - "_rev" : "108" + "_id" : "_routing/117", + "_key" : "117", + "_rev" : "117" } arangosh> db._routing.save({ ........> url: { match: "/hi/*" }, ........> content: { contentType: "text/plain", body: "Match No 4"} }); { - "_id" : "_routing/111", - "_key" : "111", - "_rev" : "111" + "_id" : "_routing/120", + "_key" : "120", + "_rev" : "120" } +arangosh> require("internal").reloadRouting() diff --git a/Documentation/Examples/HTML_02_routingGetMultiPath.generated b/Documentation/Examples/HTML_05_routingGetMultiPath.generated similarity index 100% rename from Documentation/Examples/HTML_02_routingGetMultiPath.generated rename to Documentation/Examples/HTML_05_routingGetMultiPath.generated