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
Requesting: metadata.xml... done. | |
Info: generating type Microsoft.SharePoint.DataService.AnnouncementsItem | |
Warning: AnnouncementsItem.Title:m:FC_TargetPath is an unknown/unprocessed attribued | |
Warning: AnnouncementsItem.Title:m:FC_ContentKind is an unknown/unprocessed attribued | |
Warning: AnnouncementsItem.Title:m:FC_KeepInContent is an unknown/unprocessed attribued | |
Warning: AnnouncementsItem.Modified:m:FC_TargetPath is an unknown/unprocessed attribued | |
Warning: AnnouncementsItem.Modified:m:FC_ContentKind is an unknown/unprocessed attribued | |
Warning: AnnouncementsItem.Modified:m:FC_KeepInContent is an unknown/unprocessed attribued | |
Warning: inverseProperty other side missing: Microsoft.SharePoint.DataService.AnnouncementsItem_CreatedBy | |
Warning: inverseProperty other side missing: Microsoft.SharePoint.DataService.AnnouncementsItem_ModifiedBy |
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
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:edm="http://schemas.microsoft.com/ado/2007/05/edm" | |
xmlns:annot="http://schemas.microsoft.com/ado/2009/02/edm/annotation" | |
xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl"> | |
<xsl:key name="entityType" match="edm:EntityType" use="concat(string(../@Namespace),'.', string(@Name))"/> | |
<xsl:key name="associations" match="edm:Association" use="concat(string(../@Namespace),'.', string(@Name))"/> | |
<!-- Unsupported in DataFormWebPart --> | |
<!--<xsl:strip-space elements="property item unprocessed"/>--> |
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
/** | |
* Setup Module with `highlight` filter | |
*/ | |
var JekyllApp = angular.module('JekyllApp', [], function ($routeProvider, $locationProvider) { | |
$locationProvider.html5Mode(false); | |
}); | |
JekyllApp.filter('highlight', function () { | |
return function (text, filter) { |
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"> | |
<html xmlns:o="urn:schemas-microsoft-com:office:office" lang="en-us" dir="ltr"> | |
<head><meta http-equiv="X-UA-Compatible" content="IE=8" /><meta name="GENERATOR" content="Microsoft SharePoint" /><meta name="progid" content="SharePoint.WebPartPage.Document" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Expires" content="0" /><title> | |
WebPartPage | |
</title><link rel="stylesheet" type="text/css" href="/_layouts/1033/styles/Themable/corev4.css?rev=iIikGkMuXBs8CWzKDAyjsQ%3D%3D"/> | |
<script type="text/javascript"> |
This file has been truncated, but you can view the full file.
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
<?xml version="1.0" encoding="utf-8"?> | |
<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"> | |
<edmx:DataServices m:DataServiceVersion="3.0" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"> | |
<Schema Namespace="SP" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"> | |
<ComplexType Name="KeyValue"> | |
<Property Name="Key" Type="Edm.String"/> | |
<Property Name="Value" Type="Edm.String"/> | |
<Property Name="ValueType" Type="Edm.String"/> | |
</ComplexType> | |
<ComplexType Name="SimpleDataRow"> |
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
/** | |
* User: RainerAtSpirit | |
* Date: 24.07.12 | |
* Time: 15:35 | |
*/ | |
define(['knockout', 'helper', 'postbox', 'underscore', 'jaydata', 'appData', 'jd2ko'], function (ko, fn, postbox, _) { | |
var app = window.app || {}, | |
TileViewModel, LogonViewModel, ListingModel, init; |
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
define(['knockout', 'postbox', 'underscore'], function (ko, postbox) { | |
"use strict"; | |
return function () { | |
var selectedList, allItems, take, takeValues, includeArray, orderBy, orderAsc, handleAfterRender, showTable, | |
chooseMap; | |
selectedList = ko.observable('No list selected').syncWith('selectedList'); | |
allItems = ko.observableArray([]); |
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
<div class="row" id="listingVM"> | |
<div class="nine columns" style="display:none" | |
data-bind="visible: showTable()"> | |
<div class="twelve columns"> | |
<div class="two columns"> | |
<a href="#" title="Go back"><img src="images/48/arrow_left.png" style="border: none"/></a> | |
</div> | |
<div class="ten columns"> | |
<h3 data-bind="text: $root.selectedList"></h3> |
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
define (['knockout', 'jquery', 'prettyDate', 'metrojs'], function ( ko, $ ) { | |
"use strict"; | |
// See https://github.com/SteveSanderson/knockout/wiki/Bindings---class | |
ko.bindingHandlers['class'] = { | |
'update' : function ( element, valueAccessor ) { | |
if ( element['__ko__previousClassValue__'] ) { | |
ko.utils.toggleDomNodeCssClass (element, element['__ko__previousClassValue__'], false); | |
} | |
var value = ko.utils.unwrapObservable (valueAccessor ()); |
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
<?xml version="1.0" encoding="utf-8"?><edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx"><edmx:DataServices m:DataServiceVersion="3.0" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata"><Schema Namespace="SP" xmlns="http://schemas.microsoft.com/ado/2009/11/edm"><ComplexType Name="KeyValue"><Property Name="Key" Type="Edm.String" /><Property Name="Value" Type="Edm.String" /><Property Name="ValueType" Type="Edm.String" /></ComplexType><ComplexType Name="SimpleDataRow"><Property Name="Cells" Type="Collection(SP.KeyValue)" /></ComplexType><ComplexType Name="SimpleDataTable"><Property Name="Rows" Type="Collection(SP.SimpleDataRow)" /></ComplexType><ComplexType Name="MethodInformation"><Property Name="Name" Type="Edm.String" /><Property Name="Parameters" Type="Collection(SP.ParameterInformation)" /><Property Name="ReturnTypeFullName" Type="Edm.String" /></ComplexType><ComplexType Name="ParameterInformation"><Property Name="Name" Type="Edm.String" /><Property Nam |
OlderNewer