You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/07/19 07:49:30 UTC

[isis-app-simpleapp] branch jpa-SNAPSHOT updated (170bf69 -> adb41c0)

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

danhaywood pushed a change to branch jpa-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git.


    from 170bf69  updates parent pom to 2.0.0-M5.20210713-0226-85ec9782
     add 40eb6b7  updates parent pom to 2.0.0-SNAPSHOT
     new c5d4b93  fixes uniqueness constraint, use upper case
     new adb41c0  tiny update to menbars.layout.xml

The 2 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:
 .../src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java     | 2 +-
 pom.xml                                                                 | 2 +-
 webapp/src/main/resources/menubars.layout.xml                           | 1 +
 3 files changed, 3 insertions(+), 2 deletions(-)

[isis-app-simpleapp] 02/02: tiny update to menbars.layout.xml

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

danhaywood pushed a commit to branch jpa-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git

commit adb41c0838f78b4d25e22324078a17a2fc49fd42
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Mon Jul 19 08:13:27 2021 +0100

    tiny update to menbars.layout.xml
---
 webapp/src/main/resources/menubars.layout.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/webapp/src/main/resources/menubars.layout.xml b/webapp/src/main/resources/menubars.layout.xml
index 3d8cd56..5e0bb55 100644
--- a/webapp/src/main/resources/menubars.layout.xml
+++ b/webapp/src/main/resources/menubars.layout.xml
@@ -98,6 +98,7 @@
                 <mb3:serviceAction objectType="isis.applib.ImpersonateStopMenu" id="stopImpersonating"/>
             </mb3:section>
             <mb3:section>
+                <mb3:named>Security</mb3:named>
                 <mb3:serviceAction objectType="isis.applib.UserMenu" id="me"/>
                 <mb3:serviceAction objectType="isis.security.LogoutMenu" id="logout"/>
             </mb3:section>

[isis-app-simpleapp] 01/02: fixes uniqueness constraint, use upper case

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

danhaywood pushed a commit to branch jpa-SNAPSHOT
in repository https://gitbox.apache.org/repos/asf/isis-app-simpleapp.git

commit c5d4b935f1abe0736bda067980bdfeb18412262c
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sun Jul 18 17:57:21 2021 +0100

    fixes uniqueness constraint, use upper case
---
 .../src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/module-simple/src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java b/module-simple/src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java
index 48c143c..b3089e9 100644
--- a/module-simple/src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java
+++ b/module-simple/src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java
@@ -37,7 +37,7 @@ import domainapp.modules.simple.types.Notes;
 @javax.persistence.Table(
     schema="simple",
     uniqueConstraints = {
-        @javax.persistence.UniqueConstraint(name = "SimpleObject_name_UNQ", columnNames = {"name"})
+        @javax.persistence.UniqueConstraint(name = "SimpleObject__name__UNQ", columnNames = {"NAME"})
     }
 )
 @javax.persistence.NamedQueries({