Skip to content

History

Revisions

  • Updated Home (markdown)

    @Marianittem Marianittem committed Nov 8, 2022
    161a9f8
  • Updated Home (markdown)

    @mariyp mariyp committed Apr 12, 2022
    a37ccc7
  • Destroyed Config file draft (markdown)

    @asciimoo asciimoo committed Feb 22, 2017
    ed87533
  • Updated Release checklist (markdown)

    @asciimoo asciimoo committed Feb 17, 2017
    e9800b7
  • Created Release checklist (markdown)

    @asciimoo asciimoo committed Feb 11, 2017
    b940942
  • Change "keys" table to use "keys.global" instead of bare strings The TOML library I've been using (https://github.com/BurntSush/toml) parses TOML into a Go struct, which is handy as it allows for a fully typed config values, so you can do something like `Config.DefaultTimeout` instead of something like `Config.Get("defaultTimeout")`. The reason for the change is because this requires that the TOML layout be expressible with Go's types - one of the major differences between Go's type system and TOML's spec is that Go maps cannot have disparate values. Due to this, the previous keys layout would result in a type of `interface{}` for `Config.Keys`, eliminating any type-checking within it. The proposed structure would let us instead use the type `map[string] map[string]string`. It's a little confusing at first sight, but it just means you would access it using the following style: ```go Config.Keys["global"]["C-n"] Config.Keys["responseBody"]["C-s"] ``` This would remove the requirement to use either purely string-based configuration access or casting of `Config.Keys` to either `map[string] string` or `map[string] map[string]string` depending on whether you were accessing global or view-specific keys.

    @Benaiah Benaiah committed Feb 11, 2017
    8000b15
  • Updated Config file draft (markdown)

    Georgi Dimitrov committed Feb 10, 2017
    c159ab1
  • Updated Config file draft (markdown)

    @asciimoo asciimoo committed Feb 10, 2017
    05f33c0
  • Update the paths to the config file for OSX (macOS) and Windows

    Georgi Dimitrov committed Feb 9, 2017
    23be56f
  • Updated Config file draft (markdown)

    @asciimoo asciimoo committed Feb 8, 2017
    b8e2fd5
  • Created Config file draft (markdown)

    @asciimoo asciimoo committed Feb 8, 2017
    4eb5345
  • Initial Home page

    @asciimoo asciimoo committed Feb 8, 2017
    2ec7353