summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2008-07-14Fix a regression where empty error variables caused strlen() to crashMukund Sivaraman
This fixes a regression (bug #16) introduced in 95c1f39f6039dc82346f3e024e86a23b7103a0a6, where a NULL check was removed. This caused NULL error variable values to be sent to add_error_variable() in which strlen() segfaulted. With this fix, custom stats pages should be displayed properly. X-Banu-Bugzilla-Ids: 16
2008-07-14Make the embedded error message display valid XHTML tooMukund Sivaraman
Also fix the information that is displayed.
2008-07-14Add version info in embedded stats pageMukund Sivaraman
2008-07-14Add error number as a template parameter for error pagesMukund Sivaraman
2008-07-14Make the embedded stats message display valid XHTML tooMukund Sivaraman
2008-07-14Spruce up error page footers a bitMukund Sivaraman
2008-07-14Replace h2 with h1 for the main headingMukund Sivaraman
2008-07-14Remove ltmain.sh from dist targetMukund Sivaraman
2008-07-14Remove title attributeMukund Sivaraman
2008-07-14Update error pages to valid XHTML formatMukund Sivaraman
Also change some text and how the messages are displayed, to look better.
2008-07-14Remove unused autoconf macro callsMukund Sivaraman
2008-06-20Fix tinyproxy homepage linkMukund Sivaraman
2008-06-19Remove Id tag from configure.acMukund Sivaraman
2008-06-19Removed obsolete ignore rulesMukund Sivaraman
2008-06-17Include values.h to use LONG_MAX and LONG_MINMukund Sivaraman
2008-06-17Add strtol conversion error checkingRobert James Kaes
Moved the strtol() call into fill_netmask_array() and added additional error checking to ensure that the strtol() call succeeded. Error checking code taken from strtol() manpage. Signed-off-by: Robert James Kaes <rjk@wormbytes.ca>
2008-06-17Refactored netmask array fill with range checkRobert James Kaes
When building a numeric ACL with netmask, range check the supplied value. In addition, the code to walk the array has been extracted and "simplified". Signed-off-by: Robert James Kaes <rjk@wormbytes.ca>
2008-06-10Don't check the value to be inserted as it's already checkedMukund Sivaraman
This change primarily avoids a gcc warning where timebuf is never non-NULL. There is no need to check the value to be inserted as it's checked inside hashmap_insert(). This changeset also lets error return values from hashmap_insert() propogate instead of clamping them to -1 (not that these are currently used anyway).
2008-06-09Moved transparent proxy code into its own fileRobert James Kaes
Extracted the transparent proxy logic from reqs.c and placed it into a separate file. Signed-off-by: Robert James Kaes <rjk@wormbytes.ca>
2008-06-04Change tinyproxy Bugzilla component to productMukund Sivaraman
2008-06-03Ignore profiling generated filesRobert James Kaes
The *.pcno files are generated as part of the profiling code. Signed-off-by: Robert James Kaes <rjk@wormbytes.ca>
2008-05-24Another minor README updateMukund Sivaraman
2008-05-24Updated READMEMukund Sivaraman
2008-05-24Added .gitignore entriesMukund Sivaraman
2008-05-24Updated toplevel Makefile.am to reflect recent automake changesMukund Sivaraman
2008-05-24Updated copyright header in Makefile.amMukund Sivaraman
2008-05-24Removed unnecessary LDFLAGS variableMukund Sivaraman
2008-05-24Quoted TP_ARG_ENABLEMukund Sivaraman
2008-05-24configure.ac changesMukund Sivaraman
2008-05-24Restructured automake macrosMukund Sivaraman
2008-05-24Renamed htmlerror.[ch] to html-error.[ch]Mukund Sivaraman
2008-05-24Updated copyright, license notices in source codeMukund Sivaraman
The notices have been changed to a more GNU look. Documentation comments have been separated from the copyright header. I've tried to keep all copyright notices intact. Some author contact details have been updated.
2008-05-05Fixed links in spec fileMukund Sivaraman
2008-05-03Updated .gitignore filesMukund Sivaraman
2008-05-01Sync Fedora initscript and specfileJeremy Hinegardner
2008-03-30Free arg before returning, or it'll leakMukund Sivaraman
2008-03-30Free entry_buffer or it'll be leakedMukund Sivaraman
vector_append() calls vector_insert() which makes a copy of the passed buffer, so the caller can free its buffer.
2008-03-30Fixed leaks of va_listsMukund Sivaraman
2008-03-30Generate RPM spec file from .spec.in fileMukund Sivaraman
2008-03-30Added Makefile.am in packaging dirsMukund Sivaraman
2008-03-30Removed old RPM packaging filesMukund Sivaraman
2008-03-30Added Fedora packaging filesJeremy Hinegardner
2008-03-30Moved RPM packaging dir to top-levelMukund Sivaraman
2008-03-30Removed obsolete packaging patch fileMukund Sivaraman
2008-03-30Do not allow anyone except localhost by defaultMukund Sivaraman
2008-03-30Made the default group nobodyMukund Sivaraman
2008-03-30Removed obsolete lexer/parser filesMukund Sivaraman
2008-03-19Added more patterns to .gitignoreAndrew Stribblehill
2008-03-13Fixed format string warningsMukund Sivaraman
2008-03-13Removed the clean target from the src directoryMukund Sivaraman
This was overriding the automake clean target to clean up files like *.o by default.