[HippoCMS-scm] [Git][cms-community/hippo-addon-channel-manager] Pushed new branch feature/projectdocs-CHANNELMGR-1714

2018-02-13 Thread Joeri de Gooijer
Joeri de Gooijer pushed new branch feature/projectdocs-CHANNELMGR-1714 at 
cms-community / hippo-addon-channel-manager

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-addon-channel-manager/tree/feature/projectdocs-CHANNELMGR-1714
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-site-toolkit] Pushed new branch feature/HSTTWO-4242

2018-02-13 Thread Mathijs den Burger
Mathijs den Burger pushed new branch feature/HSTTWO-4242 at cms-community / 
hippo-site-toolkit

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-site-toolkit/tree/feature/HSTTWO-4242
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-addon-channel-manager][feature/projectdocs] 64 commits: CHANNELMGR-1520 Add alternative path for step 2

2018-02-13 Thread Arent-Jan Banck
Arent-Jan Banck pushed to branch feature/projectdocs at cms-community / 
hippo-addon-channel-manager


Commits:
c7b5ea48 by Michael Metternich at 2018-01-27T22:25:31+01:00
CHANNELMGR-1520 Add alternative path for step 2

- - - - -
319e0e96 by Michael Metternich at 2018-01-27T22:54:53+01:00
CHANNELMGR-1520 Minor code quality improvements and license header

- - - - -
7623da55 by Michael Metternich at 2018-01-29T09:56:27+01:00
CHANNELMGR-1520 Fix all unit tests

- - - - -
19269b18 by Mathijs den Burger at 2018-01-31T22:10:29+01:00
CHANNELMGR-1520 Check all unknown fields for requiredness

Introduce the UnknownFieldType field type, to which all unknown property
fields and all fields with a non-default plugin class are mapped.
The validators or those UnknownFieldTypes are still populated so we
can check whether any of them is required.

Still to do:
- make sure compounds that only contain unknown field types are still
  filtered out (their initial isValid check does not work since they are
  not empty anymore)
- fix 14 failing unit tests

- - - - -
0d4ea076 by Mathijs den Burger at 2018-02-02T10:22:10+01:00
CHANNELMGR-1520 Merge master changes into feature/CC-CHANNELMGR-1520

- - - - -
8635de59 by Mathijs den Burger at 2018-02-02T13:06:34+01:00
CHANNELMGR-1520 Recognize compound fields explicitly

Instead of assuming that everything thats not a choice field is
a compound, we now explicit recognize compounds fields: one of their
required supertypes is always hippo:compound. That prevents the
code from recognizing compound-like types like hippogallerypicker:imagelink
as a compound. These will now be parsed an UNKNOWN types instead,
which makes it possible to later recognize them as unknown required
types.

- - - - -
6461285b by Mathijs den Burger at 2018-02-02T13:10:21+01:00
CHANNELMGR-1520 Fix reporting of unsupported field types

They were not included anymore because FieldTypeUtils#determineFieldType
returned Unknown instead of an empty string for unsupported fields.

Dont include the unsupportedFieldTypes property in the JSON 
output
unless its not empty, otherwise the frontend will erroneously report
a usage statistic about it with an empty array of type names (an empty
array is truthy in JavaScript).

- - - - -
622590ec by Mathijs den Burger at 2018-02-05T12:49:37+01:00
CHANNELMGR-1520 Merge master changes into feature/CC-CHANNELMGR-1520

- - - - -
cbde8548 by Mathijs den Burger at 2018-02-05T13:47:24+01:00
CHANNELMGR-1520 Process unknown fields recursively

Renamed FieldsInformation#allRequiredFieldsIncluded to
FieldsInformation#canCreateAllRequiredFields. A required choice field is
included/supported, but still cannot be created since theres no way yet
to add one of the choices in the UI.

Unknown fields in compounds (and compounds in compounds, etc.) are now
also noted.

Removed the UnknownFieldType again. It was only used for processing the
FieldsInformation, which can also be done without creating a FieldType
class via reflection.

- - - - -
83d1818d by Mathijs den Burger at 2018-02-05T14:00:55+01:00
CHANNELMGR-1520 Process unknown field types while initializing fields

- - - - -
d5f2575a by Mathijs den Burger at 2018-02-05T16:39:28+01:00
CHANNELMGR-1520 Report unknown choices too

