Message Boards

« Back to 3.- Suggestions

XMLPF for Liferay 6.1?

Combination View Flat View Tree View
Threads [ Previous | Next ]
toggle
XMLPF for Liferay 6.1?
liferay 6.1
Answer
10/20/11 11:13 AM
Is there a version für the upcoming version 6.1?

RE: XMLPF for Liferay 6.1?
Answer
10/20/11 11:17 AM as a reply to Dieter Engelhardt.
Hi Dieter:
for the moment this is only available for 6.0.X (according to the project repository in sourceforge)
Eventhough, Liferay 6.1 is still a beta release. I guess the XMLPF team will update the project after the final 6.1 GA is made available
Regards!

RE: XMLPF for Liferay 6.1?
Answer
10/20/11 10:14 PM as a reply to Dieter Engelhardt.
Hello Dieter,


Im working on it right now, I will try to have something working this weekend. emoticon

Saludos, Jack.

RE: XMLPF for Liferay 6.1?
Answer
10/22/11 8:17 PM as a reply to Jack A. Rider.
Hello again,


Ok, finally I got a LF6.1 working and seems everything in XMLPF is Ok, except Image Gallery, Document Library and a couple of deprecated things.

I will keep you informed of advances.

Saludos, Jack.

RE: XMLPF for Liferay 6.1?
Answer
10/23/11 11:39 PM as a reply to Dieter Engelhardt.
Hola Dieter,


Have a beta working have a look here: XMLPortletFactory for Liferay 6.1 Beta

Saludos, Jack.

RE: XMLPF for Liferay 6.1?
Answer
11/25/11 5:53 PM as a reply to Jack A. Rider.
Jack A. Rider:
Hola Dieter,


Have a beta working have a look here: XMLPortletFactory for Liferay 6.1 Beta

Saludos, Jack.


Thank you for your work

RE: XMLPF for Liferay 6.1?
Answer
3/30/12 2:03 PM as a reply to Dieter Engelhardt.
So far so good, we are using it and it seems to be working, except that
my docroot/JSPs/init.jsp makes a reference to "http://java.sun.com/portlet_2_0" as a taglib but that cannot be found.

docroot/WEB-INF/web.xml makes a reference to /WEB-INF/tdl/liferay-portlet.tld but that can't be found either. Shouldn't that
be on the xmplf resources package?

Thanks

Leonardo.

RE: XMLPF for Liferay 6.1?
Answer
4/1/12 9:05 AM as a reply to Leonardo Guilherme Freitas.
Hola Leonardo,

Reference to taglib "http://java.sun.com/portlet_2_0", in the init.jsp :

1<%@ taglib uri="http://java.sun.com/portlet_2_0" prefix="portlet" %>


Is a reference latter mapped to "/WEB-INF/tld/liferay-portlet.tld" in the web.xml file, so you won't find any "portlet_2_0" tld file. See:

1      <taglib>
2          <taglib-uri>http://java.sun.com/portlet_2_0</taglib-uri>
3          <taglib-location>
4              /WEB-INF/tld/liferay-portlet.tld
5          </taglib-location>
6      </taglib>


As you probably know the taglib directive in web.xml is optional since JSP 2.0, because containers will try to auto-discover the taglibs in a set of standard locations (see /WEB-INF/tld in portlets and ROOT/WEB-INF/tld in portal). I am not sure, and will have to try, but probably everything will work fine deleting this references.

Also mention that liferay-portlet.tld his copied into the xxxx-Portlet/docroot/WEB-INF/tld folder upon creation, I am also not sure, if this is not longer necessary, have to try.

Hope this helps.

Saludos, Jack.