Last change
on this file since 3710 was
3710,
checked in by Garth Braithwaite, 10 years ago
|
java and view - email verification code working. updated systemid modelmaps to use verified file, then the new resource then classpath system id lookup. many of the modelmap objects were changed from "XML" to the more generic "file". Renamed the saxon*.jars to include the exact version number.
|
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/USER/STATUS = $sectionID)"/> |
---|
34 | </xsl:template> |
---|
35 | |
---|
36 | </xsl:stylesheet> |
---|
37 | <!-- ============================= End of File ============================= --> |
---|
38 | |
---|
Note: See
TracBrowser
for help on using the repository browser.