Move the logic for mapping content type names to reported type names to
the FieldsInformation class so it can easily be reused for choices.

Also removed some lingering UNKNOWN fields code.

- - - - -
5fb74cc6 by Mathijs den Burger at 2018-02-05T16:44:32+01:00
CHANNELMGR-1520 Use canCreateAllRequiredFields property in frontend

Instead of allRequiredFieldsIncluded.

- - - - -
fc0ff305 by Mathijs den Burger at 2018-02-06T09:59:05+01:00
CHANNELMGR-1520 Re-enable caching of document types

Disabled during development.

- - - - -
569c45d8 by Mathijs den Burger at 2018-02-06T12:42:22+01:00
CHANNELMGR-1520 Add FieldsInformation tests

Simplified #addUnknownField as a result, which only needs a content type
item instead of a full field type context.

- - - - -
d7d2c973 by Mathijs den Burger at 2018-02-06T13:11:57+01:00
CHANNELMGR-1520 Implement equals and hashCode for FieldsInformation

Useful in unit tests.

- - - - -
0b99edf9 by Mathijs den Burger at 2018-02-06T13:21:04+01:00
CHANNELMGR-1520 Adjust ChoiceFieldUtils tests

- - - - -
7f003c18 by Mathijs den Burger at 2018-02-06T14:44:17+01:00
CHANNELMGR-1520 Fix ChoiceFieldType tests

- - - - -
326d7672 by Mathijs den Burger at 2018-02-06T14:47:31+01:00
CHANNELMGR-1520 Adjust AbstractFieldType tests

- - - - -
3d31fd8f by Arthur Bogaart at 2018-02-07T01:04:19+01:00
CHANNELMGR-1707 Add unit tests for HstComponentService

- - - - -
3b43b73e by Mathijs den Burger at 2018-02-07T10:18:36+01:00
CHANNELMGR-1520 Adjust FieldTypeUtils tests

The following fields will now be reported as Custom in the list of
unsupported field types:

- fields of an unknown type
- fields of a known type without an editor config node
- fields of a known type, but with a non-default plugin class
- fields of a 

[HippoCMS-scm] [Git][cms-community/hippo-cms-translations][release/12.1] CMS-10937 Bump cms and channel-manager versions

2018-02-13 Thread Arent-Jan Banck
Arent-Jan Banck pushed to branch release/12.1 at cms-community / 
hippo-cms-translations


Commits:
af91c006 by Arent-Jan Banck at 2018-02-13T15:58:44+01:00
CMS-10937 Bump cms and channel-manager versions

- - - - -


2 changed files:

- channel-manager/pom.xml
- hippo-cms/pom.xml


Changes:

=
channel-manager/pom.xml
=
--- a/channel-manager/pom.xml
+++ b/channel-manager/pom.xml
@@ -1,6 +1,6 @@
 
 

[HippoCMS-scm] [Git][cms-community/hippo-cms-translations][master] 6 commits: CMS-11063 Error in calendardate field in hippo

2018-02-13 Thread Jeroen Hoffman
Jeroen Hoffman pushed to branch master at cms-community / hippo-cms-translations


Commits:
94c94823 by Marijan Milicevic at 2018-02-06T12:32:33+01:00
CMS-11063 Error in calendardate field in hippo
- add date only tooltip and label

- - - - -
d70ec7a4 by Marijan Milicevic at 2018-02-06T14:17:09+01:00
CMS-11063 Error in calendardate field in hippo
- add already translated labels

- - - - -
5681ee77 by Jeroen Hoffman at 2018-02-06T14:25:16+01:00
CMS-11063 Click -- Klik, in Dutch

- - - - -
0b204e34 by Jeroen Hoffman at 2018-02-13T15:20:59+01:00
CMS-11063 rename DateTimePrinter$JavaDateTimePrinter.properties to 
DatePrinter$JavaDatePrinter.properties

- - - - -
9c4e9c5f by Jeroen Hoffman at 2018-02-13T15:27:17+01:00
CMS-11063 add deprecated to YuiGMTDateField properties

- - - - -
5f41e7ff by Jeroen Hoffman at 2018-02-13T15:46:14+01:00
CMS-11063 Reintegrate branch bugfix/CMS-11063 into master

- - - - -


20 changed files:

- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.registry.json
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.registry.json
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_de.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_de.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_es.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_es.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_fr.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_fr.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_nl.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_nl.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_zh.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_zh.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField.registry.json
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField_de.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField_es.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField_fr.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField_nl.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiDateTimeField_zh.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_de.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_es.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_fr.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_nl.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_zh.properties


Changes:

=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.registry.json
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.registry.json
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_de.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_de.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_es.properties
 → 

[HippoCMS-scm] [Git][cms-community/hippo-cms][bugfix/CMS-11063] CMS-11063 copyright 2018 for new file

2018-02-13 Thread Jeroen Hoffman
Jeroen Hoffman pushed to branch bugfix/CMS-11063 at cms-community / hippo-cms


Commits:
bc0b0b7c by Jeroen Hoffman at 2018-02-13T15:41:10+01:00
CMS-11063 copyright 2018 for new file

- - - - -


1 changed file:

- 
test/src/test/java/org/hippoecm/frontend/plugins/standards/datetime/DatePrinterTest.java


Changes:

=
test/src/test/java/org/hippoecm/frontend/plugins/standards/datetime/DatePrinterTest.java
=
--- 
a/test/src/test/java/org/hippoecm/frontend/plugins/standards/datetime/DatePrinterTest.java
+++ 
b/test/src/test/java/org/hippoecm/frontend/plugins/standards/datetime/DatePrinterTest.java
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2016 Hippo B.V. (http://www.onehippo.com)
+ *  Copyright 2018 Hippo B.V. (http://www.onehippo.com)
  *
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms/commit/bc0b0b7c5b6a73606fd532b45646e83cc2c87f56

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms/commit/bc0b0b7c5b6a73606fd532b45646e83cc2c87f56
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-cms-translations][bugfix/CMS-11063] CMS-11063 add deprecated to YuiGMTDateField properties

2018-02-13 Thread Jeroen Hoffman
Jeroen Hoffman pushed to branch bugfix/CMS-11063 at cms-community / 
hippo-cms-translations


Commits:
9c4e9c5f by Jeroen Hoffman at 2018-02-13T15:27:17+01:00
CMS-11063 add deprecated to YuiGMTDateField properties

- - - - -


6 changed files:

- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_de.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_es.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_fr.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_nl.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_zh.properties


Changes:

=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField.properties
@@ -1,3 +1,4 @@
+# deprecated: merged into YuiDateTimeField properties
 #Tue Jun 28 13:44:45 CEST 2016
 set-to-current-date-tooltip=Click to set current date
 set-to-current-date=Set to today


=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_de.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_de.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_de.properties
@@ -1,3 +1,4 @@
+# deprecated: merged into YuiDateTimeField properties
 #Wed Oct 19 10:46:59 CEST 2016
 set-to-current-date-tooltip=Klicken, um aktuelles Datum einzustellen
 set-to-current-date=Auf Heute einstellen


=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_es.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_es.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_es.properties
@@ -1,3 +1,4 @@
+# deprecated: merged into YuiDateTimeField properties
 #Wed Oct 19 10:47:23 CEST 2016
 set-to-current-date-tooltip=Haga clic para ajustar la fecha actual
 set-to-current-date=Fijado a hoy


=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_fr.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_fr.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_fr.properties
@@ -1,3 +1,4 @@
+# deprecated: merged into YuiDateTimeField properties
 #Wed Oct 19 10:47:11 CEST 2016
 set-to-current-date-tooltip=Cliquez pour mettre date et heure actuelles
 set-to-current-date=R\u00E9gler pour aujourd'hui 


=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_nl.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_nl.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_nl.properties
@@ -1,3 +1,4 @@
+# deprecated: merged into YuiDateTimeField properties
 #Wed Oct 19 10:46:12 CEST 2016
 set-to-current-date-tooltip=Click om de huidige datum te gebruiken
 set-to-current-date=Zet op vandaag


=
hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_zh.properties
=
--- 
a/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_zh.properties
+++ 
b/hippo-cms/resources/org/hippoecm/frontend/plugins/yui/datetime/YuiGMTDateField_zh.properties
@@ -1,3 +1,4 @@
+# deprecated, merged into YuiDateTimeField properties
 #Wed Oct 19 10:47:48 CEST 2016
 set-to-current-date-tooltip=\u70B9\u51FB\u8BBE\u7F6E\u5F53\u524D\u65E5\u671F
 set-to-current-date=\u8BBE\u7F6E\u4E3A\u4ECA\u5929



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms-translations/commit/9c4e9c5fed63dba4a92947b85a572b9304860604

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms-translations/commit/9c4e9c5fed63dba4a92947b85a572b9304860604
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-cms-translations][bugfix/CMS-11063] CMS-11063 rename DateTimePrinter$JavaDateTimePrinter.properties to…

