An error occurred fetching the project authors.
  1. 02 Dec, 2010 1 commit
  2. 01 Dec, 2010 1 commit
  3. 27 Aug, 2010 1 commit
  4. 17 Aug, 2010 1 commit
  5. 16 Aug, 2010 1 commit
  6. 11 Aug, 2010 1 commit
  7. 26 Apr, 2010 1 commit
  8. 21 Apr, 2010 1 commit
  9. 18 Mar, 2010 1 commit
  10. 10 Mar, 2010 1 commit
  11. 02 Mar, 2010 1 commit
  12. 26 Feb, 2010 2 commits
  13. 24 Feb, 2010 1 commit
  14. 15 Jan, 2010 1 commit
  15. 08 Jan, 2010 1 commit
  16. 23 Dec, 2009 1 commit
  17. 16 Dec, 2009 1 commit
  18. 15 Dec, 2009 1 commit
    • Robert Griesemer's avatar
      1) Change default gofmt default settings for · 45ca9f7a
      Robert Griesemer authored
         parsing and printing to new syntax.
      
         Use -oldparser to parse the old syntax,
         use -oldprinter to print the old syntax.
      
      2) Change default gofmt formatting settings
         to use tabs for indentation only and to use
         spaces for alignment. This will make the code
         alignment insensitive to an editor's tabwidth.
      
         Use -spaces=false to use tabs for alignment.
      
      3) Manually changed src/exp/parser/parser_test.go
         so that it doesn't try to parse the parser's
         source files using the old syntax (they have
         new syntax now).
      
      4) gofmt -w src misc test/bench
      
      5th and last set of files.
      
      R=rsc
      CC=golang-dev
      https://golang.org/cl/180050
      45ca9f7a
  19. 10 Dec, 2009 1 commit
  20. 30 Nov, 2009 1 commit
  21. 24 Nov, 2009 1 commit
  22. 20 Nov, 2009 1 commit
    • James Meneghello's avatar
      Map support for template.Execute(). · bfbb3159
      James Meneghello authored
      Allows the developer to pass a map either by itself for
      evaluation, or inside a struct. Access to data inside
      maps is identical to the current system for structs, ie.
      
      -Psuedocode-
      
      mp map[string]string = {
      	"header" : "A fantastic header!",
      	"footer" : "A not-so-fantastic footer!",
      }
      template.Execute(mp)
      
      ...can be accessed using {header} and {footer} in
      the template. Similarly, for maps inside structs:
      
      type s struct {
      	mp map[string]string,
      }
      s1 = new s
      s1.mp["header"] = "A fantastic header!";
      template.Execute(s1)
      
      ...is accessed using {mp.header}. Multi-maps, ie.
      map[string](map[string]string) and maps of structs
      containing more maps are unsupported, but then, I'm
      not even sure if that's supported by the language.
      
      Map elements can be of any type that can be written
      by the formatters. Keys should really only be strings.
      
      Fixes #259.
      
      R=r, rsc
      https://golang.org/cl/157088
      bfbb3159
  23. 10 Nov, 2009 1 commit
  24. 09 Nov, 2009 1 commit
  25. 06 Nov, 2009 1 commit
  26. 05 Nov, 2009 1 commit
  27. 03 Nov, 2009 1 commit
  28. 28 Oct, 2009 1 commit
  29. 08 Oct, 2009 1 commit
  30. 18 Sep, 2009 1 commit
  31. 17 Sep, 2009 1 commit
  32. 16 Sep, 2009 1 commit
  33. 15 Sep, 2009 1 commit
    • Russ Cox's avatar
      more "declared and not used". · ca6a0fee
      Russ Cox authored
      the last round omitted := range and only
      checked 1 out of N vars in a multi-var :=
      
      R=r
      OCL=34624
      CL=34638
      ca6a0fee
  34. 01 Sep, 2009 1 commit
    • Russ Cox's avatar
      template: · 59db1f7b
      Russ Cox authored
        * do full lookup for {.section},
        	so that it is always allowed to replace
      	{Foo} with {.section Foo}{@}{.end}
        * treat False as empty so that .section can
        	be used to test bools
      
      R=r
      DELTA=29  (21 added, 0 deleted, 8 changed)
      OCL=34215
      CL=34219
      59db1f7b
  35. 30 Aug, 2009 1 commit
  36. 27 Aug, 2009 1 commit
  37. 12 Aug, 2009 1 commit
  38. 31 Jul, 2009 2 commits