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
<?xml version="1.0" encoding="utf-8"?> | |
<Project | |
DefaultTargets="MindVortex_Build_Wyam_Run" | |
ToolsVersion="11.0" | |
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import | |
Condition="Exists('$(DirNBuildKitMsBuildShared)\shared.importbuildsharedsettings.props') AND '$(ExistsSharedImportBuildSharedSettings)' != 'true' " | |
Project="$(DirNBuildKitMsBuildShared)\shared.importbuildsharedsettings.props" /> |
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
# Notes: | |
# - Minimal appveyor.yml file is an empty file. All sections are optional. | |
# - Indent each level of configuration with 2 spaces. Do not use tabs! | |
# - All section names are case-sensitive. | |
# - Section names should be unique on each level. | |
#---------------------------------# | |
# general configuration # | |
#---------------------------------# |
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
<!-- | |
Model is: Tuple<IDocument, IDocument>. | |
The first one is the current document that is being rendered, the second one is the one for which the post header should be rendered. | |
--> | |
@model System.Tuple<Wyam.Common.Documents.IDocument, Wyam.Common.Documents.IDocument> | |
@{ | |
var Published = Model.Item2.Get<DateTime>(BlogKeys.Published); | |
var Tags = Model.Item2.Get<string[]>(BlogKeys.Tags); | |
} |
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
@{ | |
foreach(IDocument doc in Documents[BlogPipelines.RawPosts].Take(5)) | |
{ | |
<div id="post-spacer"> | |
<div id="post"> | |
<div id="post-header"> | |
@Html.Partial("_PostHeader.cshtml", Tuple.Create(Model, doc)) | |
</div> | |
<div id="post-content"> | |
@Html.Raw(doc.Content) |
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
@{ | |
string Title = Model.String(BlogKeys.Title); | |
string PageTitle = Context.String(BlogKeys.Title) + (string.IsNullOrWhiteSpace(Title) ? string.Empty : " - " + Title); | |
} | |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/> |
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
function ChangeType | |
{ | |
[CmdletBinding()] | |
param ( | |
[string] $input | |
) | |
$ErrorActionPreference = "Stop" | |
$input = $input.Split(',') |
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
# Detected Distro is Ubuntu | |
Downloading deployment script from: https://downloads.stackstorm.net/releases/st2/0.9.0/debs/st2_deploy.sh... | |
Running deployment script for St2 0.9.0... | |
###################################################################### | |
###### WARNING ####### | |
###################################################################### | |
This scripts allows you to evaluate StackStorm on a single server and | |
is not intended to be used for production deployments. |
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
<# | |
.SYNOPSIS | |
Syspreps an Azure VM and then creates an image from it. | |
.DESCRIPTION | |
The New-AzureSyspreppedVMImage function executes sysprep on a given Azure VM and then once the VM is shut down creates an image from it. | |