Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
78 lines (68 sloc)
4.79 KB
This file contains 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<%@ Page Language="C#" inherits="Microsoft.SharePoint.WebPartPages.WebPartPage, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register tagprefix="WebPartPages" namespace="Microsoft.SharePoint.WebPartPages" assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<%@ Register tagprefix="SharePoint" namespace="Microsoft.SharePoint.WebControls" assembly="Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> | |
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml"> | |
<head runat="server"> | |
<meta name="ProgId" content="SharePoint.WebPartPage.Document" /> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Untitled 1</title> | |
<style type="text/css"> | |
.ms-WPHeader{ | |
/* [ReplaceColor(themeColor:"Light1")] */ background-color:#FFFFFF; | |
} | |
.ms-WPHeader .ms-wpTdSpace{ | |
width:5px; | |
border-bottom:1px solid transparent; | |
} | |
.ms-WPHeader td{ | |
/* [ReplaceColor(themeColor:"Dark2",themeTint:"0.17")] */ border-bottom:1px solid #EBEBEB; | |
border-collapse:collapse; | |
} | |
.ms-WPTitle{ | |
/* [ReplaceColor(themeColor:"Hyperlink")] */ color:#0072bc; | |
} | |
.ms-WPTitle | |
{ | |
font-weight:normal; | |
font-family:Verdana,Tahoma,sans-serif; | |
padding-left:0px; | |
padding-right:4px; | |
padding-top:4px; | |
padding-bottom:5px; | |
font-size:10pt; | |
} | |
.ms-wpContentDivSpace{ | |
margin-left:5px; | |
margin-right:5px; | |
} | |
</style> | |
</head> | |
<body> | |
<WebPartPages:DataFormWebPart runat="server" Description="" ListDisplayName="" PartOrder="2" HelpLink="" AllowRemove="True" IsVisible="True" AllowHide="True" UseSQLDataSourcePaging="True" ExportControlledProperties="True" DataSourceID="" Title="ServiceFiles/helloWorld.xml" ViewFlag="8" NoDefaultStyle="TRUE" AllowConnect="True" FrameState="Normal" PageSize="10" PartImageLarge="" AsyncRefresh="False" ExportMode="All" Dir="Default" DetailLink="" ShowWithSampleData="False" ListId="00000000-0000-0000-0000-000000000000" ListName="" FrameType="None" PartImageSmall="" IsIncluded="True" SuppressWebPartChrome="False" AllowEdit="True" ManualRefresh="False" ChromeType="None" AutoRefresh="False" AutoRefreshInterval="60" AllowMinimize="True" ViewContentTypeId="" InitialAsyncDataFetch="False" MissingAssembly="Cannot import this Web Part." HelpMode="Modeless" ListUrl="" ID="g_42006614_8d8d_4ef8_b48e_4bb9bdaaf8a9" ConnectionID="00000000-0000-0000-0000-000000000000" AllowZoneChange="True" IsIncludedFilter="" __MarkupType="vsattributemarkup" __WebPartId="{42006614-8D8D-4EF8-B48E-4BB9BDAAF8A9}" __AllowXSLTEditing="true" WebPart="true" Height="" Width=""><ParameterBindings> | |
<ParameterBinding Name="FileName" Location="None" DefaultValue="helloWorld.xml"/> | |
<ParameterBinding Name="FilePath" Location="None" DefaultValue="ServiceFiles/xml"/> | |
<ParameterBinding Name="dvt_apos" Location="Postback;Connection"/> | |
<ParameterBinding Name="ManualRefresh" Location="WPProperty[ManualRefresh]"/> | |
<ParameterBinding Name="UserID" Location="CAMLVariable" DefaultValue="CurrentUserName"/> | |
<ParameterBinding Name="Today" Location="CAMLVariable" DefaultValue="CurrentDate"/> | |
<ParameterBinding Name="dvt_firstrow" Location="Postback;Connection"/> | |
<ParameterBinding Name="dvt_nextpagedata" Location="Postback;Connection"/> | |
</ParameterBindings> | |
<DataFields> | |
title;</DataFields> | |
<Xsl> | |
<xsl:stylesheet version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal"> | |
<xsl:output method="html" indent="no"/> | |
<xsl:template match="/" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:SharePoint="Microsoft.SharePoint.WebControls"> | |
<h1><xsl:value-of select="root/title" /></h1> | |
</xsl:template> | |
</xsl:stylesheet> </Xsl> | |
<DataSources> | |
<SharePoint:SPXmlDataSource runat="server" DataFile="" AutoSave="True" XPath="" ID="ServiceFiles_x002f_helloWorld_x002e_xml4"><DataFileParameters><WebPartPages:DataFormParameter ParameterKey="FileName" PropertyName="ParameterValues" DefaultValue="helloWorld.xml" Name="FileName"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="FilePath" PropertyName="ParameterValues" DefaultValue="ServiceFiles/xml" Name="FilePath"></WebPartPages:DataFormParameter> | |
</DataFileParameters> | |
</SharePoint:SPXmlDataSource> | |
</DataSources> | |
</WebPartPages:DataFormWebPart> | |
</body> | |
</html> |