Skip to content

Commit 3db5979

Browse files
committed
Version 0.9.3
1 parent ef3292d commit 3db5979

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
# Persistent Selections for the Selection Plugin
1+
# Persistent Selections Plugin
22

3-
The [selection plugin](http://grails.org/plugin/selection) provides unified search for information.
3+
The Grails [selection plugin](http://grails.org/plugin/selection) provides unified search for information.
44
It uses a URI based syntax to select any information from any resource.
55

6-
**This** plugin extends the functionality of the selection plugin by providing persistent storage for selections.
7-
A user can save a selection (query filter) for future use. This plugin is tenant-aware and provides a
8-
Twitter Bootstrap based user interface and GSP tags for managing saved selections.
6+
**This** plugin "Persistent Selections" extends the functionality of the selection plugin by providing persistent storage for selections.
7+
8+
You provide the user with a query form and use the *selection* plugin to execute the query.
9+
Then you can use this plugin to let the user save the query for future use.
10+
Selections (queries) can be private or public which means that each user can have their own list of favorite queries
11+
or you can provide a list of standard queries for users to select from.
12+
13+
The plugin is tenant-aware and provides a Twitter Bootstrap based user interface and GSP tags for managing saved selections.
914

1015
**Example**
1116

SelectionRepositoryGrailsPlugin.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
*/
1616

1717
class SelectionRepositoryGrailsPlugin {
18-
def version = "0.9.3-SNAPSHOT"
18+
def version = "0.9.3"
1919
def grailsVersion = "2.0 > *"
2020
def dependsOn = [:]
2121
def loadAfter = ['selection']
2222
def pluginExcludes = [
2323
"grails-app/domain/test/TestEntity.groovy",
2424
"grails-app/views/error.gsp"
2525
]
26-
def title = "Repository for persistent selections"
26+
def title = "Repository for Persistent Selections"
2727
def author = "Goran Ehrsson"
2828
def authorEmail = "goran@technipelago.se"
2929
def description = '''\

0 commit comments

Comments
 (0)