diff options
| author | tjp <tjp@ctrl-c.club> | 2024-01-03 19:05:21 -0700 |
|---|---|---|
| committer | tjp <tjp@ctrl-c.club> | 2024-01-03 19:05:21 -0700 |
| commit | 1eec3cbbc2da95e116e70ab3911766886e499988 (patch) | |
| tree | 5a8826e58d61e26ae4efbd75292dd702ed1ca20a /actions.go | |
| parent | d2b94e4b874aa2639bb22eb88494cdda73d40f22 (diff) | |
about, and unlicense
Diffstat (limited to 'actions.go')
| -rw-r--r-- | actions.go | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -37,6 +37,40 @@ var ( ErrInvalidTourArgs = errors.New("tour what?") ) +func About(state *BrowserState) error { + _, err := fmt.Println(` + ... + *=:::. + ---======- -+-..... + .#@@@@@@@= .+=-:....:++ + +@@@@@@@@# :-::.. ...*+ + :%@@@@@@@@@. =*+++==:.... + .*@@@@@@@@@@= -#%###**++-:.. + -@@@@@@@@@@@% .::-=*#@@#*#@@@@@@@%-. + ..:::----=====++#@@@@@@@@@@@@%%%@@@@@@@@@@%%#**@@@@@@@= + .-+#%%@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@- + =*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@##%@@*%@@@@@@@@@@- .. + -+*. .#@@@@@@@@@@@@@@@@@@@@@@@@@@@%@@@@@@%%%%###- =- .=.==----==--:... +...:::::=#@@@@#**+*##@@@#*%%%%%%%%##############******+==-:-=-:.-==-:.. ... + .:.:-==++++====::-----::---:-+%@@@@@@@@@@@@@#-... + . ...............=@@@@@@@@@@@@@@+.... + -@@@@@@@@@@@@@#. + -@@@@@@@@@@@@%- + -@@%%##@@@@@@= + =%++*=-=%@@@*. + =--*%%%::#@#: + *@+=#-+*%@%- + .*%****###@+. + ::..:::.::*@@@%%%%%#: + +x-1 is a browser for small web protocols gemini, gopher, finger, spartan, and nex. +It also has very limited support for HTTP[S]. + +It was written by TJP and released to the public domain. +`[1:]) + return err +} + func Navigate(state *BrowserState, target *url.URL, navIndex int, conf *Config) error { hist := state.History |
