Changeset 1444
- Timestamp:
- 06/26/07 23:04:02
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl
r1441 r1444 889 889 </a> 890 890 <xsl:call-template name="actionIcons"> 891 <xsl:with-param name="actionIconsId"><xsl:value-of select="$actionIconsId"/></xsl:with-param> 891 <xsl:with-param name="actionIconsId"><xsl:value-of select="$actionIconsId"/></xsl:with-param> 892 892 <xsl:with-param name="startDate"><xsl:value-of select="$date"/></xsl:with-param> 893 893 </xsl:call-template> … … 2535 2535 </td> 2536 2536 <td class="fieldval"> 2537 <input type="radio" name="event .status" value="CONFIRMED">2537 <input type="radio" name="eventStatus" value="CONFIRMED"> 2538 2538 <xsl:if test="form/status = 'CONFIRMED' or /bedework/creating = 'true'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 2539 2539 </input> 2540 2540 confirmed 2541 <input type="radio" name="event .status" value="TENTATIVE">2541 <input type="radio" name="eventStatus" value="TENTATIVE"> 2542 2542 <xsl:if test="form/status = 'TENTATIVE'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 2543 2543 </input> 2544 2544 tentative 2545 <input type="radio" name="event .status" value="CANCELLED">2545 <input type="radio" name="eventStatus" value="CANCELLED"> 2546 2546 <xsl:if test="form/status = 'CANCELLED'"><xsl:attribute name="checked">checked</xsl:attribute></xsl:if> 2547 2547 </input> … … 3014 3014 <!-- ========== --> 3015 3015 <div id="bwEventTab-Access" class="invisible"> 3016 <div id="sharingBox"> 3016 <div id="sharingBox"> 3017 3017 <xsl:apply-templates select="/bedework/eventAccess/access/acl" mode="currentAccess"> 3018 3018 <xsl:with-param name="action" select="$event-setAccess"/> … … 3463 3463 <xsl:with-param name="aggregation">true</xsl:with-param> 3464 3464 </xsl:apply-templates> 3465 3465 3466 3466 <div class="eventSubmitButtons"> 3467 3467 <input type="button" value="continue" onclick="window.location='{$gotoEditEvent}'"/> … … 3471 3471 </div> 3472 3472 </xsl:template> 3473 3473 3474 3474 <xsl:template match="freebusy" mode="freeBusyGrid"> 3475 <xsl:param name="aggregation">false</xsl:param> 3475 <xsl:param name="aggregation">false</xsl:param> 3476 3476 <!-- there's only one collection of freebusy; this for-each is 3477 3477 being used to pick out just the freebusy node and … … 3772 3772 Free / Busy 3773 3773 </h2> 3774 3774 3775 3775 <div id="freeBusyPage"> 3776 3776 <form name="viewFreeBusyForm" id="viewFreeBusyForm" method="post" action="{$freeBusy-fetch}"> … … 5518 5518 <td> 5519 5519 <xsl:choose> 5520 <xsl:when test="scheduleMethod = '1' or 5520 <xsl:when test="scheduleMethod = '1' or 5521 5521 scheduleMethod = '2' or 5522 5522 scheduleMethod = '4' or … … 5732 5732 </th> 5733 5733 </tr> 5734 5734 5735 5735 <tr> 5736 5736 <td class="fieldname"> … … 5776 5776 5777 5777 <xsl:variable name="userFullPath"><xsl:value-of select="$userPath"/>/</xsl:variable> 5778 5778 5779 5779 <span id="bwEventCalDisplay"> 5780 5780 <xsl:if test="form/calendar/calType = '1'"> … … 6741 6741 </tr> 6742 6742 </table> 6743 6743 6744 6744 <form name="eventForm" method="post" action="{$prefs-updateSchedulingPrefs}"> 6745 6745 <table class="common"> … … 6799 6799 <xsl:if test="scheduleDoubleBook = 'true'"> 6800 6800 <xsl:attribute name="checked">checked</xsl:attribute> 6801 </xsl:if> 6801 </xsl:if> 6802 6802 true 6803 6803 </input> … … 6805 6805 <xsl:if test="scheduleDoubleBook = 'false'"> 6806 6806 <xsl:attribute name="checked">checked</xsl:attribute> 6807 </xsl:if> 6807 </xsl:if> 6808 6808 false 6809 6809 </input> … … 6908 6908 there are two methods of setting access 6909 6909 - method 1, the older method, uses a single request/response per principal 6910 - method 2 constructs a javascript object that commits the entire ACL 6910 - method 2 constructs a javascript object that commits the entire ACL 6911 6911 structure in a single request 6912 6912 Both methods are currently supported. Method one is used for calendars, 6913 6913 method two for setting event access. At some point we may move all access 6914 6914 control setting to method two. --> 6915 <xsl:param name="acl"/><!-- nodeset of entity acls used to initialize 6915 <xsl:param name="acl"/><!-- nodeset of entity acls used to initialize 6916 6916 javascript object. Required for method two. --> 6917 6917 6918 6918 <xsl:if test="$method = '2' and $acl != ''"> 6919 6919 <!-- do some initialization here -->
