Foren

Portlet Namespace adaption in liferay sdk

thumbnail
Johann Kneringer, geändert vor 11 Jahren.

Portlet Namespace adaption in liferay sdk

Junior Member Beiträge: 42 Beitrittsdatum: 10.11.11 Neueste Beiträge
Hey,

I hope this is the right place to discuss this.

I am using normal html tags like <h1> in my portlets.

I am getting warnings on my page like " Warning: This page calls for XML namespace declared with prefix h1 but no taglibrary exists for that namespace. "

I can solve this by adding "xmlns="http://www.w3.org/1999/xhtml" to f:view.

Is this the right solution or should I use something like <h:outputText escaped="false" /> etc...

If this is the right solution, the namespace adaption should be made to the plugin SDK, so this namespace appears in every portlet which gets created with Liferay IDE and plugin SDK.

regards,
Johann
thumbnail
Neil Griffin, geändert vor 11 Jahren.

RE: Portlet Namespace adaption in liferay sdk

Liferay Legend Beiträge: 2655 Beitrittsdatum: 27.07.05 Neueste Beiträge
Hi Johann,

You are correct, adding the following namespace is the correct thing to do:

xmlns="http://www.w3.org/1999/xhtml"

We have some updates that we need to make to the Plugins SDK JSF templates and the JSF archetypes for Maven. I'll make a note that we should add that. Thanks for the suggestion. emoticon

Neil