- Timestamp:
- Jan 13, 2010, 4:53:32 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 16 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 4 4 .settings 5 5 target 6 gscf-grailsPlugins.iml 7 gscf.iml 8 .idea
-
- Property svn:ignore
-
trunk/application.properties
r75 r86 1 1 #Grails Metadata file 2 # Tue Jan 05 11:56:00CET 20102 #Fri Jan 08 14:58:48 CET 2010 3 3 app.grails.version=1.2.0 4 4 app.name=gscf 5 5 app.servlet.version=2.4 6 6 app.version=0.1 7 plugins.class-diagram=0.4.1 7 8 plugins.db-util=0.4 8 9 plugins.hibernate=1.2.0 -
trunk/grails-app/conf/Config.groovy
r16 r86 70 70 } 71 71 72 73 72 graphviz { 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 13 13 out << render(template: "/common/jqueryuisetup") 14 14 } 15 16 15 }
Note: See TracChangeset
for help on using the changeset viewer.