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 ng-controller="u7dtg.prevaluesController"> | |
<table class="table table-striped table-responsive table-hover prevalusTable"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Title</th> | |
<th>Alias</th> | |
<th>Type</th> | |
<th></th> | |
</tr> |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web.UI.WebControls; | |
using umbraco.interfaces; | |
using Umbraco.Core; | |
using Umbraco.Web; | |
namespace Customer.MacroParameters | |
{ |
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
exports.post = function(request, response) { | |
var identities = request.user.getIdentities(); | |
var basicProfileUrl; | |
if (identities.microsoft) { | |
var liveAccessToken = identities.microsoft.accessToken; | |
basicProfileUrl = 'https://apis.live.net/v5.0/me/?method=GET&access_token=' + liveAccessToken; | |
} | |
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
@echo off | |
:: This script will setup dropbox to sync Chrome's User Stylesheets. | |
:: It is a shim since Chromium probably won't add this file to Chrome-Sync in the future. | |
:: See http://code.google.com/p/chromium/issues/detail?id=136479 for more details. | |
:: | |
:: The main purpose of this script is to sync the style sheet used for Dev Tools. | |
:: See http://darcyclarke.me/design/skin-your-chrome-inspector/ for more information | |
:: on stylying your Chrome Dev Tools. | |
:: |
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
/* -------------------------------------------------------------------------------------------------- | |
Create the type for the table valued parameter | |
----------------------------------------------------------------------------------------------------*/ | |
IF EXISTS (SELECT * FROM sys.types st JOIN sys.schemas ss ON st.schema_id = ss.schema_id WHERE st.name = N'StringTable' AND ss.name = N'dbo') | |
DROP TYPE [dbo].[StringTable] | |
GO | |
CREATE TYPE [dbo].[StringTable] AS TABLE( | |
[TextValue] [varchar](max) NULL | |
) |
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
@echo off | |
REM This script should delete any settings for your local | |
REM installation of Sublime Text 2. It will then create | |
REM sym-links that point to your Dropbox folder | |
SET dropboxSettingDir=%USERPROFILE%\Dropbox\Apps\Sublime Text 2\ | |
SET sublimePluginDir=%APPDATA%\Sublime Text 2\ | |
echo Local Settings Dir: %sublimePluginDir% |
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
<people> | |
<person name="John Doe"/> | |
</person> |