-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathplugin.xml
61 lines (47 loc) · 2.14 KB
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<plugin name='gsp-arse' version='1.3' grailsVersion='1.3.2 > *'>
<author>Peter McNeil</author>
<authorEmail>[email protected]</authorEmail>
<title>Parse scripts, css, special files as GSP</title>
<description>\
This plugin adds parsing of resource (e.g. javascript or css) files in from the base path
directory as GSP files so you can use GSP tags and pass in models/data. Primary
motivation for this was providing a way to pass in relative paths to resources for
JS to access controllers for AJAX calls. For example you can do this in your js:-
$(function() {
$("#task").autocomplete('${g.createLink(controller: "task", action: "suggestTask")}', {
max: ${max},
width: 300
});
});
The g.createLink tag is now relative to the url, so if the URL to your controller
contains a /id, this js file will still work.
It also allows CSS to use and set variables, or use paths to resources easily.
So for example you can do this:
body {
background: url('${g.resource(dir: "image", file: "thing.png")}');
color: #${color};
}
To use the GSP parsing for javascript you use the controller url with the file path
add a URL Mapping like this to make the URLs pretty
"/resource/$path**"(controller: 'script', action: 'parse')
then just include something like this in your layout templates:
<script type="text/javascript" src="resource/js/application.js"></script>
The mime type is guessed for files with .js or .css endings otherwise set to text/plain.
You can override the mimetype using the type parameter. The primary type is
fixed as text.
e.g. resource/somewhere/application.blat?type=text%2Fjavascript
returns mime type "text/javascript"
"script/somewhere/myfile.blat?type=blat"
returns mime type "blat"
To set a parameter just add it to the URL. For example to set the color for the CSS
example above add ?color=FFF to the url.
</description>
<documentation>http://nerderg.com/GSParse</documentation>
<resources>
<resource>UrlMappings</resource>
<resource>com.nerderg.gsparse.ScriptController</resource>
<resource>com.nerderg.gsparse.GsParseService</resource>
</resources>
<dependencies />
<behavior />
</plugin>