summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2004-11-20Update to Trac 0.8 'Qualia' (Nov 15, 2004)epg4-16/+106
http://svn.edgewall.com/repos/trac/tags/trac-0.8 Thanks to Simon Kuhn <sak8@eecs.cwru.edu> for the initial patch. Upstream changelog: * Roadmap module. * Support for custom ticket properties. * Wiki administration features. * Advanced ticket queries. * Improved diff display. * User preferences. * Wiki editing (near-wysiwyg) aids a la wikipedia. * Improved email notification. * Fixed bugs
2004-11-20Update to 1.5.5.1, including a fix for PR 28216.wiz7-67/+37
Changes since 1.5.1: Post 1.5.5.1 The 1.5.5.1 package had wrong compiler flags. -g was switched on while -O2 optimizations were off. Not a big deal, but I replaced the package with a new one. The next version's configure knows Cygwin and the Makefile knows DESTDIR. Thanks to Yaakov Selkowitz for this and for the Cygwin ports. :) 1.5.5.1 Obviously I failed to understand the arcane knowledge Unix signal handling is made of. 1.5.5 creates zombies and fails to exit (hangs) at least on OpenBSD. But I still claim that this is a bug in the OS. Anyway, this release fixes just this one problem. If 1.5.5 works fine you don't need to upgrade. 1.5.5 I've fixed quite an amount of things in the HTTP and related code. Torturing code with randomly generated crap is a fun method to find problems. ;) Cache file handling was also rewritten to avoid problems with filesystems that don't like binary data in filenames very much. I also fixed this on Cygwin where it was totally broken. Snownews may now generate different hashes for the filenames than before so some feeds may appear completely unread after upgrading in certain cases. Overall this release touched a lot of core code, should've probably been 1.6.0. Ah well, have fun with the yellow chicken! 1.5.4.1 Make snownews work with gmail's atom feed. 1.5.4 * Fixed some of the UTF-8 problems. Ncurses still doesn't seem to like what I do. Will solve this in a later version. * "Return to previous menu" and "quit" are now two different keys. Default bindings for both is still 'q' so it doesn't brake any previous behaviour, but if you want you can define different keys for it now. * The HTTP client now understands chunked transfer encoding. This was included from a patch for Liferea. Should be of rare use since only some broken proxy servers made it neccessary to support this. * I've update the Credits a bit. I know that I probably forgot to mention somebody, if you feel left out, let me know. ;) I will go over the file and my emails again for the next version. * I made the progress bars perfectly smooth. And much faster. The code wasted a lot of CPU cycles. The cookie loading still does the same, though. :P * The highlight bar and the status line cover the whole screen instead of n-1 columns now. * If an error during an update occurs the feedname that caused it is displayed in the status line as well. (Same goes for the error.log) * The code that determines read status of an item during an update now depends on the link and the title element. Feeds that have the same URL for all items should work better now. * Adding a feed now removes whitespaces from the beginning of the string so if you cut&paste " http://whatever" it'll work. * I added support for feed:// URLs. It's stupid, but seems to be used in the wild so I just give up. * The "HTML renderer" now decodes numerical entities all by itself (if supported by your C library) and uses libxml's htmlEntityLookup(). User defined entities are still checked first. * Stupid NULL ptr crash in the HTTP status parser. * Basic/Digest auth headers should be case insensitive. * Possible crash when deleting the "New Headlines" feed. * It is now possible to use URLs http://foo.com without a trailing slash. * Items in "New Headlines" had wrong feed name attached to them if you moved around feeds in the main menu. * No recursive adding of smartfeeds. And no extreme memory trashing in this case anymore. * UTF-16 and pure binary data can now be read. Anyone who wants to write a webcomic2aalib extension? 1.5.3 This version contains the following changes: Prevent launching smartfeed:// URLs with the browser. Configurable enter key broke type ahead a bit. Think I already mentioned this some time ago, no? The "Downloading [feedname]" always shows the correct feed name now. Finetuned display of HTML only feed descriptions a bit more. Changed URL in user agent string to http://snownews.kcore.de/. Error messages are now in full colour. :) Many more errors are now written into the error.log file. 1.5.2 Not many new stuff since the beta1 version. Using filter extensions works fine now, if you subscribe a feed that cannot be parsed you'll be asked if you want to use a filter for this feed (=unsucked the add a filter UI). There was a problem with accessing memory that didn't belong to us in xmlparse for strings exactly one byte long. The feed download function behaved strangely sometimes due to some thread safety issues. Never affected Snownews, only Liferea. Just mentioned for completeness. Snownews should also start up a bit faster now if you have many feeds and a really slow system. 1.5.2beta2 Unfortunately 1.5.2-beta1 is a bit crashy if you use the (New headlines) pseudo feed. Something's stompin on my internal database which leads to inconsistent calculations of unread items in the new headlines feed and the rest of the program. And ultimatively to a segfault if you open the feed in this state. The patch below fixes this. Also fixes obscure issues with smart feeds + caching, makes HTTP auth via proxy work and fixes bugs with the feed reordering in the main menu. Moved feeds had some of their internal data mixed up with others. Specifically the last HTTP status reply, last modification date and the data contentlength. 1.5.2beta1 The enter key has now a configurable key binding. So if you want to have 'l' to select an item, it should work now. Multi byte characters are now handled correctly. Well, everywhere except in the article (if provided) itself since the word wrap function still doesn't like multi byte characters. Should work everywhere else if you link against libncursesw. I rewrote all of the build system. Nothing fancy, but it's one single Makefile now and does not depend on GNU make anymore. Building is probably broken on Solaris atm. A feed that contains all new items from all your other feeds can now be added by pressing 'H' in the main menu. Filters and external feed sources work now. External sources: Write a script/program that outputs RSS and you can add it via an URL exec:/path/to/script. Snownews will execute it everytime you refresh the feed/all feeds. In short: [your script] -> RSS -> Snownews Filters: You can subscribe to Atom, any other syndication format, heck even HTML pages with this feature. All you need is a script that converts whatever resource from the web to a valid RSS document. The external script must accept data via stdin and write valid RSS to stdout. Snownews will execute this filter everytime it downloads a resource from the web. This automatically takes advantage from Snownews' http features (last mod, gzip, auto redirect, etc.). To use this, subscribe anything you want, ignore the parser errors, press 'e' and enter the location of the filter you want to use, refresh the feed. In short: [resource on the web] -> Snownews -> [your script] -> RSS -> Snownews
2004-11-19Add and enable browser-bookmarks-menu.jmmv1-1/+2
2004-11-19Initial import of browser-bookmarks-menu, version 0.3:jmmv4-0/+47
This package provides a GNOME Panel Applet that displays a drop-down menu showing your browser bookmarks. The bookmarks list is read from the browser pointed by the 'http' URL handler in your GNOME Desktop.
2004-11-18Don't use APIs that were deprecated in MySQL 3.23, and some of which arecube3-21/+35
now even absent of MySQL 4.x by default. Bump PKGREVISION.
2004-11-18Add p5-Apache-AuthCookieDBI.wiz1-1/+2
2004-11-17Remove obsolete variables. You'll want to use:xtraeme1-14/+1
PKG_OPTIONS.<pkg>+= foo blah
2004-11-17bl3.mk files required by multimedia/mplayer-plugin-firefox*.xtraeme2-0/+36
2004-11-16Clarify dependency versionsabs1-4/+4
2004-11-16*** empty log message ***abs3-127/+5
2004-11-16Regen after "patch-ai" was changed. (hi salo!)tron1-2/+2
2004-11-16Remove several unnecessary package dependencies.erh1-6/+1
2004-11-15Revert rev 1.9, do not expand @INSTALL@, it's done in post-patch. (hi abs!)salo1-2/+2
2004-11-15Rework the Berkeley DB detection in buildlink3:jlam1-3/+3
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality exists in the base system, and remove the distinction between "native" and the other Berkeley DB packages -- we now refer to db[1234]. This paves the way for any future databases/db1 package. * USE_DB185 shouldn't need to be set by any packages -- its correct value is now automatically determined by bdb.buildlink3.mk depending on whether we explicitly request db1 or not. By default, if you include bdb.buildlink3.mk, you want DB-1.85 functionality and USE_DB185 defaults to "yes", but if you explicitly remove db1 from the list of acceptable DBs, then USE_DB185 defaults to "no". * Set BDB_LIBS to the library options needed to link against the DB library when bdb.buildlink3.mk is included. * We only add the DB library to the linker command automatically if we want DB-1.85 functionality; otherwise assume that the package configure process can figure out how to probe for the correct headers and libraries. Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-11-15Use ${VARBASE} instead of hardcoded /var.sketch2-9/+9
2004-11-15Update to 0.6.2:jmmv2-5/+5
* Liferea now supports cookies. Contrary to previous statements the SnowNews code to realize this was included but not used. To use this feature place a cookies.txt in ~/.liferea. The format of this file is the format Netscape introduced for cookie files. (Lars Lindner) * Liferea now enforces umask 0077 when saving the feed list to ensure your passwords are not group or world accessible. In this context please check the permissions of your ~/.liferea directory. Older program versions might have created the directory with unnecessary priviledges. Current versions (0.6.x) create the directory only with user priviledges. Thanks to the reporters Nick Rout and Eric Gregory! (Lars Lindner) * Bugfix for a crash when double-clicking a "(empty)" entry in empty folders. Reported by Martin Sarfy. (Lars Lindner) * If a feed uses HTTP authentication the user and password isn't displayed in the feed description anymore. (Lars Lindner)
2004-11-14Update to 1.4.5:jmmv3-10/+19
Changes * Fix session remove command * Fix import of bookmarks in root folder [#152443] * Activate tray icon with double-click [#152899] * Add manpage (Jordi Mallach) [#156067] * Don't open all bookmarks in new tabs [#156843] * When showing a modal alert put up by a web page, switch the window to that tab * Emit ::tab-removed after the tab has been removed [#151607] * Fix disconnect on node destroy [Peter Harvey] * Fix node signal [dis]connection while signal emission is running * Make sure there's only one properties diaogue per bookmark [#148398] * Fix crash when removing bookmark with open properties dialogue [#155880] * Fix toolbar activation [#155650] * Check favicon urls with script sec manager and content policy * Fix zoom control so that it shows tooltips again [#155826] * Make the tooltip on the zoom control also work on Ctrl-F1 * When popping up the context menu with keyboard, select the first item [#154907] * Sanitise the embed popup position [#157162] * Fix button sensitivity setting in language editor not to first * Fix history date filter to work correctly in time zones != UTC * Better positioning for the context menu popup in a treeview (Crispin Flowerday) * Fix opening content with external content handlers (Marco) * Remove remaining time tooltip from tray icon [#145955] * Fix hang after importing bookmarks from command line [#136170] * Fix crash when no tool windows are open when the session manager sends us the "die" signal * Fix opening anchored links in new tabs [#156854] * Adapted to Mozilla API changes * Fix a freed memory read Documentation translations * Add manual translation into Finnish, by Pauli Virtanen Translation updates * Ole Laursen (da) * Žygimantas Beručka (lt) * Leonid Kanter (ru)
2004-11-14Enable spell checking support (through gtkspell). Gah! I've been wantingjmmv1-2/+3
this feature for a long time and it was already there, just hidden! Bump PKGREVISION to 2.
2004-11-13Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies thejlam4-8/+4
former) for applications that are known to require C++.
2004-11-13USE_BUILDLINK3 is a yes/no variable.jlam1-2/+2
2004-11-13remove typeahead extensiontaya1-5/+1
2004-11-13remove typeahead extension that confilicts with buildin typeahead component.taya2-7/+4
fix pkg/28164. bump PKGREVISION
2004-11-12The distfile cannot be extracted with some tar (e.g. NetBSD 2.0)kristerw1-2/+5
or some pax (e.g. NetBSD 1.6). Force use of gtar instead.
2004-11-12Set version independent HOMEPAGEs.seb3-6/+6
2004-11-12You can't return from a function declared void, especially with strictsketch2-1/+15
compilers like SunPro.
2004-11-12p5-libxml-enno is old and has been split into individual packages.erh1-2/+10
Change p5-Template-Toolkit to depend on those packages instead.
2004-11-12Remove useless C99-isms that cause the build to fail with GCC 2.95.kristerw4-1/+58
2004-11-12Update mozilla and mozilla-gtk2 to 1.7.3nb2 with a security fixwiz4-5/+30
from mozilla CVS.
2004-11-12Remove p5-ExtUtils-XSBuilder from www/ as it was reimported in devel/.seb5-36/+1
2004-11-12Adjust for new p5-ExtUtils-XSBuilder location in devel/.seb1-2/+2
2004-11-12Add 'perl5' to CATEGORIES.seb3-6/+6
2004-11-10add some missing files to PLISTtaya1-6/+11
2004-11-10- correct path of mirror sitetaya2-5/+15
- add some missing files to PLIST
2004-11-10Don't strip leading directory off pathnames in the rpm (when using themarkd1-2/+3
suse91_* packages). While here fix typo s/NO_CONFGURE/NO_CONFIGURE/
2004-11-10Add --localstatedir=${VARBASE} to CONFIGURE_ARGS.epg1-1/+2
2004-11-09Update firefox and firefox-gtk2 to 1.0.xtraeme4-16/+10
This is a bugfix release, to fix the problems reported in Preview Releases, etc.
2004-11-09Remove trailing slash in depends line.wiz1-2/+2
2004-11-09Changes 2.2.7:adam4-25/+46
* Fixed potential XSS vulnerability in the help window * Restored compatibility with PHP 4.1 * Fixed charset of Latvian translation
2004-11-09This package depends on ap-perl, of course.he1-1/+3
2004-11-09No trailing slash on the dependencies directory, this confusesseb1-3/+3
mk/scripts/mkdatabase.
2004-11-09Changes 1.99.17:adam3-16/+25
* Bug-fixes and improvements before a stable release
2004-11-09Changes 7.12.2:adam3-7/+7
* the IDN code now verifies that only TLD-legitmate letters are used in the name or a warning is displayed (when verbose is enabled) * provides error texts for IDN errors * file upload parts in formposts now get their directory names cut off * added CURLINFO_OS_ERRNO * added CURLOPT_FTPSSLAUTH to allow ftp connects to attempt "AUTH TLS" instead before "AUTH SSL" * curl_getdate() completely rewritten: may affect rare curl -z use cases * bugfixes
2004-11-08Update master site.wiz1-2/+2
2004-11-08Changes 0.8.3:adam4-11/+12
* Parser is able to use W3C semantics plus some heuristics * Improves rendering of non-valid HTML * Bug fixes
2004-11-07This pkg need devel/p5-Module-Build to build.kristerw1-1/+2
2004-11-07This pkg need devel/p5-Module-Build to build.kristerw1-1/+2
2004-11-06Update websvn to latest 1.61, since 1.40 is no longer available on the homejdolecek3-9/+39
site. Notable changes since 1.40: * language/encoding fixes * cache overhaul and directory listing optimization, the existing cache files should be deleted * wsvn.php changed, configuration changes need to be re-done * added blame support * support for comparing entire directories, and directory tarball download * various config options now per-project * new 'Zinn' style * new Swedish, Japanese, Korean, Russian, Chinese, Spanish translations See changes.txt in the source distribution for complete & detailed list of changes.
2004-11-06use ap-php instead of ap-php4, and simplify the DEPENDS match; alsojdolecek1-3/+3
use DEPENDS rather than BUILD_DEPENDS for PHP, since PHP is necessary to _run_ this bump PKGREVISION
2004-11-06merge extension module handling for PHP4 and PHP5 into lang/php/ext.mk,jdolecek1-72/+0
g/c no longer needed Makefile.module add support for building extensions off PECL; version for PECL packages is built as ${PHP_BASE_VERS}.${PECL_VERSION}, i.e. PECL pkg version 1.0 would become php-pkg-4.3.9.1.0 or php-pkg-5.0.2.1.0 respectively
2004-11-06scrollkeeper doesn't have to be here.jmmv1-2/+1