From: short <> Date: Wed, 15 Oct 2003 06:51:58 +0000 (+0000) Subject: +etherealmmse,etherealwsp X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=commitdiff_plain;h=140f236789c9320f1555508b7b22136685aa5f10 +etherealmmse,etherealwsp --- diff --git a/autogen.pl b/autogen.pl index 76d0162..db72392 100755 --- a/autogen.pl +++ b/autogen.pl @@ -64,5 +64,7 @@ AutoGen->run( ./project/pgsqlsubstr/*.gif ./project/winvnc/*.gif ./project/xbill/*.gif + ./project/etherealmmse/*.gif + ./project/etherealwsp/*.gif )], ); diff --git a/configure.ac b/configure.ac index 34e5349..ab25174 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,8 @@ Makefile ./project/libtool/Makefile ./project/muttsort/Makefile ./project/gladewsrc/Makefile +./project/etherealmmse/Makefile +./project/etherealwsp/Makefile ]) echo done. diff --git a/project/Makefile.am b/project/Makefile.am index 0963a3e..3e28a77 100644 --- a/project/Makefile.am +++ b/project/Makefile.am @@ -81,7 +81,9 @@ SUBDIRS= \ int13sniff \ libtool \ muttsort \ - gladewsrc + gladewsrc \ + etherealmmse \ + etherealwsp EXTRA_DIST+= \ Index.html.pl \ diff --git a/project/etherealmmse/Index.html.pl b/project/etherealmmse/Index.html.pl new file mode 100755 index 0000000..f475ac6 --- /dev/null +++ b/project/etherealmmse/Index.html.pl @@ -0,0 +1,39 @@ +#! /usr/bin/perl +# +# $Id$ +# Main page of 'My::Project::etherealmmse' +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::etherealmmse::Index; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,)[0]]}; eval "use lib '$top_dir'"; close F; } +use My::Web; +Wuse 'My::Project'; +Wuse 'project::etherealmmse::ListItem'; + + +My::Project->init_project( + "__PACKAGE__"=>__PACKAGE__, + "ListItem"=>\@project::etherealmmse::ListItem::ListItem, + ); + +My::Web->footer(); diff --git a/project/etherealmmse/ListItem.pm b/project/etherealmmse/ListItem.pm new file mode 100755 index 0000000..ee7db49 --- /dev/null +++ b/project/etherealmmse/ListItem.pm @@ -0,0 +1,48 @@ +#! /usr/bin/perl +# +# $Id$ +# Definition of 'My::Project::etherealmmse' for list.cgi.pl +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::etherealmmse::ListItem; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +use My::Web; + + +our @ListItem=( + "name"=>a_href('http://www.ethereal.com/','Ethereal').' MMSE fix', + "platform"=>"patch", + "priority"=>3, + "icon"=>"elogo3d100x100", + "summary"=>'Fixed MMS Encapsulation protocol decoding', + "link-ChangeLog entry"=>'http://www.ethereal.com/cgi-bin/viewcvs.cgi/ethereal/packet-mmse.c#rev1.15', + "download-patch"=>'http://www.ethereal.com/cgi-bin/viewcvs.cgi/ethereal/packet-mmse.c.diff?r2=1.15&r1=1.14&diff_format=u', + "license"=>"GPL", + "maintenance"=>"accepted", + "sponsorship"=>a_href('http://www.atspraha.cz/','Advanced Telecom Services'), + "language"=>"C patch", + "description"=><<"HERE", +

Fixed a tiny bug in MMS Encapsulation protocol decoding.

+HERE + ); + +1; diff --git a/project/etherealmmse/Makefile.am b/project/etherealmmse/Makefile.am new file mode 100644 index 0000000..0bf001f --- /dev/null +++ b/project/etherealmmse/Makefile.am @@ -0,0 +1,23 @@ +# $Id$ +# automake source for the Makefile of project/etherealmmse/ subdir +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +include $(top_srcdir)/Makefile-head.am + +EXTRA_DIST+= \ + ListItem.pm \ + Index.html.pl diff --git a/project/etherealmmse/elogo3d100x100.png b/project/etherealmmse/elogo3d100x100.png new file mode 100644 index 0000000..17821f4 Binary files /dev/null and b/project/etherealmmse/elogo3d100x100.png differ diff --git a/project/etherealwsp/Index.html.pl b/project/etherealwsp/Index.html.pl new file mode 100755 index 0000000..6aef2ee --- /dev/null +++ b/project/etherealwsp/Index.html.pl @@ -0,0 +1,39 @@ +#! /usr/bin/perl +# +# $Id$ +# Main page of 'My::Project::etherealwsp' +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::etherealwsp::Index; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,)[0]]}; eval "use lib '$top_dir'"; close F; } +use My::Web; +Wuse 'My::Project'; +Wuse 'project::etherealwsp::ListItem'; + + +My::Project->init_project( + "__PACKAGE__"=>__PACKAGE__, + "ListItem"=>\@project::etherealwsp::ListItem::ListItem, + ); + +My::Web->footer(); diff --git a/project/etherealwsp/ListItem.pm b/project/etherealwsp/ListItem.pm new file mode 100755 index 0000000..4be64a8 --- /dev/null +++ b/project/etherealwsp/ListItem.pm @@ -0,0 +1,48 @@ +#! /usr/bin/perl +# +# $Id$ +# Definition of 'My::Project::etherealwsp' for list.cgi.pl +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +package project::etherealwsp::ListItem; +require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway +our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; +our $CVS_ID=q$Id$; +use strict; +use warnings; + +use My::Web; + + +our @ListItem=( + "name"=>a_href('http://www.ethereal.com/','Ethereal').' WSP patch', + "platform"=>"patch", + "priority"=>3, + "icon"=>"elogo3d100x100", + "summary"=>'Enhanced WSP headers decoding', + "download-patch"=>'ethereal-2002-08-03-packet-wsp.c-contentlocation.diff', + "license"=>"GPL", + "maintenance"=>"ignored", + "sponsorship"=>a_href('http://www.atspraha.cz/','Advanced Telecom Services'), + "language"=>"C patch", + "description"=><<"HERE", +

Extended decoded headers for 'Content-Location'. This header +is used for MMS encoding in WSP.

+HERE + ); + +1; diff --git a/project/etherealwsp/Makefile.am b/project/etherealwsp/Makefile.am new file mode 100644 index 0000000..03e6153 --- /dev/null +++ b/project/etherealwsp/Makefile.am @@ -0,0 +1,23 @@ +# $Id$ +# automake source for the Makefile of project/etherealwsp/ subdir +# Copyright (C) 2003 Jan Kratochvil +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; exactly version 2 of June 1991 is required +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +include $(top_srcdir)/Makefile-head.am + +EXTRA_DIST+= \ + ListItem.pm \ + Index.html.pl diff --git a/project/etherealwsp/elogo3d100x100.png b/project/etherealwsp/elogo3d100x100.png new file mode 100644 index 0000000..17821f4 Binary files /dev/null and b/project/etherealwsp/elogo3d100x100.png differ diff --git a/project/etherealwsp/ethereal-2002-08-03-packet-wsp.c-contentlocation.diff b/project/etherealwsp/ethereal-2002-08-03-packet-wsp.c-contentlocation.diff new file mode 100644 index 0000000..e86ee3f --- /dev/null +++ b/project/etherealwsp/ethereal-2002-08-03-packet-wsp.c-contentlocation.diff @@ -0,0 +1,39 @@ +--- ethereal-2002-08-03/packet-wsp.c-orig Sat Aug 3 01:36:04 2002 ++++ ethereal-2002-08-03/packet-wsp.c Mon Aug 5 06:25:00 2002 +@@ -109,6 +109,7 @@ + static int hf_wsp_header_connection_str = HF_EMPTY; + static int hf_wsp_header_cache_control_field_name_str = HF_EMPTY; + static int hf_wsp_header_content_length = HF_EMPTY; ++static int hf_wsp_header_content_location = HF_EMPTY; + static int hf_wsp_header_age = HF_EMPTY; + static int hf_wsp_header_bearer_indication = HF_EMPTY; + static int hf_wsp_header_date = HF_EMPTY; +@@ -1724,7 +1725,13 @@ + hf_wsp_header_content_length, + headerType); + break; +- ++ ++ case FN_CONTENT_LOCATION: /* Content-Location */ ++ add_string_value_header (tree, header_buff, headerLen, ++ value_buff, valueType, valueLen, ++ hf_wsp_header_content_location, headerType); ++ break; ++ + case FN_DATE: /* Date */ + add_date_value_header (tree, header_buff, headerLen, + value_buff, valueType, valueLen, +@@ -4538,6 +4545,13 @@ + "Content-Length", HFILL + } + }, ++ { &hf_wsp_header_content_location, ++ { "Content-Location", ++ "wsp.header.content_location", ++ FT_STRING, BASE_NONE, NULL, 0x00, ++ "Content-Location", HFILL ++ } ++ }, + { &hf_wsp_header_date, + { "Date", + "wsp.header.date", diff --git a/project/gladewsrc/ListItem.pm b/project/gladewsrc/ListItem.pm index abd6957..c85c179 100755 --- a/project/gladewsrc/ListItem.pm +++ b/project/gladewsrc/ListItem.pm @@ -37,6 +37,7 @@ our @ListItem=( "link-ChangeLog entry"=>'http://cvs.gnome.org/bonsai/cvslog.cgi?file=glade%2Fglade/main.c&root=/cvs/gnome#1.10', "license"=>"GPL", "maintenance"=>"accepted", + "sponsorship"=>a_href('http://www.suse.com/','SuSE'), "language"=>"C patch", "description"=><<"HERE",

Automatically generate {interface,support}.[ch] and other source files