This is an automated email from the ASF dual-hosted git repository.
danhaywood pushed a change to branch CAUSEWAY-2485
in repository https://gitbox.apache.org/repos/asf/causeway.git
discard 0a45d5550f CAUSEWAY-2485: updates @CollectionLayout#tableDecorator
discard 58f43aa156 CAUSEWAY-2485: fleshes out @CollectionLayout#sortedBy
discard 0f1e973878 CAUSEWAY-2485: fleshes out @CollectionLayout#sequence
discard f874de4719 CAUSEWAY-2485: fleshes out @CollectionLayout#named and
#paged
discard 782ff47921 CAUSEWAY-2485: fleshes out @CollectionLayout#describedAs
and @CollectionLayout#named
discard e4ac1994af CAUSEWAY-2485: fleshes out @CollectionLayout#describedAs
and @CollectionLayout#hidden
discard e3ac5361a9 CAUSEWAY-2485: fleshes out @CollectionLayout#defaultView
discard 6cf3bb26e3 CAUSEWAY-2485: fleshes out @CollectionLayout#cssClass
add d41ab20ca6 CAUSEWAY-3425: fixes repaint decision logic
add f56fe88f99 CAUSEWAY-3425: cleaning up unnecessary wrapping of
Optional<AjaxRequestTarget>
add c8d5f28434 CAUSEWAY-3425: separation of concerns
add 3d8abf643e CAUSEWAY-3425: some trivial simplifications
add 152a39ae41 CAUSEWAY-3425: minor refactoring; simplify some predicates
add 13cf40e211 CAUSEWAY-3425: ScalarModel: don't expose some of the poor
defined predicates
add ac50c72cee CAUSEWAY-3425: xray into scalar model updates
add dff3eaa930 CAUSEWAY-3425: add intermediate assertion
add 3ee27f7c08 CAUSEWAY-3425: fixes param disabledResaon() logic
add 908fe6c07e CAUSEWAY-3425: revert changes to inline prompt decision
logic
add 34d2cbd600 Merge pull request #1615 from
apache/3425-wicket.form.update.issue
add 81bd48c502 CAUSEWAY-3425: remove left over comments
add eac9a59ee9 CAUSEWAY-3008: some minor Xray refactoring
add 8861af573d CAUSEWAY-3008: fixes cal-evnt semantics (broken defaults
handling)
add 93047057dd Merge pull request #1616 from
apache/3008-wkt.vwr.broken.defaults
add e656ce18a7 CAUSEWAY-2968: [Validation] Guard against Members that
contribute vetoed Domain-Types
new 5608398e59 CAUSEWAY-2485: fleshes out @CollectionLayout#cssClass
new 7a3d62ddc1 CAUSEWAY-2485: fleshes out @CollectionLayout#defaultView
new 3a8d882d7e CAUSEWAY-2485: fleshes out @CollectionLayout#describedAs
and @CollectionLayout#hidden
new 908c7fdbb0 CAUSEWAY-2485: fleshes out @CollectionLayout#describedAs
and @CollectionLayout#named
new e7f7f2dede CAUSEWAY-2485: fleshes out @CollectionLayout#named and
#paged
new 5ae7e68009 CAUSEWAY-2485: fleshes out @CollectionLayout#sequence
new 0a43c7396a CAUSEWAY-2485: fleshes out @CollectionLayout#sortedBy
new 9bc08ae5ee CAUSEWAY-2485: updates @CollectionLayout#tableDecorator
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (0a45d5550f)
\
N -- N -- N refs/heads/CAUSEWAY-2485 (9bc08ae5ee)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 8 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:
.../causeway/commons/internal/base/_Refs.java | 2 +-
.../CausewayBeanFactoryPostProcessorForSpring.java | 4 -
.../beans/CausewayComponentScanInterceptor.java | 2 +-
.../config/beans/CausewayDomainObjectScope.java | 22 ++-
.../progmodel/ProgrammingModelConstants.java | 2 +
.../managed/ParameterNegotiationModel.java | 19 +++
.../managed/PropertyNegotiationModel.java | 4 +-
.../core/metamodel/object/ManagedObjects.java | 6 +
.../core/metamodel/object/MmDebugUtils.java | 51 ++++--
...ocessor.java => SanityChecksPostProcessor.java} | 64 ++++----
.../dflt/ProgrammingModelFacetsJava11.java | 2 +
.../spec/feature/ObjectActionParameter.java | 17 +-
.../webapp/wicket/jpa/DemoAppWicketJpa.java | 2 +-
.../applib/value/CalendarEventSemantics.java | 13 +-
.../viewer/commons/model/scalar/UiParameter.java | 9 +-
.../wicket/model/models/ChainingObjectModel.java | 2 +-
.../viewer/wicket/model/models/ScalarModel.java | 123 ++++++---------
.../causeway/viewer/wicket/model/models/_Xray.java | 59 +++++++
.../components/actions/ActionParametersForm.java | 79 ++++------
.../viewer/wicket/ui/components/actions/_Xray.java | 2 +-
.../ui/components/property/PropertyEditForm.java | 2 +-
.../ui/components/scalars/ScalarPanelAbstract.java | 174 +++++++++------------
.../components/scalars/ScalarPanelAbstract2.java | 28 ++--
.../scalars/ScalarPanelFormFieldAbstract.html | 6 +-
.../scalars/ScalarPanelFormFieldAbstract.java | 22 +--
.../scalars/ScalarPanelSelectAbstract.java | 38 +----
.../viewer/wicket/ui/components/scalars/_Util.java | 54 ++++---
.../viewer/wicket/ui/components/scalars/_Xray.java | 16 +-
.../ui/components/scalars/bool/BooleanPanel.java | 10 +-
.../scalars/choices/ObjectChoicesSelect2Panel.java | 9 +-
.../scalars/choices/ValueChoicesSelect2Panel.java | 9 +-
.../scalars/image/JavaAwtImagePanel.java | 3 +-
.../ui/components/widgets/select2/Select2.java | 16 --
33 files changed, 436 insertions(+), 435 deletions(-)
copy
core/metamodel/src/main/java/org/apache/causeway/core/metamodel/postprocessors/all/{DescribedAsFromTypePostProcessor.java
=> SanityChecksPostProcessor.java} (55%)
create mode 100644
viewers/wicket/model/src/main/java/org/apache/causeway/viewer/wicket/model/models/_Xray.java