From 07c309efb697633b089a605015b00d1924676cc8 Mon Sep 17 00:00:00 2001 From: Sven Arnold Date: Mon, 13 Apr 2009 17:16:15 +0200 Subject: [PATCH] fixed configuration --- grails-app/domain/PortalConfiguration.groovy | 14 ----- grails-app/views/layouts/blue_theme.gsp | 49 ------------------ grails-app/views/portalConfiguration/create.gsp | 65 ----------------------- grails-app/views/portalConfiguration/edit.gsp | 69 ------------------------- grails-app/views/portalConfiguration/list.gsp | 56 -------------------- grails-app/views/portalConfiguration/show.gsp | 65 ----------------------- 6 files changed, 318 deletions(-) delete mode 100644 grails-app/domain/PortalConfiguration.groovy delete mode 100644 grails-app/views/layouts/blue_theme.gsp delete mode 100644 grails-app/views/portalConfiguration/create.gsp delete mode 100644 grails-app/views/portalConfiguration/edit.gsp delete mode 100644 grails-app/views/portalConfiguration/list.gsp delete mode 100644 grails-app/views/portalConfiguration/show.gsp diff --git a/grails-app/domain/PortalConfiguration.groovy b/grails-app/domain/PortalConfiguration.groovy deleted file mode 100644 index 6c25447..0000000 --- a/grails-app/domain/PortalConfiguration.groovy +++ /dev/null @@ -1,14 +0,0 @@ -class PortalConfiguration { - - String name - String title - String motto - String theme - - static constraints = { - name(unique: true) - title(nullable: false) - motto(nullable: true) - theme(nullable: false) - } -} diff --git a/grails-app/views/layouts/blue_theme.gsp b/grails-app/views/layouts/blue_theme.gsp deleted file mode 100644 index 1d310fc..0000000 --- a/grails-app/views/layouts/blue_theme.gsp +++ /dev/null @@ -1,49 +0,0 @@ - - - <g:layoutTitle default="Portal"/> - - - - - - - - - - - -
-

The Portal Header

-
- -
-

- -

-
- -
-

- -

-
- -
-

- -

-
- -
-
- -
-
- - - - \ No newline at end of file diff --git a/grails-app/views/portalConfiguration/create.gsp b/grails-app/views/portalConfiguration/create.gsp deleted file mode 100644 index 1d37d4b..0000000 --- a/grails-app/views/portalConfiguration/create.gsp +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - Create PortalConfiguration - - - -
-

Create PortalConfiguration

- -
${flash.message}
-
- -
- -
-
- -
- - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
- - - -
-
-
- -
-
-
- - diff --git a/grails-app/views/portalConfiguration/edit.gsp b/grails-app/views/portalConfiguration/edit.gsp deleted file mode 100644 index a6c046f..0000000 --- a/grails-app/views/portalConfiguration/edit.gsp +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - Edit PortalConfiguration - - - -
-

Edit PortalConfiguration

- -
${flash.message}
-
- -
- -
-
- - - -
- - - - - - - - - - - - - - - - - - - -
- - - -
- - - -
- - - -
-
-
- - -
-
-
- - diff --git a/grails-app/views/portalConfiguration/list.gsp b/grails-app/views/portalConfiguration/list.gsp deleted file mode 100644 index c4acc67..0000000 --- a/grails-app/views/portalConfiguration/list.gsp +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - PortalConfiguration List - - - -
-

PortalConfiguration List

- -
${flash.message}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
${fieldValue(bean:portalConfigurationInstance, field:'id')}${fieldValue(bean:portalConfigurationInstance, field:'title')}${fieldValue(bean:portalConfigurationInstance, field:'motto')}${fieldValue(bean:portalConfigurationInstance, field:'theme')}
-
-
- -
-
- - diff --git a/grails-app/views/portalConfiguration/show.gsp b/grails-app/views/portalConfiguration/show.gsp deleted file mode 100644 index f4ab728..0000000 --- a/grails-app/views/portalConfiguration/show.gsp +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - Show PortalConfiguration - - - -
-

Show PortalConfiguration

- -
${flash.message}
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Id:${fieldValue(bean:portalConfigurationInstance, field:'id')}
Title:${fieldValue(bean:portalConfigurationInstance, field:'title')}
Motto:${fieldValue(bean:portalConfigurationInstance, field:'motto')}
Theme:${fieldValue(bean:portalConfigurationInstance, field:'theme')}
-
-
- - - - - -
-
- - -- 2.11.0