This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- This XSL Stylesheet created by SharePoint Experts, Inc. --> | |
<!-- http://sharepointexperience.com --> | |
<xsl:output method="html" indent="yes"/> | |
<!-- This template is the "wrapper" or "container" for the custom view. --> | |
<xsl:template match="/"> | |
<!-- This is the actual wrapper element that will be emitted --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:param name="WPQ"/> | |
<xsl:param name="ListTitle"/> | |
<!-- This XSL Stylesheet created by SharePoint Experts, Inc. --> | |
<!-- http://sharepointexperience.com --> | |
<xsl:output method="html" indent="yes"/> | |
<!-- This template is the "wrapper" or "container" for the custom view. --> | |
<xsl:template match="/"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- This XSL Stylesheet created by SharePoint Experts, Inc. --> | |
<!-- http://sharepointexperience.com --> | |
<xsl:output method="html" indent="yes"/> | |
<!-- This template is the "wrapper" or "container" for the custom view. --> | |
<xsl:template match="/"> | |
<!-- This is the actual wrapper element that will be emitted --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="html" indent="yes"/> | |
<xsl:key name="group-by-group" match="Row" use="@Group"/> | |
<xsl:key name="group-by-year" match="Row" use="substring(@date,4,4)"/> | |
<xsl:template match="/"> | |
<ul> | |
<xsl:apply-templates select="/dsQueryResponse/Rows/Row[count(. | key('group-by-year', substring(@date,4,4))[1]) = 1]" mode="header"> | |
<xsl:sort select="substring(@date,4,4)"/> | |
</xsl:apply-templates> | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="html" indent="yes"/> | |
<xsl:key name="group-by-group" match="Row" use="@Group"/> | |
<xsl:template match="/"> | |
<xsl:apply-templates select="/dsQueryResponse/Rows/Row[count(. | key('group-by-group', @Group)[1]) = 1]" mode="header"> | |
<xsl:sort select="@Group"/> | |
</xsl:apply-templates> | |
</xsl:template> | |
<xsl:template match="Row" mode="header"> | |
<h1><xsl:value-of select="@Group"/></h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="html" indent="yes"/> | |
<!-- This template is the "wrapper" or "container" for the custom view. --> | |
<xsl:template match="/"> | |
<!-- This is the actual wrapper element that will be emitted --> | |
<div> | |
<script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
<script type="text/javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<!-- This XSL Stylesheet created by SharePoint Experts, Inc. --> | |
<!-- http://sharepointexperience.com --> | |
<xsl:output method="html" indent="yes"/> | |
<!-- This template is the "wrapper" or "container" for the custom view. --> | |
<xsl:template match="/"> | |
<!-- This is the actual wrapper element that will be emitted --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dsQueryResponse> | |
<Rows> | |
<Row ID="1" | |
Title="Get Started with Microsoft SharePoint Foundation!" | |
Body="<div class="ExternalClass7879AECA66014FDDB85450C1221CBCC4">Microsoft SharePoint Foundation helps you to be more effective by connecting people, information, and documents. For information on getting started, see Help.</div>" | |
Group="Group B"/> | |
<Row ID="2" | |
Title="Second announcement." | |
Body="<div class="ExternalClass8297C2B34D8E4E958D2A0413F85229BC">Bummer, there was already one there, so I couldn't claim <strong>FIRSTIES!</strong><br /><p></p></div>" | |
Group="Group A"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dsQueryResponse> | |
<Projects> | |
<Rows> | |
<Row ID="1" ContentType="Item" Title="Project A" /> | |
<Row ID="2" ContentType="Item" Title="Project B" /> | |
</Rows> | |
</Projects> | |
<Tasks> | |
<Rows> | |
<Row Title="Task 1" Priority="(2) Normal" Status="Not Started" PercentComplete="0 %" PercentComplete.="0" Related_x0020_Project_x003a_ID="1" ID="1" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveRecord::RecordNotFound (Couldn't find Course with id=10000000000002): | |
/home/lms/canvas/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.19/lib/active_record/relation/finder_methods.rb:344:in `find_one' | |
/home/lms/canvas/vendor/bundle/ruby/2.1.0/gems/switchman-1.2.18/lib/switchman/active_record/finder_methods.rb:20:in `find_one' | |
/home/lms/canvas/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.19/lib/active_record/relation/finder_methods.rb:315:in `find_with_ids' | |
/home/lms/canvas/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.19/lib/active_record/relation/finder_methods.rb:107:in `find' | |
/home/lms/canvas/vendor/bundle/ruby/2.1.0/gems/activerecord-3.2.19/lib/active_record/querying.rb:5:in `find' | |
/home/lms/canvas/app/controllers/application_controller.rb:1699:in `block in profile_data' | |
/home/lms/canvas/app/controllers/application_controller.rb:1697:in `each' | |
/home/lms/canvas/app/controllers/application_controller.rb:1697:in `map' | |
/home/lms/canvas/app/controllers/application_controller.rb:1697:i |