<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bugs</title><link>https://sourceforge.net/p/htdig/bugs/</link><description>Recent changes to bugs</description><atom:link href="https://sourceforge.net/p/htdig/bugs/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 12 Sep 2015 19:49:53 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/htdig/bugs/feed.rss" rel="self" type="application/rss+xml"/><item><title>List.cc:248: bad code order ?</title><link>https://sourceforge.net/p/htdig/bugs/291/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;&lt;span&gt;[List.cc:248]&lt;/span&gt;: (error) Returning/dereferencing 'o' after it is deallocated / released&lt;/p&gt;
&lt;p&gt;Source code is&lt;/p&gt;
&lt;p&gt;if(action == LIST_REMOVE_DESTROY) delete o;&lt;br/&gt;
  return List::Remove(o);&lt;/p&gt;
&lt;p&gt;After something has been deleted, you can't use it.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dcb</dc:creator><pubDate>Sat, 12 Sep 2015 19:49:53 -0000</pubDate><guid>https://sourceforge.nete6c4ce117e66d6abcf53f95f459bb5779734b20b</guid></item><item><title>local_user_urls can't locate msoffice extensions locally </title><link>https://sourceforge.net/p/htdig/bugs/290/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;If local_urls_only is set to true, and local_user_urls is used, then extensions that are searchable as local filesystem access are .html, .htm, .txt, .asc, .ps, .eps and .pdf.  Can't we add .doc, .xls, .ppt, .docx, xlsx, pptx extensions also, so that these documents are also looked from local filesystem instead of going to http.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Manoj Agarwal</dc:creator><pubDate>Fri, 24 Feb 2012 09:52:29 -0000</pubDate><guid>https://sourceforge.net02968e3615a8e3f92cc120c8ac92d4d7809c9378</guid></item><item><title>user_agent not used for parsing robots.txt</title><link>https://sourceforge.net/p/htdig/bugs/289/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;If you add an user_agent: config, that string is used for http gets. However, it is NOT used when parsing the returned robots.txt.&lt;/p&gt;
&lt;p&gt;If I set "user_agent: agent-foo" in htdig.conf, and robots.txt to:&lt;br /&gt;
User-agent: agent-foo&lt;br /&gt;
Disallow:&lt;br /&gt;
User-agent: *&lt;br /&gt;
Disallow: /&lt;/p&gt;
&lt;p&gt;...then htdig will http/get robots.txt using the user-agent string "agent-foo". However, it will parse robots.txt "using myname = htdig". It therefore thinks it is not allowed to dig.&lt;/p&gt;
&lt;p&gt;I realize that robots.txt doesn't provide real security. But, this provides some means of allowing indexing only locally, since a unique user-agent string can be created.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mikes123</dc:creator><pubDate>Sun, 17 Oct 2010 17:29:16 -0000</pubDate><guid>https://sourceforge.net00c67baea0cad110f2bdc55616b5cd117fd102cf</guid></item><item><title>can't search for strings with underscores</title><link>https://sourceforge.net/p/htdig/bugs/288/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The underscores are stripped from all searches with no way to escape them.  This makes the search useless for developers.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Tue, 20 Jul 2010 17:55:21 -0000</pubDate><guid>https://sourceforge.net1984f3c644c22c86e952903e4d4f7c411ca9d63c</guid></item><item><title>Cannot build on Mac OSX 10.5</title><link>https://sourceforge.net/p/htdig/bugs/287/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;First, configure fails with:&lt;/p&gt;
&lt;p&gt;...&lt;br /&gt;
checking for fstream.h... no&lt;br /&gt;
configure: error: To compile ht://Dig, you will need a C++ library. Try installing libstdc++.&lt;/p&gt;
&lt;p&gt;After searching the FAQ, I was instructed to use the following flags:&lt;/p&gt;
&lt;p&gt;CPPFLAGS=-Wno-deprecated&lt;br /&gt;
CXXFLAGS=-Wno-deprecated&lt;/p&gt;
&lt;p&gt;This allows configure to run, but then make fails with:&lt;/p&gt;
&lt;p&gt;gcc -c -O -I. -I./../include -Wno-deprecated ../btree/bt_compare.c&lt;br /&gt;
cc1: warning: command line option "-Wno-deprecated" is valid for C++/ObjC++ but not for C&lt;br /&gt;
In file included from ../btree/bt_compare.c:54:&lt;br /&gt;
/usr/include/sys/types.h:152: error: two or more data types in declaration specifiers&lt;br /&gt;
/usr/include/sys/types.h:167: error: two or more data types in declaration specifiers&lt;br /&gt;
/usr/include/sys/types.h:172: error: two or more data types in declaration specifiers&lt;br /&gt;
/usr/include/sys/types.h:230: error: two or more data types in declaration specifiers&lt;br /&gt;
/usr/include/sys/types.h:235: error: two or more data types in declaration specifiers&lt;br /&gt;
make[1]: *** [bt_compare.o] Error 1&lt;br /&gt;
make: *** [all] Error 1&lt;/p&gt;
&lt;p&gt;So, I cleared the CPPFLAG, which removes the warning above, but the rest of the errors persist.&lt;/p&gt;
&lt;p&gt;I'm using:&lt;/p&gt;
&lt;p&gt;OSX 10.5.5&lt;br /&gt;
gcc 4.0.1&lt;br /&gt;
htdig 3.1.6&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Brian Janes&lt;br /&gt;
btjanes@rtda.com&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 20 Nov 2008 15:49:46 -0000</pubDate><guid>https://sourceforge.net5e95d67ec2329e9aeb1c51ab506014650248fbb2</guid></item><item><title>robots.txt "allow" lines ignored</title><link>https://sourceforge.net/p/htdig/bugs/286/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Noticed this problem while using 3.16, Verified the cause by examining the code. The code for the latest beta release, 3.2.0b6, appears to still have the problem.&lt;/p&gt;
&lt;p&gt;According to my reading of the relevant RFC, robots.txt files are supposed to be processed by applying the first allow or disallow line that applies to given page. Order matters! For instance, I was trying to use lines like this:&lt;/p&gt;
&lt;p&gt;Allow: /index.pl?action=index&lt;br /&gt;
Disallow: /index.pl?action=&lt;/p&gt;
&lt;p&gt;This should have disallowed action= queries in general, but allowed action=index queries. htDig ignores the allow line, and consequently does not index the action=index page.&lt;/p&gt;
&lt;p&gt;Looks like a fairly extensive rewrite of robots.txt processing would be necessary to get the correct behavior.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Dan Muller</dc:creator><pubDate>Thu, 08 Nov 2007 15:45:56 -0000</pubDate><guid>https://sourceforge.net0a07d669e0975a3d4bd8826722bcdbb56522c07e</guid></item><item><title>htdig contains GPL incompatible licenses</title><link>https://sourceforge.net/p/htdig/bugs/285/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Firstly, it is important to point out that htdig declared itself to be LGPL licensed in the readme, but GPL under &lt;a href="http://www.htdig.org/" rel="nofollow"&gt;http://www.htdig.org/&lt;/a&gt; (link to "license information"). On SourceForge it is, again, declared to be LGPL. The package contains numerous GPL files. A combined product of GPL plus other licenses is a derived GPL work which should, accordingly, be licensed under the GPL. Proceeding on the premise that htdig is de facto GPL licensed, there are a number of GPL incompatible licenses in htdig:&lt;/p&gt;
&lt;p&gt;There are a number of files in htdig containing various GPL incompatible licenses. A good example is htdig-3.2.0b6/db/parisc.gcc which contains the following license header:&lt;/p&gt;
&lt;p&gt;* Copyright (c) 1996-1997, The University of Utah and the Computer Systems&lt;br /&gt;
* Laboratory at the University of Utah (CSL).  All rights reserved.&lt;br /&gt;
*&lt;br /&gt;
* Permission to use, copy, modify and distribute this software is hereby&lt;br /&gt;
* granted provided that (1) source code retains these copyright, permission,&lt;br /&gt;
* and disclaimer notices, and (2) redistributions including binaries&lt;br /&gt;
* reproduce the notices in supporting documentation, and (3) all advertising&lt;br /&gt;
* materials mentioning features or use of this software display the following&lt;br /&gt;
* acknowledgement: ``This product includes software developed by the Computer&lt;br /&gt;
* Systems Laboratory at the University of Utah.''&lt;br /&gt;
*&lt;br /&gt;
* THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS&lt;br /&gt;
* IS" CONDITION.  THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF&lt;br /&gt;
* ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.&lt;br /&gt;
*&lt;br /&gt;
* CSL requests users of this software to return to csl-dist@cs.utah.edu any&lt;br /&gt;
* improvements that they make and grant CSL redistribution rights.&lt;br /&gt;
*/&lt;/p&gt;
&lt;p&gt;This license has a BSD 4 "Advertising Clause" as well as a request to return improvements to CSL and to grant redistribution rights to CSL for such improvements.&lt;/p&gt;
&lt;p&gt;There are other files in htdig under other GPL incompatible licenses:&lt;/p&gt;
&lt;p&gt;htdig-3.2.0b6/libhtdigphp/dynlib.m4 (PHP license)&lt;br /&gt;
htdig-3.2.0b6/htlib/mhash_md5.c (RSA license)&lt;br /&gt;
htdig-3.2.0b6/htlib/mhash_md5.h (RSA license)&lt;br /&gt;
htdig-3.2.0b6/installdir/english.aff (Advertising clause)&lt;br /&gt;
htdig-3.2.0b6/test/dummy.affixes (Advertising clause)&lt;br /&gt;
htdig-3.2.0b6/htlib/strptime.cc (BSD 4)&lt;br /&gt;
htdig-3.2.0b6/installdir/HtFileType-magic (BSD 4)&lt;/p&gt;
&lt;p&gt;The first step towards resolving these GPL incompatibilities is to see if the files are actually needed to build htdig or if they are simply present. If the files are actually needed, it may be useful to see if they are actually linked in the build process.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">mskibbe</dc:creator><pubDate>Wed, 22 Aug 2007 12:54:47 -0000</pubDate><guid>https://sourceforge.net7d80ae5ec0e83ded66ed1857a350db6bc892dd13</guid></item><item><title>Windows Segmentation Fault When Unexpected Data Entered</title><link>https://sourceforge.net/p/htdig/bugs/284/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;What Happened?&lt;/p&gt;
&lt;p&gt;Running the dig on command on Windows and mis-entering data causes 'dig' to seg fault dumping information to screen&lt;/p&gt;
&lt;p&gt;What Should Have Happened?&lt;/p&gt;
&lt;p&gt;A graceful error message&lt;/p&gt;
&lt;p&gt;Steps To Reproduce:&lt;/p&gt;
&lt;p&gt;1. Download current dig Windows binary for dig from dig site (unknown which one)&lt;br /&gt;
2. Install per prompts (instructions)&lt;br /&gt;
3. cd c:\dig&lt;br /&gt;
4. type "dig -mx goolge.com +shrot&lt;br /&gt;
5. Observe application crash with debug info (see below)&lt;/p&gt;
&lt;p&gt;---output follows ---&lt;/p&gt;
&lt;p&gt;Microsoft Windows XP [Version 5.1.2600]&lt;br /&gt;
(C) Copyright 1985-2001 Microsoft Corp.&lt;/p&gt;
&lt;p&gt;C:\Program Files\Windows Resource Kits\Tools&amp;gt;cd c:\&lt;/p&gt;
&lt;p&gt;C:\&amp;amp;gt;cd dig&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;dig -mx google.com +shrot&lt;br /&gt;
add 00552430 size 96 file \cvs\9_3_x\lib\isc\task.c line 1064 mctx 00553EB0&lt;br /&gt;
add 005524A8 size 12 file \cvs\9_3_x\lib\isc\task.c line 1080 mctx 00553EB0&lt;br /&gt;
add 00552548 size 104 file \cvs\9_3_x\lib\isc\task.c line 181 mctx 00553EB0&lt;br /&gt;
add 005525C0 size 76 file \cvs\9_3_x\lib\isc\timer.c line 766 mctx 00553EB0&lt;br /&gt;
add 00552618 size 32 file \cvs\9_3_x\lib\isc\heap.c line 81 mctx 00553EB0&lt;br /&gt;
add 005526D8 size 248 file socket.c line 2726 mctx 00553EB0&lt;br /&gt;
add 00A840C0 size 540 file socket.c line 563 mctx 00553EB0&lt;br /&gt;
add 00A88300 size 588 file c:\cvs\9_3_x\lib\isc\win32\../entropy.c line 670 mctx&lt;br /&gt;
00553EB0&lt;br /&gt;
add 00A8E810 size 704 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F6A8 size 32 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
add 00552940 size 20 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
add 0055F6D8 size 112 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F758 size 144 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 00AA2B58 size 208 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F7F0 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1395 mctx 00553EB0&lt;br /&gt;
add 00AAAC68 size 4464 file \cvs\9_3_x\bin\dig\dighost.c line 662 mctx 00553EB0&lt;br /&gt;
add 00AAFE00 size 4464 file \cvs\9_3_x\bin\dig\dighost.c line 662 mctx 00553EB0&lt;br /&gt;
Invalid option: +shrot&lt;br /&gt;
Usage:  dig [@global-server] [domain] [q-type] [q-class] {q-opt}&lt;br /&gt;
{global-d-opt} host [@local-server] {local-d-opt}&lt;br /&gt;
[ host [@local-server] {local-d-opt} [...]]&lt;/p&gt;
&lt;p&gt;Use "dig -h" (or "dig -h | more") for complete list of options&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;dig -mx google.com +short&lt;br /&gt;
add 00552430 size 96 file \cvs\9_3_x\lib\isc\task.c line 1064 mctx 00553EC0&lt;br /&gt;
add 005524A8 size 12 file \cvs\9_3_x\lib\isc\task.c line 1080 mctx 00553EC0&lt;br /&gt;
add 00552548 size 104 file \cvs\9_3_x\lib\isc\task.c line 181 mctx 00553EC0&lt;br /&gt;
add 005525C0 size 76 file \cvs\9_3_x\lib\isc\timer.c line 766 mctx 00553EC0&lt;br /&gt;
add 00552618 size 32 file \cvs\9_3_x\lib\isc\heap.c line 81 mctx 00553EC0&lt;br /&gt;
add 005526D8 size 248 file socket.c line 2726 mctx 00553EC0&lt;br /&gt;
add 00A840C0 size 540 file socket.c line 563 mctx 00553EC0&lt;br /&gt;
add 00A88300 size 588 file c:\cvs\9_3_x\lib\isc\win32\../entropy.c line 670 mctx&lt;br /&gt;
00553EC0&lt;br /&gt;
add 00A8E7E8 size 704 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F6B8 size 32 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
add 0055F6E8 size 20 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
add 0055F708 size 112 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F788 size 144 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 00AA2CE0 size 208 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 0055F820 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1395 mctx 00553EC0&lt;br /&gt;
add 00AAADF0 size 4464 file \cvs\9_3_x\bin\dig\dighost.c line 662 mctx 00553EC0&lt;br /&gt;
add 00AAFF88 size 4464 file \cvs\9_3_x\bin\dig\dighost.c line 662 mctx 00553EC0&lt;br /&gt;
add 0055F8D0 size 880 file \cvs\9_3_x\bin\dig\dighost.c line 326 mctx 00553EC0&lt;br /&gt;
add 00AB5120 size 2064 file \cvs\9_3_x\bin\dig\dighost.c line 505 mctx 00553EC0&lt;br /&gt;
add 0055FC50 size 44 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 0055FC50 size 44 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
add 0055FC88 size 260 file \cvs\9_3_x\lib\dns\message.c line 683 mctx 00553EC0&lt;br /&gt;
add 0055FD98 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1395 mctx 00553EC0&lt;br /&gt;
add 0055FDE8 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1395 mctx 00553EC0&lt;br /&gt;
add 00AB9950 size 548 file \cvs\9_3_x\lib\isc\buffer.c line 379 mctx 00553EC0&lt;br /&gt;
add 00ABDBA0 size 2064 file \cvs\9_3_x\bin\dig\dighost.c line 505 mctx 00553EC0&lt;br /&gt;
add 0055FC50 size 44 file \cvs\9_3_x\lib\dns\message.c line 2266 mctx 00553EC0&lt;br /&gt;
add 0055FE38 size 60 file \cvs\9_3_x\lib\dns\message.c line 2303 mctx 00553EC0&lt;br /&gt;
add 00AD63F0 size 65535 file \cvs\9_3_x\bin\dig\dighost.c line 1779 mctx 00553EC&lt;br /&gt;
0&lt;br /&gt;
add 0055FE88 size 268 file \cvs\9_3_x\bin\dig\dighost.c line 1820 mctx 00553EC0&lt;br /&gt;
add 00AC63E8 size 65535 file \cvs\9_3_x\bin\dig\dighost.c line 1844 mctx 00553EC&lt;br /&gt;
0&lt;br /&gt;
add 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 341 mctx 00553EC0&lt;br /&gt;
add 00AEA410 size 4096 file \cvs\9_3_x\lib\isc\heap.c line 126 mctx 00553EC0&lt;br /&gt;
add 00AEB420 size 324 file socket.c line 1719 mctx 00553EC0&lt;br /&gt;
add 00AEF588 size 148 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
add 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
add 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
del 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 292 mctx 00553EC0&lt;br /&gt;
add 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 341 mctx 00553EC0&lt;br /&gt;
add 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
add 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
del 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 292 mctx 00553EC0&lt;br /&gt;
add 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 341 mctx 00553EC0&lt;br /&gt;
add 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF3640 size 148 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
add 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 51 mctx 00553EC0&lt;br /&gt;
del 00AF36E0 size 44 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
;; connection timed out; no servers could be reached&lt;br /&gt;
del 0055FF98 size 96 file \cvs\9_3_x\lib\isc\timer.c line 292 mctx 00553EC0&lt;br /&gt;
del 00AEF588 size 148 file \cvs\9_3_x\lib\isc\event.c line 38 mctx 00553EC0&lt;br /&gt;
del 00AC63E8 size 65535 file \cvs\9_3_x\bin\dig\dighost.c line 1194 mctx 00553EC&lt;br /&gt;
0&lt;br /&gt;
del 0055FE88 size 268 file \cvs\9_3_x\bin\dig\dighost.c line 1197 mctx 00553EC0&lt;br /&gt;
del 00ABDBA0 size 2064 file \cvs\9_3_x\bin\dig\dighost.c line 1237 mctx 00553EC0&lt;/p&gt;
&lt;p&gt;del 0055FE38 size 60 file \cvs\9_3_x\lib\dns\message.c line 430 mctx 00553EC0&lt;br /&gt;
del 0055FC50 size 44 file \cvs\9_3_x\lib\dns\message.c line 435 mctx 00553EC0&lt;br /&gt;
del 00AEB420 size 324 file socket.c line 1815 mctx 00553EC0&lt;br /&gt;
del 00AB9950 size 548 file \cvs\9_3_x\lib\isc\buffer.c line 410 mctx 00553EC0&lt;br /&gt;
del 0055FD98 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1496 mctx 00553EC0&lt;br /&gt;
del 0055FDE8 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1496 mctx 00553EC0&lt;br /&gt;
del 0055FC88 size 260 file \cvs\9_3_x\lib\dns\message.c line 781 mctx 00553EC0&lt;br /&gt;
del 00AD63F0 size 65535 file \cvs\9_3_x\bin\dig\dighost.c line 1248 mctx 00553EC&lt;br /&gt;
0&lt;br /&gt;
del 00AAFF88 size 4464 file \cvs\9_3_x\bin\dig\dighost.c line 1253 mctx 00553EC0&lt;/p&gt;
&lt;p&gt;del 00AAADF0 size 4464 file \cvs\9_3_x\bin\dig\dig.c line 1657 mctx 00553EC0&lt;br /&gt;
del 00552548 size 104 file \cvs\9_3_x\lib\isc\task.c line 168 mctx 00553EC0&lt;br /&gt;
del 005524A8 size 12 file \cvs\9_3_x\lib\isc\task.c line 1028 mctx 00553EC0&lt;br /&gt;
del 00552430 size 96 file \cvs\9_3_x\lib\isc\task.c line 1033 mctx 00553EC0&lt;br /&gt;
del 0055F8D0 size 880 file \cvs\9_3_x\bin\dig\dighost.c line 331 mctx 00553EC0&lt;br /&gt;
del 00AB5120 size 2064 file \cvs\9_3_x\bin\dig\dighost.c line 568 mctx 00553EC0&lt;br /&gt;
del 0055F820 size 68 file \cvs\9_3_x\lib\isc\mem.c line 1496 mctx 00553EC0&lt;br /&gt;
del 00A840C0 size 540 file socket.c line 2835 mctx 00553EC0&lt;br /&gt;
del 005526D8 size 248 file socket.c line 2861 mctx 00553EC0&lt;br /&gt;
del 00AEA410 size 4096 file \cvs\9_3_x\lib\isc\heap.c line 111 mctx 00553EC0&lt;br /&gt;
del 00552618 size 32 file \cvs\9_3_x\lib\isc\heap.c line 113 mctx 00553EC0&lt;br /&gt;
del 005525C0 size 76 file \cvs\9_3_x\lib\isc\timer.c line 897 mctx 00553EC0&lt;br /&gt;
del 0055F6E8 size 20 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
del 0055F708 size 112 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
del 0055F788 size 144 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
del 00AA2CE0 size 208 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 00AA2DC0 size 340 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 00552550 size 104 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
add 005525C8 size 72 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
add 0055F6E8 size 20 file \cvs\9_3_x\lib\dns\openssl_link.c line 105 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
del 00A8E7E8 size 704 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 00552&lt;br /&gt;
870&lt;br /&gt;
del 0055F6B8 size 32 file \cvs\9_3_x\lib\dns\openssl_link.c line 112 mctx 005528&lt;br /&gt;
70&lt;br /&gt;
del 00A88300 size 588 file c:\cvs\9_3_x\lib\isc\win32\../entropy.c line 815 mctx&lt;br /&gt;
00553EC0&lt;br /&gt;
12:           1 gets,           0 rem&lt;br /&gt;
32:           1 gets,           0 rem&lt;br /&gt;
44:           5 gets,           0 rem&lt;br /&gt;
60:           1 gets,           0 rem&lt;br /&gt;
68:           3 gets,           0 rem&lt;br /&gt;
76:           1 gets,           0 rem&lt;br /&gt;
96:           4 gets,           0 rem&lt;br /&gt;
104:           1 gets,           0 rem&lt;br /&gt;
148:           4 gets,           0 rem&lt;br /&gt;
248:           1 gets,           0 rem&lt;br /&gt;
260:           1 gets,           0 rem&lt;br /&gt;
268:           1 gets,           0 rem&lt;br /&gt;
324:           1 gets,           0 rem&lt;br /&gt;
540:           1 gets,           0 rem&lt;br /&gt;
548:           1 gets,           0 rem&lt;br /&gt;
588:           1 gets,           0 rem&lt;br /&gt;
880:           1 gets,           0 rem&lt;br /&gt;
&amp;gt;= 1100:           7 gets,           0 rem&lt;br /&gt;
Dump of all outstanding memory allocations:&lt;br /&gt;
None.&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;win&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;ver&lt;/p&gt;
&lt;p&gt;Microsoft Windows XP [Version 5.1.2600]&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;date&lt;br /&gt;
The current date is: Fri 05/04/2007&lt;br /&gt;
Enter the new date: (mm-dd-yy)&lt;/p&gt;
&lt;p&gt;C:\dig&amp;gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 04 May 2007 18:46:57 -0000</pubDate><guid>https://sourceforge.net2b1cf6e0b53ae4bff27a735b01fd7b0d0d0f4dff</guid></item><item><title>Results not displaying in wrapper file</title><link>https://sourceforge.net/p/htdig/bugs/283/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;We had htdig working fine before however I wanted to use the wrapper.html to incorporate the results within the web page.&lt;/p&gt;
&lt;p&gt;I uncommented the wrapper.html in the conf file and it worked fine, when the database reindexed itself, it picks up the amount of results, however it doesn't display them where the $(HTSEARCH_RESULTS) is.&lt;/p&gt;
&lt;p&gt;***conf file***&lt;/p&gt;
&lt;p&gt;database_dir:  /htdig/db&lt;/p&gt;
&lt;p&gt;common_dir:     /htdig/common&lt;/p&gt;
&lt;p&gt;# specify the header/footer/wrapper files&lt;br /&gt;
search_results_header: ${common_dir}/header.html&lt;br /&gt;
search_results_footer: ${common_dir}/footer.html&lt;br /&gt;
search_results_wrapper: ${common_dir}/wrapper.html&lt;br /&gt;
nothing_found_file: ${common_dir}/nomatch.html&lt;/p&gt;
&lt;p&gt;It was working ok a few days ago though, even after uncommenting the wrapper line&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 05 Feb 2007 14:07:59 -0000</pubDate><guid>https://sourceforge.net44b6bfcaed41a70b4ee7639cf2447347ff021144</guid></item><item><title>Website underselling ht://dig</title><link>https://sourceforge.net/p/htdig/bugs/282/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Investogating ht://dig for possible use as an intranet search, I nearly dismissed it out of hand.&lt;/p&gt;
&lt;p&gt;The "Features and Requirements" page says:&lt;/p&gt;
&lt;p&gt;Searching of HTML and text files&lt;br /&gt;
Both HTML documents and plain text files can be searched. Searching of other file types will be supported in future versions.&lt;/p&gt;
&lt;p&gt;which translates to "searching files other than HTML and plain text is not supported in the current version".&lt;/p&gt;
&lt;p&gt;Fortunately I did not believe this, and eventually found under the FAQ a passing reference to PDF in 1.13 and then in sections 4.8 and 4.9 the concept of an external parser or converter.&lt;/p&gt;
&lt;p&gt;I think your Features page should say something like:&lt;/p&gt;
&lt;p&gt;Searching of many file types&lt;br /&gt;
Both HTML and plain text are searched natively, and PDF, Word, Excel, Powerpoint documents via external helpers.  Support for further file types can be added via a plugin system."&lt;/p&gt;
&lt;p&gt;Incidentally, I also think your homepage should include approximately the first paragraph of the Introduction where it can be seen, BEFORE the News.  Remove references to defunct search engine Infoseek etc.&lt;/p&gt;
&lt;p&gt;See &lt;a href="http://www.useit.com/alertbox/20020512.html" rel="nofollow"&gt;http://www.useit.com/alertbox/20020512.html&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Colin Hogben</dc:creator><pubDate>Tue, 23 Jan 2007 12:00:43 -0000</pubDate><guid>https://sourceforge.nete10af9dbd44780a272071b0316c9d9338f9c739a</guid></item></channel></rss>