Merge pull request #3394 from nanoant/patch/use-new-filter-prefix

Use new #? filter prefix in various places
This commit is contained in:
Andreas Rumpf
2015-10-01 09:12:08 +02:00
9 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
#! stdtmpl | standard
#? stdtmpl | standard
#proc generateHTMLPage(title, currentTab, content: string,
# tabs: openArray[string]): string =
# result = ""

View File

@@ -1,4 +1,4 @@
#! stdtmpl
#? stdtmpl
#proc sunsetTemplate*(current, ticker, content: string,
# tabs: openarray[array[0..1, string]]): string =
# result = ""

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar='?') | standard
#? stdtmpl(subsChar='?') | standard
#proc generateBuildBatchScript(c: ConfigData, winIndex, cpuIndex: int): string =
# result = "@echo off\nREM Generated by niminst\n"
SET CC=gcc

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar='?') | standard
#? stdtmpl(subsChar='?') | standard
#proc generateBuildShellScript(c: ConfigData): string =
# result = "#! /bin/sh\n# Generated from niminst\n" &
# "# Template is in tools/niminst/buildsh.tmpl\n" &

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar='?') | standard
#? stdtmpl(subsChar='?') | standard
#proc generateDeinstallScript(c: ConfigData): string =
# result = "#! /bin/sh\n# Generated by niminst\n"
# var proj = c.name.toLower

View File

@@ -1,4 +1,4 @@
#! stdtmpl | standard
#? stdtmpl | standard
#proc generateInnoSetup(c: ConfigData): string =
# result = ""
; Default Template for NimInst

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar = '?') | standard
#? stdtmpl(subsChar = '?') | standard
#proc generateInstallScript(c: ConfigData): string =
# result = "#! /bin/sh\n# Generated by niminst\n"
# var proj = c.name.toLower

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar='?') | standard
#? stdtmpl(subsChar='?') | standard
#proc generateMakefile(c: ConfigData): string =
# result = "# Generated from niminst\n" &
# "# Template is in tools/niminst/makefile.tmpl\n" &

View File

@@ -1,4 +1,4 @@
#! stdtmpl(subsChar='?') | standard
#? stdtmpl(subsChar='?') | standard
#proc generateNsisSetup(c: ConfigData): string =
# result = "; NSIS script generated by niminst\n" &
# "; To regenerate run ``niminst nsis`` or ``koch nsis``\n"