You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2019/09/28 16:07:09 UTC

[isis] branch v2 updated (22023ac -> 2206581)

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a change to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git.


    from 22023ac  merging ISIS-2086 -> v2
     add 9f27732  ISIS-2086: adds unit tests for isis.viewer.wicket.maxTitleLengthIn{Parented/Standalone}Tables
     add 545df3a  ISIS-2086: refactors about 6 isis.viewer.wicket config props to type-safe
     add ad5f094  ISIS-2086: refactors a bunch of isis.reflector.facet.XxxAnnotation.YyyEvent.postForDefault properties to type-safe config
     add b2c29d1  ISIS-2086: refactors 'isis.reflector.validator.checkModuleExtent' as type-safe config
     add 2defb1a  ISIS-2086: refactors 'isis.reflector.validator.noParamsOnly' to type-safe config
     add c2ad131  ISIS-2086: updates some comments, is all
     new 2206581  Merge pull request #142 from apache/ISIS-2086

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:
 .../applib/events/domain/ActionDomainEvent.java    |   2 +-
 .../events/domain/CollectionDomainEvent.java       |   2 +-
 .../applib/events/domain/PropertyDomainEvent.java  |   2 +-
 .../events/lifecycle/ObjectCreatedEvent.java       |   2 +-
 .../applib/events/lifecycle/ObjectLoadedEvent.java |   2 +-
 .../events/lifecycle/ObjectPersistedEvent.java     |   2 +-
 .../events/lifecycle/ObjectPersistingEvent.java    |   2 +-
 .../events/lifecycle/ObjectRemovingEvent.java      |   2 +-
 .../events/lifecycle/ObjectUpdatedEvent.java       |   2 +-
 .../events/lifecycle/ObjectUpdatingEvent.java      |   2 +-
 .../isis/applib/events/ui/CssClassUiEvent.java     |   2 +-
 .../apache/isis/applib/events/ui/IconUiEvent.java  |   2 +-
 .../isis/applib/events/ui/LayoutUiEvent.java       |   2 +-
 .../apache/isis/applib/events/ui/TitleUiEvent.java |   2 +-
 .../org/apache/isis/config/IsisConfiguration.java  | 209 +++++++++++++++++++++
 ...ion_getMaxTitleLengthInParentedTables_Test.java |  63 +++++++
 ...n_getMaxTitleLengthInStandaloneTables_Test.java |  61 ++++++
 .../MethodPrefixBasedFacetFactoryAbstract.java     |   5 -
 .../action/ActionAnnotationFacetFactory.java       |   2 +-
 .../CollectionAnnotationFacetFactory.java          |   3 +-
 .../DisableForContextFacetViaMethodFactory.java    |   4 +-
 .../HideForContextFacetViaMethodFactory.java       |   4 +-
 .../DomainObjectAnnotationFacetFactory.java        |  21 +--
 ...ObjectLayoutAnnotationUsingCssClassUiEvent.java |   7 +-
 ...wModelLayoutAnnotationUsingCssClassUiEvent.java |   7 +-
 .../DomainObjectLayoutFacetFactory.java            |  16 +-
 ...mainObjectLayoutAnnotationUsingIconUiEvent.java |   7 +-
 ...aViewModelLayoutAnnotationUsingIconUiEvent.java |   7 +-
 ...inObjectLayoutAnnotationUsingLayoutUiEvent.java |   7 +-
 ...iewModelLayoutAnnotationUsingLayoutUiEvent.java |   8 +-
 ...ainObjectLayoutAnnotationUsingTitleUiEvent.java |   7 +-
 ...ViewModelLayoutAnnotationUsingTitleUiEvent.java |   8 +-
 .../property/PropertyAnnotationFacetFactory.java   |   4 +-
 .../MetaModelValidatorToCheckModuleExtent.java     |   7 +-
 .../org/apache/isis/metamodel/util/EventUtil.java  |   7 +-
 .../settings/WicketViewerSettingsDefault.java      |  18 +-
 .../wicket/model/isis/WicketViewerSettings.java    |  65 ++-----
 .../bootstrapping/AutoConfigurationTest.java       |   5 +-
 38 files changed, 432 insertions(+), 148 deletions(-)
 create mode 100644 core/config/src/test/java/org/apache/isis/config/IsisConfiguration_getMaxTitleLengthInParentedTables_Test.java
 create mode 100644 core/config/src/test/java/org/apache/isis/config/IsisConfiguration_getMaxTitleLengthInStandaloneTables_Test.java