2018-02-13 Thread Jeroen Hoffman
Jeroen Hoffman pushed to branch bugfix/CMS-11063 at cms-community / 
hippo-cms-translations


Commits:
0b204e34 by Jeroen Hoffman at 2018-02-13T15:20:59+01:00
CMS-11063 rename DateTimePrinter$JavaDateTimePrinter.properties to 
DatePrinter$JavaDatePrinter.properties

- - - - -


7 changed files:

- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.registry.json
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.registry.json
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_de.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_de.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_es.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_es.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_fr.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_fr.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_nl.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_nl.properties
- 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_zh.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_zh.properties


Changes:

=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter.registry.json
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter.registry.json
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_de.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_de.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_es.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_es.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_fr.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_fr.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_nl.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_nl.properties
=


=
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DateTimePrinter$JavaDateTimePrinter_zh.properties
 → 
hippo-cms/resources/org/hippoecm/frontend/plugins/standards/datetime/DatePrinter$JavaDatePrinter_zh.properties
=



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms-translations/commit/0b204e345dc8843bbdb7c0cfae523c7690e71537

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-cms-translations/commit/0b204e345dc8843bbdb7c0cfae523c7690e71537
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4252: Upgrade httpclient dependency to 4.5.5 (ported to 2.14)

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
fd9f3268 by Julian Reschke at 2018-02-13T12:59:42+00:00
JCR-4252: Upgrade httpclient dependency to 4.5.5 (ported to 2.14)

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824130 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


1 changed file:

- jackrabbit-webdav/pom.xml


Changes:

=
jackrabbit-webdav/pom.xml
=
--- a/jackrabbit-webdav/pom.xml
+++ b/jackrabbit-webdav/pom.xml
@@ -77,7 +77,7 @@
 
   org.apache.httpcomponents
   httpclient
-  4.5.4
+  4.5.5
 
 
   commons-httpclient



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/fd9f32687f1945417035157841a310a32b3994e8

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/fd9f32687f1945417035157841a310a32b3994e8
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-repository] Pushed new branch feature/REPO-1944

2018-02-13 Thread Peter Centgraf
Peter Centgraf pushed new branch feature/REPO-1944 at cms-community / 
hippo-repository

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-repository/tree/feature/REPO-1944
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-addon-channel-manager] Pushed new branch feature/CHANNELMGR-1725

2018-02-13 Thread Bert Leunis
Bert Leunis pushed new branch feature/CHANNELMGR-1725 at cms-community / 
hippo-addon-channel-manager

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-addon-channel-manager/tree/feature/CHANNELMGR-1725
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4250: remove guava dependency (ported to 2.14)

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
e3313e60 by Julian Reschke at 2018-02-13T12:06:47+00:00
JCR-4250: remove guava dependency (ported to 2.14)

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824116 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


3 changed files:

- jackrabbit-jcr-commons/pom.xml
- 
jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java
- jackrabbit-parent/pom.xml


Changes:

=
jackrabbit-jcr-commons/pom.xml
=
--- a/jackrabbit-jcr-commons/pom.xml
+++ b/jackrabbit-jcr-commons/pom.xml
@@ -73,10 +73,6 @@
   true
 
 
-  com.google.guava
-  guava
-
-
   biz.aQute
   bndlib
   provided


=
jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java
=
--- 
a/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java
+++ 
b/jackrabbit-jcr-commons/src/main/java/org/apache/jackrabbit/value/ValueHelper.java
@@ -29,7 +29,6 @@ import static javax.jcr.PropertyType.STRING;
 import static javax.jcr.PropertyType.UNDEFINED;
 import static javax.jcr.PropertyType.WEAKREFERENCE;
 
