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
powershell -file "$(SolutionDir)tools\Tridion-services-start.ps1" |
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
# Set up a Tridion Core Service client for the Content Manager server cms.server.com. | |
# The 2013-SP1 label is for the CM server version, other valid entries are 2011-SP1 and 2013. | |
Import-Module Tridion-CoreService | |
Set-TridionCoreServiceSettings cms.server.com 2013-SP1 | |
$client = Get-TridionCoreServiceClient | |
# Set a publish instruction with resolve instruction and render instruction. These are all standard | |
# instructions, nothing special here but you can use this to create a special publinshing action. | |
$publishIntructionData = New-Object Tridion.ContentManager.CoreService.Client.PublishInstructionData | |
$publishIntructionData.RenderInstruction = New-Object Tridion.ContentManager.CoreService.Client.RenderInstructionData |
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
<!-- TemplateBeginRepeat name="Component.Fields.repeatField" --> | |
<!-- TemplateBeginIf cond = "TemplateRepeatIndex == 0 " --> | |
<ul> | |
<!-- TemplateEndIf --> | |
<li>@@Field@@</li> | |
<!-- TemplateBeginIf cond = "TemplateRepeatIndex) == @@CollectionLength("repeatField")@@-1" --> | |
</ul> | |
<!-- TemplateEndIf --> | |
<!-- TemplateEndRepeat --> |
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
using System; | |
using System.ServiceModel; | |
using Tridion.ContentManager.CoreService.Client; | |
namespace CoreServiceSandbox | |
{ | |
internal class Program | |
{ | |
private static void Main(string[] args) | |
{ |
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
<smarttarget:query view="home" publication="tcm:0-71-1"> | |
<smarttarget:facet category="tcm:69-707-4"></smarttarget:facet> | |
<smarttarget:promotions maxItems="3" var="promotion" region="homepagepromotions"> <!-- HomepageBanners --> | |
<smarttarget:itemTemplate> | |
<smarttarget:promotionalItems> | |
<smarttarget:itemTemplate> | |
<tridion:ComponentPresentation pageURI="tcm:69-6212-64" componentURI="${item.componentUri}" templateURI="${item.templateUri}"/> | |
</smarttarget:itemTemplate> | |
</smarttarget:promotionalItems> | |
</smarttarget:itemTemplate> |
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
Release 1 (1996) | |
Release 2 (1997) | |
Release 3 (1999) | |
Release 4 (2001) | |
Release 5 (2003) | |
Tridion 5.1 (2005) | |
Tridion 5.2 (2006) | |
SDL Tridion 5.3 (January 2008) | |
SDL Tridion 2009 (November 2009) | |
SDL Tridion 2011 (Januari 2011) |
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
<%@ Page Title="SDL SmartTarget tag demo" Language="C#" %> | |
<%@ Register Assembly="Tridion.SmartTarget" Namespace="Tridion.SmartTarget.Web.UI" TagPrefix="smarttarget" %> | |
<%@ Import Namespace="System.Web" %> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html> | |
<head> | |
<title>SmartTarget tag demo</title> | |
</head> | |
<body> |
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
PowerShell.exe -ExecutionPolicy RemoteSigned -Command "& {.\Add-AssemblyToGlobalAssemblyCache.ps1 -AssemblyName C:\Temp\MyWorkflow.dll }" |
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
@echo off | |
start start-deployment-agent.bat | |
echo Launched deployment agent in separate window | |
echo. | |
echo Pausing before starting the instance | |
timeout 60 | |
echo. | |
start start-instance.bat |