Ignore:
Timestamp:
Oct 8, 2009, 7:58:38 PM (15 years ago)
Author:
gav
Message:

Re-install class-diagram from local svn build with patch to allow war deployment.
Class-diagram overrides removed from Config.groovy since these have all been included upstream.
Tidy comments in SecurityConfig?.groovy
Some work on adding assignedPerson work flow and PersonController?.
Add navAlt and filterPane search to Person and TaskProcedure?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/conf/Config.groovy

    r140 r147  
    111111]
    112112
    113 /** Class-diagram plugin overrides.
    114   *
    115   */
    116 classDiagram {
    117     associations {
    118         arrows {
    119             // See http://www.graphviz.org/doc/info/arrows.html for available arrowheads and their visual appearance
    120             references = "open"
    121             belongsTo = "odiamond"
    122             embedded = "diamond"
    123             inherits = "onormal"
    124             none = "none"
    125         }
    126         decorators {
    127             // plain text to be shown on edge ends
    128             hasOne = "1"
    129             hasMany = "*"
    130             none = ""
    131         }
    132     }
    133     skins {
    134         classicSpacey {
    135             name = " Classic Spacey"
    136             graphStyle = [bgcolor:"none", mclimit:100, nodesep:'1.5 equally', ranksep:'2 equally' ]
    137             nodeStyle = [style:"rounded,filled", color:"blue", fillcolor:"azure2", fontname:"Verdana", fontsize:18]
    138             edgeStyle = [color:"gray40", fontname:"Verdana", fontsize:18, labelfontsize:20, labeldistance:3.5]
    139         }
    140     }
    141 }
     113/** Navigation plugin alternate menu.
     114   * The alternate top level titles are not displayed anywhere.
     115   * Subitems i18n message bundles are not currently resolving with this plugin.
     116   */
     117navigation.navAlt = [
     118    [order:10, controller:'person', title:'person', action:'list',
     119        subItems: [
     120            [order:10, controller:'person', title:'Person List', action:'list', isVisible: { true }],
     121            [order:20, controller:'person', title:'Create', action:'create', isVisible: { true }],
     122            [order:90, controller:'person', title:'Show', action:'show', isVisible: { params.action == 'show' }],
     123            [order:91, controller:'person', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
     124        ]
     125    ],
     126    [order:20, controller:'taskProcedureDetailed', title:'task', action:'list',
     127        subItems: [
     128            [order:10, controller:'taskProcedureDetailed', title:'Task Procedure List', action:'list', isVisible: { true }],
     129            [order:20, controller:'taskProcedureDetailed', title:'Create', action:'create', isVisible: { true }],
     130            [order:90, controller:'taskProcedureDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
     131            [order:91, controller:'taskProcedureDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
     132        ]
     133    ]
     134]
Note: See TracChangeset for help on using the changeset viewer.