libs-gsweb/GSWExtensions/GSWTable.gswc/GSWTable.gswd
Dave Wetzel bd96878757 rename all *.framework top level directories to their basename.
* GSWDatabase/WODisplayGroup.m
remove local NSAutoreleasePool
adjust makefiles



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30698 72102866-910b-0410-8b05-ffd578937521
2010-06-14 04:19:25 +00:00

37 lines
688 B
Text

TableContainer: GSWGenericContainer {
elementName = "table";
bgcolor = ^tableBackgroundColor;
border = ^border;
cellpadding = ^cellpadding;
cellspacing = ^cellspacing;
}
RowRepetition: GSWRepetition {
count = rowCount;
index = currentRow;
}
TableRow: GSWGenericContainer {
elementName = "tr";
bgcolor = ^rowBackgroundColor;
}
ColRepetition: GSWRepetition {
count = colCount;
index = currentCol;
}
PushItem: GSWMethodInvocation {
invoke = pushItem;
}
CellContainer: GSWGenericContainer {
elementName = "td";
bgcolor = ^cellBackgroundColor;
align = ^cellAlign;
valign = ^cellVAlign;
}
Content: GSWComponentContent {
}