|
Revision 1210, 0.8 kB
(checked in by jm3, 2 years ago)
|
== basic functionaliy completed: ==
* auto-forward back to logical index view (without JS)
* clean URLs
* create lists (with auto-focused text input field to pass the OWD test)
* delete lists
* create items (with auto-focused text input field to pass the OWD test)
* create list items with embedded HTML
* complete items
* delete items
* make a list public : private
* basic operation is flash-less and javascript-less, so it works on phones
* public lists have unique, open, and clean URLs
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> |
|---|
| 2 |
|
|---|
| 3 |
<xsl:stylesheet version="1.0" |
|---|
| 4 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 5 |
xmlns:func="http://www.exslt.org/functions" |
|---|
| 6 |
xmlns:jm3="http://jm3.net/xsl/functions" |
|---|
| 7 |
extension-element-prefixes="func" |
|---|
| 8 |
exclude-result-prefixes="jm3"> |
|---|
| 9 |
<xsl:strip-space elements="*"/> |
|---|
| 10 |
<xsl:preserve-space elements="para"/> |
|---|
| 11 |
|
|---|
| 12 |
<xsl:output method="text" indent="no" omit-xml-declaration="yes" /> |
|---|
| 13 |
|
|---|
| 14 |
<xsl:template match="lists/personal/list"> |
|---|
| 15 |
<xsl:value-of select="@id" /><xsl:text> </xsl:text> |
|---|
| 16 |
<xsl:value-of select="@name" /><xsl:text> </xsl:text> |
|---|
| 17 |
<xsl:value-of select="@count" /><xsl:text> </xsl:text> |
|---|
| 18 |
<xsl:value-of select="@sharing" /> |
|---|
| 19 |
<xsl:text> |
|---|
| 20 |
</xsl:text> |
|---|
| 21 |
</xsl:template> |
|---|
| 22 |
|
|---|
| 23 |
</xsl:stylesheet> |
|---|
| 24 |
|
|---|