Changeset 86 for trunk


Ignore:
Timestamp:
Jan 13, 2010, 4:53:32 PM (14 years ago)
Author:
duh
Message:
Location:
trunk
Files:
16 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        44.settings
        55target
         6gscf-grailsPlugins.iml
         7gscf.iml
         8.idea
  • trunk/application.properties

    r75 r86  
    11#Grails Metadata file
    2 #Tue Jan 05 11:56:00 CET 2010
     2#Fri Jan 08 14:58:48 CET 2010
    33app.grails.version=1.2.0
    44app.name=gscf
    55app.servlet.version=2.4
    66app.version=0.1
     7plugins.class-diagram=0.4.1
    78plugins.db-util=0.4
    89plugins.hibernate=1.2.0
  • trunk/grails-app/conf/Config.groovy

    r16 r86  
    7070}
    7171
    72 
    73      
     72graphviz {
     73    // graphviz installation path is dependent on OS
     74    // (requirement for class diagram plugin)
     75        switch (System.properties["os.name"]) {
     76            case "Mac OS X":
     77                // define mac path to Graphviz dot executable
     78                // (install using macports: sudo port install graphviz)
     79                dot.executable = "/opt/local/bin/dot"
     80                break
     81            default:
     82                // assume the linux default path
     83                dot.executable = "/usr/bin/dot"
     84        }
     85}
  • trunk/grails-app/taglib/GSCFTagLib.groovy

    r54 r86  
    1313        out << render(template: "/common/jqueryuisetup")
    1414    }
    15 
    1615}
Note: See TracChangeset for help on using the changeset viewer.