| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<xsl:stylesheet version="1.0" |
|---|
| 3 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|---|
| 4 |
xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 5 |
|
|---|
| 6 |
<xsl:output method="xml" indent="no" media-type="text/html" |
|---|
| 7 |
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" |
|---|
| 8 |
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" |
|---|
| 9 |
standalone="yes" omit-xml-declaration="yes" /> |
|---|
| 10 |
|
|---|
| 11 |
<!-- ========================================================= |
|---|
| 12 |
|
|---|
| 13 |
DEMONSTRATION CALENDAR STYLESHEET |
|---|
| 14 |
|
|---|
| 15 |
MainCampus Calendar Suite - Duke/Yale Skin |
|---|
| 16 |
|
|---|
| 17 |
This stylesheet is devoid of school branding. It is a good |
|---|
| 18 |
starting point for development of a customized theme. |
|---|
| 19 |
|
|---|
| 20 |
It is based on work by Duke University and Yale University with |
|---|
| 21 |
credit also to the University of Chicago. |
|---|
| 22 |
|
|---|
| 23 |
For detailed instructions on how to work with the XSLT |
|---|
| 24 |
stylesheets included with this distribution, please see the |
|---|
| 25 |
Bedework Design Guide at |
|---|
| 26 |
http://www.bedework.org/bedework/update.do?artcenterkey=24 |
|---|
| 27 |
|
|---|
| 28 |
=============================================================== --> |
|---|
| 29 |
<!-- ********************************************************************** |
|---|
| 30 |
Copyright 2009 Rensselaer Polytechnic Institute. All worldwide rights reserved. |
|---|
| 31 |
|
|---|
| 32 |
Redistribution and use of this distribution in source and binary forms, |
|---|
| 33 |
with or without modification, are permitted provided that: |
|---|
| 34 |
The above copyright notice and this permission notice appear in all |
|---|
| 35 |
copies and supporting documentation; |
|---|
| 36 |
|
|---|
| 37 |
The name, identifiers, and trademarks of Rensselaer Polytechnic |
|---|
| 38 |
Institute are not used in advertising or publicity without the |
|---|
| 39 |
express prior written permission of Rensselaer Polytechnic Institute; |
|---|
| 40 |
|
|---|
| 41 |
DISCLAIMER: The software is distributed" AS IS" without any express or |
|---|
| 42 |
implied warranty, including but not limited to, any implied warranties |
|---|
| 43 |
of merchantability or fitness for a particular purpose or any warrant)' |
|---|
| 44 |
of non-infringement of any current or pending patent rights. The authors |
|---|
| 45 |
of the software make no representations about the suitability of this |
|---|
| 46 |
software for any particular purpose. The entire risk as to the quality |
|---|
| 47 |
and performance of the software is with the user. Should the software |
|---|
| 48 |
prove defective, the user assumes the cost of all necessary servicing, |
|---|
| 49 |
repair or correction. In particular, neither Rensselaer Polytechnic |
|---|
| 50 |
Institute, nor the authors of the software are liable for any indirect, |
|---|
| 51 |
special, consequential, or incidental damages related to the software, |
|---|
| 52 |
to the maximum extent the law permits. --> |
|---|
| 53 |
|
|---|
| 54 |
<!-- DEFINE INCLUDES --> |
|---|
| 55 |
<xsl:include href="./globals.xsl" /> |
|---|
| 56 |
<xsl:include href="../strings.xsl" /> |
|---|
| 57 |
|
|---|
| 58 |
<!-- DEFAULT THEME NAME --> |
|---|
| 59 |
<!-- to change the default theme, change this include --> |
|---|
| 60 |
<xsl:include href="../../themes/bedeworkTheme/bedework.xsl" /> |
|---|
| 61 |
|
|---|
| 62 |
</xsl:stylesheet> |
|---|