Last change
on this file since 3699 was
3699,
checked in by Garth Braithwaite, 10 years ago
|
java and view - captcha, user status ui page, registration. Not 100% but getting close.
|
File size:
1.2 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
---|
2 | |
---|
3 | <xsl:stylesheet version="2.0" |
---|
4 | xmlns:xsl ="http://www.w3.org/1999/XSL/Transform" |
---|
5 | xmlns:ibis="http://www.ibisph.org" |
---|
6 | |
---|
7 | exclude-result-prefixes="ibis" |
---|
8 | > |
---|
9 | <xsl:import href="../../HTMLContentPage.xslt"/> |
---|
10 | |
---|
11 | |
---|
12 | <xsl:param name="UserProfile" ibis:doc="user profile xml"/> |
---|
13 | |
---|
14 | |
---|
15 | <xsl:param name="Page.pageTitle" ibis:doc="Page's title text."> |
---|
16 | User Status |
---|
17 | </xsl:param> |
---|
18 | <xsl:param name="Page.sectionsTitle" ibis:doc=""> |
---|
19 | User Status |
---|
20 | </xsl:param> |
---|
21 | |
---|
22 | |
---|
23 | <xsl:template name="HTMLContent.includeConditionalSection" |
---|
24 | ibis:doc="Callback type template that controls if the section should be |
---|
25 | processed. If the template returns 'T', 'X', or 'Y' then that |
---|
26 | content will be included. If nothing or 'F', 'N' then that cotent |
---|
27 | will be omitted. Default is to omit everything. Sub XSLTs must |
---|
28 | override this template and determine if the content should be shown |
---|
29 | based on the XML, params passed in, and the section's ID attribute. |
---|
30 | " |
---|
31 | > |
---|
32 | <xsl:param name="sectionID"/> |
---|
33 | <xsl:value-of select="boolean($UserProfile/STATUS_CODE = $sectionID)"/> |
---|
34 | <xsl:message select="$UserProfile"/> |
---|
35 | </xsl:template> |
---|
36 | |
---|
37 | </xsl:stylesheet> |
---|
38 | <!-- ============================= End of File ============================= --> |
---|
39 | |
---|
Note: See
TracBrowser
for help on using the repository browser.