aboutsummaryrefslogtreecommitdiff
path: root/src/text
AgeCommit message (Expand)Author
2021-12-13all: gofmt -w -r 'interface{} -> any' srcRuss Cox
2021-10-29text/template: use reflect.Value.FieldByIndexErrRob Pike
2021-10-26all: use reflect.{Pointer,PointerTo}Cuong Manh Le
2021-10-18html/template: remove unused `mode` field on `Tree` structGusted
2021-10-06all: use bytes.Cut, strings.CutRuss Cox
2021-10-05text/template: only unwrap final and/or valueIan Lance Taylor
2021-10-01text/template: undo reflect.Value wrapping for short-circuit and/orIan Lance Taylor
2021-09-29text/template: check final value for short-circuit and/orIan Lance Taylor
2021-09-23html/template, text/template: implement break and continue for range loopsRuss Cox
2021-09-21text/template: implement short-circuit and, orRuss Cox
2021-09-20text/template: initialize template before locking itIan Lance Taylor
2021-07-18text/scanner: use Go convention in Position doc commentmehradsadeghi
2021-05-06text/template: fix type bug in eqRuss Cox
2021-05-06text/template/parse: rename DeferFuncCheck to SkipFuncCheckRuss Cox
2021-05-04text/template: add lock for Template.tmpl to fix data raceIan Lance Taylor
2021-04-19text/template/parse: add a mode to skip func-check on parsingAriel Mashraki
2021-04-12text/template: replace os.MkdirTemp with T.TempDirManlio Perillo
2021-03-05text/template: wrap errors returned by template functions instead of stringif...Adrien Delorme
2021-02-25reflect: add Method.IsExported and StructField.IsExported methodsJoe Tsai
2020-12-15text/template: error on range over send channelMeng Zhuo
2020-12-09all: update to use os.ReadFile, os.WriteFile, os.CreateTemp, os.MkdirTempRuss Cox
2020-10-20all: update references to symbols moved from io/ioutil to ioRuss Cox
2020-10-20html/template, text/template: add ParseFSRuss Cox
2020-10-12text/template: allow newlines inside action delimitersRuss Cox
2020-08-28text/template: add CommentNode to template parse treeAriel Mashraki
2020-07-14html/template: add tests from text/templateRuss Cox
2020-06-23text/template: fix lint typo in VariableNode docMacks
2020-05-21all: use a hermetic "go" tool in standard-library testsBryan C. Mills
2020-04-16html/template,text/template: switch to Unicode escapes for JSON compatibilityempijei
2020-04-15text/template: avoid a global map to help the linker's deadcode eliminationBrad Fitzpatrick
2020-02-24text/template: make reflect.Value indirections more robustDaniel Martí
2020-01-23text/template/parse: remove redundant returnAriel Mashraki
2019-12-19text/template: indirect interfaces before slicingDaniel Martí
2019-12-17text/template: remove an incorrect comment and clarify docs for AddParseTreeOliver Powell
2019-11-21text/template: harden JSEscape to also escape ampersand and equalRoberto Clapis
2019-11-12text/template: add error check for parenthesized first argument in pipelineRob Pike
2019-10-03text/template/parse: speed up nodes printingAriel Mashraki
2019-10-01text/template/parse: remove duplication in peekNonSpaceAriel Mashraki
2019-10-01text/template/parse: use strings.Builder in Chain and List nodesAriel Mashraki
2019-10-01text/template/parse: use strings.Builder in String methodsAriel Mashraki
2019-10-01text/template: further simplify building the vars listRob Pike
2019-09-30text/template/parse: specify slice capacity in Pipenode.CopyPipe()Pantelis Sampaziotis
2019-09-25text/template: don't evaluate '.' as a float64Daniel Martí
2019-09-25text/template: support all comparable types in eqAriel Mashraki
2019-09-06text/template: refer to sorted map keys as "ordered" not "comparable" in docsMihai Borobocea
2019-08-27text/template: avoid allocating a new common in copytnclong
2019-08-27text/template: replace bytes.Buffer with strings.BuilderDong-hee Na
2019-06-27text/scanner: remove AllowDigitSeparator flag againRobert Griesemer
2019-06-20text/scanner: rename AllowNumberbars to AllowDigitSeparatorsRobert Griesemer
2019-06-17html/template, text/template: document glob semanticsAndrew Gerrand