[isis] 01/01: Merge pull request #142 from apache/ISIS-2086

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch v2
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 2206581659f06b324b2e3c891ed8d8ba63f54d3d
Merge: 22023ac c2ad131
Author: Andi Huber <ah...@apache.org>
AuthorDate: Sat Sep 28 18:07:02 2019 +0200

    Merge pull request #142 from apache/ISIS-2086
    
    further work on migrating to config beans

 .../applib/events/domain/ActionDomainEvent.java    |   2 +-
 .../events/domain/CollectionDomainEvent.java       |   2 +-
 .../applib/events/domain/PropertyDomainEvent.java  |   2 +-
 .../events/lifecycle/ObjectCreatedEvent.java       |   2 +-
 .../applib/events/lifecycle/ObjectLoadedEvent.java |   2 +-
 .../events/lifecycle/ObjectPersistedEvent.java     |   2 +-
 .../events/lifecycle/ObjectPersistingEvent.java    |   2 +-
 .../events/lifecycle/ObjectRemovingEvent.java      |   2 +-
 .../events/lifecycle/ObjectUpdatedEvent.java       |   2 +-
 .../events/lifecycle/ObjectUpdatingEvent.java      |   2 +-
 .../isis/applib/events/ui/CssClassUiEvent.java     |   2 +-
 .../apache/isis/applib/events/ui/IconUiEvent.java  |   2 +-
 .../isis/applib/events/ui/LayoutUiEvent.java       |   2 +-
 .../apache/isis/applib/events/ui/TitleUiEvent.java |   2 +-
 .../org/apache/isis/config/IsisConfiguration.java  | 209 +++++++++++++++++++++
 ...ion_getMaxTitleLengthInParentedTables_Test.java |  63 +++++++
 ...n_getMaxTitleLengthInStandaloneTables_Test.java |  61 ++++++
 .../MethodPrefixBasedFacetFactoryAbstract.java     |   5 -
 .../action/ActionAnnotationFacetFactory.java       |   2 +-
 .../CollectionAnnotationFacetFactory.java          |   3 +-
 .../DisableForContextFacetViaMethodFactory.java    |   4 +-
 .../HideForContextFacetViaMethodFactory.java       |   4 +-
 .../DomainObjectAnnotationFacetFactory.java        |  21 +--
 ...ObjectLayoutAnnotationUsingCssClassUiEvent.java |   7 +-
 ...wModelLayoutAnnotationUsingCssClassUiEvent.java |   7 +-
 .../DomainObjectLayoutFacetFactory.java            |  16 +-
 ...mainObjectLayoutAnnotationUsingIconUiEvent.java |   7 +-
 ...aViewModelLayoutAnnotationUsingIconUiEvent.java |   7 +-
 ...inObjectLayoutAnnotationUsingLayoutUiEvent.java |   7 +-
 ...iewModelLayoutAnnotationUsingLayoutUiEvent.java |   8 +-
 ...ainObjectLayoutAnnotationUsingTitleUiEvent.java |   7 +-
 ...ViewModelLayoutAnnotationUsingTitleUiEvent.java |   8 +-
 .../property/PropertyAnnotationFacetFactory.java   |   4 +-
 .../MetaModelValidatorToCheckModuleExtent.java     |   7 +-
 .../org/apache/isis/metamodel/util/EventUtil.java  |   7 +-
 .../settings/WicketViewerSettingsDefault.java      |  18 +-
 .../wicket/model/isis/WicketViewerSettings.java    |  65 ++-----
 .../bootstrapping/AutoConfigurationTest.java       |   5 +-
 38 files changed, 432 insertions(+), 148 deletions(-)