From 6a66587b3b7621d2bd2599672cb4a3e581d84736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Matthias=20=28IT-SWE-CC3-TS2=20-=20Extern=29?= Date: Sat, 23 May 2020 13:32:05 +0200 Subject: [PATCH 1/4] ExcludePlacesContext and ExcludeSituationsContext Reduce the amount of traffic, if parts of the Context are not needed. --- OJP_JourneySupport.xsd | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/OJP_JourneySupport.xsd b/OJP_JourneySupport.xsd index 0c390ab6e..9c2a22098 100644 --- a/OJP_JourneySupport.xsd +++ b/OJP_JourneySupport.xsd @@ -496,6 +496,16 @@ Whether the trip calculation should find a solution that starts immediately (f.e. because the user is already on the way) instead of finding the latest possible start opportunity. + + + Whether the place context is needed. If a requestor has that information already, the response can be made slimmer. + + + + + Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer. + + From a6e56fe12d709bbbc0797ccf7b0912aaab61d969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Matthias=20=28IT-SWE-CC3-TS2=20-=20Extern=29?= Date: Sun, 31 May 2020 15:15:10 +0200 Subject: [PATCH 2/4] Integrated changes from pvgrumbokw Please change three things: a) The switches have effect on the content included in the response. Therefore they should be part of the TripContentFilterGroup. b) The switches in the TripContentFilterGroup are always include switches. So please define them as IncludeXXX with the default set to true. c) Please consider also the other OJP services. Where appropriate these switches should also be included into the content filter groups of those requests. --- .gitignore | 2 ++ OJP_JourneySupport.xsd | 21 +++++++++++---------- OJP_StopEvents.xsd | 10 ++++++++++ OJP_TripInfo.xsd | 10 ++++++++++ 4 files changed, 33 insertions(+), 10 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..4e71e96c6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +tmp0000.xsd diff --git a/OJP_JourneySupport.xsd b/OJP_JourneySupport.xsd index 9c2a22098..87f5fe2ca 100644 --- a/OJP_JourneySupport.xsd +++ b/OJP_JourneySupport.xsd @@ -1,4 +1,5 @@ + @@ -496,16 +497,6 @@ Whether the trip calculation should find a solution that starts immediately (f.e. because the user is already on the way) instead of finding the latest possible start opportunity. - - - Whether the place context is needed. If a requestor has that information already, the response can be made slimmer. - - - - - Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer. - - @@ -570,6 +561,16 @@ Whether the result should include accessibility information. + + + Whether the place context is needed. If a requestor has that information already, the response can be made slimmer, when set to false. Default is true. + + + + + Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer, when set to false. Default is true + + diff --git a/OJP_StopEvents.xsd b/OJP_StopEvents.xsd index a3566e9ee..aee8a7969 100644 --- a/OJP_StopEvents.xsd +++ b/OJP_StopEvents.xsd @@ -101,6 +101,16 @@ Whether realtime information of this stop event should be included in the response. + + + Whether the place context is needed. If a requestor has that information already, the response can be made slimmer, when set to false. Default is true. + + + + + Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer, when set to false. Default is true + + diff --git a/OJP_TripInfo.xsd b/OJP_TripInfo.xsd index 523c46dc9..d6e1f9167 100644 --- a/OJP_TripInfo.xsd +++ b/OJP_TripInfo.xsd @@ -73,6 +73,16 @@ Whether the result should include the geographic projection (coordinates) of this vehicle journey. + + + Whether the place context is needed. If a requestor has that information already, the response can be made slimmer, when set to false. Default is true. + + + + + Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer, when set to false. Default is true + + From e04ffb250af2ae69ca7190fbd4133ff0ddc78b55 Mon Sep 17 00:00:00 2001 From: Travis CI User Date: Sun, 31 May 2020 13:16:15 +0000 Subject: [PATCH 3/4] Travis CI update [skip ci] --- OJP_JourneySupport.xsd | 1 - OJP_StopEvents.xsd | 2 +- OJP_TripInfo.xsd | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/OJP_JourneySupport.xsd b/OJP_JourneySupport.xsd index 87f5fe2ca..da133f02d 100644 --- a/OJP_JourneySupport.xsd +++ b/OJP_JourneySupport.xsd @@ -1,5 +1,4 @@ - diff --git a/OJP_StopEvents.xsd b/OJP_StopEvents.xsd index aee8a7969..ee11f6d50 100644 --- a/OJP_StopEvents.xsd +++ b/OJP_StopEvents.xsd @@ -110,7 +110,7 @@ Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer, when set to false. Default is true - + diff --git a/OJP_TripInfo.xsd b/OJP_TripInfo.xsd index d6e1f9167..00112cab1 100644 --- a/OJP_TripInfo.xsd +++ b/OJP_TripInfo.xsd @@ -82,7 +82,7 @@ Wheter the situation context is needed. If a requestor has that information by other means or can't process it, the response can be made slimmer, when set to false. Default is true - + From fe0abee75f2b572a97c02ff426c3120112c22484 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20G=C3=BCnter?= Date: Thu, 11 Jun 2020 17:50:22 +0200 Subject: [PATCH 4/4] Delete .gitignore --- .gitignore | 2 -- 1 file changed, 2 deletions(-) delete mode 100644 .gitignore diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 4e71e96c6..000000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ - -tmp0000.xsd