Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: Grails-Wordpress 0.2.1
-
Fix Version/s: None
-
Labels:None
-
Environment:client - Mac 10.5 (grails), server Ubuntu 9.10 (Wordpress)
Description
Actual version is 0.2.2-SNAPSHOT which was installed from grails install-plugin scripts
Using the following client code I'm not getting any data back:
def wordpressService
def index = {
def categories = wordpressService.getCategories()
def page = wordpressService.getPage(2)
def post1 = wordpressService.getPost(1)
[categories:categories, page:page, post1:post1]
}
Categories is an empty list and the others are empty strings. This is pointing to a temp Wordpress site I've setup.