* Testing/DynamicElements

Ported to WO names.



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30689 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Dave Wetzel 2010-06-12 01:18:12 +00:00
parent 514d24d161
commit 21d987fbdc
84 changed files with 735 additions and 753 deletions

View file

@ -0,0 +1,13 @@
<html>
<head>
<title>GNUstepWeb Dynamic Elements Testing</title>
</head>
<body>
<h2>GNUstepWeb Dynamic Elements Testing</h2>
<ul>
<webobject name="Repetition">
<li><webobject name="Link"></webobject> <webobject name="Comment"></webobject></li>
</webobject>
</ul>
</body>
</html>

View file

@ -0,0 +1,27 @@
/*
* Main.gswd
*
* You may freely copy, distribute and reuse the code in this example.
* We disclaims any warranty of any kind, expressed or implied, as to
* its fitness for any particular use.
*
* This is the declarations file for the main page of the
* DynamicElements Testing application.
*/
Repetition: WORepetition
{
item = tmpDynamicElement;
list = application.bundleInfo.dynamicElements;
};
Link: WOHyperlink
{
pageName = tmpDynamicElement.pageName;
string = tmpDynamicElement.label;
};
Comment: WOString
{
value = tmpDynamicElement.comment;
};