-import com.google.common.collect.ImmutableSet;
 import org.apache.jackrabbit.util.Base64;
 import org.apache.jackrabbit.util.Text;
 import org.apache.jackrabbit.util.TransientFileFactory;
@@ -53,7 +52,9 @@ import java.io.OutputStream;
 import java.io.BufferedOutputStream;
 import java.net.URI;
 import java.nio.charset.StandardCharsets;
+import java.util.Collections;
 import java.util.HashMap;
+import java.util.HashSet;
 import java.util.Map;
 import java.util.Set;
 
@@ -71,18 +72,26 @@ public class ValueHelper {
 
 private static final Map SUPPORTED_CONVERSIONS = 
new HashMap();
 static {
-SUPPORTED_CONVERSIONS.put(DATE, ImmutableSet.of(STRING, BINARY, 
DOUBLE, DECIMAL, LONG));
-SUPPORTED_CONVERSIONS.put(DOUBLE, ImmutableSet.of(STRING, BINARY, 
DECIMAL, DATE, LONG));
-SUPPORTED_CONVERSIONS.put(DECIMAL, ImmutableSet.of(STRING, BINARY, 
DOUBLE, DATE, LONG));
-SUPPORTED_CONVERSIONS.put(LONG, ImmutableSet.of(STRING, BINARY, 
DECIMAL, DATE, DOUBLE));
-SUPPORTED_CONVERSIONS.put(BOOLEAN, ImmutableSet.of(STRING, BINARY));
-SUPPORTED_CONVERSIONS.put(NAME, ImmutableSet.of(STRING, BINARY, PATH, 
PropertyType.URI));
-SUPPORTED_CONVERSIONS.put(PATH, ImmutableSet.of(STRING, BINARY, NAME, 
PropertyType.URI));
-SUPPORTED_CONVERSIONS.put(PropertyType.URI, ImmutableSet.of(STRING, 
BINARY, NAME, PATH));
-SUPPORTED_CONVERSIONS.put(REFERENCE, ImmutableSet.of(STRING, BINARY, 
WEAKREFERENCE));
-SUPPORTED_CONVERSIONS.put(WEAKREFERENCE, ImmutableSet.of(STRING, 
BINARY, REFERENCE));
+SUPPORTED_CONVERSIONS.put(DATE, immutableSetOf(STRING, BINARY, DOUBLE, 
DECIMAL, LONG));
+SUPPORTED_CONVERSIONS.put(DOUBLE, immutableSetOf(STRING, BINARY, 
DECIMAL, DATE, LONG));
+SUPPORTED_CONVERSIONS.put(DECIMAL, immutableSetOf(STRING, BINARY, 
DOUBLE, DATE, LONG));
+SUPPORTED_CONVERSIONS.put(LONG, immutableSetOf(STRING, BINARY, 
DECIMAL, DATE, DOUBLE));
+SUPPORTED_CONVERSIONS.put(BOOLEAN, immutableSetOf(STRING, BINARY));
+SUPPORTED_CONVERSIONS.put(NAME, immutableSetOf(STRING, BINARY, PATH, 
PropertyType.URI));
+SUPPORTED_CONVERSIONS.put(PATH, immutableSetOf(STRING, BINARY, NAME, 
PropertyType.URI));
+SUPPORTED_CONVERSIONS.put(PropertyType.URI, immutableSetOf(STRING, 
BINARY, NAME, PATH));
+SUPPORTED_CONVERSIONS.put(REFERENCE, immutableSetOf(STRING, BINARY, 
WEAKREFERENCE));
+SUPPORTED_CONVERSIONS.put(WEAKREFERENCE, immutableSetOf(STRING, 
BINARY, REFERENCE));
 }
 
+private static Set immutableSetOf(int... types) {
+Set t = new HashSet();
+for (int type : types) {
+t.add(type);
+}
+return Collections.unmodifiableSet(t);
+}
+
 public static boolean isSupportedConversion(int fromType, int toType) {
 if (fromType == toType) {
 return true;


=
jackrabbit-parent/pom.xml
=
--- a/jackrabbit-parent/pom.xml
+++ b/jackrabbit-parent/pom.xml
@@ -583,11 +583,6 @@
 3.0
   
   
-com.google.guava
-guava
-15.0
-  
-  
 junit
 junit
 4.12



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/e3313e60361693af7efbab126afb7c0921b06b30

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/e3313e60361693af7efbab126afb7c0921b06b30
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list

[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4248: Upgrade httpcore dependency to 4.4.9 (ported to 2.14)

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
4e606a3e by Julian Reschke at 2018-02-13T11:06:02+00:00
JCR-4248: Upgrade httpcore dependency to 4.4.9 (ported to 2.14)

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824113 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


1 changed file:

- jackrabbit-webapp/pom.xml


Changes:

=
jackrabbit-webapp/pom.xml
=
--- a/jackrabbit-webapp/pom.xml
+++ b/jackrabbit-webapp/pom.xml
@@ -160,7 +160,7 @@
 
   org.apache.httpcomponents
   httpcore
-  4.4.8
+  4.4.9
   test
 
   



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/4e606a3e67e84553d3f4dcceacfde911fbb47b4c

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/4e606a3e67e84553d3f4dcceacfde911fbb47b4c
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4247: Update commons-io dependency (ported to 2.14)

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
9b6100e3 by Julian Reschke at 2018-02-13T09:34:54+00:00
JCR-4247: Update commons-io dependency (ported to 2.14)

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824105 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


1 changed file:

- jackrabbit-parent/pom.xml


Changes:

=
jackrabbit-parent/pom.xml
=
--- a/jackrabbit-parent/pom.xml
+++ b/jackrabbit-parent/pom.xml
@@ -428,7 +428,7 @@
   
 commons-io
 commons-io
-2.5
+2.6
   
   
 javax.transaction



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/9b6100e3d6dfe021fbc90941fed99e80664b5404

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/9b6100e3d6dfe021fbc90941fed99e80664b5404
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-addon-channel-manager][master] CHANNELMGR-1726 Fix picking a relative path for manage content parameter

2018-02-13 Thread Mathijs den Burger
Mathijs den Burger pushed to branch master at cms-community / 
hippo-addon-channel-manager


Commits:
66008ff6 by Mathijs den Burger at 2018-02-13T10:34:24+01:00
CHANNELMGR-1726 Fix picking a relative path for manage content parameter

The picker should always pick an absolute path. The HstComponentService
makes the path relative (to the given basePath) when the parameter is
relative.

ManageContentLink#isParameterValueRelativePath assumed that the property
was a boolean while it was in fact a string (like all other boolean
values in HTML comments). So we should compare it to the string true.

- - - - -


3 changed files:

- frontend-ng/src/app/channel/page/element/manageContentLink.js
- frontend-ng/src/app/channel/page/pageStructure.service.fixture.html
- frontend-ng/src/app/channel/page/pageStructure.service.spec.js


Changes:

=
frontend-ng/src/app/channel/page/element/manageContentLink.js
=
--- a/frontend-ng/src/app/channel/page/element/manageContentLink.js
+++ b/frontend-ng/src/app/channel/page/element/manageContentLink.js
@@ -34,7 +34,7 @@ class ManageContentLink extends EmbeddedLink {
   }
 
   isParameterValueRelativePath() {
-return this.metaData.parameterValueIsRelativePath;
+return this.metaData.parameterValueIsRelativePath === 'true';
   }
 
   getPickerConfig() {
@@ -44,7 +44,7 @@ class ManageContentLink extends EmbeddedLink {
 return {
   configuration: this.metaData.pickerConfiguration,
   initialPath: this.metaData.pickerInitialPath,
-  isRelativePath: this.metaData.parameterValueIsRelativePath === 'true',
+  isRelativePath: false, // the path is made relative in 
HstComponentService#saveParameter, and not by the picker
   remembersLastVisited: this.metaData.pickerRemembersLastVisited === 
'true',
   rootPath: this.metaData.pickerRootPath,
   selectableNodeTypes: this.metaData.pickerSelectableNodeTypes ?


=
frontend-ng/src/app/channel/page/pageStructure.service.fixture.html
=
--- a/frontend-ng/src/app/channel/page/pageStructure.service.fixture.html
+++ b/frontend-ng/src/app/channel/page/pageStructure.service.fixture.html
@@ -110,6 +110,22 @@
 "templateQuery": "new-test-document"
   } -->
 
+
+  
+
 
   

 


=
frontend-ng/src/app/channel/page/pageStructure.service.spec.js
=
--- a/frontend-ng/src/app/channel/page/pageStructure.service.spec.js
+++ b/frontend-ng/src/app/channel/page/pageStructure.service.spec.js
@@ -239,7 +239,6 @@ describe('PageStructureService', () => {
   it('registers manage content links', () => {
 registerEmbeddedLink('#manage-content-in-page');
 const manageContentLinks = PageStructureService.getEmbeddedLinks();
-expect(manageContentLinks.length).toBe(1);
 const manageContentLink = manageContentLinks[0];
 expect(manageContentLink.getTemplateQuery()).toBe('new-test-document');
 expect(manageContentLink.getDefaultPath()).toBe('test-default-path');
@@ -249,11 +248,32 @@ describe('PageStructureService', () => {
 expect(manageContentLink.getPickerConfig()).toEqual({
   configuration: 'test-component-picker configuration',
   initialPath: 'test-component-picker-initial-path',
-  isRelativePath: true,
+  isRelativePath: false,
   remembersLastVisited: false,
   rootPath: 'test-component-picker-root-path',
   selectableNodeTypes: ['test-node-type-1', 'test-node-type-2'],
 });
+expect(manageContentLink.isParameterValueRelativePath()).toBe(true);
+  });
+
+  it('recognizes a manage content link for a parameter that stores an absolute 
path', () => {
+registerEmbeddedLink('#manage-content-with-absolute-path');
+const manageContentLinks = PageStructureService.getEmbeddedLinks();
+const manageContentLink = manageContentLinks[0];
+expect(manageContentLink.getTemplateQuery()).toBe('new-test-document');
+expect(manageContentLink.getDefaultPath()).toBe('test-default-path');
+expect(manageContentLink.getRootPath()).toBe('test-root-path');
+
expect(manageContentLink.getParameterName()).toBe('test-component-parameter');
+expect(manageContentLink.getParameterValue()).toBe('test-component-value');
+expect(manageContentLink.getPickerConfig()).toEqual({
+  configuration: 'test-component-picker configuration',
+  initialPath: 'test-component-picker-initial-path',
+  isRelativePath: false,
+  remembersLastVisited: false,
+  rootPath: 'test-component-picker-root-path',
+  selectableNodeTypes: ['test-node-type-1', 'test-node-type-2'],
+});
+expect(manageContentLink.isParameterValueRelativePath()).toBe(false);
   });
 
   it('registers processed and unprocessed head contributions', () => {



View it on GitLab: 

[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4244: Upgrade tomcat dependency to 8.5.24

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
81397d2a by Julian Reschke at 2018-02-13T08:43:33+00:00
JCR-4244: Upgrade tomcat dependency to 8.5.24

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824102 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


1 changed file:

- jackrabbit-webapp/pom.xml


Changes:

=
jackrabbit-webapp/pom.xml
=
--- a/jackrabbit-webapp/pom.xml
+++ b/jackrabbit-webapp/pom.xml
@@ -36,7 +36,7 @@
 
   
 1.0.39
-7.0.82
+8.5.24
   
 
   



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/81397d2ac9620af9ac827b549901b94b06654a0e

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/81397d2ac9620af9ac827b549901b94b06654a0e
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn


[HippoCMS-scm] [Git][cms-community/hippo-jackrabbit][2.14] JCR-4239: Suppress Tika startup warnings (ported to 2.14)

2018-02-13 Thread GitLab Mirror
GitLab Mirror pushed to branch 2.14 at cms-community / hippo-jackrabbit


Commits:
0b3285a4 by Julian Reschke at 2018-02-13T08:02:43+00:00
JCR-4239: Suppress Tika startup warnings (ported to 2.14)

git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/branches/2.14@1824098 
13f79535-47bb-0310-9956-ffa450edef68

- - - - -


1 changed file:

- 
jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/query/lucene/tika-config.xml


Changes:

=
jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/query/lucene/tika-config.xml
=
--- 
a/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/query/lucene/tika-config.xml
+++ 
b/jackrabbit-core/src/main/resources/org/apache/jackrabbit/core/query/lucene/tika-config.xml
@@ -52,4 +52,6 @@
 
   
 
+  
+
 



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/0b3285a49dd959366af8945c5bc1779a573cd5c9

---
View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-jackrabbit/commit/0b3285a49dd959366af8945c5bc1779a573cd5c9
You're receiving this email because of your account on code.onehippo.org.
___
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn