Fw:

"Preety Kumar" <[email protected]> Mon, 18 Nov 2002 22:23:35 -0500
Newsgroups gmane.org.w3c.accessibility.guidelines
Message-ID <004b01c28f7b$12431210$6801a8c0@Preety>
----- Original Message -----
From: "Bart Lynch" <[email protected]>
To: <[email protected]>
Sent: Monday, November 18, 2002 7:17 PM
Subject: FW:


>
>
> Here is some sample xml and an included stylesheet You will most likely
get
> some errors with the js, but you can remove those
references/call-templates
> if need be. Let me know if you have any questions.
>
> Thanks for all your help,
>
> Bart
>
>
> Bart Lynch
> Design Developer
> UNICON, Inc.
> 480.558.2411
>
>  -----Original Message-----
> From: Bart Lynch [mailto:[email protected]]
> Sent: Monday, November 18, 2002 1:15 PM
> To: '[email protected]'
> Subject:
>
>  << File: common_main.xsl >>
>
> Bart Lynch
> Design Developer
> UNICON, Inc.
> 480.558.2411
>
>
****************************************************************************
***
> The contents of this email and any attachments are confidential.
> It is intended for the named recipient(s) only.
> If you have received this email in error please notify the system manager
or
> the sender immediately and do not disclose the contents to any one or make
> copies.
>
> ** eSafe scanned this email for viruses, vandals and malicious content **
>
****************************************************************************
***
>
common.xsl (text/xml, 23.3 KB)
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" indent="yes" />

<!-- Include -->
<xsl:include href="../global/global.xsl"/>

<!-- Non-permission Parameters -->
<xsl:param name="baseActionURL">no parameter passed</xsl:param>
<xsl:param name="workerActionURL">no parameter passed</xsl:param>
<xsl:param name="targetChannel">no parameter passed</xsl:param>
<xsl:param name="current_command">main</xsl:param>
<xsl:param name="gradebookItemID"/>
<xsl:param name="activation_id"/>
<xsl:param name="positionID">no parameter passed</xsl:param>
<xsl:param name="username">no parameter passed</xsl:param>
<xsl:param name="currentMonth">8</xsl:param>
<xsl:param name="currentDay">6</xsl:param>
<xsl:param name="currentYear">2002</xsl:param>

<!-- Permissions Parameters -->
<xsl:param name="addItem">N</xsl:param>
<xsl:param name="editItem">N</xsl:param>
<xsl:param name="deleteItem">N</xsl:param>
<xsl:param name="viewAll">N</xsl:param>
<xsl:param name="editItemScores">N</xsl:param>
<xsl:param name="editAllItemScores">N</xsl:param>
<xsl:param name="editWeighting">N</xsl:param>

<xsl:param name="accessDetails">no parameter passed</xsl:param>
<xsl:param name="viewSubmissionDetails">no parameter passed</xsl:param>
<xsl:param name="viewFeedbackDetails">no parameter passed</xsl:param>
<xsl:param name="editSubmissionDetails">no parameter passed</xsl:param>
<xsl:param name="editFeedbackDetails">no parameter passed</xsl:param>

<xsl:param name="addActivation">Y</xsl:param>
<xsl:param name="deleteActivation">Y</xsl:param>
<xsl:param name="viewAllUserActivations">Y</xsl:param>
<xsl:param name="viewActivationDetails">Y</xsl:param>

<xsl:param name="accessHiddenFeedback">Y</xsl:param>

<!-- Common -->
<xsl:template name="itemJs">
    <script language="JavaScript1.2" type="text/javascript" src="javascript/GradebookChannel/item.js">
    </script>
</xsl:template>

<xsl:template name="addEditItemJs">
    <script language="JavaScript1.2">
	<xsl:comment>
        function stripWhitespace (s) {
            return s.replace(/[ \t\n\r]+/,'');
        }

        function isNumber(val) {
            if (val == null) return false;
            if (val.search(/^[0-9]+$/) != 0) return false;
            return true;
        }
        
        function checkSubmit() {
            var form = document.gradebookForm;
            
            if (form.item_name.value == null || stripWhitespace(form.item_name.value) == '') {
                alert('Please enter a name for this item.');
                return false;
            }
            
            if (form.min_score.value == null || stripWhitespace(form.min_score.value) == '') {
                form.min_score.value = '0';
            }

            if (!isNumber(form.min_score.value)) {
                alert('Invalid minimum score entered.');
                return false;
            }
            
            if (form.max_score.value == null || stripWhitespace(form.max_score.value) == '') {
                form.max_score.value = '0';
            }
            
            if (!isNumber(form.max_score.value)) {
                alert('Invalid maximum score entered.');
                return false;
            }
            
            if (form.weight.value == null || stripWhitespace(form.weight.value) == '') {
                form.weight.value = '0';
            }

			var diff = form.max_score.value - form.min_score.value;
			if (diff &lt; 0) {
                alert('The max value cannot be less than the min value.');
                return false;
            }

            return true;
        }
	//</xsl:comment>
    </script>
</xsl:template>

<xsl:template name="links">

    <table cellpadding="0" cellspacing="0" border="0" width="100%">
    <tr>
        <td class="views-title"><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_options.gif"
     alt="" align="absmiddle"/></td>
        <td class="views" valign="middle" height="26" width="100%">
        
<xsl:choose>
    <xsl:when test="$current_command = 'main'">
            Scores<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_selected.gif"
     alt="Currently viewing all gradebook scores" title="Currently viewing all gradebook scores" align="absmiddle"/>
     <img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/>
    </xsl:when>
  
    <xsl:otherwise>
            <a href="{$baseActionURL}" title="To view all gradebook scores"
              onmouseover="swapImage('gbViewAllScoresImage','channel_view_active.gif')" 
              onmouseout="swapImage('gbViewAllScoresImage','channel_view_base.gif')">Scores<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_base.gif"
     alt="To view all gradebook scores" title="To view all gradebook scores" name="gbViewAllScoresImage" id="gbViewAllScoresImage" align="absmiddle"/></a><img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/>
    </xsl:otherwise>
</xsl:choose> 
       

<xsl:choose>
    <xsl:when test="$current_command = 'editAll'">
             <img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_selected.gif"
     alt="Currently editing all gradebook scores" title="Currently editing all gradebook scores" align="absmiddle"/><img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/>
    </xsl:when>
    <xsl:when test="$editAllItemScores = 'N'">
             <img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_inactive.gif"
     alt="Not permitted to edit all gradebook scores" title="Not permitted to edit all gradebook scores" align="absmiddle"/><img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/>
    </xsl:when>
    <xsl:otherwise>
             <a href="{$baseActionURL}&amp;command=editscores" title="To edit all gradebook scores"
              onmouseover="swapImage('gbEditAllScoresImage','channel_edit_active.gif')" 
              onmouseout="swapImage('gbEditAllScoresImage','channel_edit_base.gif')"><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_base.gif"
     alt="To edit all gradebook scores" title="To edit all gradebook scores" align="absmiddle" name="gbEditAllScoresImage" id="gbEditAllScoresImage"/></a><img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/>
    </xsl:otherwise>
</xsl:choose> 
    

<xsl:choose>
    <xsl:when test="$current_command = 'export'">
                 <a href="javascript:generateExportFile();void(null);" title="To export data from the gradebook as a delimited file"><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_export_selected.gif"
     alt="To export data from the gradebook as a delimited file" title="To export data from the gradebook as a delimited file" align="absmiddle"/></a> | 
    </xsl:when>
      
    <xsl:otherwise>
                 <a href="{$baseActionURL}&amp;command=export" title="To export data from the gradebook as a delimited file"
              onmouseover="swapImage('gbExportAllScoresImage','channel_export_active.gif')" 
              onmouseout="swapImage('gbExportAllScoresImage','channel_export_base.gif')"><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_export_base.gif"
     alt="To export data from the gradebook as a delimited file" title="To export data from the gradebook as a delimited file" 
     align="absmiddle" name="gbExportAllScoresImage" id="gbExportAllScoresImage"/></a> | 
    </xsl:otherwise>
</xsl:choose>

<xsl:choose>
    <xsl:when test="$current_command = 'all_activations'">
            All Activations<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_selected.gif"
     alt="Currently viewing all activations for this offering" title="Currently viewing all activations for this offering" align="absmiddle"/> | 
    </xsl:when>
<!--      
      <xsl:when test = "$addItem = 'N'">
            All Activations<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_inactive.gif"
     alt="" align="absmiddle"/> | 
      </xsl:when>
   --> 
    <xsl:otherwise>
            <a href="{$baseActionURL}&amp;command=all_activations" title="To view all activations for this offering"
              onmouseover="swapImage('gbViewAllActivationsImage','channel_view_active.gif')" 
              onmouseout="swapImage('gbViewAllActivationsImage','channel_view_base.gif')">Activations<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_base.gif"
     alt="To view all activations for this offering" title="To view all activations for this offering" align="absmiddle" 
     name="gbViewAllActivationsImage" id="gbViewAllActivationsImage"/></a> | 
    </xsl:otherwise>
</xsl:choose>   

<xsl:choose>
    <xsl:when test="$current_command = 'add_gradebookitem'">
            Column<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_add_selected.gif"
     alt="Currently adding a gradebook column" title="Currently adding a gradebook column" align="absmiddle"/> | 
    </xsl:when>
      
      <xsl:when test = "$addItem = 'N'">
            Column<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_add_inactive.gif"
     alt="Not permitted to add a gradebook column" title="Not permitted to add a gradebook column" align="absmiddle"/> | 
      </xsl:when>
    
    <xsl:otherwise>
            <a href="{$baseActionURL}&amp;command=add" title="To add a gradebook column"
              onmouseover="swapImage('gbAddColumnImage','channel_add_active.gif')" 
              onmouseout="swapImage('gbAddColumnImage','channel_add_base.gif')">Column<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_add_base.gif"
     alt="To add a gradebook column" title="To add a gradebook column" align="absmiddle" name="gbAddColumnImage" id="gbAddColumnImage"/></a> | 
    </xsl:otherwise>
</xsl:choose>        

<xsl:choose>
    <xsl:when test="$current_command = 'weighting'">
            Weighting<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_selected.gif"
     alt="Currently editing all column weights" title="Currently editing all column weights" align="absmiddle"/> |
    </xsl:when>
    <xsl:when test="$editWeighting = 'N'">
            Weighting<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_inactive.gif"
     alt="Not permitted to edit column weight" title="Not permitted to edit column weight" align="absmiddle"/> |
    </xsl:when>
    <xsl:otherwise>
    <a href="{$baseActionURL}&amp;command=weighting" title="To edit all column weights"
              onmouseover="swapImage('gbEditWeightingImage','channel_edit_active.gif')" 
              onmouseout="swapImage('gbEditWeightingImage','channel_edit_base.gif')">Weighting<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_base.gif"
     alt="To edit all column weights" title="To edit all column weights" align="absmiddle" 
     name="gbEditWeightingImage" id="gbEditWeightingImage"/></a> | 
    </xsl:otherwise>
    </xsl:choose>

        <!-- <a href="{$baseActionURL}"> -->Grading<img height="1" width="3" src=
    "{$SPACER}"
     alt="" border="0"/><img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_edit_inactive.gif"
     alt="View to edit grading criteria is currently unavailable" title="View to edit grading criteria is currently unavailable" align="absmiddle"/><!-- </a> -->
     </td>
    </tr>
    </table>

</xsl:template>

