Skip to content

Commit 9094479

Browse files
author
Michael Elkins
committed
import of 0.9
1 parent e7b9f21 commit 9094479

27 files changed

+5905
-0
lines changed

AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Michael Elkins <[email protected]>
2+
http://www.cs.hmc.edu/~me/

COPYING

+340
Large diffs are not rendered by default.

ChangeLog

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
0.2 => 0.3
2+
==========
3+
4+
- urls can now be edited before being launced
5+
6+
- check for snprintf and use supplied if not present
7+
8+
- slang support with `configure --with-slang'
9+
10+
- check for regex.h did not define HAVE_REGEX_H
11+
12+
- backslash (\) quoting did not work for things like \.
13+
14+
0.3 => 0.4
15+
==========
16+
17+
- add -Dunix to the CFLAGS so that building with slang under hp-ux will work
18+
19+
- need to include <fcntl.h> in main.c
20+
21+
- now accepts input from stdin even if stdin is a tty
22+
23+
- `h' is now an alias for `q' (lynx compatibility)
24+
25+
- automake is now used for this package
26+
27+
0.4 => 0.5
28+
==========
29+
30+
- ^L refreshes the screen
31+
32+
From: Aaron Schrab <[email protected]>
33+
- 0-9 can be used to jump to a specific url
34+
- fixed redraw bug when changing pages
35+
- pagelength was incorrectly calculated
36+
- dynamically increase array if more than 128 urls are found
37+
38+
0.5 => 0.6
39+
==========
40+
41+
- backspace char was not honored in line editor
42+
- delete now erases the char under the cursor in the line editor
43+
- man page was not installed by `install' target
44+
45+
0.6 => 0.7
46+
==========
47+
48+
- KEY_DC is not defined for S-Lang
49+
- include <rxposix.h> instead of <rx.h>
50+
51+
0.7 => 0.8
52+
==========
53+
54+
- Search forward and backward using / and ? (from Brian Salter-Duke
55+
56+
- Eliminate duplicates (most likely from [email protected]
57+
(Kent Robotti))
58+
- Some changes for Debian (including a new url_handler.sh) from Luis
59+
Francisco Gonzalez <[email protected]> and Martin Schulze
60+
61+
62+
0.8 => 0.9
63+
==========
64+
65+
- Include SuSE's changes. From Werner Fink <[email protected]> and
66+
Stepan Kasal <kasal@su se.cz>.
67+
- Do paranoid shell quoting on parameters passed to the script, so
68+
users don't shoot themselves by matching "'" in their regular
69+
expressions. From Thomas Roessler <[email protected]>.
70+
- Fix quoting in the url_handler.sh script.
71+

INSTALL

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Installation Notes for `urlview'
2+
===============================
3+
4+
To configure:
5+
6+
./configure
7+
8+
To use the S-LANG library:
9+
10+
./configure --with-slang
11+
12+
Build:
13+
14+
make
15+
16+
Install:
17+
18+
make install
19+

Makefile.am

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## Process this file with automake to produce Makefile.in
2+
3+
bin_PROGRAMS = urlview
4+
5+
urlview_SOURCES = urlview.c enter.c dokey.c enter.h quote.c quote.h
6+
urlview_LDADD = @LIBOBJS@
7+
8+
EXTRA_DIST = text urlview.man urlview.sgml sample.urlview \
9+
url_handler.sh url_handler.sh.suse urlview.conf.suse
10+
11+
CLEANFILES = *~ *.orig *.rej
12+
13+
install-data-local:
14+
$(INSTALL_DATA) urlview.man $(mandir)/man1/urlview.1
15+
16+
# how to create a target for uninstall-data-local???

0 commit comments

Comments
 (0)