1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Upgrades to 0.97 pre 9.

Add "-force-html" option.

Approved by:	demon
This commit is contained in:
David E. O'Brien 2002-04-26 19:38:04 +00:00
parent 0083051248
commit 741c03ea2c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=58188
4 changed files with 59 additions and 3 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= links
PORTVERSION= 0.97.p7
PORTVERSION= 0.97.p9
PORTEPOCH= 1
CATEGORIES= www
MASTER_SITES= http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/links/download/ \

View File

@ -1,5 +1,5 @@
--- default.c.orig Sun Dec 31 14:26:52 2000
+++ default.c Tue Mar 20 09:32:18 2001
--- default.c.orig Wed Jan 30 06:53:48 2002
+++ default.c Fri Apr 26 09:12:21 2002
@@ -265,7 +265,7 @@
get_system_name();
links_home = get_home(&first_use);
@ -9,3 +9,41 @@
sleep(3);
return;
}
@@ -697,6 +697,11 @@
anonymous = 1;
return NULL;
}
+unsigned char *force_html_cmd(struct option *o, unsigned char ***argv, int *argc)
+{
+ force_html = 1;
+ return NULL;
+}
unsigned char *dump_cmd(struct option *o, unsigned char ***argv, int *argc)
{
if (dmp != o->min && dmp) return "Can't use both -dump and -source";
@@ -769,6 +774,9 @@
is allowed, but user can't add or modify entries in\n\
association table.\n\
\n\
+ -force-html\n\
+ Treat file as if it had an .html extension.\n\
+\n\
-dump\n\
Write a plain-text version of the given HTML document to\n\
stdout.\n\
@@ -826,6 +834,7 @@
int no_connect = 0;
int base_session = 0;
int dmp = 0;
+int force_html = 0;
int async_lookup = 1;
int download_utime = 0;
@@ -877,6 +886,7 @@
1, no_connect_cmd, NULL, NULL, 0, 0, NULL, NULL, "no-connect",
1, anonymous_cmd, NULL, NULL, 0, 0, NULL, NULL, "anonymous",
1, gen_cmd, num_rd, NULL, 0, MAXINT, &base_session, NULL, "base-session",
+ 1, force_html_cmd, NULL, NULL, 0, 0, NULL, NULL, "force-html",
1, dump_cmd, NULL, NULL, D_DUMP, 0, NULL, NULL, "dump",
1, dump_cmd, NULL, NULL, D_SOURCE, 0, NULL, NULL, "source",
1, gen_cmd, num_rd, num_wr, 0, 1, &async_lookup, "async_dns", "async-dns",

View File

@ -0,0 +1,8 @@
--- links.h.orig Sat Mar 2 05:35:30 2002
+++ links.h Fri Apr 26 09:11:47 2002
@@ -1984,4 +1984,5 @@
extern int no_connect;
extern int base_session;
+extern int force_html;
#define D_DUMP 1

View File

@ -0,0 +1,10 @@
--- types.c.orig Fri Apr 26 09:11:15 2002
+++ types.c Fri Apr 26 09:12:27 2002
@@ -66,5 +66,6 @@
else if (dir_sep(*ct)) ext = NULL;
if (ext) while (ext[extl] && !dir_sep(ext[extl]) && !end_of_dir(ext[extl])) extl++;
- if ((extl == 3 && !casecmp(ext, "htm", 3)) ||
+ if (force_html ||
+ (extl == 3 && !casecmp(ext, "htm", 3)) ||
(extl == 4 && !casecmp(ext, "html", 4))) return stracpy("text/html");
foreach(e, extensions) if (is_in_list(e->ext, ext, extl)) return stracpy(e->ct);