<!-- Dependent Navigational links -->
<xsl:template name="sublinks">
<xsl:param name="commandDefault" />
<tr>
    <td colspan="100">
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr>
    <td class="table-content-left-bottom">
     <input type="hidden" name="command" value="{$commandDefault}"></input>
     <input type="hidden" name="gradebook_itemID" value="{$gradebookItemID}"></input>
     For<select name="gradebook_itemID_selected">
        <xsl:if test = "($current_command = 'export') or ($current_command = 'main')">
            <xsl:attribute  name = "onchange" >
                gradebookForm.position[this.selectedIndex].checked = true
            </xsl:attribute>
        </xsl:if>

        <xsl:for-each select = "gradebooks/gradebook-item">
            <option value="{@id}">
                <xsl:if test = "@id = $gradebookItemID">
                    <xsl:attribute  name = "selected" >
                        selected
                    </xsl:attribute>
                </xsl:if>
                <xsl:value-of select="title"/>
            </option>
        </xsl:for-each></select>
    
    </td>       
     <td class="table-content-right-bottom" valign="middle" height="26"> 

   
    <xsl:choose>
        <xsl:when test="$viewSubmissionDetails = 'Y'">
            <a href="javascript:document.gradebookForm.command.value = 'all_question_details'; document.gradebookForm.gradebook_itemID.value = document.gradebookForm.gradebook_itemID_selected.options[document.gradebookForm.gradebook_itemID_selected.selectedIndex].value; document.gradebookForm.submit();" 
				title="To view the assignment or assessment submissions for the selected column"
				onmouseover="swapImage('gbViewAllSubmissionsImage','channel_view_active.gif')" 
				onmouseout="swapImage('gbViewAllSubmissionsImage','channel_view_base.gif')">Submissions
               <img height="1" width="3" src="{$SPACER}" alt="" border="0"/><img border="0" src="{$CONTROLS_IMAGE_PATH}/channel_view_base.gif"
				alt="To edit the scores for the selected column" title="To view the assignment or assessment submissions for the selected column" align="absmiddle"
				name="gbViewAllSubmissionsImage" id="gbViewAllSubmissionsImage"/></a> | 
        </xsl:when>
        <xsl:otherwise>
            Submissions
            <img height="1" width="3" src="{$SPACER}" alt="" border="0"/>
            <img border="0" src="{$CONTROLS_IMAGE_PATH}/channel_view_inactive.gif"
            alt="Not permitted to edit the scores for a column" title="Not permitted to view the assignment or assessment submissions for a column" align="absmiddle"/> | 
        </xsl:otherwise>
    </xsl:choose>
    
    <xsl:choose>
        <xsl:when test="$editItemScores = 'Y'">
            <a href="javascript:document.gradebookForm.command.value = 'show only'; document.gradebookForm.gradebook_itemID.value = document.gradebookForm.gradebook_itemID_selected.options[document.gradebookForm.gradebook_itemID_selected.selectedIndex].value; document.gradebookForm.submit();" title="To edit the scores for the selected column"
              onmouseover="swapImage('gbEditColumnScoresImage','channel_edit_active.gif')" 
              onmouseout="swapImage('gbEditColumnScoresImage','channel_edit_base.gif')">Column Scores
               <img height="1" width="3" src=
               "{$SPACER}"
               alt="" border="0"/><!--<xsl:choose>
                <xsl:when test="$current_command = 'show_only'">
                        <img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_edit_selected.gif"
                    alt="To edit the scores for the selected column" title="To edit the scores for the selected column" align="absmiddle"
                     name="gbEditColumnScoresImage" id="gbEditColumnScoresImage"/>
                </xsl:when>
                <xsl:otherwise>
                        <img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_edit_active.gif"
                    alt="To edit the scores for the selected column" title="To edit the scores for the selected column" align="absmiddle"/>
                </xsl:otherwise>
            </xsl:choose> --><img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_edit_base.gif"
                    alt="To edit the scores for the selected column" title="To edit the scores for the selected column" align="absmiddle"
                     name="gbEditColumnScoresImage" id="gbEditColumnScoresImage"/></a> | 
        </xsl:when>
        <xsl:otherwise>
            Column Scores
            <img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_edit_inactive.gif"
            alt="Not permitted to edit the scores for a column" title="Not permitted to edit the scores for a column" align="absmiddle"/> | 
        </xsl:otherwise>
    </xsl:choose>
    
    <xsl:choose>
        <xsl:when test="$addActivation = 'Y'">
            <a href="javascript:document.gradebookForm.command.value = 'activation'; document.gradebookForm.gradebook_itemID.value = document.gradebookForm.gradebook_itemID_selected.options[document.gradebookForm.gradebook_itemID_selected.selectedIndex].value; document.gradebookForm.submit();" title="To add an activation for the selected column"
              onmouseover="swapImage('gbAddActivationImage','channel_add_active.gif')" 
              onmouseout="swapImage('gbAddActivationImage','channel_add_base.gif')">Activation
               <img height="1" width="3" src=
               "{$SPACER}"
               alt="" border="0"/><!--<xsl:choose>
                <xsl:when test="$current_command = 'show_only'">
                        <img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_add_selected.gif"
                    alt="To add an activation for the selected column" title="To add an activation for the selected column" align="absmiddle"/>
                </xsl:when>
                <xsl:otherwise>
                        <img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_add_active.gif"
                    alt="To add an activation for the selected column" title="To add an activation for the selected column" align="absmiddle"/>
                </xsl:otherwise>
            </xsl:choose> --><img border="0" src=
                    "{$CONTROLS_IMAGE_PATH}/channel_add_base.gif"
                    alt="To add an activation for the selected column" title="To add an activation for the selected column" align="absmiddle"
                     name="gbAddActivationImage" id="gbAddActivationImage"/></a> | 
        </xsl:when>
        <xsl:otherwise>
            Activation
            <img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_add_inactive.gif"
            alt="Not permitted to add assignment activations" title="Not permitted to add assignment activations" align="absmiddle"/> | 
        </xsl:otherwise>
    </xsl:choose>
    
    <!-- <img height="1" width="3" src=
    "{$SPACER}"
    alt="" border="0"/>

    <a href="javascript:document.gradebookForm.command.value = 'details'; document.gradebookForm.submit();" title="To submit assignments and feedback, and view details">
    <img border="0" src=
    "{$CONTROLS_IMAGE_PATH}/channel_view_active.gif"
    alt="To submit assignments and feedback, and view details" align="absmiddle"/>
    </a> -->
    <xsl:choose>
        <xsl:when test="$editItem = 'Y'">
            <a href="javascript:document.gradebookForm.command.value = 'edit'; document.gradebookForm.gradebook_itemID.value = document.gradebookForm.gradebook_itemID_selected.options[document.gradebookForm.gradebook_itemID_selected.selectedIndex].value; document.gradebookForm.submit();" title="To edit the information for the selected column item"
              onmouseover="swapImage('gbEditColumnImage','channel_edit_active.gif')" 
              onmouseout="swapImage('gbEditColumnImage','channel_edit_base.gif')">
            Column<img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <!--<xsl:choose>
                <xsl:when test="$current_command = 'edit_gradebookitem'">
                        <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_edit_selected.gif"
            alt="To edit the information for the selected column item" title="To edit the information for the selected column item" align="absmiddle"/>
                </xsl:when>
                <xsl:otherwise>
                        <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_edit_active.gif"
            alt="To edit the information for the selected column item" title="To edit the information for the selected column item" align="absmiddle"/>
                </xsl:otherwise>
            </xsl:choose> --><img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_edit_base.gif"
            alt="To edit the information for the selected column item" title="To edit the information for the selected column item" align="absmiddle"
             name="gbEditColumnImage" id="gbEditColumnImage"/></a>
        </xsl:when>
        <xsl:otherwise>
            Column<img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_edit_inactive.gif"
            alt="Not permitted to edit the information for a column item" title="Not permitted to edit the information for a column item" align="absmiddle"/>
        </xsl:otherwise>
    </xsl:choose>
    <xsl:choose>
        <xsl:when test="$deleteItem = 'Y'">
            <a href="javascript:document.gradebookForm.command.value = 'delete'; document.gradebookForm.gradebook_itemID.value = document.gradebookForm.gradebook_itemID_selected.options[document.gradebookForm.gradebook_itemID_selected.selectedIndex].value; document.gradebookForm.submit();" title="To delete the selected column item"
              onmouseover="swapImage('gbDeleteColumnImage','channel_delete_active.gif')" 
              onmouseout="swapImage('gbDeleteColumnImage','channel_delete_base.gif')">
            <img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <!--<xsl:choose>
                <xsl:when test="$current_command = 'delete_gradebookitem'">
                        <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_delete_selected.gif"
            alt="To delete the selected column item" title="To delete the selected column item" align="absmiddle"/>
                </xsl:when>
                <xsl:otherwise>
                        <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_delete_active.gif"
            alt="To delete the selected column item" title="To delete the selected column item" align="absmiddle"/>
                </xsl:otherwise>
            </xsl:choose> --><img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_delete_base.gif"
            alt="To delete the selected column item" title="To delete the selected column item" align="absmiddle"
             name="gbDeleteColumnImage" id="gbDeleteColumnImage"/></a>
        </xsl:when>
        <xsl:otherwise>
            <img height="1" width="3" src=
            "{$SPACER}"
            alt="" border="0"/>
            <img border="0" src=
            "{$CONTROLS_IMAGE_PATH}/channel_delete_inactive.gif"
            alt="Not permitted to delete a column item" title="Not permitted to delete a column item" align="absmiddle"/>
        </xsl:otherwise>
    </xsl:choose>
</td>
</tr>
</table>
    
    </td>
</tr>
</xsl:template>

</xsl:stylesheet>
gb.xml (text/xml, 35.3 KB)
<gradebooks>
   <gradebook-item id="123" offeringid="162" type="2" weight="10" position="0" feedback="visible" association="null" mean="86" median="88" min_score="0" max_score="100">
      <title>Early Art Forms</title>

      <gradebook-score id="431" gradebook-itemid="123" username="CraigA" score="95" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="706" gradebook-itemid="123" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="435" gradebook-itemid="123" username="MikeF" score="96" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="430" gradebook-itemid="123" username="ChrisH" score="81" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="434" gradebook-itemid="123" username="LeeK" score="79" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="648" gradebook-itemid="123" username="jlacy" score="90" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="669" gradebook-itemid="123" username="jlayne" score="62" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="432" gradebook-itemid="123" username="FrankM" score="92" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="436" gradebook-itemid="123" username="NickB" score="86" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="438" gradebook-itemid="123" username="PerryR" score="94" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="713" gradebook-itemid="123" username="pete_student" score="88" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="524" gradebook-itemid="123" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="439" gradebook-itemid="123" username="SteveV" score="87" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="433" gradebook-itemid="123" username="JoannaW" score="78" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="437" gradebook-itemid="123" username="PattyW" score="91" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="785" gradebook-itemid="123" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>

   <gradebook-item id="120" offeringid="162" type="2" weight="10" position="1" feedback="visible" association="null" mean="70" median="71" min_score="0" max_score="75">
      <title>History of Abstract</title>

      <gradebook-score id="398" gradebook-itemid="120" username="CraigA" score="68" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="707" gradebook-itemid="120" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="402" gradebook-itemid="120" username="MikeF" score="65" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="397" gradebook-itemid="120" username="ChrisH" score="74" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="401" gradebook-itemid="120" username="LeeK" score="70" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="650" gradebook-itemid="120" username="jlacy" score="80" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="671" gradebook-itemid="120" username="jlayne" score="52" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="399" gradebook-itemid="120" username="FrankM" score="67" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="403" gradebook-itemid="120" username="NickB" score="71" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="405" gradebook-itemid="120" username="PerryR" score="73" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="714" gradebook-itemid="120" username="pete_student" score="77" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="526" gradebook-itemid="120" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="406" gradebook-itemid="120" username="SteveV" score="62" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="400" gradebook-itemid="120" username="JoannaW" score="73" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="404" gradebook-itemid="120" username="PattyW" score="74" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="786" gradebook-itemid="120" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>

   <gradebook-item id="122" offeringid="162" type="2" weight="10" position="2" feedback="visible" association="null" mean="88" median="90" min_score="0" max_score="100">
      <title>Post-Modern Design</title>

      <gradebook-score id="420" gradebook-itemid="122" username="CraigA" score="100" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="708" gradebook-itemid="122" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="424" gradebook-itemid="122" username="MikeF" score="95" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="419" gradebook-itemid="122" username="ChrisH" score="94" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="423" gradebook-itemid="122" username="LeeK" score="82" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="651" gradebook-itemid="122" username="jlacy" score="100" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="672" gradebook-itemid="122" username="jlayne" score="66" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="421" gradebook-itemid="122" username="FrankM" score="75" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="425" gradebook-itemid="122" username="NickB" score="93" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="427" gradebook-itemid="122" username="PerryR" score="95" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="715" gradebook-itemid="122" username="pete_student" score="82" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="527" gradebook-itemid="122" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="428" gradebook-itemid="122" username="SteveV" score="87" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="422" gradebook-itemid="122" username="JoannaW" score="85" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="426" gradebook-itemid="122" username="PattyW" score="90" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="787" gradebook-itemid="122" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>

   <gradebook-item id="166" offeringid="162" type="2" weight="10" position="3" feedback="visible" association="null" mean="0" median="0" min_score="0" max_score="100">
      <title>Art Paper</title>

      <gradebook-score id="738" gradebook-itemid="166" username="CraigA" score="-1" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="751" gradebook-itemid="166" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="740" gradebook-itemid="166" username="MikeF" score="-1" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="741" gradebook-itemid="166" username="ChrisH" score="-1" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="742" gradebook-itemid="166" username="LeeK" score="-1" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="749" gradebook-itemid="166" username="jlacy" score="-1" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="750" gradebook-itemid="166" username="jlayne" score="-1" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="743" gradebook-itemid="166" username="FrankM" score="-1" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="739" gradebook-itemid="166" username="NickB" score="-1" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="744" gradebook-itemid="166" username="PerryR" score="-1" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="752" gradebook-itemid="166" username="pete_student" score="-1" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="748" gradebook-itemid="166" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="745" gradebook-itemid="166" username="SteveV" score="-1" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="746" gradebook-itemid="166" username="JoannaW" score="-1" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="747" gradebook-itemid="166" username="PattyW" score="-1" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="789" gradebook-itemid="166" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>

   <gradebook-item id="179" offeringid="162" type="1" weight="100" position="4" feedback="visible" association="en-uni-207cv|uni-206" mean="0" median="0">
      <title>Black and White Composition</title>

      <gradebook-score id="862" gradebook-itemid="179" username="CraigA" score="-1" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="875" gradebook-itemid="179" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="864" gradebook-itemid="179" username="MikeF" score="-1" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="865" gradebook-itemid="179" username="ChrisH" score="-1" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="866" gradebook-itemid="179" username="LeeK" score="-1" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="873" gradebook-itemid="179" username="jlacy" score="-1" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="874" gradebook-itemid="179" username="jlayne" score="-1" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="867" gradebook-itemid="179" username="FrankM" score="-1" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="863" gradebook-itemid="179" username="NickB" score="-1" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="868" gradebook-itemid="179" username="PerryR" score="-1" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="876" gradebook-itemid="179" username="pete_student" score="-1" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="872" gradebook-itemid="179" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="869" gradebook-itemid="179" username="SteveV" score="-1" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="870" gradebook-itemid="179" username="JoannaW" score="-1" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="871" gradebook-itemid="179" username="PattyW" score="-1" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="877" gradebook-itemid="179" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>

   <gradebook-item id="121" offeringid="162" type="2" weight="45" position="5" feedback="visible" association="null" mean="0" median="0" min_score="0" max_score="200">
      <title>Art 110 Final Exam</title>

      <gradebook-score id="409" gradebook-itemid="121" username="CraigA" score="-1" hidden="false">
         <user username="CraigA" role_id="-1">
            <first_name>Craig</first_name>

            <last_name>Anderson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="709" gradebook-itemid="121" username="karen_faculty" score="-1" hidden="true">
         <user username="karen_faculty" role_id="-1">
            <first_name>Karen</first_name>

            <last_name>Faculty</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="413" gradebook-itemid="121" username="MikeF" score="-1" hidden="false">
         <user username="MikeF" role_id="-1">
            <first_name>Mike</first_name>

            <last_name>Freestone</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="408" gradebook-itemid="121" username="ChrisH" score="-1" hidden="false">
         <user username="ChrisH" role_id="-1">
            <first_name>Chris</first_name>

            <last_name>Holdorph</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="412" gradebook-itemid="121" username="LeeK" score="-1" hidden="false">
         <user username="LeeK" role_id="-1">
            <first_name>Lee</first_name>

            <last_name>Koury</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="652" gradebook-itemid="121" username="jlacy" score="-1" hidden="false">
         <user username="jlacy" role_id="-1">
            <first_name>Jason</first_name>

            <last_name>Lacy</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="673" gradebook-itemid="121" username="jlayne" score="-1" hidden="false">
         <user username="jlayne" role_id="-1">
            <first_name>Jim</first_name>

            <last_name>Layne</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="410" gradebook-itemid="121" username="FrankM" score="-1" hidden="false">
         <user username="FrankM" role_id="-1">
            <first_name>Frank</first_name>

            <last_name>Mason</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="414" gradebook-itemid="121" username="NickB" score="-1" hidden="false">
         <user username="NickB" role_id="-1">
            <first_name>Bolton</first_name>

            <last_name>Nick</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="416" gradebook-itemid="121" username="PerryR" score="-1" hidden="false">
         <user username="PerryR" role_id="-1">
            <first_name>Perry</first_name>

            <last_name>Reinert</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="716" gradebook-itemid="121" username="pete_student" score="-1" hidden="false">
         <user username="pete_student" role_id="-1">
            <first_name>Pete</first_name>

            <last_name>Student</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="528" gradebook-itemid="121" username="gary" score="-1" hidden="true">
         <user username="gary" role_id="-1">
            <first_name>Gary</first_name>

            <last_name>Thompson</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="417" gradebook-itemid="121" username="SteveV" score="-1" hidden="false">
         <user username="SteveV" role_id="-1">
            <first_name>Steve</first_name>

            <last_name>Valero</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="411" gradebook-itemid="121" username="JoannaW" score="-1" hidden="false">
         <user username="JoannaW" role_id="-1">
            <first_name>Joanna</first_name>

            <last_name>Williams</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="415" gradebook-itemid="121" username="PattyW" score="-1" hidden="false">
         <user username="PattyW" role_id="-1">
            <first_name>Patty</first_name>

            <last_name>Wolfe</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>

      <gradebook-score id="790" gradebook-itemid="121" username="bob2" score="-1" hidden="false">
         <user username="bob2" role_id="-1">
            <first_name>bob2</first_name>

            <last_name>hinkle</last_name>

            <password>null</password>

            <email>[email protected]</email>
         </user>
      </gradebook-score>
   </gradebook-item>
</gradebooks>