Hi, kennst du mich noch?:)
Guten Tag, Jemand hat Ihnen eine Video-Botschaft aufgenommen, um die Nachricht zu erhalten, klicken Sie bitte den unten genannten Link an ! Dort laden Sie bitte den " Chat " und wenden sich dann bitte an Tina ! Wir wünschen Ihnen viel Spaß mit Ihrer persönlichen Botschaft ! Abruf unter: http://ulla23.tripod.com.pe/mycam.htm?sid=1D1C120708430104081E5014355A0700094F5D02125208475B5E430D5340565D48595B524A1E54465955Automatische Nachricht von Gerson-Message-Online
Re: README for /security/
Frank Lichtenheld said: > I've written a README file for security, mostly for documenting > the new recommended handling of new revisions. I've added also > a part about the use of parse_advisory.pl for completeness. > > Please read the text and send me your comments and suggestions. > > Greetings, > Frank > [...] > 2. updating a advisory (new revision) > - Should be "updating an advisory" ... Andrew. -- Andrew Shugg <[EMAIL PROTECTED]> http://www.neep.com.au/ "Just remember, Mr Fawlty, there's always someone worse off than yourself." "Is there? Well I'd like to meet him. I could do with a good laugh."
Bug#186735: www.debian.org: World Map of debian developers is empty
Package: www.debian.org Version: unavailable; reported 2003-03-29 Severity: normal The "World map of debian developers" which should show how debian developers are distributed on the earth surface, located at http://www.debian.org/devel/developers.loc now displays the only empty earth surface... Are there no more DD? ;) Thanks, Guido
Re: [patch] updates for rdf,rdflong in english/template/debian/recent_list.wml
Gerfried Fuchs said: > * Andrew Shugg <[EMAIL PROTECTED]> [2003-03-23 00:23]: > > Firstly, I know it was alfie's preference to have only the first paragraph > > (as bounded by ...) of the DSA in the RDF file, but this doesn't > > always make good sense. Take for example DSA 265, where there is a > > right before the actual interesting bit that you'd actually want to read. > > The intention of the first paragraph is to get an overview of the DSA. > If one wants to read more one can always come back to the website with > the included link. Yes, I understand the reason for doing it that way ... I would just like to have the option of being able to read the entire article in RSS. =) Maybe we could have 'dsa', 'dsa-long' and 'dsa-full'? And so to each their own? > I like to disagree. RSS was always meant to just get the people > interested, IMHO. The facility to link to the full article isn't there > just for fun. I'm coming at it from the same perspective as reading a blog in an RSS reader. It's lighter, faster, and doesn't need a web browser open. It can be used as an alternative transport to HTML for textual information, not just a simple headline fetch method. > > Secondly, as far as I know the HTML tags being used in the DSA wml files > > are not valid in RDF. I've looked through the W3C docs on RDF and can't > > find anything that says HTML is allowed in containers. It > > might work in straw but doesn't in NNWL. So I think HTML tags should be > > removed from the RDF format. > > *hmm* Interesting. Then many of the other sites that I have taken a > look at have simiar problems, like e.g. advogato. I've worked this one out, and at least this one's easy: the HTML tags in the RDF need to be encoded as HTML entites. ie, ->> Don't get me wrong, I'm not fully against your suggestions, at least I > am not unconvincable. If some others speak up that your changes are a > good thing I'm willing to change my mind about it. Oh, I expect I'm completely on my own here. =) But if you can at least fix the entity encodings in $moreinfo I would be very grateful: I've confirmed that s#<(/?\w+)>#<$1>#g on that line results in a 'valid' RSS feed according to the online RSS validator: http://feeds.archive.org/validator/ (And more importantly the document renders properly in my RSS reader!) The Perl s// pattern I've used above may not be flexible enough, or not handle 8-bit stuff properly, but there are better ways. You could use the SGML::ISO8859::str2sgml() or HTML::Entities::encode_entities() functions to achieve this, for example. Thanks, Andrew. -- Andrew Shugg <[EMAIL PROTECTED]> http://www.neep.com.au/ "Just remember, Mr Fawlty, there's always someone worse off than yourself." "Is there? Well I'd like to meet him. I could do with a good laugh."
Processed: This is more than one bug
Processing commands for [EMAIL PROTECTED]: > clone 177669 -1 Bug#177669: www.debian.org: http://packages.debian.org/unstable/allpackages.html too big Bug 177669 cloned as bug 186740. > retitle -1 packages.debian.org: special HTML char escaping for short-desc > needed, too Bug#186740: www.debian.org: http://packages.debian.org/unstable/allpackages.html too big Changed Bug title. > severity -1 minor Bug#186740: packages.debian.org: special HTML char escaping for short-desc needed, too Severity set to `minor'. > # will follow soon > tags -1 + patch Bug#186740: packages.debian.org: special HTML char escaping for short-desc needed, too There were no tags set. Tags added: patch > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database)
Bug#186740: Encode HTML special chars in $short_desc
Attached a patch that would encode HTML special chars in the short description (see #181872 for a similar discussion on long descriptions) both in all_packages and in the packages pages. The lines handling & are commented out. See the corresponding discussion in the bug mentioned above. Greetings, Frank Index: htmlscripts/pages.pl === RCS file: /cvs/webwml/packages/htmlscripts/pages.pl,v retrieving revision 1.10 diff -u -IMD5 -r1.10 pages.pl --- htmlscripts/pages.pl24 Mar 2003 15:05:57 - 1.10 +++ htmlscripts/pages.pl29 Mar 2003 15:23:42 - @@ -113,7 +113,11 @@ if ($distrib =~ /(contrib|non-free|non-us|security)/o) { $all_package .= " [$distrib]\n"; } - $all_package .= "\n ".$package{$_}{'short-desc'}."\n"; + my $short_desc = $package{$_}{'short-desc'}; +# $short_desc =~ s/&/\&\;/go; + $short_desc =~ s//\>\;/go; + $all_package .= "\n ".$short_desc."\n"; } $all_package .= "\n"; $all_package .= trailer('../..'); @@ -161,6 +165,9 @@ } $short_desc = $package{$pack}{'short-desc'}; $long_desc = $package{$pack}{'long-desc'}; +# $short_desc =~ s/\&/\&\;/go; + $short_desc =~ s//\>\;/go; $long_desc =~ s,<((URL:)?http://[\S~-]+?/?)>,\<\;$1\>\;,go; $long_desc =~ s,(http://[\S~-]+?/?)((\>\;)?[)]?[']?[.\,]?(\s|$)),$1$2,go; $long_desc =~ s/\A //o; -- *** Frank Lichtenheld <[EMAIL PROTECTED]> *** *** http://www.djpig.de/ *** see also: - http://www.usta.de/ - http://fachschaft.physik.uni-karlsruhe.de/
Bug review
Hi. I've been going through the www.debian.org bug reports and have found some bugs I want to "change". A list follows. If someone do not agrees with one of my planned changes, please say so. I will wait some days and then do the changes. #181480: libqt3/www-debian.org == This was most likely a temporary bug (as Joy's last post already says) Tried to reproduce it and seems to work now. Will close it. #184110: missing link for mac-fdisk.txt This is a problem in the installation manual. Who's responsible for that? boot-floppies? #177870: packages.d.o: DOM caching browsers lose place because of SELECTED in drop-downs = The statements in the bug seem to say: wontfix or done. Any causes not to do this? #134077: packages.debian.org shows old packages immediately after changing sections Hmm, this is one of the "deleted packages' pages are only deleted once a week" bugs. I would recommend to retitle or close it. Other opinions? -- *** Frank Lichtenheld <[EMAIL PROTECTED]> *** *** http://www.djpig.de/ *** see also: - http://www.usta.de/ - http://fachschaft.physik.uni-karlsruhe.de/
consultants additional info pages encoding
Howdy, Do I have to convert ISO-8859-1 characters to the corresponding HTML entities on the additional info pages? Matt -- It's most certainly GNU/Linux, not Linux. Read more at http://www.gnu.org/gnu/why-gnu-linux.html.
Re: consultants additional info pages encoding
On Sat, Mar 29, 2003 at 06:12:51PM -0800, Matt Kraai wrote: > Do I have to convert ISO-8859-1 characters to the corresponding > HTML entities on the additional info pages? No. (Presuming you mean the per-consultant .wml files.) -- 2. That which causes joy or happiness.