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 2019/12/07 12:02:00 UTC

[isis-app-helloworld] branch master updated (8135de0 -> 1dcb233)

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

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


    from 8135de0  update after ISIS-2213 ... changed package
     new 630d11a  updates after package changes
     new f68f509  small improvement to index.html
     new 1dcb233  fixes property for fa icons (remove trailing '\' when in yml)

The 3 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/webapp/HelloWorldApp.java | 24 +++++++++++------------
 src/main/resources/application.yml                | 12 ++++++------
 src/main/resources/static/index.html              |  2 +-
 3 files changed, 19 insertions(+), 19 deletions(-)


[isis-app-helloworld] 03/03: fixes property for fa icons (remove trailing '\' when in yml)

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

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

commit 1dcb233c83f08e4ff93de6818a4d7b1dc17d9401
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sat Dec 7 12:01:38 2019 +0000

    fixes property for fa icons (remove trailing '\' when in yml)
---
 src/main/resources/application.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 374393f..2254a05 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -17,12 +17,12 @@ isis:
     facet:
       css-class-fa:
         patterns:
-          new.*:fa-plus,\
-          add.*:fa-plus-square,\
-          create.*:fa-plus,\
-          update.*:fa-edit,\
-          delete.*:fa-trash,\
-          find.*:fa-search,\
+          new.*:fa-plus,
+          add.*:fa-plus-square,
+          create.*:fa-plus,
+          update.*:fa-edit,
+          delete.*:fa-trash,
+          find.*:fa-search,
           list.*:fa-list
 
       css-class:


[isis-app-helloworld] 02/03: small improvement to index.html

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

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

commit f68f509dd9778b5a5a5f911690a7b2cf127910cf
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sat Dec 7 11:59:34 2019 +0000

    small improvement to index.html
---
 src/main/resources/static/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/static/index.html b/src/main/resources/static/index.html
index ae71d23..a497c3e 100644
--- a/src/main/resources/static/index.html
+++ b/src/main/resources/static/index.html
@@ -48,7 +48,7 @@ th, td {
             <ul>
                 <li>
                     <p>
-                        <b><a href="wicket/">wicket/</a></b>
+                        <b><a href="wicket/">Generic UI (Wicket)</a></b>
                     </p>
                     <p>
                         provides access to a generic UI for end-users, Apache Isis'


[isis-app-helloworld] 01/03: updates after package changes

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

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

commit 630d11a5698bd32c334f25ee6a16783b31ed9699
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Fri Dec 6 07:06:07 2019 +0000

    updates after package changes
---
 src/main/java/domainapp/webapp/HelloWorldApp.java | 24 +++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/main/java/domainapp/webapp/HelloWorldApp.java b/src/main/java/domainapp/webapp/HelloWorldApp.java
index d6d92fd..243e0d4 100644
--- a/src/main/java/domainapp/webapp/HelloWorldApp.java
+++ b/src/main/java/domainapp/webapp/HelloWorldApp.java
@@ -3,12 +3,12 @@ package domainapp.webapp;
 import domainapp.modules.hello.HelloWorldModule;
 
 import org.apache.isis.config.presets.IsisPresets;
-import org.apache.isis.extensions.h2console.dom.IsisExtH2ConsoleModule;
-import org.apache.isis.persistence.jdo.datanucleus5.IsisBootDataNucleus;
-import org.apache.isis.runtime.spring.IsisBoot;
-import org.apache.isis.security.shiro.IsisBootSecurityShiro;
-import org.apache.isis.viewer.restfulobjects.viewer.IsisBootViewerRestfulObjects;
-import org.apache.isis.viewer.wicket.viewer.IsisBootViewerWicket;
+import org.apache.isis.extensions.h2console.dom.IsisModuleExtH2Console;
+import org.apache.isis.persistence.jdo.datanucleus5.IsisModuleJdoDataNucleus5;
+import org.apache.isis.viewer.restfulobjects.viewer.IsisModuleRestfulObjectsViewer;
+import org.apache.isis.webboot.springboot.IsisModuleSpringBoot;
+import org.apache.isis.security.shiro.IsisModuleSecurityShiro;
+import org.apache.isis.viewer.wicket.viewer.IsisModuleWicketViewer;
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;
 import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
@@ -26,13 +26,13 @@ public class HelloWorldApp extends SpringBootServletInitializer {
             @PropertySource(IsisPresets.DataNucleusAutoCreate),
     })
     @Import({
-            IsisBoot.class,
-            IsisBootSecurityShiro.class,
-            IsisBootDataNucleus.class,
-            IsisBootViewerRestfulObjects.class,
-            IsisBootViewerWicket.class,
+            IsisModuleSpringBoot.class,
+            IsisModuleSecurityShiro.class,
+            IsisModuleJdoDataNucleus5.class,
+            IsisModuleRestfulObjectsViewer.class,
+            IsisModuleWicketViewer.class,
 
-            IsisExtH2ConsoleModule.class,
+            IsisModuleExtH2Console.class,
             HelloWorldModule.class
     })
     public static class AppManifest {