mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-27 02:57:22 +00:00
Added elog:x HTML link
SVN revision: 112
This commit is contained in:
parent
6cd56af869
commit
12583a883d
15
elogd.c
15
elogd.c
@ -6,6 +6,9 @@
|
|||||||
Contents: Web server program for Electronic Logbook ELOG
|
Contents: Web server program for Electronic Logbook ELOG
|
||||||
|
|
||||||
$Log$
|
$Log$
|
||||||
|
Revision 2.11 2002/06/12 09:30:03 midas
|
||||||
|
Added elog:x HTML link
|
||||||
|
|
||||||
Revision 2.10 2002/06/12 07:48:56 midas
|
Revision 2.10 2002/06/12 07:48:56 midas
|
||||||
Display message ID's
|
Display message ID's
|
||||||
|
|
||||||
@ -2412,6 +2415,18 @@ char *p, link[256];
|
|||||||
sprintf(return_buffer+j, "<a href=\"mailto:%s\">%s</a>", link, link);
|
sprintf(return_buffer+j, "<a href=\"mailto:%s\">%s</a>", link, link);
|
||||||
j += strlen(return_buffer+j);
|
j += strlen(return_buffer+j);
|
||||||
}
|
}
|
||||||
|
else if (strncmp(str+i, "elog:", 5) == 0)
|
||||||
|
{
|
||||||
|
p = (char *) (str+i+5);
|
||||||
|
i += 5;
|
||||||
|
for (k=0 ; *p && *p != '>' && *p != ' ' && *p != ',' && *p != '\t' && *p != '\n' && *p != '\r'; k++,i++)
|
||||||
|
link[k] = *p++;
|
||||||
|
link[k] = 0;
|
||||||
|
i--;
|
||||||
|
|
||||||
|
sprintf(return_buffer+j, "<a href=\"%s\">elog:%s</a>", link, link);
|
||||||
|
j += strlen(return_buffer+j);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
switch (str[i])
|
switch (str[i])
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user