Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | dealing with time is hard v0.4.15 | Ben Morrison | 2020-06-25 | 1 | -1/+13 |
| | |||||
* | handling datetime edge case where seconds are missing | Ben Morrison | 2020-06-24 | 1 | -0/+5 |
| | |||||
* | makefile now safely installs over older versions | Ben Morrison | 2020-06-23 | 1 | -4/+6 |
| | | | | | | checks for existence of getwtxt.yml, style.css, and index.html. these files won't be overwritten, but the user is notified to merge them manually. | ||||
* | fixed test case for fetching remote registry data | Ben Morrison | 2020-06-21 | 1 | -1/+1 |
| | |||||
* | conditionally parsing datestamp as either rfc3339Nano or rfc3339 v0.4.14 | Ben Morrison | 2020-06-21 | 2 | -19/+7 |
| | |||||
* | codeclimate is misbehaving - disabling for now | Ben Morrison | 2020-06-20 | 1 | -8/+0 |
| | |||||
* | removed github issue template | Ben Morrison | 2020-06-20 | 2 | -47/+0 |
| | |||||
* | clarified mailing list for patches/discussion | Ben Morrison | 2020-06-20 | 1 | -1/+1 |
| | |||||
* | added go1.14.x to travis build manifest | Ben Morrison | 2020-06-20 | 1 | -0/+1 |
| | |||||
* | remove border from anchor links in nav | Ben Morrison | 2020-06-20 | 1 | -1/+1 |
| | |||||
* | updated makefile to use printf | Ben Morrison | 2020-06-20 | 1 | -47/+31 |
| | |||||
* | updated readme to reflect sourcehut | Ben Morrison | 2020-06-20 | 1 | -45/+30 |
| | |||||
* | fixed build manifest | Ben Morrison | 2020-06-20 | 2 | -6/+2 |
| | | | | wasn't reading test files of child modules | ||||
* | updating module to live at sourcehut | Ben Morrison | 2020-06-20 | 38 | -89/+2493 |
| | | | | | | Also moving the 'registry' library into this repo, rather than maintaining them separately. It will still be decoupled, just live in this repository. | ||||
* | added local copy of water.css v0.4.13 | Ben Morrison | 2020-04-12 | 3 | -5/+8 |
| | |||||
* | Allowing static files to be served directly from | Ben Morrison | 2020-04-12 | 3 | -3/+18 |
| | | | | | | | | | | a directory specified in the config. Added a handler to svc.go:Start() to serve /static/ Added default value in conf.go for "StaticFilesDirectory" in the config file. Read the value of StaticFilesDirectory in config to the config global in conf.go | ||||
* | clean wasn't removing binary previously | Ben Morrison | 2020-04-12 | 1 | -0/+1 |
| | |||||
* | added static files dir to install section of makefile | Ben Morrison | 2020-04-12 | 1 | -1/+1 |
| | |||||
* | another source of duplicated statuses fixed v0.4.12 | Ben Morrison | 2020-03-16 | 1 | -4/+0 |
| | | | | | | when changing config options, the database would be closed, then reopened, then the data would be pulled into memory. this caused duplicate status entries to form in the registry. | ||||
* | changing db type/location will no longer work without restart | Ben Morrison | 2020-03-16 | 1 | -7/+8 |
| | |||||
* | no plans to add support for additional databases | Ben Morrison | 2020-03-16 | 1 | -1/+0 |
| | |||||
* | eliminated panic when serving requests from empty registry v0.4.11 | Ben Morrison | 2020-03-16 | 2 | -1/+7 |
| | | | | | | | | | | | when generating an etag from a query that returns no results, indexing into the byte slice caused that thread to panic. now checking for a nil byte slice or a small byte slice in handlers.go:46:getEtag() on nil byte slice, return empty string for etag. on small byte slice, don't truncate it, but return the whole thing. | ||||
* | updated deps: | Ben Morrison | 2020-03-16 | 2 | -7/+28 |
| | | | | | | fsnotify 1.4.7 -> 1.4.9 getwtxt/registry 0.4.1 -> 0.4.2 gorilla/mux 1.7.3 -> 1.7.4 | ||||
* | notice on uninstall that the database remains on disk | Ben Morrison | 2020-03-16 | 1 | -0/+2 |
| | |||||
* | no need for static builds right now | Ben Morrison | 2020-03-16 | 1 | -1/+1 |
| | |||||
* | removed experimental host matching and tls support | Ben Morrison | 2020-03-16 | 4 | -82/+9 |
| | |||||
* | building on newer linux image | Ben Morrison | 2020-02-10 | 1 | -1/+1 |
| | |||||
* | updated dependencies | Ben Morrison | 2020-02-10 | 2 | -69/+29 |
| | |||||
* | version bump for getwtxt/registry dep v0.4.10 | Ben Morrison | 2020-02-07 | 2 | -1/+3 |
| | |||||
* | leaving db intact on uninstall v0.4.9 | Ben Morrison | 2019-12-20 | 1 | -1/+4 |
| | |||||
* | minor stylistic change in notes | Ben Morrison | 2019-12-19 | 1 | -1/+1 |
| | |||||
* | some functions were missing comments. added those in where needed. | Ben Morrison | 2019-12-19 | 7 | -0/+34 |
| | |||||
* | decoupled tests from personal twtxt.txt | Ben Morrison | 2019-12-19 | 5 | -25/+25 |
| | | | | | | | | Rather than use my personal twtxt.txt file, I'm using the mocked twtxt.txt file I just added to the repository for test data. It is being fetched via https from github to avoid having to get rid of the url validity check in the associated registry library. | ||||
* | added testdata/twtxt.txt for tests to run against | Ben Morrison | 2019-12-19 | 1 | -0/+27 |
| | |||||
* | truncating etag v0.4.8 | Ben Morrison | 2019-12-19 | 1 | -2/+4 |
| | |||||
* | minor refactor of apiEndpointHandler(): | Ben Morrison | 2019-12-19 | 1 | -8/+5 |
| | | | | | reduced early returns removed unnecessary switch statement | ||||
* | including go1.13 in travis conf | Ben Morrison | 2019-12-19 | 1 | -0/+1 |
| | |||||
* | refactored servStatic() to eliminate early return | Ben Morrison | 2019-12-18 | 1 | -8/+13 |
| | |||||
* | reduced size of hash for etag to 32bits | Ben Morrison | 2019-12-18 | 1 | -2/+2 |
| | |||||
* | switched etags to use fnv hash | Ben Morrison | 2019-12-12 | 1 | -10/+14 |
| | |||||
* | tick.exit channels now using struct{} instead of bool | Ben Morrison | 2019-12-08 | 1 | -4/+4 |
| | |||||
* | closeLog channel now accepts struct{} instead of bool | Ben Morrison | 2019-12-08 | 3 | -4/+4 |
| | |||||
* | updated default logfile paths v0.4.7 | Ben Morrison | 2019-09-19 | 1 | -2/+2 |
| | |||||
* | Merge branch 'envs-net-patch-upgrade' v0.4.6 | Ben Morrison | 2019-08-28 | 6 | -69/+69 |
|\ | |||||
| * | fix upgrade process and | creme | 2019-08-28 | 6 | -69/+69 |
|/ | | | | remove trailing spaces | ||||
* | upgrading notes | Ben Morrison | 2019-08-28 | 1 | -6/+33 |
| | |||||
* | endpoint for version response v0.4.5 | Ben Morrison | 2019-08-28 | 3 | -20/+43 |
| | |||||
* | added public instance envs.net | Ben Morrison | 2019-08-28 | 1 | -1/+5 |
| | |||||
* | added link in notes to twtxt-on-heroku | Ben Morrison | 2019-08-27 | 1 | -0/+2 |
| | |||||
* | license notice at top of each file | Ben Morrison | 2019-07-11 | 21 | -0/+399 |
| |