Re: Reactive webwml cvs account
Hi Fernando, On Sat, Sep 11, 2010 at 10:09:18PM +0200, Fernando Cerezal wrote: > I am a Debian translator working on debian-l10n-spanish. I write you > because I would like to ask for a writing permission account in webwml > cvs. [...] > I have been asked to register in alioth before doing this request, so > I have just done it with the id kryptos-guest. > > Could you reactivate the account? Now you have a account on alioth, see http://www.debian.org/devel/website/using_cvs we need you to request for the join to the webwml project. Please read carefully http://www.debian.org/devel/website/ (though I guess you already know rules). Thanks and best regards. -- Simon Paillard -- 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/20100912114605.gb26...@dedibox.ebzao.info
Agreed on title for debconf? (was Re: debconf10 is _11th_ debian conference)
On Sun, Aug 15, 2010 at 10:37:40PM +0900, Hideki Yamane wrote: > Hi list, > > at http://www.debian.org/News/2010/20100730 > > Tenth Annual Debian Developer Conference > > No, it's "Eleventh" - since first debconf was debconf*0*... > http://debconf0.debconf.org/ Hi, Sorry to reopen this thread but I read http://www.debian.org/News/2010/20100730 and see that it is now titled as "2010 Annual Debian Conference". FWIW I'm fine with whatever form we use. Is this the agreed-on name? Should I then change the Project History document to make it consistent? I recently added more information on the Debian conferences in that document, see, for example, the references to Debconf at http://www.debian.org/doc/manuals/project-history/ch-detailed.en.html#s4.4 or http://www.debian.org/doc/manuals/project-history/ch-detailed.en.html#s4.6, and would like to avoid getting a bug in the near future related to the Debconf naming. Best regards, Javier signature.asc Description: Digital signature
Re: Agreed on title for debconf? (was Re: debconf10 is _11th_ debian conference)
Hi Javier, On Sonntag, 12. September 2010, Javier Fernández-Sanguino Peña wrote: > I recently added more information on the Debian conferences in that > document, see, for example, the references to Debconf at > http://www.debian.org/doc/manuals/project-history/ch-detailed.en.html#s4.4 > or > http://www.debian.org/doc/manuals/project-history/ch-detailed.en.html#s4.6, > and would like to avoid getting a bug in the near future related to the > Debconf naming. thanks for working on the project-history project! I'd suggest to replace eg "seventh DebConf" with "DebConf6" (or "DebConf 6"?) as this is how we call them ;) cheers, Holger signature.asc Description: This is a digitally signed message part.
Re: Agreed on title for debconf? (was Re: debconf10 is _11th_ debian conference)
Hi, please also replace the links to http://ftp.acc.umu.se/pub/debian-meetings/ with links to http://meetings-archive.debian.net/pub/debian-meetings/ video.debian.net also works but is not "officially" recommended yet. maybe it should? thinking about it, no. meetings-archive is more inclusive, so this it should be. (video.d.n is just more handy to type and memorize.(!)) cheers, Holger signature.asc Description: This is a digitally signed message part.
Partial checkout update script
Hello, What do you think about the following change and the attached script? Any objections to me commiting them? Index: english/devel/website/using_cvs.wml === RCS file: /cvs/webwml/webwml/english/devel/website/using_cvs.wml,v retrieving revision 1.21 diff -u -u -r1.21 using_cvs.wml --- english/devel/website/using_cvs.wml 4 Jun 2010 07:48:47 - 1.21 +++ english/devel/website/using_cvs.wml 12 Sep 2010 15:33:33 - @@ -76,6 +76,11 @@ to retrieve any files from the repository which have changed. The -d update option will add any new directories, automatically. +It will also check out all the directories that were omitted if you performed a +partial checkout — in that case you might want to use the +cvsup.py script. + + You may want to create a ~/.cvsrc file so that you don't have to type some options all the time. For example, it can contain: regards, -- Marcin Owsiany http://marcin.owsiany.pl/ GnuPG: 1024D/60F41216 FE67 DA2D 0ACA FC5E 3F75 D6F6 3A0D 8AA0 60F4 1216 #!/usr/bin/python # A script to recursively update a CVS checkout, skipping directories for # languages you do not know or care about. Useful for translators who only want # a checkout of the directories for English and their own language. # # This special script is needed because: # - "cvs up -d" will check out languages most people usually do not care about # - however plain "cvs up" does not create directories newly created in the # repository # # Copyright 2010 Marcin Owsiany import sys import logging import os import subprocess logging.basicConfig(level=logging.INFO) logging.info('Getting list of entries in the repository.') # Set LANG=C as we need to parse command output env = dict(os.environ) env['LANG'] = 'C' lines = subprocess.Popen(['cvs', 'ls', '-l'], stdout=subprocess.PIPE, env=env).communicate()[0] repo_dirs = set() for line in lines.split('\n'): if not line: pass elif line.startswith('-'): pass elif line.startswith('d'): repo_dirs.add(line.split(None, 4)[4]) else: logging.warn('Unexpected line: %s', line) logging.info('Getting list of known languages.') lines = subprocess.Popen(['make', 'list-languages'], stdout=subprocess.PIPE).communicate()[0] langs = set(lines.split()) logging.info('Getting list of checked-out directories.') local_dirs = set(e for e in os.listdir('.') if os.path.isdir(e)) logging.debug('Dirs in repo: %s', ' '.join(sorted(repo_dirs))) logging.debug('LANGS : %s', ' '.join(sorted(langs))) logging.debug('Dirs in . : %s', ' '.join(sorted(local_dirs))) # We want: # - all currently checked out directories (i.e. ones that exist locally and in # the repository) checked_out = local_dirs.intersection(repo_dirs) # - all directories in repo that are not langs specials = repo_dirs - langs # However we do not want e.g. stale language directories which are being # transitioned to a new name. So we keep a list of known non-language # directories, and we warn (and ignore) if the above encounters anything else. known_specials = set(['Perl', 'po']) mysterious = specials - known_specials to_update = known_specials | checked_out if to_update: logging.info('Updating recursively: %s', ' '.join(to_update)) subprocess.Popen(['cvs', '-q', 'up', '-dP'] + sorted(list(to_update))).wait() else: logging.warn('No directories to update recursively.') logging.info('Updating current directory.') subprocess.Popen(['cvs', '-q', 'up', '-lP']).wait() if mysterious: logging.warn('The following directories exist in repo but are neither ' 'known special dirs nor in LANGUAGES in top Makefile. ' 'Please delete them or add to known_specials in %s: %s', sys.argv[0], ' '.join(mysterious))
Bug#596558: automate processing of http://www.debian.org/CD/vendors/
Package: www.debian.org Severity: wishlist Richard suggested a while ago automating checks around vendors : - at submission time - after submission On Tue, Jul 14, 2009 at 06:19:44PM +0200, Richard Atterer wrote: > Yes, we received your information (for all 3 times that you filled out the > form). Unfortunately, this is a mostly manual process and I only add > batches of new entries every few weeks. Sorry - please be patient. > > To the mailing list: > > Ideally, there should be an automated system where each vendor only submits > a single URL. A script would then crawl the vendor's pages to a certain > depth at regular intervals, and filter out pages that contain predefined > tags for the different Debian CD/DVD variants. This would also make it easy > to weed out stale entries, sites that are down etc. Unfortunately, I never > quite get around to implementing something like this. What script languages > are accepted for this type of thing on Debian servers? (I'm much more of a > PHP than Perl person...) -- Simon Paillard -- 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/20100912154509.ga21...@dedibox.ebzao.info
linuxshop.nu: new releases ? (was: Vendors of Debian CDs in Sweden)
Hi, On Fri, Feb 12, 2010 at 10:32:27PM +0100, Rolf Edlund wrote: > When I check CD Vendors here in Sweden: > http://www.debian.org/CD/vendors/index.en.html#se [...] > Only Linuxshop.nu are still selling Debian. But it's a old Etch (v4.00): > http://www.linuxshop.nu/shoppen/advanced_search_result.php?keywords=debian Do you intend to keep on selling *recent* releases on Debian ? (like the current Lenny 5.0.6 or the upcoming Squeeze ?) Indeed, you can imagine there is little point in keeping links to vendors selling only old releases. Thanks for your answer and best regards. -- Simon Paillard -- 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/20100912161106.gb21...@dedibox.ebzao.info
broken link under http://www.debian.org/devel/debian-jr/compchannel_article (was: Veralteter Link)
Hi Michael, On Sat, Jun 26, 2010 at 03:09:41PM +0200, Michael Kerkhoff wrote: > auf der Seite > http://www.debian.org/devel/debian-jr/compchannel_article > > ist der Link > http://www.linuxforkids.com/ > veraltet. Thanks for the notice. According to the debian-jr lists archive, the project doesn't seem active anymore. Does someone on this list can point us a valid link ? Or we will mark as broken. -- Simon Paillard -- 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/20100912170917.ga28...@dedibox.ebzao.info
comments about http://www.debian.org/international/Polish/
Hi, Sorry for the late reply. On Mon, Jun 28, 2010 at 03:25:16PM -0700, Grzegorz Spyra wrote: > Can you remove entries from "Debian Polish" website ? > The link http://www.debian.org/international/Polish/ over there: This is under Polish team responsability, in copy of this message: Jeśli chciałbyś pomóc w polonizacji Debiana (np. w tłumaczeniu komunikatów systemu, opisów pakietów, interfejsu debianowych programów, tłumaczeniu stron internetowych takich jak ta, tłumaczeniu dokumentacji itp.) lub masz jeszcze jakiś pomysł na to, co mogłoby się znaleźć na tej (lub na innej) stronie, napisz na listę debian-l10n-pol...@lists.debian.org. > - in section "Books" all links lead to pay-books and I don't think it is a > good idea. > > - in section "Other sites": > "Debianusers.pl — > many useful articles" - it is not the party themed Debian or Linux. > This is a commercial site that deals with the census pages. > "Debian Fanatic User — > if you don't know yet why to choose just Debian" - This page does not > exist. -- Simon Paillard -- 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/20100912171246.gb28...@dedibox.ebzao.info
Re: comments about http://www.debian.org/international/Polish/
On Sun, Sep 12, 2010 at 07:12:46PM +0200, Simon Paillard wrote: > Hi, > > Sorry for the late reply. > > On Mon, Jun 28, 2010 at 03:25:16PM -0700, Grzegorz Spyra wrote: > > Can you remove entries from "Debian Polish" website ? > > The link http://www.debian.org/international/Polish/ over there: > > This is under Polish team responsability, in copy of this message: [...] > > > - in section "Books" all links lead to pay-books and I don't think it is a > > good idea. I'm not sure if this is a good idea or not. Surely a more varied set of links would be better. But I don't know whether removing them will make this page better. These links were added by "wojtekz" in revision 1.22 of polish/international/Polish/index.wml with message "Completely new version, mainly by Karol Ossowski". Does anyone know how to get their email addresses? > > - in section "Other sites": > > "Debianusers.pl — > > many useful articles" - it is not the party themed Debian or > > Linux. This is a commercial site that deals with the census pages. This really used to be useful, but now seems cybersquatted. > > "Debian Fanatic User — > > if you don't know yet why to choose just Debian" - This page does > > not exist. Removed both in revision 1.28. Should be pushed to the website in a few hours. -- Marcin Owsiany http://marcin.owsiany.pl/ GnuPG: 1024D/60F41216 FE67 DA2D 0ACA FC5E 3F75 D6F6 3A0D 8AA0 60F4 1216 -- 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/20100912173311.ga6...@beczulka
Processed: tagging 571325
Processing commands for cont...@bugs.debian.org: > tags 571325 + pending Bug #571325 [www.debian.org] packages.debian.org: Please update architecture list from debian-ports. Added tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 571325: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=571325 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- 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/handler.s.c.128432420922999.transcr...@bugs.debian.org