forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliferay-display_7_1_0.dtd
43 lines (36 loc) · 1016 Bytes
/
liferay-display_7_1_0.dtd
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
<!--
<!DOCTYPE display PUBLIC
"-//Liferay//DTD Display 7.1.0//EN"
"http://www.liferay.com/dtd/liferay-display_7_1_0.dtd">
-->
<!--
The display element is the root of the deployment descriptor that describes how
portlets are categorized and displayed for users to choose when personalizing a
page in Liferay Portal.
-->
<!ELEMENT display (category*)>
<!--
The category element organizes a set of portlets. A portlet can exist in more
than one category.
-->
<!ELEMENT category (category*, portlet*)>
<!--
The name of a category is mapped to the portal's Language properties. If the
category name is "test", then the key in the portal's resource bundle will be
"category.test".
See:
https://dev.liferay.com/develop/tutorials/-/knowledge_base/7-1/internationalization
-->
<!ATTLIST category
name CDATA #REQUIRED
>
<!--
The portlet element represents a portlet.
-->
<!ELEMENT portlet (#PCDATA)>
<!--
The id must match the unique portlet-name specified in portlet.xml.
-->
<!ATTLIST portlet
id CDATA #REQUIRED
>