Skip to content

Commit 3ba8e68

Browse files
committedNov 22, 2011
update to Grails 1.3.7, JQuery 1.7, JQuery-UI 1.8.15; remove unnecessary dependencies, plugins, and files
1 parent f7d2298 commit 3ba8e68

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1493
-6831
lines changed
 

‎.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# .gitignore for Grails 1.2
2+
3+
# web application files
4+
/web-app/WEB-INF
5+
6+
# IDE support files
7+
/.classpath
8+
/.launch
9+
/.project
10+
/.settings
11+
/*.launch
12+
/*.tmproj
13+
/ivy*
14+
15+
# default HSQL database files for production mode
16+
/prodDb.*
17+
18+
# logs
19+
/stacktrace.log
20+
/test/reports
21+
/logs
22+
23+
# project release file
24+
/*.war
25+
26+
# plugin release file
27+
# - leave it in repo for users to d/l
28+
#/*.zip
29+
30+
# temporary? build files
31+
/target
32+
33+
34+
# other files we don't want (but grails may auto-add)
35+
/web-app/js/prototype
36+
/web-app/css/main.css
37+
/web-app/images
38+
39+
# files we don't want from the included demo/test app
40+
/test/projects/sample/target
41+
/test/projects/sample/web-app/WEB-INF
42+
/test/projects/sample/web-app/js/prototype

‎DynamicHelpGrailsPlugin.groovy

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class DynamicHelpGrailsPlugin {
22
// the plugin version
3-
def version = "0.3"
3+
def version = "0.4"
44
// the version or versions of Grails the plugin is designed for
55
def grailsVersion = "1.2.2 > *"
66
// the other plugins this plugin depends on
@@ -13,15 +13,17 @@ class DynamicHelpGrailsPlugin {
1313
]
1414

1515
// TODO Fill in these fields
16-
def author = "Jean Barmash"
17-
def authorEmail = "jean.barmash@gmail.com"
16+
def author = "Jean Barmash, John Allison"
17+
//def authorEmail = "jean.barmash@gmail.com"
18+
def authorEmail = "jja@sinequanon.net"
1819
def title = "Dynamically add help messages that are editable"
1920
def description = '''\\
2021
This plugin is designed as a mini-cms for help, so nondevelopers can maintain help throughout the site. It injects help tips into pages by defining help tips domain obects. Designed to be completely unobtrusive (dynamically adds the code through ajax, and only where help exists).
2122
'''
2223

2324
// URL to the plugin's documentation
24-
def documentation = "http://grails.org/plugin/dynamic-help"
25+
//def documentation = "http://grails.org/plugin/dynamic-help"
26+
def documentation = "https://github.com/jja/dynamic-help/blob/master/README"
2527

2628
def doWithWebDescriptor = { xml ->
2729
// TODO Implement additions to web.xml (optional), this event occurs before

0 commit comments

Comments
 (0)
Please sign in to comment.