about summary refs log tree commit diff stats
path: root/014literal_string.cc
Commit message (Expand)AuthorAgeFilesLines
* 3561Kartik K. Agaram2016-10-221-1/+1
* 3374Kartik K. Agaram2016-09-161-2/+2
* 3364Kartik K. Agaram2016-09-151-2/+2
* 3327Kartik K. Agaram2016-09-111-1/+1
* 3285Kartik K. Agaram2016-08-311-1/+1
* 3233 - change how Mu escapes stringsKartik K. Agaram2016-08-201-4/+26
* 3179Kartik K. Agaram2016-08-131-2/+2
* 3081Kartik K. Agaram2016-06-301-1/+7
* 3008Kartik K. Agaram2016-05-251-3/+3
* 2803Kartik K. Agaram2016-03-211-11/+11
* 2775 - test rewrite-stash transformKartik K. Agaram2016-03-131-1/+2
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-9/+9
* 2712Kartik K. Agaram2016-02-261-2/+2
* 2681 - drop reagent types from reagent propertiesKartik K. Agaram2016-02-211-12/+11
* 2678Kartik K. Agaram2016-02-201-1/+1
* 2677Kartik K. Agaram2016-02-201-1/+1
* 2689 - consistently use s-exp syntax in tracesKartik K. Agaram2016-02-191-1/+1
* 2685Kartik K. Agaram2016-02-191-3/+3
* 2614 - still fixing bugs with missing '['Kartik K. Agaram2015-12-021-2/+1
* 2454Kartik K. Agaram2015-11-171-5/+5
* 2452Kartik K. Agaram2015-11-161-6/+6
* 2377 - stop using operator[] in mapKartik K. Agaram2015-11-061-1/+1
* 2334Kartik K. Agaram2015-10-311-2/+1
* 2317Kartik K. Agaram2015-10-291-0/+199
#fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
package main

// content-type consts
const txtutf8 = "text/plain; charset=utf8"
const htmlutf8 = "text/html; charset=utf8"

// config object definition
type configuration struct {
	port          int
	logfile       string
	twtxtfile     string
	stdoutLogging bool
}