|
Revision 1580
(checked in by douglm, 6 years ago)
|
Add the basic framework for a new event submission web application.
This does not work yet though the system as a whole builds successfully.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
|
|---|
| 3 |
<!-- |
|---|
| 4 |
This is a Jetspeed2 psml file for the calendar personal events portlet. |
|---|
| 5 |
|
|---|
| 6 |
The fragment id's must be unique among all .psml files, and the name of the |
|---|
| 7 |
portlet is read from the portlet.xml file. |
|---|
| 8 |
--> |
|---|
| 9 |
<page id="/@CONTEXT-ROOT@.psml"> |
|---|
| 10 |
<defaults |
|---|
| 11 |
skin="orange" |
|---|
| 12 |
layout-decorator="tigris" |
|---|
| 13 |
portlet-decorator="tigris" |
|---|
| 14 |
/> |
|---|
| 15 |
<title>Calendar</title> |
|---|
| 16 |
<fragment id="personalcal-1" type="layout" name="jetspeed-layouts::VelocityOneColumn"> |
|---|
| 17 |
<fragment id="personalcal-2" type="portlet" name="@CONTEXT-ROOT@::PersonalEvents"/> |
|---|
| 18 |
</fragment> |
|---|
| 19 |
|
|---|
| 20 |
<security-constraints> |
|---|
| 21 |
<security-constraints-ref>users</security-constraints-ref> |
|---|
| 22 |
</security-constraints> |
|---|
| 23 |
</page> |
|---|