Bug#705987: packages.debian.org: changelogs have gone missing

2013-04-23 Thread Tomas Pospisek
Package: www.debian.org
Severity: normal

The package changelogs have gone missing on packages.debian.org:

  $ curl -s http://packages.debian.org/changelogs/pool/main/|html2text 
2>/dev/null
  ** Index of /changelogs/pool/main **
  [[ICO]] Name Last_modified Size Description
  ===
  [[DIR]] Parent_Directory     -  
  ===
   Apache Server at packages.debian.org Port 80

The directory containing the changelogs is empty. Package changelogs in
this directory are being referred to by:

  * aptitude (press 'C' key on a package)
  * packages.debian.org/package (-> Changelog link)
  * PTS (-> changelog link)

Thus currently any of these link to html pages that now do not exist any
more.

Thanks
*t

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.7.0 (SMP w/8 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130423082940.26289.57063.reportbug@hier



Bug#705987: marked as done (packages.debian.org: changelogs have gone missing)

2013-04-23 Thread Debian Bug Tracking System
Your message dated Tue, 23 Apr 2013 16:35:47 +0800
with message-id 

and subject line Re: Bug#705987: packages.debian.org: changelogs have gone 
missing
has caused the Debian Bug report #705987,
regarding packages.debian.org: changelogs have gone missing
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
705987: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=705987
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: www.debian.org
Severity: normal

The package changelogs have gone missing on packages.debian.org:

  $ curl -s http://packages.debian.org/changelogs/pool/main/|html2text 
2>/dev/null
  ** Index of /changelogs/pool/main **
  [[ICO]] Name Last_modified Size Description
  ===
  [[DIR]] Parent_Directory     -  
  ===
   Apache Server at packages.debian.org Port 80

The directory containing the changelogs is empty. Package changelogs in
this directory are being referred to by:

  * aptitude (press 'C' key on a package)
  * packages.debian.org/package (-> Changelog link)
  * PTS (-> changelog link)

Thus currently any of these link to html pages that now do not exist any
more.

Thanks
*t

-- System Information:
Debian Release: 7.0
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.7.0 (SMP w/8 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---
On Tue, Apr 23, 2013 at 4:29 PM, Tomas Pospisek wrote:

> The package changelogs have gone missing on packages.debian.org:

Known issue, being worked on:

http://lists.debian.org/debian-infrastructure-announce/2013/04/msg0.html

-- 
bye,
pabs

http://wiki.debian.org/PaulWise--- End Message ---


Delete my message! It contains spam!

2013-04-23 Thread anacronataff

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=680065#10.


--
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/5176475f.6090...@googlemail.com



Re: make http://www.debian.org/CD/http-ftp/ more compact

2013-04-23 Thread victory
On Mon, 22 Apr 2013 17:43:28 +0900
victory wrote:

>  http://wiki.debian.org/Teams/Webmaster/TODO#line-38:
>  make http://www.debian.org/CD/http-ftp/ more compact (like CD/vendors,
>  need mirror_list.pl tweak, and sorting the user country first)
> this patch does list users' preferred country first, then list other
> countries, both of country list and mirrors list
> NOTE that which web pages users see can be classfied by *language*, not by 
> country

previous patch prints both ftp and http link even if it's blank
 and does not create tags correctly when the country has only 1 mirror


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1
Index: Makefile
===
RCS file: /cvs/webwml/webwml/english/CD/http-ftp/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- Makefile17 Aug 2008 12:46:47 -  1.13
+++ Makefile22 Apr 2013 17:32:01 -
@@ -14,10 +14,11 @@
 
 index.$(LANGUAGE).html: index.wml $(TEMPLDIR)/cdimage.wml \
   $(ENGLISHDIR)/CD/http-ftp/cdimage_mirrors.list \
+  $(ENGLISHDIR)/CD/http-ftp/list.defs \
   $(TEMPLDIR)/release_info.wml $(TEMPLDIR)/release_images.wml
 
 ifeq "$(LANGUAGE)" "en"
 $(ENGLISHDIR)/CD/http-ftp/cdimage_mirrors.list: \
-  $(ENGLISHDIR)/mirror/mirror_list.pl $(ENGLISHDIR)/mirror/Mirrors.masterlist
-   $< -m $(word 2,$^) -t cdimages-httpftp > $@
+  $(ENGLISHDIR)/CD/http-ftp/cd-mirror_list.pl 
$(ENGLISHDIR)/mirror/Mirrors.masterlist
+   $<
 endif
Index: index.wml
===
RCS file: /cvs/webwml/webwml/english/CD/http-ftp/index.wml,v
retrieving revision 1.52
diff -u -r1.52 index.wml
--- index.wml   8 Apr 2011 20:55:19 -   1.52
+++ index.wml   22 Apr 2013 08:25:58 -
@@ -120,9 +120,11 @@
 mirror? If yes, see the instructions on
 how to set up a CD image mirror.
 
-#use wml::debian::countries
-#include "$(ENGLISHDIR)/CD/http-ftp/cdimage_mirrors.list"
-
+list
+#include "$(ENGLISHDIR)/CD/http-ftp/list.defs"
+# translators: put preferred countries as country code in your language as 
preferred= values
+# eg: 
+
 
 
 Unofficial CD/DVD images of the testing and
--- cd-mirror_list.pl
+++ cd-mirror_list.pl
@@ -0,0 +1,125 @@
+#!/usr/bin/perl -w
+#
+# based on mirror_list.pl -- generate cdimage Debian mirror lists
+# authors for original mirror_list.pl:
+# Copyright (C) 1998 James Treacy
+# Copyright (C) 2000-2002, 2007-2008 Josip Rodin
+# Copyright (C) 2005 Joey Hess
+
+use strict;
+  use Time::HiRes;
+  my $st=Time::HiRes::time;
+
+my $m_src = '../../mirror/Mirrors.masterlist';
+my (%countries, %cc, %cn, %p);
+my $count = 0;
+my (@mirror, $crl);
+
+open (SRC, "<", "$m_src") or die "Error: problem opening mirror source file, 
$m_src\n";
+
+foreach () {
+  chomp;
+  next if (/^$/ && !$crl);
+  # keep the previous lines and add this line if this line is a subsequence
+  # process previous line if this line is blank or a new attribute
+  # flush the previous lines and take this line if this is a new attribute
+  if (/^$/) { process_line($crl); $crl = ''; next;}
+  if (/^\s+(.*)$/) { $crl .= "\n$1"; next;}
+  if (/^[\w-]+:\s/) { process_line($crl); $crl = $_; next;}
+  die "Error: unknown format on line $.:\n$_\n";
+}
+# process the last site if exists
+process_line($crl) if($crl);
+&process_host if($p{'cdi'});
+
+# count the number of mirrors
+$count = @mirror;
+
+# Create arrays of countries, with their mirrors.
+foreach my $id (0..$#mirror) {
+  push @{ $countries{ $mirror[$id]{country} } }, $id if (exists 
$mirror[$id]{country});
+}
+
+&cdimage_mirrors;
+  print (Time::HiRes::time - $st);
+
+# only needed lines are passed
+sub process_line {
+  $_ && /^(Site|IPv6|Country|CDImage-(f|ht)tp)/ ? process_line_($_) : return
+}
+
+# this routine deal with a global hash %p
+# using hash enables to flush the values by one instruction
+# gloal value is needed as each line has only one attribute
+sub process_line_ {
+  my ($line) = @_;
+  my $field = '';
+  if($line =~ /^Country:\s*(.+)\s*$/is) { $p{'country'} = $1; }
+  elsif ($line =~ /^IPv6:\s*yes\s*$/is) { $p{'ipv6'} = 1; }
+  elsif ($line =~ /^Site:\s*(.+)\s*$/i) {
+&process_host if ($p{'cdi'});
+%p = ();
+$p{'site'} = $1;
+  }
+  elsif ($line =~ /^(CDimage)-(?ftp|http):\s*(?.*)\s*$/i) {
+foreach my $m('ftp','http'){ $p{$m} = $+{dir} if (lc $+{met} eq $m)}
+$p{'cdi'}  = 1;
+  }
+  elsif ($line !~ /^([\w-]+):\s*(.+)\s*$/s) {
+warn "Error: incorrect line format\n\"$line\"\n";
+  }
+}
+
+# process site's informations when all the entries for the site are stored
+sub process_host {
+  $mirror[$count]{site} = $p{'site'} if $p{'site'};
+  $mirror[$count]{'ipv6'} = 1 if $p{'ipv6'};
+  foreach my $m('ftp','http'){ $mirror[$count]{"cdimage-$m"} = $p{$m} if 
$p{$m}}
+  if ($p{'country'}){
+if ($p{'country'} =~ /^(?(?\w\w)\s+(?.+))\s*$/is

Unable to create Wiki account

2013-04-23 Thread Anirudha Bose
When I try to create a new account in wiki.debian.org, I get this error.

Account creation failed: Error 912: please contact
debian-www@lists.debian.org for help if this continues.

Please help me as I have to submit my GSoC proposal in the wiki.
Thanks,
Anirudha Bose


Re: Unable to create Wiki account

2013-04-23 Thread Steve McIntyre
On Tue, Apr 23, 2013 at 09:06:09PM +0530, Anirudha Bose wrote:
>When I try to create a new account in wiki.debian.org, I get this error.
>
>Account creation failed: Error 912: please contact
>debian-www@lists.debian.org for help if this continues.
>
>Please help me as I have to submit my GSoC proposal in the wiki.

Hi,

Apologies, you've been caught as a false positive in the wiki
anti-spam system. I've just whitelisted you now so things should work
OK.

-- 
Steve McIntyre93...@debian.org
Debian wiki admin - wiki.debian.org


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130423160148.gi28...@einval.com



Package search on packages.debian.org giving a 500 error

2013-04-23 Thread Guruprasad
Hi,

I tried to do a package search on packages.debian.org and it returned
a 500 error. I thought that it could be with the search I did and
tried searching for some common packages like vlc, emacs but still got
the same error. Found this address on the site for reporting issues
and reporting it so that the needful can be done.

--
Thank you.

Regards,
Guruprasad.


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAFZPT6Y1o-sz9ZBc=Dr5or44y+2iw0YHxOUyB=bn_3def7f...@mail.gmail.com



Re: Who's using Debian?

2013-04-23 Thread Victor Nițu
On Tue, 23 Apr 2013 21:07:24 +0300
Victor Nițu  wrote:

> Following a short discussion with Paul Wise, I also attached a diff to
> /users/index.wml which adds a new TOC entry to the "submissions"
> section at the end of the page (which we agreed it would be more
> visible as a TOC item).
> 

I realized my last patch for users/index.wml had some extra markup
(many thanks to victory for the heads up and quick WML tutorial),
removed it, ran a local build to check the output, all fine now.

I attached an updated patch to fix the issue.


-- 
. o .   Victor Nițu
. . o   debian.org.ro
o o o   nightsh @OFTC
Index: index.wml
===
RCS file: /cvs/webwml/webwml/english/users/index.wml,v
retrieving revision 1.201
diff -u -2 -r1.201 index.wml
--- index.wml	1 Nov 2012 18:56:44 -	1.201
+++ index.wml	23 Apr 2013 19:10:06 -
@@ -29,5 +29,5 @@
 
 
-Submissions
+Instructions for adding new entries
 
 


Re: Package search on packages.debian.org giving a 500 error

2013-04-23 Thread Paul Wise
On Wed, Apr 24, 2013 at 1:53 AM, Guruprasad wrote:

> I tried to do a package search on packages.debian.org

The packages site is having trouble, people are working on it:

http://lists.debian.org/debian-infrastructure-announce/2013/04/msg0.html

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-www-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/caktje6f3v16bdioiqf36wkfdefozwqggrkjc+hw4ozym0gq...@mail.gmail.com



unable to create an account

2013-04-23 Thread poornima ks
Hi,

I keep getting an error saying "Account creation failed: Error 923: please
contact debian-www@lists.debian.org for help if this continues." though
all  my details are fine.Please look into it.