summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2004-11-28Add and enable ruby16-borges package.taca1-1/+2
2004-11-28Importing ruby16-borges package previous ruby-borges version for ruby16.taca4-0/+79
2004-11-28Update ruby-webunit package to 20040429++ migrating to use newtaca4-17/+21
framework for Ruby packages. === 20040429+ --> 20040429++ * add <area> to SingleTags in parser.html (Thanks to Philip Plumlee) === 20040429 --> 20040429+ * fix bug about handling XHTML(like <hr/> tag, in SingleTags at parser.rb) === 20040211 --> 20040429 * fit htmlsplit to XHTML(like <p/> tag, it's temporary and defective) === 20030121 --> 20040211 * fix for ruby 1.8.1
2004-11-28Migrate ruby-installpkg to use new framework for Ruby packages.taca1-11/+10
And mark this package is only for ruby16, too. The same version is bundled in ruby18.
2004-11-28Migrate ruby-tag to use new framework for Ruby packages.taca1-6/+4
2004-11-28Migrate ruby-htmlsplit to use new framework for Ruby packages.taca1-8/+5
2004-11-28Update ruby-fcgi pacakge to 0.8.5 migrating to use new frameworktaca3-36/+10
for Ruby packages. Changes are unknown.
2004-11-28Update to ruby-borges pacakge to 1.1.0 migrating to use new frameworktaca4-62/+1312
for Ruby packages. Changes are huge and this version is Ruby 1.8 and lator.
2004-11-28Migrate ap2-ruby to use new framework for Ruby packages.taca2-27/+52
2004-11-28Migrate ap-ruby to use new framework for Ruby packages.taca2-42/+43
2004-11-27Update p5-Apache-Test from version 1.12 to 1.16.he2-5/+5
Change log: 1.16 - November 9, 2004 launder the require()d custom config filename to make -T happy [Torsten Fo"rtsch <torsten.foertsch gmx.net>] added Apache::TestRunPHP and Apache::TestConfigPHP classes, which provide a framework for server-side testing via PHP scripts [Geoffrey Young] fix problem with multiple all.t files where only the final file was being run through the test harness. [Geoffrey Young] Documented that redirection does not work with "POST" requests in Apache::TestRequest unless LWP is installed. [David Wheeler] Separated the setting of the undocumented $RedirectOK package variable by users of Apache::TestRequest from when it is set internally by passing the "requests_redirectable" parameter to the user_agent() method. This allows users to override the behavior set by the user_agent() method without replacing it. [David Wheeler] 1.15 - October 22, 2004 add need_php4() and have_php4() which will return true when mod_php4 is available. also, tidy up need_php() and have_php() for PHP4 on Apache 2.0. [Joe Orton] add new test_config make target, equivalent to t/TEST -conf, and make it a prerequisite for the cmodules make target. now you can 'make cmodules' to build the things in c-modules/ without running t/TEST -conf first. [Geoffrey Young] add -withtestmore import action, which allows Test::More >= 0.49 to replace Test.pm as the engine for server-side tests [Geoffrey Young] add automatic core dump backtrace generation in t/REPORT if Devel::GDB is installed [Gozer] add 'testcover' make target for running tests with Devel::Cover [Geoffrey Young] 1.14 - October 12, 2004 improve the same_interpreter framework to handle response failures while trying to init and later find out the same interpreter. [Stas] make sure that 'make distclean' cleans all the autogenerated files [Stas] make sure that if -maxclients option is passed on the command line, minclients will never be bigger than that value [Stas] add -one-process runtime argument, which will start the server in single-server mode (httpd -X in Apache 1.X or httpd -D ONE_PROCESS in 2.X) [Geoffrey Young] In open_cmd, sanitize PATH instead of clearing it [Gozer] Allow / \ and \\ path delimiters in SKIP file [Markus Wichitill <mawic@gmx.de>] Added an apxs query cache for improved test performance [Gozer] run_tests make target no longer invokes t/TEST -clean, making it possible to save a few development cycles when a full cleanup is not required between runs. [Geoffrey Young] Apache::TestSmoke imrovements: [Stas] o the command line option -iterations=N should always be respected (previously it was internally overriden for order!='random'). o since IPC::Run3 broke the Ctrl-C handler, we started to loose any intermediate results, should the run be aborted. So for now, try to always store those results in the temp file: smoke-report...$iter.temp fix 'require blib' in scripts to also call 'blib->import', required to have an effect under perl 5.6.x. [Stas] don't allow running an explicit 'perl Makefile.PL', when Apache-Test is checked out into the modperl-2.0 tree, since it then decides that it's a part of the modperl-2.0 build and will try to use modperl httpd/apxs arguments which could be unset or wrong [Stas] Fix skip test suite functionality in the interactive configuration phase [Stas] s/die/CORE::die/ after exec() to avoid warnings (and therefore failures) when someone overrides CORE::die when using Apache-Test [William McKee, Stas] Overrode Module::Build's "testcover" action in Apache::TestMB to prevent the Apache::Test sticky preference files from being included in the coverage report. [David] 1.13 - Aug 20, 2004 move the custom config code into Apache::TestConfig, split the config object creation in 2 parts - first not requiring the knowledge of httpd location, the second requiring one, refactor the custom config interactive prompting into the second phase, if failed to find httpd. Reshuffle the code to run first bits not requiring the knowledge of httpd location. [Stas] fix Apache::TestCommonPost::lwp_do to work with LWP 5.800 ($res->content() doesn't allow CODE refs anymore, instead used content_ref to avoid huge strings copy) [Stas] add @PHP_MODULE@ extra.conf.in substitution variable, which selects mod_php4 or mod_php5 as appropriate. [Geoffrey Young] the have() function was removed entirely - use need() instead. [Geoffrey Young] add need() and need_* variant functions (need_module(), need_apache(), etc) for use specifically with plan() to decide whether or not a test should run. have_* variants (have_module(), have_apache(), etc) are now specifically for use outside of plan(), although they can continue to be used within plan() without fear of current tests breaking. [Geoffrey Young] add need_php() and have_php() which will return true when either mod_php4 or mod_php5 are available, providing functionality similar to need_cgi() and have_cgi(). [Geoffrey Young] Add APACHE_TEST_EXTRA_ARGS make variable to all invocations to t/TEST to allow passing extra arguments from the command line. [Gozer] When APACHE_TEST_NO_STICKY_PREFERENCES=1 is used don't even try to interactively configure the server, as we don't save any config it was entering an infinite loop. [Stas] If a directory t/lib exists from where the tests are run, adjust @INC so that this directory is added when running the tests, both within t/TEST and within t/conf/modperl_inc.pl. This allows inclusion of modules specific to the tests that aren't intended to be installed. [Stas, Randy] make a special case for threaded mpm configuration, to ensure that unless maxclients was specified, MaxClients will be exactly twice bigger than ThreadsPerChild (minclients), since if we don't do that, Apache will reduce MaxClients to the same value as ThreadsPerChild. [Stas] Renamed generate_test_script() to generate_script() in Apache::TestMB to match the naming convention used in Apache::TestMM and elsewhere. [David] Apache::TestMB now only prints the "Generating test running script" message if verbosity is enabled (e.g., by passing --verbose when executing Build.PL). [David] Fixed the "requests_redirectable" parameter to Apache::TestRequest::user_agent() so that it works as docmented when passed a negative value. [Boris Zentner] Documented support for passing an array reference to the "requests_redirectable" parameter to Apache::TestRequest::user_agent() to be passed to LWP::UserAgent if LWP ist installed. [David]
2004-11-27Upgrade p5-Apache-AuthCookie from 3.05 to 3.06.he2-5/+6
Add dependency on p5-Apache-Test (even though I could not make "make test" work). Change log: Version: 3.06 ** BUG FIX: AuthNameSatisfy (Any|All) directives were broken. AuthCookie was using AuthCookieSatisfy rather than ${auth_name}Satisfy. If you used this feature and had an "AuthCookieSatisfy" directive in your config file, you MUST change this to ${auth_name}Satisfy. E.g.: "WhateverSatisfy All" - created better test cases for AuthNameSatisfy directives. - when redirecting, set Location with headers_out() not err_headers_out(). apache prefers Location in headers_out, even if the status code is not 200. - MP2: Apache::unescape_url() -> Apache::URI::unescape_url() - check for mod_perl 1.9913 or later for Apache::URI (Frederick Moyer) - Remove set status in login.pl which caused malformed custom error document (Frederick Moyer) - Add support for ${auth_name}CookieName to change the name of the cookie used for each auth name. Default remains ${auth_name}_${auth_type} if not set. - make some debug log_error() calls conditional on $debug
2004-11-27Update p5-Apache-Filter from 1.019 to 1.022.he3-16/+14
Add a HOMEPAGE pointing into search.cpan.org. Adapt the patch to the new version of the package. Change log: Version: 1.022 Fri Jan 31 14:00:48 CST 2003 - Now can be installed using either Module::Build or ExtUtils::MakeMaker. - Simplified a few of the TIEHANDLE code chunks that used substr() to manipulate saved filehandle data. Version: 1.021 Fri Dec 27 10:13:23 CST 2002 - The test suite now provides a bit more useful information upon failure and uses Test.pm to generate its output. - Avoid an "undefined value" warning in READLINE() method [Dave Rolsky] - If the initial $r isn't an Apache object (could be Apache::Request or a subclass of Apache), make an on-the-fly subclass of whatever it is. [Dave Rolsky] Version: 1.020 Date: Mon Nov 11 17:11:31 AEST 2002 Fixed the Apache::PerlRunFilter module, which was missing a call to filter_register(). [Ruslan U. Zakirov, Oleh Khoma] Minor regex speedup in READLINE() method of filehandle. Correct doc bug about Filter2 and Filter3. Add Apache::HTML::ClassParser to list of filter-aware modules.
2004-11-27Update pear-HTTP_Request to 1.2.3.jdolecek2-6/+9
Changes since 1.2 include many bugfixes and possibility to add misc. socket options. Full list http://pear.php.net/package/HTTP_Request/download/. Package requires Net_Socket>=1.0.2 and Net_URL>=1.0.12.
2004-11-27Upgrade bundled Net_Socket to 1.0.2 and Net_SMTP to 1.2.6 on installation.jdolecek3-6/+15
These include some important bug fixes, and some other pear packages require the newer versions. Bump PKGREVISION, and BUILDLINK_RECOMMENDED.
2004-11-27claim MAINTAINERjdolecek2-4/+4
2004-11-27update for DIST_SUBDIR=pearjdolecek3-9/+9
2004-11-27Use HOMEPAGE provided by lang/php/pear.mkjdolecek3-7/+4
2004-11-27Drop maintainership.xtraeme1-2/+2
2004-11-27Unbreak this package, use default "curses" option to match previousxtraeme1-2/+3
behaviour and fix typo.
2004-11-27We used to avoid building all of Subversion again when buildingepg1-1/+5
sub-packages (p5-subversion, py-subversion, and ap2-subversion) by hand-hacking build-outputs.mk, which was a big pain. Consequently, since the 1.0.7 update, pkgsrc has re-built the whole thing for each subpackage. This is annoying and makes p5-subversion not work with pkgviews on Darwin. Now, we'll fix the problem by patching gen-make.py, which generates build-outputs.mk. I may even be able to commit this change upstream. devel/subversion-base/Makefile: Generate build-outputs.mk hack. devel/p5-subversion/Makefile: devel/py-subversion/Makefile: www/ap2-subversion/Makefile: Replace build-outputs.mk in post-patch.
2004-11-27Update to CVSweb 3.0.4.lukem2-11/+10
Notable changes from 3.0.1: * Fixed tab expansion to not eat everything before a tab in HTMLized diffs. * Improved support for the magic "." (== latest) revision on branches for download, view, and annotate URLs. * Improved whitespace handling in "human readable" (HTMLized) diffs. * The new cvsweb.conf parameter $DEBUG can be set to a true value in order to enable more output to the web server error log for troubleshooting. * More robust URI escaping, links to paths/filenames containing unusual characters work better now. * Visual, accessibility, and CSS class structure improvements. * Minor optimizations and bug fixes.
2004-11-27remove me as maintainer of this onedmcmahill1-2/+2
2004-11-27Update liferea to 0.6.3.minskim2-5/+5
Changes: * Keyboard focus is adjusted on "Next Unread". (Lars Lindner) * 100% CPU usage on HTTP 202 (e.g. Slashdot after banning) is now fixed. (Oliver Feiler) * Fixes a possible crash when selecting the condensed mode view. (Jakub W. Jozwicki)
2004-11-27Update galeon to 1.3.18. Changes since 1.3.17:abs10-123/+34
2004-10-23 Crispin Flowerday <gnome@flowerday.cx> * NEWS: * configure.in: 1.3.18 "Where's my name?" 2004-10-23 Crispin Flowerday <gnome@flowerday.cx> * embed/galeon-embed-shell.h: Remove some unused struct's 2004-10-17 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c: Change the default accelerator keys for cloning and detaching tabs. Fixes bug #150933 2004-10-16 Crispin Flowerday <gnome@flowerday.cx> * mozilla/ExternalProtocolService.cpp * configure.in: Fix for mozilla API change. 2004-10-16 Crispin Flowerday <gnome@flowerday.cx> * mozilla/ExternalProtocolService.cpp: Remove some old code, that I mean't to get rid of _ages_ ago. 2004-10-10 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-popup.c: Fix the tooltip for the "Add bookmark" action. Fixes bug #154577 2004-10-09 Crispin Flowerday <gnome@flowerday.cx> * configure.in * mozilla/ContentHandler.cpp * mozilla/EventContext.cpp * mozilla/FilePicker.cpp * mozilla/GaleonWrapper.cpp * mozilla/GaleonWrapper.h * mozilla/GlobalHistory.cpp * mozilla/GtkNSSKeyPairDialogs.cpp * mozilla/HeaderSniffer.cpp * mozilla/MozRegisterComponents.cpp * mozilla/ProgressListener.cpp * mozilla/ProgressListener.h * mozilla/mozilla-embed-shell.cpp * mozilla/mozilla-embed.cpp * mozilla/mozilla-encodings.c * mozilla/Makefile.am R mozilla/mozilla-version.h: Use explict checks for mozilla API changes, rather than checking against the mozilla version. Fixes bug #154441 and bug #154552 2004-10-08 Crispin Flowerday <gnome@flowerday.cx> * mozilla/mozilla-embed.cpp: Remove a special case for loading about:blank. Fixes bug #154890 2004-10-05 Crispin Flowerday <gnome@flowerday.cx> * mozilla/mozilla-notifiers.cpp: Don't call ConfigureFromPAC() ourselves, mozilla does that for us, we still notify it of the change ourselves. 2004-10-05 Amanpreet Singh Alam <amanpreetalam@yahoo.com> * configure.in: add Lang pa(Punjabi) to ALL_LINGUAS 2004-10-04 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp * mozilla/GaleonWrapper.h * mozilla/mozilla-embed.cpp: Solve the reloading of view-source pages, this is the best way I can find of doing it at the moment, I need to investigate this a bit further, but at least it works for the moment (bug #152547) 2004-10-04 Crispin Flowerday <gnome@flowerday.cx> * autogen.sh: Don't run sh with -e, it causes problems when using TERM=dumb (as jhbuild's t'box and my t'box do) 2004-10-02 Crispin Flowerday <gnome@flowerday.cx> * mozilla/mozilla-embed-shell.cpp: Always look in /usr/lib/mozilla/plugins for the user's plugins, we do this by setting the MOZ_PLUGIN_PATH before firing up mozilla, users's can, of course, set their own path as well. Fixes bug #149812 2004-09-29 Crispin Flowerday <gnome@flowerday.cx> * mozilla/EventContext.cpp: Wrap a hack (in the contextmenu handling) with #if/#endif now that the mozilla bug has been fixed. 2004-09-28 Crispin Flowerday <gnome@flowerday.cx> * libegg/egg-recent-item.c * libegg/egg-recent-model.c: Re-sync from libegg, fixing possibly crashes (unlikely to affect Galeon), and a file descriptor leak (which does affect Galeon). 2004-09-25 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GlobalHistory.cpp * mozilla/mozilla-embed-shell.cpp: Fix for mozilla API changes 2004-09-25 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-css-menu.c: Don't use #defines for the format, just put the snprintf into the buffer next to where the buffer is declared. 2004-09-25 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-css-menu.c: Ensure we don't fill up the buffer for the action name, and so get duplicate names, and shorten the menu items. Fixes bug #152444 2004-09-17 Crispin Flowerday <gnome@flowerday.cx> * tests/popups.html: Add yet test case for a popup crasher, bug #150632 2004-09-17 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c: Remove a g_return_if_fail(), it can happen under some circumstances. 2004-09-15 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp * mozilla/GaleonWrapper.h * mozilla/GlobalHistory.cpp * mozilla/mozilla-embed.cpp: Move the 1.7.3 api changes to 1.7.4, it seems that they didn't build 1.7.3 from the current 1.7 branch. 2004-09-15 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-tab.c: Fix a gcc 2.95 compile error 2004-09-13 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * src/galeon-tab.c: Fix bug #152502. 2004-09-12 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp: If we can't show a context menu, let the page handle it (e.g. for XUL pages) 2004-09-12 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp * embed/galeon-embed.h * src/page-info-dialog.c: Distinguish between full and 'almost' complance render modes. 2004-09-11 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-smart-site-tb-widget.c: Don't ignore text in entry when opening in a new tab or window via the context menu. Fixes bug #150121. 2004-09-11 Crispin Flowerday <gnome@flowerday.cx> * bookmarks/bookmarks.c: Fix a memory leak 2004-09-11 Crispin Flowerday <gnome@flowerday.cx> * src/page-info-dialog.c: Give the code a little polish, and make the context menu labels work properly. 2004-09-10 Crispin Flowerday <gnome@flowerday.cx> * ui/galeon.glade: Slightly change the widget borders in the page info dialog, this ensures it is all consistent, and doesn't use x-align=0.01 in places. In addition, add the image embed into a viewport, so that it is indented (it looks much nicer). 2004-09-10 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp: Ensure there is a url in the link rather than ensuring the url is empty. 2004-09-10 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c * src/galeon-tab.h * src/galeon-tab.c: Get the Galeon Window by looking at the toplevel window of the tab, rather than setting manually. 2004-09-07 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c * src/galeon-tab.c: Fix sizing of popup windows. 2004-09-07 Crispin Flowerday <gnome@flowerday.cx> * src/Makefile.am R src/galeon-macros.h: Remove this file * src/galeon-tab.c * src/galeon-tab.h: Convert the GaleonTab object to use object properties rather than calling the window directly. * src/galeon-window.c: Sync the window from the tab properties * src/galeon-window.h: Remove some functions that aren't needed any more. This fixes bug #149431 2004-09-07 Akagic Amila <bono@linux.org.ba> * configure.in: Added 'bs' to ALL_LINGUAS. 2004-09-06 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c: Fix the statusbar messages for the 'Allow/Block cookies from this site' menu items. Fixes bug #151981 2004-09-06 Crispin Flowerday <gnome@flowerday.cx> * embed/galeon-embed-shell.c * embed/galeon-embed-shell.h: Create a new signal for changes in the permission manager. * mozilla/CookieObserver.cpp: Emit the signal, instead of calling the GaleonWindow code directly. * src/galeon-window.c: Attach to the signal 2004-09-06 Crispin Flowerday <gnome@flowerday.cx> * mozilla/EventContext.cpp: Remove the random magic number, it was due to an uninitialized variable. Initialize the variable to another magic number, and capture that in the switch. 2004-09-05 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c: Forget the last change, just use gtk_container_get_children() to get the list of tabs. Thanks to Christian Persch for pointing this out. 2004-09-05 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-window.c: Use g_list_prepend / g_list_reverse rather than using g_list_append, its more efficient. 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * mozilla/mozilla-embed.cpp: Remove our custom dom_key_press handler to generate contextmenu signals. * mozilla/EventContext.cpp * mozilla/GaleonWrapper.cpp * mozilla/GaleonWrapper.h: Attach an nsIDOMContextMenuListener so that we can capture context menu signals. * src/galeon-tab.c: Use the contextmenu signal for right mouse button handling, as well as keyboard menu key handling. * mozilla/SideBar.cpp * src/galeon-nautilus-view.c: Hook up to the contextmenu signal. * galeon.schemas.in * embed/galeon-embed-prefs.h: * src/galeon-prefs-dialog.c * ui/prefs-dialog.glade: Add a UI to allow javascript context menu handling. This fixes bug #60752 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * galeon.schemas.in: Remove the schema for 'default_allow_popups' which isn't used anywhere. 2004-09-04 Philip Langdale <philipl@mail.utexas.edu> * libegg/dock/egg-dock-master.c: Resync with libegg (although I put the change into libegg :-). Respect the NEVER_FLOAT behaviour as we want to turn floating off in our dock. 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * mozilla/EventContext.cpp * mozilla/EventContext.h: Convert mozilla mouse buttons to gtk ones (0,1,2 -> 1,2,3) and use 0 for key events. * mozilla/SideBar.cpp * src/galeon-nautilus-view.c * src/galeon-tab.c: Adapt to change. 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-tab.c: Don't resize tabs in the background till they are map()'ed (as they are when they are brought to the front). Fixes bug #124558 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-action-go.c: Never show both the icon and text for the Go action. Show the icon in icons_only mode, and the text otherwise. This avoids the second toolbar being too large in the default toolbar layout with icons+text. 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-action-location.c: * utils/pixbuf-cache.h * utils/pixbuf-cache.c * ui/galeon-entry.png * ui/Makefile.am: Add a stock icon for the location entry. 2004-09-04 Crispin Flowerday <gnome@flowerday.cx> * utils/pixbuf-cache.h * utils/pixbuf-cache.c * bookmarks/bookmarks-icon-provider.c * src/galeon-favicon.c * ui/Makefile.am R ui/galeon-bookmark.png: Use the stock image for the default favicon on the toolbar. Fixes bug #151682 2004-09-01 Crispin Flowerday <gnome@flowerday.cx> * utils/gul-toolbutton.c: Remove a useless variable. 2004-09-01 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GlobalHistory.cpp: Fix for the API change on the 1.7 branch 2004-08-29 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp: Display the result of a javascript evaluations in the JS console. Fixes bug #150527 2004-08-29 Crispin Flowerday <gnome@flowerday.cx> * mozilla/MozillaPrivate.cpp: Check for null pointers to avoid crashes if a qi fails. 2004-08-29 Crispin Flowerday <gnome@flowerday.cx> * default-prefs.js: Disable SSLv2 by default. It has serious security problems, and isn't something that should be used these days. 2004-08-29 Crispin Flowerday <gnome@flowerday.cx> * bookmarks/bookmarks-tree-model.c: Fix compilation with gcc 2.95 2004-08-25 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-tree-model.c * bookmarks/bookmarks-tree-view.c * utils/galeon-dnd.c: Allow dropping links on the bookmark treeview. Fixes bug #151028. 2004-08-25 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-tree-model.c: Fix bug #150386 (drop on empty folders in bookmark tree view). 2004-08-23 Crispin Flowerday <gnome@flowerday.cx> * src/galeon-css-menu.c: Ensure action names from different stylesheet sources don't collide. Fixes bug #150803 2004-08-23 Crispin Flowerday <gnome@flowerday.cx> * utils/gul-gui-option.c: Fix compilation with gcc 2.95 2004-08-22 Tommi Komulainen <tommi.komulainen@iki.fi> * utils/gul-notebook.c: Make tab width fixed "n characters" wide, currently hardcoded to 15 characters. Fixes bug #135447 2004-08-21 Tommi Komulainen <tommi.komulainen@iki.fi> * src/galeon-favicon-cache.c: Implement Cache Directory Tagging Standard. Fixes bug #150277 2004-08-21 Tommi Komulainen <tommi.komulainen@iki.fi> * src/galeon-favicon-cache.c: Create the cache directory when saving, not loading. Be more paranoid about potential errors. 2004-08-21 Crispin Flowerday <gnome@flowerday.cx> * utils/location-entry.c: If the toolbar is hidden when the user types Ctrl+L, popup the toolbar until the focus dissappears from the location entry. Fixes bug #138948 2004-08-21 Crispin Flowerday <gnome@flowerday.cx> * utils/gul-gui-option.c: Add some g_return_if_fail()'s to avoid crashes on NULL. * src/galeon-prefs-dialog.c: Don't pass NULL strings to gul_gui_option_combobox_set_value 2004-08-21 Philip Langdale <philipl@mail.utexas.edu> * libegg/dock/egg-dock-item.c: Disable the popup menu on dock handles. If you hide a toolbar, it's gone forever :-) Fixes bug #132812 2004-08-21 Tommi Komulainen <tommi.komulainen@iki.fi> * embed/print-dialog.c * mozilla/MozillaPrivate.cpp: Use locale default paper size by default, if possible, when switching printers instead of simply picking the first one in the list. 2004-08-21 Tommi Komulainen <tommi.komulainen@iki.fi> * src/galeon-window.c: Check "gtk-menu-bar-accel" from GtkSettings for menubar accelerator instead of hardcoding F10. Instead of manually opening the menubar forward the keypress event to it after it's shown. That way the menus open as usual when hovering the mouse cursor over them and you don't need to click to open. 2004-08-21 Tommi Komulainen <tommi.komulainen@iki.fi> * src/galeon-window.c: Add Ctrl+0 shortcut for "Normal Size" as per HIG. Fixes bug #121168 2004-08-21 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Add «nb» to ALL_LINGUAS. 2004-08-16 Crispin Flowerday <gnome@flowerday.cx> * mozilla/EventContext.cpp: Use GetLocalName rather than GetTabName to get the attribute name. Fixes the galeon equivalent of bug #150208 2004-08-15 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GlobalHistory.cpp: Don't stop pages loaded inside frames from being saved in the history. 2004-08-15 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * bookmarks/bookmarks-editor.c: Fixed wrong string at line 1406 2004-08-13 Crispin Flowerday <gnome@flowerday.cx> * libegg/egg-editable-toolbar.c * libegg/egg-editable-toolbar.h * libegg/egg-toolbar-editor.c * libegg/egg-toolbar-editor.h * libegg/egg-toolbars-model.c * libegg/egg-toolbars-model.h * libegg/eggmarshalers.list: Sync the toolbar editor from libegg. * src/galeon-window.c: Fix for some small API changes 2004-08-13 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.h * mozilla/GaleonWrapper.cpp * mozilla/mozilla-embed.cpp: Simplify getting the encoding and forced encoding from mozilla. 2004-08-12 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-editor.c: Fix bug #149751. 2004-08-12 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-editor.c: Enable/disable menu entries depending of the selected items. Fixes #149750.. 2004-08-12 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * embed/global-history.c: Fix compilation for Gcc 2.95. 2004-08-11 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks.c: Use the url when the title is "" for autobookmarks. Sort autofolders alphabetically. 2004-08-11 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * ui/bookmarks-editor.glade: Fix mnemonics, wording and typos. 2004-08-11 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks.c: Fix small bug with copying. * bookmarks-tree-model.c: Don't allow to drop bookmarks on autogenerated folders. 2004-08-11 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-icon-provider.c * ui/Makefile.am * ui/galeon-filter.png * utils/pixbuf-cache.c * utils/pixbuf-cache.h: Use different icons for VFolders and AutoFolders. 2004-08-11 Yanko Kaneti <yaneti@declera.com> * src/window-commands.c: "translator_credits" -> translator-credits" see http://mail.gnome.org/archives/gnome-i18n/2004-August/msg00125.html 2004-08-10 Crispin Flowerday <gnome@flowerday.cx> * GlobalHistory.cpp * JSConsoleListener.cpp * JSConsoleService.cpp * MyportalProtocolHandler.cpp * PrintingPromptService.cpp * SideBar.cpp * SideBarProxy.cpp: Remove calls to NS_INIT_ISUPPORTS, it hasn't been needed since mozilla 1.3 2004-08-10 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-context-menu.c * bookmarks/bookmarks-single-editor.c * bookmarks/bookmarks-single-editor.h * bookmarks/bookmarks.c * bookmarks/bookmarks.h * bookmarks/xbel.c * embed/global-history.c * ui/bookmarks-editor.glade * utils/galeon-auto-bookmarks-source.c * utils/galeon-auto-bookmarks-source.h: Added oftions to filter the history items considered for each auto folder. The previous scoring algorithm has been killed, and instead there is a very simple one based in the last visited time, the visits count or both. Allow to match more than one item per host (or not). 2004-08-10 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GlobalHistory.cpp * mozilla/GlobalHistory.h: Clean up the GlobalHistory class, and fix for a mozilla API change. 2004-08-10 Crispin Flowerday <gnome@flowerday.cx> * embed/global-history.c: Fix storing of the host's first and last visited times. 2004-08-09 Crispin Flowerday <gnome@flowerday.cx> * configure.in * mozilla/ContentHandler.cpp * mozilla/EventContext.cpp * mozilla/ExternalProtocolService.cpp * mozilla/GaleonWrapper.cpp * mozilla/GlobalHistory.cpp * mozilla/GlobalHistory.h * mozilla/GtkNSSKeyPairDialogs.cpp * mozilla/HeaderSniffer.cpp * mozilla/MozRegisterComponents.cpp * mozilla/ProgressListener.cpp * mozilla/ProgressListener.h * mozilla/SideBar.cpp * mozilla/mozilla-embed-shell.cpp * mozilla/mozilla-embed.cpp * mozilla/nsMailtoUrl.cpp: Drop support for mozilla versions < 1.7 2004-08-09 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.cpp: Fix compilation with mozilla < 1.7. This won't be around for long, but its worth fixing. 2004-08-09 Thomas Zajic <zlatko@gmx.at> * libegg/egg-toolbar-editor.c * src/galeon-encoding-dialog.c * src/popup-commands.c: Declare variables before calling code. Fixes compilation with gcc 2.95 - bug #149732 2004-08-09 Crispin Flowerday <gnome@flowerday.cx> * mozilla/GaleonWrapper.h * mozilla/EventContext.h * mozilla/ContentHandler.h: Remove a lot of #includes, and use forward declarations instead. * mozilla/ContentHandler.cpp * mozilla/EventContext.cpp * mozilla/mozilla-embed-persist.cpp * mozilla/mozilla-embed.cpp: Add needed headers. * mozilla/GaleonWrapper.cpp: Add needed headers, and make the code more consistent, in use of NS_ENSURE_*, and use a simpler method to get the nsIWebNavigation interface. 2004-08-09 Ricardo Fernandez Pascual <ric@users.sourceforge.net> * bookmarks/bookmarks-context-menu.c * bookmarks/bookmarks-editor.c * bookmarks/bookmarks-editor.h * bookmarks/bookmarks.c * bookmarks/bookmarks.h * bookmarks/xbel.c * src/galeon-shell.c * ui/galeon-bookmarks-editor-ui.xml.in * utils/Makefile.am * utils/galeon-auto-bookmarks-source.c * utils/galeon-auto-bookmarks-source.h * embed/global-history.c: Autobookmarks. The scoring algorithm is the same as in Galeon 1.2. It may need adjusting, but seems to work mostly reasonably. You can have as many autobookmarks folders as you want, each one will have 20 different autobookmarks.
2004-11-27Set MAINTAINER to epg@NetBSD.org.epg1-2/+2
2004-11-27Remove obsolete patches.sketch3-148/+0
2004-11-27Update apachetop to 0.12.5.sketch2-9/+8
v0.12.5 (27th November, 2004) 20041126 * change src/Makefile.am to install apachetop into bin, not sbin * add NetBSD compatibility hack for kqueue; their opaque datafield is an intptr_t (why?) 20040915 * add attron back into configure.ac - not sure when that got removed * change timeout delay between log checks to a constant 1/10th of a second * get rid of all threading code. It was never really necessary; only ever implemented because the main-loop delay was too long. Now it runs at least 10 times a second. 20040725 * incorporate gcc 3.4 building compatibility patch from Pascal Terjan <pterjan@linuxfr.org> v0.12 (21st May, 2004) 20040508 * finish up adns resolving; now host and/or ip are displayed as best as possible; if one is not available it is displayed as ... while being resolved. * TAKE NOTE! commandline option -r has changed to -d -r has been reassigned to enable resolving of hosts/ips 20040505 * use kqueue and fam facilities for passing opaque user data back when an event occurs, allowing the removal of the ift struct (which sucked) 20040504 * add runtime option key 'n' to toggle number columns between hits/bytes and return code breakdowns for each item. * expand sorting options so it's possible to sort by return codes as well as hits/bytes. Pressing 's' brings up a different menu if you're viewing return code breakdown. 20040416 * add return code breakdown for each item in the top-list 20040308 * improve header to display GB/MB/KB/Bytes in all appropriate fields 20040303 * add adns support to resolve IPs into Hosts; if HostnameLookups is Off in your httpd.conf, ApacheTop will now look up IPs for you. Created --with-adns, like pcre/fam. 20040301 * remove --enable-pcre; have configure always check for it and just warn if it can't be found. Specify --with-pcre to point it at the right place. * call realpath() on supplied filenames for sanity * add File Alteration Module (FAM) monitoring code (for Linux/IRIX mostly) Use --with-fam to point it at the right place, like pcre. v0.11 (25th February, 2004) 20040224 * acknowledge & as starting a query string as well as ? 20040219 * clean up configure.ac, remove unused function checks * add --with-libraries and --with-includes to ./configure to provide hints about where to look other than standard places 20040218 * add --enable-pcre and --with-pcre=<path> to ./configure; providing these enables regular expression filtering * add new filters submenu (press f) * add --with-logfile=<file> to ./configure; now you can override the default log position without editing the source 20040216 * inline hashing functions for greater efficiency * replace localtime & strftime calls with a bit of maths in display_header() 20040204 * add largefile checks into configure.ac 20040119 * change nanosleep to usleep; I think this makes more sense.. Solaris 2.6 doesn't have nanosleep, and it seems overkill * change configure.ac check for wattr_on to attron (fix Solaris compile * issue) v0.10 (14th January, 2004) 20040104 * remove old useless configure.ac stuff * fix crash bug when ApacheTop has nothing to display v0.9 (22nd December, 2003) 20031222 * don't call endwin() in a signal handler; set a flag and get the main loop to do it. Fixes intermittent segfault when Ctrl-C'ing to exit. * change instances of mvprintw() to mvaddstr() where printf features were unused anyway; should give curses an easier time. * add runtime help display; press s or ? 20031221 * rework runtime options to make use of "submenus" * add facility for removing detailed-display sections (remove Referrers from a URL detailed display etc); press t during runtime for submenu * move sort runtime keys into their own submenu; press s for this 20031218 * revamp pthreads detection in configure.ac. It works now, I swear. 20031212 * code cleanups in display.cc * new display mode; press Right-Arrow to show statistics specific to the currently highlighted item. If you are highlighting a URL, host and referrer statistics for that URL will be shown. Press Left-Arrow to exit this display mode.
2004-11-27Set MAINTAINER to tech-pkg@NetBSD.org.epg1-2/+2
2004-11-26Pass DL_* flags to the compiler when linking httpd since it dlopensjlam3-16/+26
shared modules. Bump the PKGREVISION.
2004-11-26Pass the DL_* flags to the compiler when building httpd so that dlopenjlam3-9/+14
will work correctly on NetBSD-2.x. This should fix PR pkg/29398.
2004-11-25Forgot removing the patches when I removed the package.wiz9-263/+0
2004-11-24There are additional headers installed if APACHE_MPM == "worker".jlam2-2/+9
Handle this with the usual PLIST_SUBST magic.
2004-11-23buildlink3.mk files should be included outside of the multiple inclusionjlam1-3/+3
protected region (see mk/buildlink3/bsd.buildlink.mk).
2004-11-23We don't need to check for APR_USE_* or generate our own _APR_OPTIONSjlam1-13/+7
variable since the apr/buildlink3.mk file does the right thing for us already; we simply need to include it and check the value of PKG_OPTIONS.apr.
2004-11-22* Create APACHE_MPM variable that can be either "prefork" or "worker"jlam1-5/+20
(defaulting to "prefork") that chooses the multi-processing model for apache to handle requests. "Prefork" is the method used by Apache-1.3, which is non-threaded. "Worker" uses threads to handle requests. * Fix libtool usage in this package. Apache uses libtool, but is hardcoded to use the libtool installed by devel/apr. Patch the generated makefile fragment to use a local libtool instead, and allow the usual libtool wrapper to take its place.
2004-11-22Replace USE_GCC_SHLIB with USE_LANGUAGES=c c++ and a nice big comment whywiz1-2/+5
we add c++ to the variable.
2004-11-22Remove apache6 -- there have been no updates since 1.3.29 (overwiz9-1001/+1
a year now) but quite a number of vulnerabilities. Ok'd by agc.
2004-11-22Fix variable name.wiz1-2/+2
2004-11-22USE_LANGUAGES=c c++.wiz1-2/+2
2004-11-22Convert to use bsd.options.mk: APACHE_SUEXEC is now the "suexec" option.jlam2-21/+38
2004-11-22Clarify that APACHE_MODULES is the list of modules that are linkedjlam1-2/+5
statically into the httpd executable.
2004-11-22Fix OpenLDAP detection after devel/apr was converted to use bsd.options.mk.jlam1-4/+8
2004-11-22Use BUILDLINK_PREFIX.apr to refer to the installed location of the aprjlam1-9/+7
package. Also, remove the need for a separate SUEXEC_COMMENT variable.
2004-11-22Ensure that the rpath is set for screwsd. Fixes build on NetBSD 1.6.kristerw2-1/+15
2004-11-20Bump PKGREVISION due to security fixes in libxml (dependency adjusted tojmmv1-2/+2
1.8.17nb3).
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.