Commit graph

18 commits

Author SHA1 Message Date
drochner
75bf1d2eb2 update to 0.8.2
changes;
Except from the usual bug-fixes and improvements, some new features snuck
in. One nifty feature is the save and open file dialogs remembering the
last directory opened. Also, a "start_page" option in the preferences so
that you may override the splash screen.
2004-08-27 12:40:37 +00:00
adam
f07f263926 Changes 0.8.1:
- * Fixed dirent.h includes inside dpid.
- * Fixed a slippery bug with certain interlaced gif images (BUG#500).
- * Fixed libpng-1.2.4 detection in configure.in.
- * Added proxy authentication support through the "http_proxyuser" option
    in dillorc (the password is asked at run time).
- * Moved tooltips to DwStyle, tooltip event handling to DwPage, and applied
    this also to the TITLE attribute of <a> and <abbr>.
- * Fixed a bug related to spaces after anchors and breaks.
- * Removed two "type punning" gcc warnings (dw_gtk_viewport.c).
  * Added some missing "static" qualifiers.
  * Improved a_Strbuf_chars() so no list reversion is required.
  * Removed an unused data list (dns.c), and redundant code (selection.c).
  * Switch one realloc() call to g_realloc(), to match g_free() (dpi.c).
  * Removed unnecessary NULL-checks and NULL initializations.
  * Added Html_get_attr_wdef(), it lets providing a default return value.
- * Fixed configure.in so pthreads are only linked where needed.
- * Modified a_Misc_stuff_chars for simplicity and removed a memory leak.
  * Made the dpi framework send the HTTP query to the https dpi
    (this allows for an SSL-lib dpi and for easier session caching).
  * Cleaned up the int2void and void2int casts in CCC parameters.
  * Added container|inline model information to the HTML element table, and
    made the bug-meter and the parser aware of it. This both improves bug
    detection and rendering.
  * Fixed newly detected HTML bugs in bookmarks dpi and file.c.
  * Fixed opening files with a ':' character in its name (again).
  * Added binaryconst.h (allows for binary constants in C).
  * Fixed The ladder effect with lists (BUG#534).
  * Made the bug-meter detect tags lacking a closing '>' (BUG#532).
  * Made the bug-meter detect excluded inline elements from <PRE>.
  * Eliminated a segfault source with tricky <input> tags (BUG#552).
  * Fixed <address> to render as a block element (BUG#527).
  * Added a content test for "name" and "id" attribute values (BUG#536).
  * Fixed the URL resolver handling of the "//" sequence in <path> (BUG#535).
  * Added "show_extra_warnings" and removed "use_old_parser" (dillorc).
  * Added minor support for the deprecated <MENU> element.
  * Eliminated a race condition that produced segfaults when a dpi transfer
    was cancelled before the contents were sent (a very rare case).
  * Added a test for socklen_t in configure.in.
  * Fixed the downloads dpi to handle both new savenames and target directory.
  * GdkRgb: fixed handling of not usable system default visual and colormap.
  * Made dillo recognize unhandled MIME types, and offer a download dialog!
2004-05-26 08:06:56 +00:00
xtraeme
8919f642e2 Update www/dillo to 0.8.0, closes PR pkg/24768.
Changes:

Version 0.8.0 [Feb 08, 2004]

 - * Added a right-mouse-button popup for images!
   Patch: Frank de Lange, Eric Gaudet, Jorge Arellano
 - * Made main document window grab focus on startup, fullwindow,
     and after open url (BUG#330)
   * Set Ctrl-U to focus the location entry,
     Ctrl-R to reload, and Ctrl-H to hide controls.
   Patches: Johan Hovold, Jorge Arellano, Stephan Goetter
 - * Added a missing handler for broken-connection condition.
   Patch: Jorge Arellano, Phil Pennock
 - * Introduced a new way of handling dillo plugins! Now the
   communications and managing is done by a daemon: dpid.
   This comes with a lot of advantages described in Dpid.txt.
   Patch: Programming: Ferdi Franceschini; Design: Jorge Arellano
 - * Wrote documentation for dpid (Dpid.txt).
   * Removed a memory leak in Get_line().
   Patches: Jorge Arellano, Ferdi Franceschini
 - * Developed a plugin for downloads. It uses wget and can handle several
   connections at the same time.
   * Developed stress tests for both dpid and the downloads dpi.
   Patches: Ferdi Franceschini
 - * Adapted dpi.c to manage plugins through dpid.
   * Improved the incoming dpi-stream processing to accept images from a dpi.
   * Added/updated lots of dpi-related comments.
   * Updated the dpi1 spec.
   * Removed the forced end-to-end reload that was set upon dpis. Now,
     dpi-generated pages can be cached.
   * Made dillo able to handle multiple plugins (still lacks a dynamic API)

... etc, etc.
2004-03-14 01:26:55 +00:00
drochner
8cd78c6cd9 update to 0.7.3
changes:
It comes with improved performance, important bugfixes and a new set of
toolbar Icons!
2003-08-11 15:09:32 +00:00
salo
bb934aa166 Updated to version 0.7.2.
Changes:

- use tar.bz2 distfile
- add USE_INET6 to BUILD_DEFS only if it's really used
- DESCR has 80 columns
- style nits

0.7.2:
======
- * Implemented text selection! (aka: Copy&Paste) (BUG#59)
  Patch: Sebastian Geerken, Eric Gaudet
- * Fixed IPv6 support when the unthreaded server is used.
  Patch: Damien Couderc, Jorge Arellano
- * Fixed the IPv6 socket connection code for *BSD.
  Patch: Daniel Hartmeier, Jorge Arellano
- * Made the URL_SpamSafe flag be inherited by the BASE element.
  Patch: Melvin Hadasht
- * Switched configure.in to use AC_CANONICAL_SYSTEM instead of 'uname'.
  Patch: Patrice Mandin
- * Added "image/x-png" to MIME types (obsolete, but should be recognized).
  Patch: Paolo P.
- * Fixed the code that handled the installation of "dillorc".
  Patches: Andreas Schweitzer, Paolo P.
- * Fixed a lot of glitches in configure.in: notably libpng and libjpeg
  detection, enabling and disabling. (BUG#: 386, 407, 392, 349)!
  Patches: Andreas Schweitzer
- * Fixed two leaks in Dw(Ext)Iterator.
  Patches: Jörgen Viksell
- * Repaired some minor misbehaviours in the cookie-strings parser.
  Patches: Jörgen Viksell, Jorge Arellano
- * Enabled entities parsing in HTML-given hidden and password values.
  Patch: Jorge Arellano, Francis Daly
- * Implemented character stuffing in dpi (Fix bookmarks with quotes) BUG#434.
  * Added a HTML warning message for META outside HEAD.
  * Removed a segfault source when the server doesn't send content/type info.
  * Added file type detection for filenames without extension.
  * Removed the warnings detected with gcc 3.2.2.
  * Fixed the VERBATIM parsing mode and replaced the SCRIPT mode with it.
  * Fixed the problem with CR handling in TEXTAREA (BUG#318).
  * Fixed initial value parsing within TEXTAREA tags (BUG#400).
  * Fixed loading files with spaces in the name (command line) BUG#437.
  Patches: Jorge Arellano
2003-05-06 16:10:15 +00:00
jmmv
ab16aa93cf Fix build if USE_INET6 is set to NO. Do not use gmake.
Closes PR pkg/20920 by Martin Weber.
2003-04-11 20:26:30 +00:00
jmmv
833c297a7f Update to 0.7.1.2. There are lots of new features, including plugin
support and IPv6; threads are now a must.

Patch provided in PR pkg/20672 by Quentin Garnier.
2003-03-21 18:15:28 +00:00
jmmv
cfac08870a Make this package install its configuration file in the examples directory
and use PKG_SYSCONFDIR stuff to copy it to the right place. Bump
PKGREVISION to 1.

Approved by wiz.
2002-11-26 15:07:31 +00:00
jlam
a020ed9056 Merge packages from the buildlink2 branch back into the main trunk that
have been converted to USE_BUILDLINK2.
2002-08-25 21:50:52 +00:00
agc
586045def9 Update dillo to version 0.6.6.
Changes are mainly bug fixes:

 - * Added a few canonical casts to fix some obvious 64bit issues.
   Patch: pvalchev
 - * Fixed a bug with cookies path parsing.
   * Fixed persistent-cookies obliteration (BUG#312, BUG#314)
   * Set max 20 persistent cookies for each domain.
   Patches: J<F6>rgen Viksell
 - * Switched flock to lockf.
   Patch: Andreas Schweitzer
 - * Made a little bugfix in doc/Makefile.am.
   Patch: Grigory Bakunov
 - * Removed the < 256 hostname length restraint from http queries.
   * Made a date-parser that copes with three HTTP date-syntaxes (BUG#335)
   * Made the HTML parser a bit more robust with bad HTML (BUG#325, BUG#326)
   Patches: Jorge Arellano

Prompted by PR 17420 from Martin Weber <Ephaeton@gmx.net>
2002-06-27 20:15:04 +00:00
wiz
a733253559 Some space fixing in the Makefile, and fix installation of dillorc.
Makes PLIST correct... [forgot to add the patch?].
2002-05-21 11:13:30 +00:00
rh
1973ac7266 Update dillo to 0.6.5. Mainly bugfixes, but also features the addition
of cookies.  Provided by the package maintainer Benjamin Wong
<ben@wongs.net>.  This closes PR pkg/16539.
2002-04-29 11:57:02 +00:00
reinoud
11812b4284 Update dillo package to version 0.6.4. Main new features are improved table
support making it render NetBSD's homepage correctly (!) and other goodies
like remembering where the scroll bar was when you go back...
2002-02-12 20:06:34 +00:00
dillo
2c8bc4e2c1 Update dillo to 0.6.3:
This release introduces extended UI customization, a full-screen
   mode, a way to turn off the dicache (saving lots of memory), and
   optimized code for handling resize requests in the page widget.
   The whole HTML tag parsing and URL resolving modules are new,
   improved, and more standards-compliant. Several bugfixes and other
   enhancements were also made.
2001-12-24 14:35:32 +00:00
dillo
d3f8ff8d3f Fix LP64 bug. Thanks to Michael L. Hitch for tracking it down. 2001-12-12 05:57:29 +00:00
joda
c40179e7d3 uhm, typo in previous 2001-12-10 15:32:41 +00:00
joda
f2fb1e1c2e need to zero out sockaddr before calling connect 2001-12-10 15:28:11 +00:00
dillo
9479c4aac6 Initial import of dillo 0.6.2, a small and fast graphical web browser.
pkg provided by Benjamin.Wong@cc.gatech.edu in PR 14808.
2001-12-06 16:15:41 +00:00