root/brains/transforms/authenticate.xsl

Revision 1210, 0.6 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="/loggedin">
15 <xsl:value-of select="@authid" />
16 </xsl:template>
17
18 </xsl:stylesheet>
19
Note: See TracBrowser for help on using the browser.