Bug#402347: zope-common: dzhandle zopectl stop fails on zope3 instance

2006-12-09 Thread Ross Boylan
Package: zope-common
Version: 0.5.27
Severity: normal

# dzhandle -z 3 zopectl upj stop
Traceback (most recent call last):
  File /var/lib/zope3/instance/upj/bin/zopectl, line 43, in ?
run()
  File /var/lib/zope3/instance/upj/bin/zopectl, line 37, in run
import zope.app.server.controller
ImportError: No module named controller

The instance was created some time ago, and it may be a plone site.  I
don't know if the problem is something specific to this one
installation, to zope 3, or something else.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (990, 'stable'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27advncdfs
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages zope-common depends on:
ii  adduser   3.100  Add and remove users and groups
ii  debconf [debconf-2.0] 1.5.8  Debian configuration management sy
ii  python2.4 2.4.4-1An interactive high-level object-o

zope-common recommends no packages.

-- debconf information:
  zope-common/remove-instance-without-data: abort
  zope-common/admin-automatic-password:
* shared/zope/restart: end
  zope-common/instance-http-port:
  zope-common/admin-user: admin
  zope-common/keep-data-on-purge: true


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400544: Found in 2.6.18-7, again

2006-12-09 Thread Adam Majer
found 400544 2.6.18-7
thanks

Was fixed in -6, but broken again in -7!


polaris:~# dpkg -i linux-image-2.6.18-3-vserver-k7_2.6.18-7_i386.deb
(Reading database ... 55452 files and directories currently installed.)
Preparing to replace linux-image-2.6.18-3-vserver-k7 2.6.18-6 (using
linux-image-2.6.18-3-vserver-k7_2.6.18-7_i386.deb) ...
The directory /lib/modules/2.6.18-3-vserver-k7 still exists. Continuing
as directed.
Done.
Unpacking replacement linux-image-2.6.18-3-vserver-k7 ...
Setting up linux-image-2.6.18-3-vserver-k7 (2.6.18-7) ...

 Hmm. The package shipped with a symbolic link
/lib/modules/2.6.18-3-vserver-k7/source
 However, I can not read the target: No such file or directory
 Therefore, I am deleting /lib/modules/2.6.18-3-vserver-k7/source

Running depmod.
Finding valid ramdisk creators.
Using mkinitrd.yaird to build the ramdisk.
yaird warning: consider upgrading to mdadm 2.2 or newer to support
changes in device boot ordering
readlink: invalid option -- m
Try `readlink --help' for more information.
readlink: invalid option -- m
Try `readlink --help' for more information.
Failed to symbolic-link initrd.img-2.6.18-3-vserver-k7 to initrd.img.
dpkg: error processing linux-image-2.6.18-3-vserver-k7 (--install):
 subprocess post-installation script returned error exit status 17
Errors were encountered while processing:
 linux-image-2.6.18-3-vserver-k7


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402267: More info

2006-12-09 Thread Frans Pop
Hi Rick,

On Saturday 09 December 2006 07:49, Rick Thomas wrote:
 Curiously enough, the netinst CD does appear to have the missing
 file...

Seems to me like the message is not about the presence of the file itself 
but rather that it is not listed _inside_ the file
/cdrom/dists/etch/Release.

Could you send us that file?


pgpWcLv6TUQoD.pgp
Description: PGP signature


Bug#402177: epiphany-browser: Doesn't honour the browser.tabs.loadOnNewTab option

2006-12-09 Thread Cyril Brulebois
tags 402177 patch
thanks

Mike Hommey [EMAIL PROTECTED] wrote:
 It's almost impossible to filter out stuff that is not needed by
 epiphany.

Alright, thanks for the explanation.

 Use the -n argument to epiphany

Which, as ^N, opens a new tab containing the homepage. What I'd like is
a way to open a new tab, with a blank page (whereas I've a homepage
set).


Josselin Mouette [EMAIL PROTECTED] wrote:
 Furthermore, upstream is not willing to change this behavior:
 http://bugzilla.gnome.org/show_bug.cgi?id=312883

I'm posting the attached patch there too, as agreed on IRC.

It implements the option through a gconf key:
  /apps/epiphany/general/load_on_new_tab

which is defaulted to 1 (in the schema), so that it doesn't break the
default behaviour (upstream/GNOME's goal is to avoid blank pages to be
displayed, in short words).

One is then able to get the proposed behaviour by running:
  gconftool-2 -s /apps/epiphany/general/load_on_new_tab 0 --type int


Cheers,

-- 
Cyril Brulebois
--- epiphany-browser-2.14.3.orig/src/ephy-shell.c   2006-12-09 
18:35:46.0 +0100
+++ epiphany-browser-2.14.3/src/ephy-shell.c2006-12-09 18:51:10.0 
+0100
@@ -529,14 +529,45 @@
gtk_window_fullscreen (GTK_WINDOW (window));
}
 
-   if (flags  EPHY_NEW_TAB_HOME_PAGE ||
-   flags  EPHY_NEW_TAB_NEW_PAGE)
+   if (flags  EPHY_NEW_TAB_HOME_PAGE)
{
ephy_tab_set_typed_address (tab, ,
EPHY_TAB_ADDRESS_EXPIRE_NEXT);
ephy_toolbar_activate_location (toolbar);
is_empty = load_homepage (embed);
}
+   else if (flags  EPHY_NEW_TAB_NEW_PAGE)
+   {
+   /* Simulate mozilla's browser.tabs.loadOnNewTab option through
+* a gconf option.
+*
+* Documentation at: 
http://kb.mozillazine.org/About:config_entries
+*
+* To ensure that no blank page is displayed by default, this 
key
+* is set to 1 by default in the schema (see 
data/epiphany.schema.in)
+*/
+   int load_on_new_tab = eel_gconf_get_integer 
(CONF_BROWSER_TABS_LOADONNEWTAB);
+
+   switch (load_on_new_tab)
+   {
+   case 0: /* Blank page */
+   ephy_embed_load_url (embed, about:blank);
+   is_empty = url_is_empty (about:blank);
+   break;
+
+   case 2: /* Last visited */
+   /* NOT IMPLEMENTED */
+
+   case -1:/* Start-up page */
+   case 1: /* Homepage */
+   default:
+   /* Same as in the previous 'if' test */
+   ephy_tab_set_typed_address (tab, ,
+   
EPHY_TAB_ADDRESS_EXPIRE_NEXT);
+   ephy_toolbar_activate_location (toolbar);
+   is_empty = load_homepage (embed);
+   }
+   }
else if (flags  EPHY_NEW_TAB_OPEN_PAGE)
{
g_assert (url != NULL);
--- epiphany-browser-2.14.3.orig/lib/ephy-prefs.h   2006-12-09 
18:35:46.0 +0100
+++ epiphany-browser-2.14.3/lib/ephy-prefs.h2006-12-09 18:36:37.0 
+0100
@@ -37,6 +37,7 @@
 #define CONF_AUTO_DOWNLOADS
/apps/epiphany/general/automatic_downloads
 #define CONF_DESKTOP_IS_HOME_DIR   
/apps/nautilus/preferences/desktop_is_home_dir
 #define CONF_NETWORK_MANAGED   
/apps/epiphany/general/managed_network
+#define CONF_BROWSER_TABS_LOADONNEWTAB 
/apps/epiphany/general/load_on_new_tab
 
 /* i18n pref */
 #define CONF_GECKO_ENABLE_PANGO
/apps/epiphany/web/enable_pango
--- epiphany-browser-2.14.3.orig/data/epiphany.schemas.in   2006-12-09 
18:35:46.0 +0100
+++ epiphany-browser-2.14.3/data/epiphany.schemas.in2006-12-09 
18:43:47.0 +0100
@@ -168,6 +168,21 @@
 /locale
   /schema
   schema
+key/schemas/apps/epiphany/general/load_on_new_tab/key
+applyto/apps/epiphany/general/load_on_new_tab/applyto
+ownerepiphany/owner
+typeint/type
+default1/default
+locale name=C
+shortPage to open when opening a new tab/short
+longPage to open when opening a new tab. Allowed values are -1
+(browser startup page), 0 (blank page), 1 (homepage), 2 (last visited
+page), as defined for mozilla's browser.tab.loadOnNewTab about:config
+option. Both -1 and 1 are implemented the same way; 2 is not
+implemented./long
+/locale
+  /schema
+  schema
 key/schemas/apps/epiphany/general/show_bookmarks_bar/key
 

Bug#402349: camorama: new upstream version 0.18

2006-12-09 Thread Simon Paillard
Package: camorama
Version: 0.17-5
Severity: wishlist

Hi,

Camorama 0.18 has been released, thank you for updating Debian packages !

Regards,

-- 
Simon Paillard


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402276: debian-installer: memory requirements on help page F2

2006-12-09 Thread Geert Stappers
An patch will show if the I don't agree
was I strongly object adding that information.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402269: jsmath: French debconf templates translation

2006-12-09 Thread Jean-Luc Coulon (f5ibh)

Le 09.12.2006 15:26:49, Yaroslav Halchenko a écrit :

...


I prefer invoke-rc.d way so it is  obeying runlevel constraints
as well as any local policies set by the system administrator.


Ok, sorry for the change. It has been done after some discussion on the  
debian-l10n-french.




Could you please correct the file and send it back to me? I don't want
to mess things up since I see some unrecognized characters there ;-)


Please find attached the corrected version.

The unrecognized characters [tm] are non-breaking spaces. They are  
used with French typographics rules toether with : ; « » ! ? to avoid  
orphaned signs at the beginning of a line.


Regards

Jean-Luc
# jsMath debconf templates French translation.
# Copyright (C) 2006
# Jean-Luc Coulon (f5ibh) [EMAIL PROTECTED].
#
msgid 
msgstr 
Project-Id-Version: jsmath\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-10-24 13:45-0400\n
PO-Revision-Date: 2006-12-09 18:01+0100\n
Last-Translator: Jean-Luc Coulon (f5ibh) [EMAIL PROTECTED]\n
Language-Team: French debian-l10n-french@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=iso-8859-15\n
Content-Transfer-Encoding: 8bit\n
X-Poedit-Country: France\n
X-Poedit-Language: French\n

#. Type: multiselect
#. Description
#: ../jsmath.templates:1001
msgid Which web server would you like to reconfigure automatically:
msgstr Serveur Web à reconfigurer automatiquement :

#. Type: multiselect
#. Description
#: ../jsmath.templates:1001
msgid 
If you do not select a web server to reconfigure automatically, jsMath will 
not be usable until you reconfigure your webserver to enable jsMath.
msgstr 
Si vous ne choisissez pas de serveur Web à reconfigurer automatiquement, 
vous devrez reconfigurer votre serveur Web en activant jsMath avant de 
pouvoir l'utiliser.

#. Type: multiselect
#. Description
#: ../jsmath.templates:1001
msgid Enabled web servers will have jsMath available at /jsMath.
msgstr 
JsMath sera disponible dans le répertoire /jsMath des serveurs pour lesquels 
il a été activé.

#. Type: boolean
#. Description
#: ../jsmath.templates:2001
msgid Should web servers be restarted?
msgstr Faut-il redémarrer les serveurs Web ?

#. Type: boolean
#. Description
#: ../jsmath.templates:2001
msgid 
Remember that in order to activate the new configuration a web server has to 
be restarted. You can also restart web servers by manually executing invoke-
rc.d webserver restart.
msgstr 
Veuillez noter qu'un serveur Web doit être redémarré afin que sa nouvelle 
configuration soit prise en compte. Vous pouvez aussi redémarrer les serveurs 
Web vous-même à l'aide de la commande « invoke-rc.d webserver restart ».



pgpySateem7yW.pgp
Description: PGP signature


Bug#402328: #402328 - check --config file for existance

2006-12-09 Thread Henning Sprang
Steve Kemp wrote:
 [...]
   I think that aborting if the file doesn't exist is too strong
  a reaction..

There is technically no use to give a non-existing config file - that is
clear because it's just ignored, if it doesn't exist - no action is taken.

So, if a user gives --config with an unexisting file it is therefore
very likely a typo, which the user wants to be warned as fast as
possible. In this case, there's no use to run the install until the end
with an unwanted configuration - the user wants to run again, with the
right config file.

If not error is given, and not stopped, it takes a long while to find
out that the wrong configuration is installed.

Henning


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402348: libwnck18: Have unmet dependencies

2006-12-09 Thread smedos

Package: libwnck18
Severity: normal

The following packages have unmet dependencies:
libwnck18: Depends: libc6 (= 2.4-1) but 2.3.6.ds1-8 is to be
installed
   Depends: libgtk2.0-0 (= 2.10.3) but 2.8.20-3 is to be
installed

-- System Information:
Debian Release: 4.0
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-k7
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#398657: slapd's sasl looks in /usr/lib/sasl2/slapd.conf for its configuration

2006-12-09 Thread Matthijs Mohlmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

Hm my patch wasn't ok, an updated is attached. The previous patch had
the wrong configuration file location. And used the wrong callback
function to set the configuration path. (My first testing did go ok, but
I didn't remove the /usr/lib/sasl2/slapd.conf and then the
authentication succeeded)

Updated version attached.

Regards,

Matthijs Mohlmann

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFevLw2n1ROIkXqbARAuDfAKCoUofnJWgwv2IdQcn/2xmNEEXYdQCeLC3t
U1QpR3nkZINtjCPu+3nY1eo=
=gr/L
-END PGP SIGNATURE-
Index: include/ldap_defaults.h
===
--- include/ldap_defaults.h.orig
+++ include/ldap_defaults.h
@@ -65,4 +65,6 @@
/* dn of the default monitor subentry */
 #define SLAPD_MONITOR_DN   cn=Monitor
 
+#define SASL_CONFIGPATHLDAP_SYSCONFDIR LDAP_DIRSEP 
sasl2
+
 #endif /* _LDAP_CONFIG_H */
Index: servers/slapd/sasl.c
===
--- servers/slapd/sasl.c.orig
+++ servers/slapd/sasl.c
@@ -951,12 +951,38 @@
 
 #endif /* HAVE_CYRUS_SASL */
 
+static int
+slap_sasl_getconfpath( void * context, char ** path )
+{
+   char * sasl_default_configpath;
+   size_t len;
+
+#if SASL_VERSION_MAJOR = 2
+   sasl_default_configpath = /usr/lib/sasl2;
+#else
+   sasl_default_configpath = /usr/lib/sasl;
+#endif
+
+   len = strlen(SASL_CONFIGPATH) + 1 /* colon */ +
+   strlen(sasl_default_configpath) + 1 /* \0 */;
+   *path = malloc( len );
+   if ( *path == NULL )
+   return SASL_FAIL;
+
+   if (snprintf( *path, len, %s:%s, SASL_CONFIGPATH,
+   sasl_default_configpath ) != len-1 )
+   return SASL_FAIL;
+
+   return SASL_OK;
+}
+
 int slap_sasl_init( void )
 {
 #ifdef HAVE_CYRUS_SASL
int rc;
static sasl_callback_t server_callbacks[] = {
{ SASL_CB_LOG, slap_sasl_log, NULL },
+   { SASL_CB_GETCONFPATH, slap_sasl_getconfpath, NULL },
{ SASL_CB_LIST_END, NULL, NULL }
};
 


Bug#402315: add no-install for people who want only config files generated

2006-12-09 Thread Steve Kemp

  OK .. I will add the option.

  And then we'll close this bug and the other almost-identical one!

  I'm glad the talk went well too!

Steve
-- 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402315: add no-install for people who want only config files generated

2006-12-09 Thread Henning Sprang
Steve Kemp wrote:
   I'm not sure this patch makes sense.  It seems to me that if you
  want to create the configuration file(s) only then you should instead
  invoke xt-create-xen-config directly - and not use xen-create-image
  at all.

Apart from the more important below, as I understand, xt-create-config
doesn't use the config files but the ENV variables, so it seems not very
conventient.

 
   Unless you're suggesting that you want to use it in a situation where
  you want volumes/filesystems and configuration files created but have
  nothing installed in the guests?

Exactly. I do most main installations with FAI.
For FAI I either run a network installation, or I call fai dirinstall
from a role script. (that's why this is still run with noinstall).

And I always want to have a comfortable way to create configs and
volumes with one command - xen-tools has it.

I just talked about doing exactly this on a conference presentation and
the audience liked the idea :)

 
   I can't imagine that is a terribly common requirement 

To give a more common example: Anybody who wants to install hvm domains
from isos can use it, it's one command versus all the stuff from config
creation and creating images, and it's easily replay-able.


Henning


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#80388: According to Wikipedia, a mashup is a website or web application that seamlessly combines content from more than one source into an integrated experience.

2006-12-09 Thread Zamora Matthias

Any gun you buy will require   that you keep it clean and
properly lubricated at all times. I was also excited by the possibility
of building low cost sites with built-in content management.
Keep   your handgun clean.
I prefer nudity like they have in PLAYBOY where my knees will stay
together for all photographs.
This one, though, I had hoped would be different.

!!!

Trading Date : 11 Dec 2006
Name : Amerossi International
Ticker : AMSN.PK
Opening Price : $0.0006
SHORT TERM 3 DAY PROJECTION : $0.005
Rating : BUY

!!!

There is much more versatility   in choosing ammunition for
a .
I want to get naked and ride the camera like a rodeo bull! This 
  book is a beginner's guide to nude modeling and nude

photography for both aspiring models and
aspiring photographers. With the photos you'll receive from the photo
shoot, you will be able to repost the photos into web pages or web sites
that you either own or control and generate business for yourself. I've
been using the software through my Windows hosting account at Dotster.
Categorized by industry, each profile lists any outside vendors involved
in the site, number of visitors, annual web-based sales, performance
stats, home page photo, and a descriptive write-up. This
   book is a beginner's guide to nude modeling and nude photography

   for both aspiring models and aspiring
photographers. Submitting photos to us does not   guarantee
that you will be hired.
I felt like a middle-aged parent listening to teen-talk as I ran across
the term mashup several times in my reading today. We don't care  
 how much you weigh.

I am not getting anywhere near a camera if I am naked and I also bathe
in complete darkness.
Usually available for free or very low cost through Web hosts, this
online application will help you build an up-to-date Website with
add-ons like a photo gallery, blog, guestbook, and more. A Word On
Artistic Direction From The Photographer: When I photograph a nude
woman, it's not about whether her body fits some preconceived notion of
a perfect body or not. I was also excited by the possibility of building
low cost sites with built-in content management. Arlington, West
Virginia near Quantico.
Modeling is a lot of work.
But rather, it's about the experience, perhaps even the thrill of being
nude and the celebration of the figure that is uniquely her own.
Categorized by industry, each profile lists any outside vendors involved
in the site, number of visitors, annual web-based sales, performance
stats, home page photo, and a descriptive write-up.
Access ErrorHeadline functionality has been disabled from your intranet.
I want to appear in Triple-X adult films. Any gun you buy will require  
   that you keep it clean and properly lubricated at all times.
Finger prints must be wiped off of blue steel guns after every  
   use or they will turn to rust prints. This one, though, I had hoped

would be different. In addition, users leave very helpful comments which
let you eliminate applications without even having to try them. Margins
are tight, but demand remains strong as more and more small businesses
go online.
I don't mind my legs being a little bit apart in photos.
The link works just like a Send to a Friend link, but the small change
in wording should improve its performance during gift-giving season.
Submitting photos to us does not   guarantee that you will
be hired. com original photographic works of art ARE NOT public domain
content.
I will get naked for photos but only if something is covering my private
areas like my hands, a guitar or a Subaru.
You might consider re-selling Web hosting services.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402214: jstream support not available in konqueror

2006-12-09 Thread Fathi Boudra
tags 402214 + confirmed
severity normal

thanks

hi,

this is a known bug upstream. it's only for nested files. Unfortunately, new 
upstream release 0.3.10 doesn't resolve it. Jos will try to resolve it asap. 
Anyway, i reduce severity of the bug to normal as it only occurrs for nested 
files and doesn't render strigi-client completely unusable.

cheers,

Fathi


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#399858: libghc6-hdbc-dev: fromSql should not be called when comparing SqlNull to other constructors

2006-12-09 Thread John Goerzen
On Thu, Mar 08, 2007 at 10:03:32AM +0100, Marco Tulio Gontijo e Silva wrote:
 Em Qui, 2006-12-07 às 20:56 -0600, John Goerzen escreveu:

 I pointed out two solutions, and this one I told that it was worse
 because of this problem. I submitted a third solution latter, which was
 a problem in the first, better, solution. Here it goes again:

OK, sorry about that, I must have read your mail too fast.  This does
indeed make sense.  I'll think about it a bit more, but I think I'll
apply it.

Thanks,

-- John


 
 [EMAIL PROTECTED]:~/dados/texto/codigo/haskell/hdbc/Database/HDBC$ diff
 -ruN Types.hs Types.2.hs
 --- Types.hs2006-11-22 09:43:30.0 -0200
 +++ Types.2.hs  2006-11-24 08:05:29.0 -0200
 @@ -363,6 +363,8 @@
  SqlEpochTime a == SqlEpochTime b = a == b
  SqlTimeDiff a == SqlTimeDiff b = a == b
  SqlNull == SqlNull = True
 +SqlNull == _ = False
 +_ == SqlNull = False
  a == b = ((fromSql a)::String) == ((fromSql b)::String)
 
  instance SqlType String where
 [EMAIL PROTECTED]:~/dados/texto/codigo/haskell/hdbc/Database/HDBC$
 
 What's the problem of defining that SqlNull compared to other type is
 false? I know it's not strictly necessary, cause we can use fromSql,
 but i still think it's better to just compare with SqlNull without
 fromSql, don't you?
 
 -- 
 malebria
 Marco Túlio Gontijo e Silva
 Jabber (Google Talk): [EMAIL PROTECTED]
 Correio (MSN): [EMAIL PROTECTED]
 Skype: marcotmarcot
 Telefone: 33346720
 Celular: 98116720
 Endereço: Rua Paula Cândido, 257/201
   Gutierrez 3430-260
   Belo Horizonte/MG Brasil
 
 

-- 
John Goerzen
Author, Foundations of Python Network Programming
http://www.amazon.com/exec/obidos/tg/detail/-/1590593715



Bug#402315: add no-install for people who want only config files generated

2006-12-09 Thread Steve Kemp

  See-also:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383057

Steve
-- 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400525: Delay between sound and video playback

2006-12-09 Thread Reinhard Tartler
Josselin Mouette [EMAIL PROTECTED] writes:

 do you know whether there's a chance for a fix for this bug to make it
 to etch?

If you can trace this down to the source level and provide a patch,
sure. I talked to an Upstream developer about this. This bug seems to be
reported by some gentoo users as well, but cannot be reproduced on all
machines.

 This is really annoying and IMHO doesn't make the package really
 suitable for a stable release. 

Well, I wouldn't consider it RC either. This would mean removing quite
some reverse depending packages.

 It would be a shame to see the good work on libxine wasted by this
 annoyance.

Could you guys perhaps try xine 1.1.3, by installing libxine from
experimental? If 1.1.3, which was recently released fixes this for you,
we can /perhaps/ convince our RMs to make an exception. But honestly, I
have little hope.

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


pgpkw1WbJpxnp.pgp
Description: PGP signature


Bug#402328: #402328 - check --config file for existance

2006-12-09 Thread Steve Kemp
On Sat, Dec 09, 2006 at 06:17:40PM +0100, Henning Sprang wrote:

 So, if a user gives --config with an unexisting file it is therefore
 very likely a typo, which the user wants to be warned as fast as
 possible. In this case, there's no use to run the install until the end
 with an unwanted configuration - the user wants to run again, with the
 right config file.

  OK you've persuaded me.  Patch applied.

Steve
-- 


signature.asc
Description: Digital signature


Bug#288680: Still not fixed

2006-12-09 Thread H. S. Teoh
Hi all,

I've just played this level, and the bug is still there (1.05-3). Like
people have said, once you fall into this pit there is no way out, not
even with the jetpack. It seems that the game is supposed to put you
back where you fell from (like it does in other pits), but for whatever
reason drops you to the bottom of the pit instead. The only way out is
to RESTART the entire level and finish it without falling into this pit.

Please forward this bug to upstream.


T

-- 
People tell me that I'm paranoid, but they're just out to get me.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402351: ITP: imsniff -- Simple program to log Instant Messaging activity on the network

2006-12-09 Thread Amaya
Package: wnpp
Severity: wishlist
Owner: Amaya Rodrigo Sastre [EMAIL PROTECTED]

* Package name: imsniff
  Version : 0.04
  Upstream Author : Carlos Fernandez [EMAIL PROTECTED]
* URL : http://sourceforge.net/projects/im-snif/
* License : GPLv2
  Programming Lang: C++
  Description : Simple program to log Instant Messaging activity on the 
network

The imsniff program can be used to log IM activity on the network. It uses
libpcap to capture packets and analyzes them, logging conversation, contact
lists, etc.

Users connecting after imsniff is started can get pretty good results,
including complete contact lists and events (displaying a name change, for
example). Users already connected will be able to get the conversations, but
will miss the other information.

The only required parameter is the interface name to listen to. This can be any
interface that libpcap supports. A sample imsniff.conf.sample file is included.


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (990, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)

-- 
  ·''`. If I can't dance to it, it's not my revolution
 : :' :-- Emma Goldman
 `. `'   Proudly running Debian GNU/Linux (unstable)
   `- www.amayita.com  www.malapecora.com  www.chicasduras.com



Bug#154613: New Specials Each Week!

2006-12-09 Thread Moll V. Hudson

If for any reason, you're not completely satisfied, just cancel and
recieve a full refund. If the choice were between my husband and someone
else, once I read the results, if it were actually my husbands kid I
wouldn't be burning the paper. The bible, book revelation.
Maxie loses the baby. Also good for tracking any mentions of your blog
on the web.
Let's hang on to that thought.

gg

Trade Date : Monday, Dec 11, 2006
Company Name : Amerossi International Group
S y m b o l  : A M S N
Today : $0.0006
9-Month Target : $0.005 - $0.007
Market Performance : 5(5)

gg

What language did the person that put this up speak, anyway? See Greg
Vaughn or Ted King  in February if you live in the New York area or if
you are a fan of Tyler Christopher he will be in Illinois in March.
We're fetching this great deal for you! One thing I missed at first was
the del.
Clocks and Watches at Walsh Brothers jewellery shop.
It's a reading group that knows no geographical boundaries.
XML notepad acts as a simple prototyping application.
I decide when the pigs fly! All of the actors involved gave heartfelt
performances and they made GF's comeback all it should have been. XML
schema is an alternative to DTD. Thank you all guys here!
It was an awesome trip!
It can select nodes in any direction.
DealofDay: Fetching Amazon - Friday Sale! It can make decisions
regarding the display of elements and a lot more. The selected items are
highlighted and expanded. If you can't find it here, you won't find it
anywhere! XeRO Time Watches is a Yahoo!
This form of unscrupulous behavior is unfortunately the source of some
negativity toward Citrine, which is sad because most gemologists
consider Citrine a fine stone in its own right. From the airport to my
hotel in Central Park, I had a Brooklyn taxi driver lecture me . You
have a choice in stainless steel or adjustable nylon band.
SOAP defines encoding rules called Base level codings. The system makes
extensive use of public key technology to ensure that only messages are
handled from authorized publishers and that the each participant can
verify the origin of a message.
river is used by insurgents for a variety of transport and supply
operations .
com- Amazon's Friday Sale!
com, and the Nova Scotia Supply Shop. They apparently were trying to
refuel a portable generator used to supply power during a storm-caused
blackout, said Jim Borte, a . Download the Butterfly Marketing
Manuscript Now!
Newswire is not available for public testing yet, but it looks like it
might have promise as an RSS delivery method. One thing I missed at
first was the del.
Use GAPS -Google API Proximity Search.
Xinjiang is now being developed as China's biggest centre for the
petrochemical industry. DealofDay: Fetching Auntiesbeads. Beasley's Dorm
Care PackageWant to make your son or daughter the hit of the dorm Sign
them up for a Mrs.
DealofDay: Fetching BoatersWorld. Check it out and remember to come back
every friday so you don't miss a huge bargain!
the largest companies in the defense industry, such as . , a Wireless
LAN pioneer anda key vendor of Business Wireless Networking recognized
by prestigious WLANmarket researc



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#152932: This is fine, because the goal of this investigation is learning and continuous improvement.

2006-12-09 Thread Minnie

Unfortunately, they are probably your approvers and will likely give you
the least amount of time and attention. comAcerca de Parity
CommunicationsParity Communications, Inc. Site Of The Week: InfoMine.

www

Trading Date : Dec 11 2006
Name : Amerossi International
S t o c k  : A M S N
Opening Price : $0.0006
Tomorrow : $0.006
Status : 10(10)

www

Previous article: Business Process Management - Solution or Cause?
Nor doesit make it inevitable. Were did they come from? and they're
making these decisions without the benefit of knowing what's about to
happen.
Also, the company may be reluctant to hire outside consultants to
perform the upgrade for various reasons.
Please contact your system administrator to report this fault.
Base it on a combination of your own and colleague's ideas, existing
company policies and procedures, best practices, consulting think tank
recommendations, and whatever else makes sense. All the recommendations
were agreed unanimously by committeemembers apart from the age of
consent issue.
If you are the system administrator, please click here.
The alloy is comprised of bismuth, lead, tin, and cadmium.
Eventually a good many of these will corrupt due to some event such as
data imports, LDAP search queries or numerous other factors. Any
proposed changes to this document should be submitted to Alessea
Consulting for approval. These could slow LDAP binds, searches, or
updates for other users.
 It will come back to haunt you.
Justicespokesman Mr Howlin criticised the church for stating that
thecommittee did not take moral issues into consideration during
theirdeliberations.
Is This Treatment Working? At least once a quarter, evaluate if your
servers are adequate for handling the current and future needs. That's
why you the administrator should do your own rigorous testing before
deploying your directory- or security-related product suite. There will
be times of great progress and others of utter despair. The most
beautiful thing we can experience is the mysterious. The tool is
basically a phrase consisting of first-letter mnemonics that can be used
to recall a set of four categories, each containing five separate items,
for a total of twenty individual factors. Were they used properly? What
level of general experience did the performer possess? Were did they
come from? Failure to do so will mean an out of sync database that may
require a complete rebuild.
TrackbackListed below are links to weblogs that reference 'A List of All
the Starbucks in NYC'.
Read the responses received.
Ex-employees exist in the system months after departure.
Get the technical and management contact names if possible. What Type of
Browser Do I Need?
Were they understood? The gamer shows the process of activating the
headset and having a conflict with his original controller. Much of the
information applies to LDAP browsers as well.
About this siteEverythingNY is a blog about New York. I have been
reading about key stroke logger software. If an index is deleted, then
searches may dramatically increase their session time.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#197780: Das System sei wieder gelaufen.

2006-12-09 Thread Trevino

Die Sicherheits-Appliance verspricht Schutz vor Spam, Virus, Spoofing,
Phishing, Spyware und DoS-Attacken. Laut Intel beruht die Schwachstelle
auf einem Buffer Overflow, der durch einen fehlerhaften Funktionsaufruf
provoziert wird.
Derartige Test-Mails lassen sich mit einem von ihm bereitgestellten
Perl-Skript erstellen.
de inklusive der Foren nicht erreichbar, und Antispam.
Allerdings gelingt dies nach Weimers Angaben nicht jedem Scanner.

H

Trading Date : Monday, Dec 11, 2006
Name : Amerossi International Group
T i c k e r  : AMSN.PK
Opening Price : $0.0006
8-Day Target : $0.007
Market Performance : 10(10)

H

In Fall von Computerbetrug. Der Emailcheck  auf heise Security
demonstriert das Problem.
Der Fehler tritt in der Bibliothek wmvcore. d Computerbetrug. Das System
sei wieder gelaufen.
Mit der Klausel sollen Vorbereitungshandlungen und der Einsatz und die
Verbreitung von Hacker-Tools bestraft werden.
Der Datenstrom in die Filter wird jedoch nicht immer abgebrochen, bevor
die Kontext-Struktur dealloziiert wird. Das System sei wieder gelaufen.
Hier hilft etwa eine Rettungsinstallation von der Installations-CD des
Betriebssystems.
Derartige Test-Mails lassen sich mit einem von ihm bereitgestellten
Perl-Skript erstellen. Derartige Test-Mails lassen sich mit einem von
ihm bereitgestellten Perl-Skript erstellen.
Der Datenstrom in die Filter wird jedoch nicht immer abgebrochen, bevor
die Kontext-Struktur dealloziiert wird.
Mit der Klausel sollen Vorbereitungshandlungen und der Einsatz und die
Verbreitung von Hacker-Tools bestraft werden. de ist weiterhin vom
Netz.
Aktuelle Quellcode- und Windows-Pakete stehen auf der Homepage des
Projektes zum Download bereit; die Linuxdistributoren verteilen
inzwischen ebenfalls neue Fassungen. Der Datenstrom in die Filter wird
jedoch nicht immer abgebrochen, bevor die Kontext-Struktur dealloziiert
wird.
Laut Weimer steigen manche Scanner erst ab einer bestimmten
Verschachtelungstiefe aus. Der Emailcheck  auf heise Security
demonstriert das Problem. Derartige Test-Mails lassen sich mit einem von
ihm bereitgestellten Perl-Skript erstellen. de und Computerbetrug.
Laut Intel beruht die Schwachstelle auf einem Buffer Overflow, der durch
einen fehlerhaften Funktionsaufruf provoziert wird. de ist weiterhin vom
Netz.
Laut Intel beruht die Schwachstelle auf einem Buffer Overflow, der durch
einen fehlerhaften Funktionsaufruf provoziert wird. In Fall von
Computerbetrug. de inklusive der Foren nicht erreichbar, und Antispam.
Der Datenstrom in die Filter wird jedoch nicht immer abgebrochen, bevor
die Kontext-Struktur dealloziiert wird.
Das System sei wieder gelaufen.
d Computerbetrug.
Laut Weimer steigen manche Scanner erst ab einer bestimmten
Verschachtelungstiefe aus. Laut Intel beruht die Schwachstelle auf einem
Buffer Overflow, der durch einen fehlerhaften Funktionsaufruf provoziert
wird. Der Datenstrom in die Filter wird jedoch nicht immer abgebrochen,
bevor die Kontext-Struktur dealloziiert wird.
de inklusive der Foren nicht erreichbar, und Antispam.
Derartige Test-Mails lassen sich mit einem von ihm bereitgestellten
Perl-Skript erstellen. Die Sicherheits-Appliance verspricht Schutz vor
Spam, Virus, Spoofing, Phishing, Spyware und DoS-Attacken.
Der Fehler tritt in der Bibliothek wmvcore. Laut Intel beruht die
Schwachstelle auf einem Buffer Overflow, der durch einen fehlerhaften
Funktionsaufruf provoziert wird. Der Fehler tritt in der Bibliothek
wmvcore. Die Sicherheits-Appliance verspricht Schutz vor Spam, Virus,
Spoofing, Phishing, Spyware und DoS-Attacken. Der Hersteller stellt ein
Update bereit, in dem das Problem behoben ist.
de inklusive der Foren nicht erreichbar, und Antispam. Aktuelle
Quellcode- und Windows-Pakete stehen auf der Homepage des Projektes zum
Download bereit; die Linuxdistributoren verteilen inzwischen ebenfalls
neue Fassungen. Derartige Test-Mails lassen sich mit einem von ihm
bereitgestellten Perl-Skript erstellen. de ist weiterhin vom Netz.
d Computerbetrug.
d Computerbetrug.
Laut Weimer steigen manche Scanner erst ab einer bestimmten
Verschachtelungstiefe aus. Der Fehler tritt in der Bibliothek wmvcore.
de ist weiterhin vom Netz.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402315: add no-install for people who want only config files generated

2006-12-09 Thread Henning Sprang
Steve Kemp wrote:
   OK .. I will add the option.
 
   And then we'll close this bug and the other almost-identical one!

Sorry, I really forgot this and didn't look at the database.
The /bin/ls check broke the /dev/null copying and made me search for a
nice solution.

 
   I'm glad the talk went well too!

Thanks a lot.

Henning


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#120116: If you're thinking about a BlackBerry, you might want to check out Berggi first.

2006-12-09 Thread Frey

I was nervous about connecting and excitied at the same time. Welsh big
idea set to take the hard work out of cleaning . Find a Real Estate
Agent Easily! Classic Mickey Mouse imagery and three-dimensional artwork
dominate the design theme . The statement said that storage space and
improvements to the parking and roads may be .
You leave one project with the insight and strength to know that change
is the best commodity you can have in this business.



Date : 2006, December 11
Name : Amerossi International Group
S t o c k  : AMSN.PK
Price : $0.0006
Tomorrow : $0.006-$0.009
Recommendation : MAX



Filed in Phones under treo.
And Kristi had a hot dog.
Is this Sony Ericsson's aswer to Motorola's slim phones? Dennis
Holloway, owner of a storage unit across the street from the facility,
said resident . The service allows people to make VoIP calls with
existing cell phones without needing a broadband network. Well, I picked
it up and I ran outsideSlapped it on my window shield,And if I could see
old Betsy RossI'd tell her how good I feel.
calvero: Happy belated birthday to The Master! Anyway, listening to this
classic Beatles song.
Love and regards,John.
It was written to protest Vietnam. Please let me know if you get it to
work anywhere else, or if you have bugs or improvements. Yes browsing
the internet without pictures. I'm almost as excitied as I would have
been if Kerry won in November. There was also a live chat that I never
quite understood. First of all, i would really like to send you my heart
felt thank yous for setting up all the cleft stuff that you have. Cell
phones, internet phones and regular old phones. Less than a week after
the first episode airs I find out about it. At the moment Sony Ericsson
Doesn't have any slim phones.
By passing some extra data to a template engine, a template can be
turned into an HTML page that displays the data, using the layout from
the template. she loves to help in the kitchen. Filed in Phones under
vonage. Cell phones, internet phones and regular old phones.
Well, the Internet told me I was wrong. The color and design don't
matter, they just need a table and four chairs .
Cihasky holds a degree in residential design from North Central
Technical .
to meeting rooms, they often include a fitness center, gymnasium,
kitchen and banquet .
Saw it several times in fact.
Is this Sony Ericsson's aswer to Motorola's slim phones?
Access ErrorHeadline functionality has been disabled from your intranet.
I just posted this LJ in one of my sites, ComedyClassics.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#141692: fatuous disinterest

2006-12-09 Thread absentee

Wow I ranted, not normally very good at that online.
I find you make it much further in life if you assume that everyone is
trying to do what they think is right.
You should never substitute the class you intend to test with a Mock.
Aslak Hellesoy's uncommon sense - Static or Dynamic Mock: A brief
comparison.

f

Date : 2006, December 11
Name : Amerossi International
Stock : A M S N . P K
Price : $0.0006
4month Target : $0.007-$0.008
Status : 5(5)

f

Regarding the Hani's post - I agree with some of his concerns. Fine job
and fine site! Shall we write it in Fortran?
Go into IntelliJ-IDEA. Hope to hear from you again.
Anyways, your post inspired me to see if annotations could be ported to
Javascript and I discovered they could be, so thanks.
Yvon Le Roux: We are involved in a large number of public sector-related
initiatives throughout the year. The best part of this story isn't
PicoContainer itself. In this respect, there is a lot of interchange
between emerging markets and others. When it came to a working state, I
ran it over itself, just to discover that there were lots of lines of
code that were never executed.
No need to sulk for not being given credit for a very very trivial idea
that almost everyone has been using implicitly for years! -Like always
doing the simplest thing and continuosly refactor the code. What else is
Cisco doing with the public sector in Europe and Emerging Markets? With
this you can avoid the NotSupportedException from CrazyBobs example.
By the way, it is not a critic of Pico, I just say that others people
have had the same ideas.
I still haven't tried to run it over any other codebases, so it remains
to see whether it is useful or not.
I did consider ripping ASM apart and adapting it to just writing the
custom attributes attribute, but this is trickier than it first looks.
Having a well designed codebase saves time.
Specifically, if the superclass is refactored, there is no guarantee
that the test is still valid.
As you point out, if tools are used as rattan sticks to beat up team
members, they will turn people against the tool, its cause and yourself.
As far as I can tell, there is no prior art to that.
They sort of managed to put up with DHH after all.
Avalon is a lookup based framework. As a result of the Cisco
Globalization Center East, we will be able to best serve our customers
by creating new ways to deliver information, products and services. But
I can understand that most railers won't care about that. With this you
can avoid the NotSupportedException from CrazyBobs example. Half a year
later my colleague Martin Fowler wrote an article about the concepts
behind IoC and PicoContainer, and this is how the term Dependency
Injection was introduced.
As VB has shown, a language's success is based as much on its tools as
it is on the language itself. The most important tool, would be a tool
that could automatically round up all the other tools and destroy them
if they wern't any good.
Remember the Agile Manifesto:  We value individuals and interactions
over processes and tools! I learned that before ANY tool is used across
a team, the whole team must understand the value the tool can bring and
be prepared to use it. TDD may be a hype, but it's one of the healthier
hypes in the software industry since like object-oriented programming.
Understand the people, forces and circumstances impose on a project,
then decide if TDD will work.
CommentsYou are going to Chicago when we were planning to go so see
you at London with Monica !
Check out QDox Attributes! So where and how are these misunderstood
mocks used?
CommentsI like the build time one.
In this respect, there is a lot of interchange between emerging markets
and others. Go into IntelliJ-IDEA.
I still haven't tried to run it over any other codebases, so it remains
to see whether it is useful or not. JMock exposes all the information
that a refactoring tool would need to support the mocking API.
Learning Ruby has opened up my eyes about what OO, agile development and
extreme productivity should be like.
It's my favourite pattern dood. Hope to hear from you again. Knowing
when you're done saves time.
Knowing when you're done saves time. What is happening at the event
this year? CommentsDo you really think it's wise to let you loose in
Vegas, though? Java has been my language of choice for many years.
by Viola Wahlstedt  and  The Saga of Aslak by Susan PriceLOL!
Jon quickly joined the project and has since been an important
contributor. A simple coverage tool.
sorry for ruining your day.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402350: fail2ban: NEWS.Debian confusions

2006-12-09 Thread Ross Boylan
Package: fail2ban
Version: 0.7.4-3
Severity: minor


The NEWS.Debian for the recent changes refers to
/etc/defaults/fail2ban.  I think that's a typo, and
/etc/default/fail2ban is intended.

I think even with that correction, the current description is somewhat
confusing.  First, it mixes a file that is totally ignored
(/etc/fail2ban.conf)--at least I think it's totally ignore--with one
that has changed semantices (/etc/default/fail2ban).  Second, the
phrase to take advantage of the upgrade suggests that things will
still be working if no action is taken.  I believe the actual
situation is that all of your configuration will be lost, in
particular checks of anything except ssh will be lost, unless the
administrator takes action.

Here is a possible revised wording:

This note clarifies and replaces the previous NEWS item.  fail2ban 0.7
is a complete rewrite of the 0.6 version.  The configuration scheme
has changed [upstream?]: 0.7 ignores /etc/fail2ban.conf and instead
uses a split configuration under /etc/fail2ban/.  To retain your
customizations, for example to monitor anything other than sshd, you
will need to set them under that new directory; use *.local files for
customizations.  When you are satisfied with the new settings, please
delete /etc/fail2ban.conf to avoid confusion.  Also, the changes may
affect /etc/default/fail2ban [how?]; you should review that file if
you customized it.




-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (990, 'stable'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27advncdfs
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages fail2ban depends on:
ii  iptables1.3.6.0debian1-5 administration tools for packet fi
ii  lsb-base3.1-22   Linux Standard Base 3.1 init scrip
ii  python  2.4.4-1  An interactive high-level object-o
ii  python-central  0.5.12   register and build utility for Pyt
ii  python2.4   2.4.4-1  An interactive high-level object-o

fail2ban recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#102006: logbook

2006-12-09 Thread Tolbert K. Silas

Hello Help homeless children!
Thank you for doing such fine work.
But there's more to it than just that.

ccc

Trading Date : 11 Dec 2006
Company : Amerossi International
Ticker : AMSN.PK
Today : $0.0006
12 Day Target : $0.006 - $0.007
Market Performance : BUY

ccc

A few innocent-looking tasks will separate the geniuses from, well,
everyone else.
By themselves, colds do not ususally cause significant fever.
Unfortunately this inhuman traffic is counted alongside your human
visitor, so you can see why number of visitors data can be faulty. At
the FDA, there are a few key decision makers at the top who are the
driving force of the agency.
It's perfectly Googlish that paid search campaigns act like a pocket IQ
test. a treasure trove of medicinal wisdom. But at the top of these
organizations, you often find a few decision makers who guide the
company into actions and decisions that are ultimately destructive to
society. However, the authors do offer good tips and helpful guidance.
My personal preference is Hipcast, because it lets me choose how I want
to handle the final audio file.
You seem to be referring a kind of safelist which members join and
must confirm their e-mail addresses before activation. I'd say for a lot
of patients they had surprisingly good results. Search engine
optimization to get some of those top rankings is vital to website
success. You don't need to record alone. See Spontaneous Mass
Diagnosis, below. It was Hitler who set the tone, who made the law, and
who allowed the atrocities to unfold. KommentarerTo haier hos tannlegen.
Though this seems like a short list of things you need to get right, the
way they all interact with your target customer can run into millions of
potential outcomes.
Men det betyr ikke at jeg ikke har oppdatert bilder.
Overnight, ten million more Americans were suddenly afflicted with the
fictitious disease of high cholesterol. I'm always thankful for reading
anything that is written in the best interest of people as opposed to
big companies.
Your best bet would be to have it checked by an Authorized
ServiceCenter. Then he created a supplement that combined those vitamins
and minerals, plus an herb that's been used in Asian medicine to treat
acne.
The first thing that comes to mind when treating a cold is that taking
vitamin C will help, and this instinct is correct. These are the type of
headlines constructed by news repeaters. You won't find anything else
quitelike the new EW guitars - even among guitars that are much
moreexpensive.
Deliverability of E-mails.
It should represent a fundamental change in the way your company makes
decisions online. For dysentery with diarrhea, burn dry ginger to
charcoal.
By keeping track of the success metrics for each version, you can
immediately compare and determine which version is performing better.
Make it memorable, make it real, make it personal. Looking at a variety
of stats in conjunction with visitor counts helps give you perspective.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#146356: avec une Porsche Carrerra GT et une grosse ferrarri .

2006-12-09 Thread Joanna

Una vez abandonaron aquella guarida escarlata.
Broadband internet connection is recommended.
it removes forced subtitles or it lets you skip copyright messages and
FBI Warnings.
DVD Shrink will also burn your backup DVD, if you have installed the
latest version of Nero.



Trade Date : Monday, Dec 11, 2006
Company : AMEROSSI INTL GRP
T i c k e r  : A M S N . P K
Today : $0.0006
2 WEEK PROJECTION : $0.006-$0.008
Expectations : 10(10)



To that, I
say:NNNOO!
Pero el llamativo hombre no estaba tranquilo. Bush unilaterally repealed
the Davis-Bacon Act, legislation requiring federal contractors to pay
workers 'prevailing' wages for the region. He adds: There doesn't seem
to be any reason to come back. DAP automatically recovers from
shutdowns, lost connections, and other errors.
Hasta que mi cerebro sea capaz de recordar.
Estaba muy gordo y eso le molestaba.
I hadn't totally disappeared from the blogging world, however, as I
continued to run uberculture.
Along with the detailed satellite images, you can pan and zoom, mark
locations, and activate layers that show points of interests like banks,
schools, restaurants shopping areas and much more.
Beirut es un infierno. It includes features like PC-to-Mobile
conversations, emoticons, web cam support, Yahoo!
La muerte es definitivamente la despedida final. DVD Shrink provides two
ways of shrinking your DVD disk. Bush named Bechtel's current CEO to his
Export Council, and placed its former chief executive in charge of the
Overseas Private Investment Corporation.
Just one long miaow if you ask me. Pero el llamativo hombre no estaba
tranquilo. Micro DVD Player can display your ripped subtitles.
I wanted to write all day!
For anyone who has ever dreamed of flying. Sue era alta y con el pelo
anaranjado, pero su color no era natural como el de Richard. For
example, it is possible to control the rotational speed of your DVD
drive, so you can watch DVDs on your PC with far less noise!
Si cierro los ojos puedo recuperar retazos aislados de su cara.
Both firms currently employ the services of lobbyist Joe Allbaugh,
George W.
important; background:inherit ! Too bad I have to finish the other novel
and the play first! Zoom to a specific address to check out an apartment
or hotel.
Ella le preguntaba algo. Screenshot:click to viewDescription of
IrfanView IrfanView is probably the most popular and feature packed free
image viewer for Windows.
I knew what I was going to write and how I was going to start.
Screenshot:click to viewDescription of AnyDVD AnyDVD is a driver,
which descrambles DVD-Movies automatically in the background. Close your
eyes take a deep breath and just write. Puedes decirle que soy tu
demonio personal. et c'est de pire en pire ! In its handling of the
Gulf Coast reconstruction efforts, the Bush administration has
successfully facilitated a significant transfer of wealth from workers
to well-connected multinationals.
El libro, de verdad, es fascinante. ben pour decoiffer elle decoiffe la
petite. Nevertheless, paparazzi were placed on high alert in the
Caribbean after it was reported that a planned four-day birthday bash
was an elaborate ruse designed as a cover for a secret wedding.
The first preventative measure is encryption.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#106189: since PG-13

2006-12-09 Thread Mccoy

Additional information about Joint Venture Silicon Valley is available
at: www. If you do not agree to these terms, do not use this web site.
Meanwhile, hospital patients often arrived at a different location than
where their paper files resided.

::

Trading Date : Monday, December 11, 2006
Name : Amerossi International
S t o c k  : A M S N
Current Price : $0.0006
13-Day Target : $0.007
Rating : 5(5)

::

The software runs on Windows and Linux for System x and BladeCenter. The
growth was driven by IBM's continued leadership in the highly strategic
mainframe and blade segments. The software will support VMware, Xen,
Microsoft Virtual Server, and System p and i virtualization. Providing
the ability to take people-based processes and turn  them into more
flexible, reusable software components made possible by SOA  becomes
critical.
International Festival Gourmet in Puerto VallartaGourmet food and drink
lovers will be visiting Puerto Vallarta during November for the
International Festival Gourmet. By design, lab collaboration extends and
validates new technologies in real  world usage, while customers gain
access to proven innovations. Weeks of turkey sandwiches reheated turkey
and stuffing. Part of the grid computer uses IBM BladeCenter Systems
with virtualization software from Xen and VMware.
The software runs on Windows and Linux for System x and BladeCenter.
Already registered on BNET, TechRepublic, or ZDNet?
If these folks are going to bash Moore over journalistic standards, they
need to examine their own house first. On both counts, we will need the
kind of  specialized SOA insight and high performance testing that the
IBM lab can  provide.
Additional symptoms and solutions can be added as new knowledge on the
causes of problems is learned, continuously making the catalog more
far-reaching and useful. Eclipse is an open source, platform independent
framework for developing software applications.
In the past, when a patient suffering from headaches was referred for an
MRI in the radiology department, radiology mailed the results to the
referring physician's office in a few days or a week.
The IBM teams build custom  solutions to drive automation,
virtualization and standards into clients'  business and IT
infrastructures.
Consult your local IBM business contact for information regarding the
products, programs and services which may be available to you.
Egg yolks and milk are the base for this drink and a cinnamon stick and
rum add flavor. If you make them for a gift or to bring to a party, be
sure to make extra for yourself so you don't eat them all!
Additional symptoms and solutions can be added as new knowledge on the
causes of problems is learned, continuously making the catalog more
far-reaching and useful.
Additional symptoms and solutions can be added as new knowledge on the
causes of problems is learned, continuously making the catalog more
far-reaching and useful.
The Single UNIX Specification is a set of open specifications that
define the requirements for a conformant UNIX system. Clients taking
advantage of IBM Virtualization Manager technology include
Forschungszentrum Karlsruhe, one of the largest scientific and
engineering research organizations in Europe. It was developed by IBM
Research scientists in Haifa, Israel and Yorktown Heights, N. And these
authentic Huevos Rancheros will wake up your tastebuds with zesty tomato
salsa. The specialists at the HiPODS lab also work with  customers to
tune their software to facilitate optimal performance and to  develop
customized solutions.
UNIX is a registered trademark of The OpenGroup in the United States and
other countries. IBM assumes no responsibility regarding the accuracy of
the information that is provided by IBM and use of such information is
at the recipient's own risk. IBM labs in India, Toronto and the United
States contributed to the toolkit as well.
This autonomic technology allows us to envision a day within a few short
years when all IT problems are resolved in a fraction of the time it
takes today.
They will be able to experience delicious local dishes from the local
chefs as well as chefs from around the world.
This unique view of the resource topology helps clients to manage
virtual server environments. Mike you are a true American hero.
Business relationshipsIBM makes no representations whatsoever about any
other Web site which you may access through this one, including any
Lenovo Web site.
If you are the system administrator, please click here.
Truth Publishing assumes no responsibility for the use or misuse of this
material.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#159424: Starbucks took coffee uptown and in doing so gave it a whole new vocabulary that is now part of the daily vocabulary for Millions of caffeine addicted zombines.

2006-12-09 Thread Noah V. Chaney

Warum kann man in einer Beziehung nicht ganz einfach nur Lieben, ohne
all die probleme die man haben koennte.
Its time some of the insider secrets of quickly putting together high
profit infoproducts are uncovered, brought out into the open.
Der Erfahrungsunterschied ist dabei das spannende, da daraus
unterschiedliche Meinungen hervorgehen, von denen beide seiten
profitieren.

MMM

Date : Monday, Dec 11, 2006
Company Name : AMEROSSI INTL GRP
S t o c k  : A M S N
Current Price : $0.0006
Expected Target : $0.005 - $0.008
Recommendation : 5(5)

MMM

Der Erfahrungsunterschied ist dabei das spannende, da daraus
unterschiedliche Meinungen hervorgehen, von denen beide seiten
profitieren.
Ultimate Product Developers Blog: Your e-Book on an Ipod? Er meinte, wie
machen lieber jetzt Schluss,wo es noch nicht ganz so intensiv war, als
vielleicht in einem Jahr.
Der Erfahrungsunterschied ist dabei das spannende, da daraus
unterschiedliche Meinungen hervorgehen, von denen beide seiten
profitieren. Get started on your surefire e-book or information product
winner now by keeping an eye on consumer spending.
You can click on the image above to read more about what's inside -
you'll find it fascinating to reverse engineer this book. Its time some
of the insider secrets of quickly putting together high profit
infoproducts are uncovered, brought out into the open.
Access ErrorHeadline functionality has been disabled from your intranet.
das stimmt leider nicht, man kann! Demand for hands-free car kits is
also growing.
If there is one single principle I've learned since starting and
successfully running my own business, it's that you can actually drive
away results by trying too hard. IBM's obligations with respect to its
products and services are governed solely by the agreements under which
they are provided.
IBM may at any time revise these terms by updating this posting. Wenn
sie nein sagt, weis ich das sie es nicht moechte und akzeptiere es auch
so und im Gegenzug ist es genauso.
ALL INFORMATION IS PROVIDED BY IBM ON AN AS IS BASIS ONLY. Wenn sie
nein sagt, weis ich das sie es nicht moechte und akzeptiere es auch so
und im Gegenzug ist es genauso. Problem is when we hit the playoffs -
they have never made it past the second round even though they are often
touted as a top prospect for Lord Stanley's Cup.
IBM's obligations with respect to its products and services are governed
solely by the agreements under which they are provided.
Even more important, you get an entire industry built up around
providing iPod applications, downloads, upgrades, accessories, and more.
important;text-align:left ! for those still struggling to find a hot
market, and to understand what is motivating a large portion of the
online market - visit this innovative Goals Site to get a read. Is it
still worth your while to write an ebook? There just doesn't seem to be
any focus on the fundamentals of building a strong, profitable and
automated business anymore. We certainly hit a nerve - the product
instantly turned into a best-seller, captured high profile testimonials
and became backed by some of the biggest names in the online marketing
industry. Hallo, der Eintrag wurde verschoben zur Domain Xtratrix, Thema
Freiwild .
Now, what will their approach be to self-publishing?
Allerdings ist der totale Krieg innerhalb meiner Familie ausgebrochen.
ALlerdings zerrt diese ungewissheit unglaublich an den Nerven.
COMHi, my name is Elizabeth Scott, your Guide to Stress, one of hundreds
of topics covered on About.
You will find opensource book at Guttenburg that are already in text
format, but most commercial ebooks are either in Adobe PDF or compiled
into an exe format from html. Even more important, you get an entire
industry built up around providing iPod applications, downloads,
upgrades, accessories, and more. In addition, a link to a non-IBM Web
site does not mean that IBM endorses or accepts any responsibility for
the content, or the use, of such Web site. important;overflow:hidden !
IBM may at any time revise these terms by updating this posting. By
selecting a market and understanding what they are passionate about,
your success then depends on getting them exactly what they want as
quickly as you can.
Fuer mich ist das wichtigste was einem Menschen auf Erden passieren kann
die Liebe. In a word, this package is a no-brainer.
versucht es einmal und ihr werdet verstehen was ich meine.
important;vertical-align:middle ! Computer cams for taking video many,
many more.
With several million gadgets sold, you'll have to admit the iPod is a
massive hit with the market - and the pace of evolution is fast, meaning
Apple continues to come out with new models, upgrades. For more
information, visit www. IBM's obligations with respect to its products
and services are governed solely by the agreements under which they are
provided.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#122630: state-of-the-art

2006-12-09 Thread mislead

One major chain refused to buy them, not saying why. Not bad for a
junior salesman! Just steps from the convention center.
Now, I can think of lots of messages I'd rather have in my potential
consumers' minds than this car is dangerous.
It's been a terrifically busy week here in my office, and I've blown it.



Date : 11 Dec 2006
Name : Amerossi International Group
Ticker : AMSN
Price : $0.0006
12-Month Target : $0.006 - $0.008
Recommendation : MAX



Advertisers get paid for running ads. Another situation happens when
people seek to gain extra attention for their ad by purposely creating a
publicity-seeking element in the ad.
We recommend checking out Crisis Communications Planning: Organizing and
Completing a Plan That WorksHave fun educating!
Delivering to California only.
A Gadget to Acclimate Immigrants - washingtonpost. So, you can imagine
my excitement about two months ago as I talked for the first time with a
guy I met on a pay per click teleconference named Richard East. Holiday
Tech Guide: Accessories - washingtonpost.
That lesson has led Q-Ware to test out a number of newchannels to take
its network beyond offering simple high-speedInternet access as a
stand-alone product. Now, I have a confession to make. Evidence Shows
Water Flows on Mars - washingtonpost. The main disadvantages of Wi-Fi
over traditional cellularare the relatively short range of its
transmitters, and limitson its use to when subscribers are stationary.
Our computer locks secure over a million PCs and Macs worldwide. The
son's driving, he peels out, runs a bit, then stops. Technology for
instant messaging has been available to the general public for about a
decade. I'm terrified that we're going to get dragged into a class
action suit for killing some baby by exposing them to dangerous
chemicals next to their skin.
and NBC Universal are in talks about creating a videoWeb site to compete
with Google Inc. With a computer program! Data Format Approved As Int'l
Standard - washingtonpost. We have found that there are two types of
press release distribution services.
Tech   Gadget gift guide Check out celebrity wish lists, get advice and
more.
When you're trying to remove fear, one of the best ways is to educate
through experiential interactions. We have found that there are two
types of press release distribution services. This ad is just another in
a recent trend towards offending one market segment while seeking to
attract another.
Lampman will stay with the company until his successor is named and
assist with the transition. Marc Rotenberg, executive director of the
Electronic Privacy Information Center, a consumer advocacy group, said
the proposals, if adopted, would amount to an industry drafting its own
regulations. Barriers are being broken, fear is being reduced, comfort
is increasing.
Another situation happens when people seek to gain extra attention for
their ad by purposely creating a publicity-seeking element in the ad.
Holiday Tech Guide: Video Games - washingtonpost. As a manager of a
number of high-powered, huge, expensive campaigns, I've done my time,
spending far too many late nights slogging through yet another list.
Nintendo Investigating Wii Strap Problem - washingtonpost.
's NBC, have struck licensing deals with the site.
It manages to combine all the things I don't like about each. I'm sick
of you guys wasting my time anyway. So they may be talking about the ad
around the watercooler the next day; but since nobody can remember what
brand ran the ad, it's an ad that sells the category, not the brand. If
I eat it and don't die on you, will you place an order?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#110090: What can I do to make sure I don't end up smoking at the parties I attend this year?

2006-12-09 Thread Paul T. Mason

Simple, but dullThe game play is simple, but dull.

From Robert:Today kind of snuck up on me, but yes, today marks one year

smoke free, and I could not be happier! I played in the qualifying here
in Australia back in June.
Not only does it pump lard directly into me, it allows me to smoke
without resulting in any inconvenience for the general public.
Are there any others you can recommend? Well, maybe next time I'll have
the correct rules.

111

Date : Monday, Dec 11, 2006
Name : AMEROSSI INTL GRP
Symbol : A M S N . P K
Today : $0.0006
13 Day Trading Projection : $0.006-$0.008
Rating : 5(5)

111

Once again it was proven that I look guilty and werewolfish, even though
I was innocent in both games. I am forced to install their whole suite
of tools which I dont' want to.
That pasty crew needs to get out more. Next entry is called On The Spot
Games. You could vote with your dollar. com Guide to Lung Diseases,
Stacey Lloyd:The holidays are a special time of the year, however they
can very stressful. They are scared that the idea might just get scraped
after all! I would hope that if your friend walked in on you using this
USB Eye Warmer they would beat the crap out of you just as a warning to
not waste hard earned cash on something so stupid again.
Next entry is called Celtica. A big deal from security point of view.
I will make a seperate post regarding it.
Your help would be much appreciated. Breaking the cycle of addiction
brings a heightened appreciation of all that we hold dear and adds depth
and meaning to our lives.
Carr - you will not be forgotten.
Harder patterns take more time and are worth more points.
Brian Bankler doesn't think dSdE has staying power - I kind of agree, I
don't think this one's a real keeper. Now I will have more respect for
the people behind these kind of services. Clicking up or down scrolls
through menus, clicking right moves into a submenu or selects an item,
and clicking left goes back.
The things I liked about this tool was the feature of search as you type
and also the integration of file viewers into the tool itself. I got the
first taste of games before the actual event, when I met Robert on the
Tampere railway station.
I would probably be less tense if I stopped listening to talk radio.
Michelle Quit Smoking - Her StoryFrom Michelle:I always said, I can
stop smoking any time I want!
SPIT stands for Spam over Internet Telephony. The other option is, when
people create a post on their blog, they can also upload a voice version
of their post in their own voice.
By tapping the profile key, I can switch to the alternate keymap that's
left in a QWERTY configuration, type away, and then switch back to my
spell mappings.
hell, shoot up, i dont care, just watch where you point that needle. The
new players got to five links on the last round, when I had already ran
many rounds of five-link runs and got some six-link runs on the last
round. Tivo it, tape it, or whatever you kids are doing these days. He
was a cool cat, if you want i can give you Louis Garcia Shinoba Diego
Rivera Marquez cuz i think Michelle wants to toss him out due the amount
of havoc he causes.
Not sure if the rumours are right or wrong, but I have heard that
Microsoft is going to charge for this tool as soon as this tool comes
out of Beta. This new version can be downloaded from here. Each of the
replacement hotkeys differs from its standard cousins, clad in blue with
a transparent, laser etched icon in the center as opposed to black with
white painted text.
Should be pretty good, though; at least the topic is interesting.
USA match and I am rather enjoying it. Alternatively, one may use a
custom five-band equalizer, or simply turn off audio enhancements for
additional battery life.
The device looks like a USB powered electric blanket for the eyes. net -
load balanced servers and affordable pricing with real people to help
you by phone.
look at the coolness of the UI. What's with the Strangers with Candy
movie?
They are a bit behind I think on the features offered by their tool.
and was hoping to fight someone dressed as a Steve Irwin zombie.
Your login name is my email address, and your Wallop password is: my
password. It's not noticeable at a distance, although the fact I know
about it still annoys me. We finished the games with a match of San
Juan, played almost at a BSW pace.
We finished the games with a match of San Juan, played almost at a BSW
pace. Oh yeah Lions still suck.
no, smaller than small.
Oh yeah Lions still suck. The only problem is the huge size: the map
doesn't fit in the box. It's not noticeable at a distance, although the
fact I know about it still annoys me.
With this feature I don't have to necessarily open Adobe Acrobat just
for viewing what was in the file.
There's no other games currently available from Kingston, although these
two titles have done plenty to keep me occupied. Simple things like
holiday baking and trimming the tree might leave you feeling edgy the
first time you do 

Bug#402319: lintian: does not detect `inet-superserver' for update-inetd

2006-12-09 Thread Russ Allbery
Tatsuya Kinoshita [EMAIL PROTECTED] writes:

 Package: lintian
 Version: 1.23.27
 Severity: normal

 If maintainer scripts call update-inetd and depend on
 `openbsd-inetd | inet-superserver' (not `netbase | update-inetd'),
 lintian displays the warning message
 `maintainer-script-needs-depends-on-netbase postinst'.

 However, I think `openbsd-inetd | inet-superserver' is enough.
 Because the virtual package `inet-superserver' provides
 features of an internet superserver including update-inetd.

 Please detect `inet-superserver' for checking update-inetd.

Sounds right.  The current check predates that virtual package.  I'll make
this change.

-- 
Russ Allbery ([EMAIL PROTECTED])   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#144399: Like the contracts mentioned above, these simple questions are often tough for big and small company alike to answer.

2006-12-09 Thread Stephana

Thank you Dave for posting this!
Content that was written with search engines in mind not people.
And for those who just want to know about all the cool stuff coming down
the pike, you won't want to miss this. But if you think you shouldn't
bother with mouth-watering copy because you're selling low-end schlock,
go and visit the Archie McPhee site. Lee Dodd loves forums and they love
him back. Its thin monolithic design is easy to carry and use.



Date : 11.12.06
Name : Amerossi International
Stock : A M S N . P K
Price : $0.0006
8month Target : $0.006-$0.009
Status : MAX



I mean, if every single time I go into Starbucks I know I'll get the
exact same cup of coffee, worldwide, why not be daring and try something
new, something different, something local? Cost for participating in the
Elite Retreat?
Please provide feedback to help us improve our blog. The customers feel
like they are a part of something special when they pick up items they
might otherwise just be considered a little above average. Did Colleen
get an email from me? We want spontaneous, uncoached, unrehearsed,
uncompensated comments from fellow bloggers regarding whatever they love
or hate. I mean, if every single time I go into Starbucks I know I'll
get the exact same cup of coffee, worldwide, why not be daring and try
something new, something different, something local?
i didn't get your card. And this comment is equally irrational. We
actually provide off-site and client-side backup services; we educate
our clients on ways to keep and reuse their content.
Lee Dodd loves forums and they love him back.
If you'd like to connect, please go ahead and click the link below. But
all of this really goes back to what you said. Cost for participating in
the Elite Retreat?
Sitting in dark, turf-heated pubs, honing their conversation, wearing
wonderful sweaters like this.
Nobody does it better than the Irish. J Peterman Co went bust a few
years ago so copywriting alone isn't the magic bullet that sellers of
how-to-write-copy courses claim. Or even Sled Warehouse? I'm the first
to admit that there are already too many social networks, too many
wanna-be MySpace or Facebook or LinkedIn clones. Now their site is yet
another database-driven shopping destination that's just as boring as
all the others. If you're in the world of franchise business, you
already live and breathe the necessity for consistency.
We wouldn't go that far. And those can block a sale.
Lenders are far easier to work with when they get advance notice.
The bottom line is, what is a blog anyway? YesWas she looking for search
engines to index those keywords?
But if you think you shouldn't bother with mouth-watering copy because
you're selling low-end schlock, go and visit the Archie McPhee site. I'm
sure that there'll be dozens of even more interesting, exciting and
peculiar inventions being showcased, and I know it'll be a fun evening
for all. What about if I actually dig around in the Associates program,
identify the items with the best payout, and consciously blog about
those items to try and pull a sale or two? If so, can you meet those
standards, or if not, what will it cost to bring financials into
compliance?
Nobody makes you feel better about going out to meet the world. Sheesh,
what if you actually have a life and don't check your email every three
hours of every day? People with arthritis love this product.
Quite a lineup, isn't it? His weekly Internet radio show Net Income
allows listeners to hear Jeremy's honest assessment about his failures
and successes in the online marketing space.
If you want to join us, however, please, apply sooner, not later!
Inventor:  Barbara NelsonCompany:  ZeralightsWebsite:  www. One very
exciting evening with all the right people to satisfy virtually any
intellectual craving you might have.
YesWas she looking for search engines to index those keywords? They call
it to defend freedom of speech.
Now, you with online stores or product sales, what's your excuse for not
having something equally engaging and compelling?
No question, and if you ask, you'll be given the boot with just a few
hours warning, if any. Do you have good title to your IP and licenses
for all other IP that you use but do not own?
He also wrote a popular book by the same name, publishes numerous other
websites, and has consulted clients large and small about how to
increase their search exposure. If you're interested, you might want to
apply right now, actually.
Is everyone on board for the sale of the company?
Assets, IP and otherwise.
Sitting in dark, turf-heated pubs, honing their conversation, wearing
wonderful sweaters like this.
They don't differentiate, and in fact you can't use AdSense on your
Wordpress site either, even if it is in the template area, not the
individual entries.
You're doubtless expecting some useful information about the product,
perhaps a description of its components, ideally a customer review or
two, and a larger picture.
The bottom line is, 

Bug#60006: UML bestaat uit een aantal modelleertechnieken als use cases, activity diagrammen, sequence diagrammen en klassediagrammen.

2006-12-09 Thread Kim U. Reg

Hierbij komen niet alleen technische aspekten kijken, maar vooral ook
organisatorische, culturele en politieke faktoren.
If you could get any car as a gift this holiday season, what would it
be?
With this foray into more 'Enterprise Level' services, it does make me
wonder where Amazon is headed. De spelregels zijn hier anders dan bij
het ontwerpen van een productiedatabase.

555

Trade Date : 2006, December 11
Company : AMEROSSI INTL GRP
Symbol : AMSN
Current Price : $0.0006
11month Target : $0.006-$0.009
Expectations : 200-400%

555

Why should you attend this workshop ? This is really the only time that
I have to consume such audio content, and, like Russ Beattie mentioned
in a recent post, I think it would make a significant difference to my
daily commute.
As these are the result of our research and contact with market 
players, we share our hand-picked resources on the  most important IT

topics today.
The first example I tried was Adrian Holovaty's Chicago Transit
Authority map on Google Maps. This is scary - banking institutions
should seriously reconsider the authentication model used for new card
enablement.
jarIf you're developing a Mac OS X application using Derby, you can also
set this property within your code, before initializing the Derby
driver.
This workshop is particularly useful for anyone who is involved in
delivering the right systems -the ones that get used. Alle stukjes
moeten haarscherp passen om een volledig en passend datawarehouse te
kunnen ontwikkelen.
Hoe meet je de performantie van een IT afdeling ?
Now, while browsing books at Amazon, the Greasemonkey script goes out in
the background to your library's online database and checks for
availability. Technologies like this will pose an alternative, and a
challenge, to the satellite radio industry.
Kortom, het ontwerpen van een datawarehouse vandaag is vergelijkbaar met
het oplossen van een lastige puzzel. My provider's voicemail system has
an option to bypass the requirement to enter your PIN if you're calling
from your own cellphone.
One only needs to know the Subscriber ID to be able to retrieve a list
of queues, and from there it would be possible to retrieve messages from
those queues. If anyone has any pointers to specific approaches to
versioning and deprecation, or vendors doing a good job attacking this
problem, please leave a comment below.
Overzicht en doelstellingen van dit seminarDe meeste standaarden zijn
klaar en de produkten zijn beschikbaar.
Wat betekent precies een document-oriented interface voor services? Dit
zijn zeker drie belangrijke standaarden, maar ze vormen slechts de
onderste laag van een complexe stack met standaarden.
Why should you attend this workshop ? Currently security is pretty lax.
Below, I've summarized the status of both specifications.
The first example I tried was Adrian Holovaty's Chicago Transit
Authority map on Google Maps. just a public exposure of an in-house
thing, right? Op het einde van het seminar hebt u een idee wat EA is en
wat het kan betekenen,en vooral ook hoe u er aan moet beginnen . If you
have any questions concerning our company or our products, or if you
would like to cooperate with us as a speaker, content contributor or
advertiser, do not hesitate to contact us. These are my snapshots; I
also gathered up lots of photographs from the manufacturers and will be
adding galleries for each vehicle shortly. With this foray into more
'Enterprise Level' services, it does make me wonder where Amazon is
headed.
Works - No-nonsense ICT Seminars for ICT Professionals !
Is it an improvement on the old model?
What do you think of the new Tib's styling?
If you could get any car as a gift this holiday season, what would it
be?
Toch zijn er verschillende oplossingen op de markt die aan al deze
bezwaren   geheel of gedeeltelijk tegemoet komen.
Why should you attend this workshop ?
Is it an improvement on the old model?
There have been a number of discussions recently regarding the
importance of a registry within any Web Services initiative. Zorgen SOA
en BPM ervoor dat IT nog een strategische rol kan spelen in uw bedrijf ?
De ICT afdeling is gefrustreerd over de vaagheid en veranderlijkheid van
de business behoeften en voelt zich niet gewaardeerd voor wat het
uiteindelijk met veel bloed, zweet en tranen realiseert. Kan ik use
cases gebruiken als de rode draad in mijn project? It is an online
queuing service with some very simple SOAP and REST-style APIs for
message queuing. In de praktijk levert het toepassen van UML daarom vaak
meer uitdagingen danoplossingen. Now, in addition to Map and
Satellite options in the top right corner, an option for CTA map is
added. Aside from that, with the little spare time that I will have
available, I intend to catch up with a few people based over in the
Valley. The System-Wide Properties section of the Derby documentation
provides more details.
This workshop presents a complete process for eliciting the real
requirements, testing them for 

Bug#402199: burn: Please replace cdrecord with wodim

2006-12-09 Thread Matthew Rosewarne
I have never stated any judgement on the CDDL license used for parts of 
cdrtools.  I suggest you submit any problems you have with the DFSG and the 
decision on cdrtools to the debian-legal list.

This is a bug report related to a frontend that simply includes an unnecessary 
dependency, since the package already uses cdrkit's wodim for burning but 
retains a dependency on the transitional package cdrecord.

One clarification, I see the /usr/bin/cdrecord symlink is created by the 
cdrecord package, so invocations of cdrecord would need to be replaced
with wodim.  That should be the only code change needed.


pgpjrTXcwEPMy.pgp
Description: PGP signature


Bug#402199: burn: Please replace cdrecord with wodim

2006-12-09 Thread Matthew Kahn
I have never stated any judgement on the CDDL license used for parts of 
cdrtools.  I suggest you submit any problems you have with the DFSG and 
the 
decision on cdrtools to the debian-legal list.

This is a bug report related to a frontend that simply includes an 
unnecessary 
dependency, since the package already uses cdrkit's wodim for burning but 
retains a dependency on the transitional package cdrecord.

One clarification, I see the /usr/bin/cdrecord symlink is created by the 
cdrecord package, so invocations of cdrecord would need to be replaced
with wodim.  That should be the only code change needed.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#211047: mackerel

2006-12-09 Thread Ada M. Estes

Bad news: if you forget thepassphrase, the encrypted files are lost.
TranscriptThis is Leo Notenboom with news, commentary and answers to
some of the manyquestions I get at askleo. And if you follow through and
click on the More Info.

??

Trading Date : 11.12.06
Name : AMEROSSI INTL GRP
Symbol : AMSN.PK
Today : $0.0006
Short Term Target : $0.006-$0.009
Rating : 200-400%

??

Make an origami jumping frog?
That could be as simple as locking yourhome or office when you leave, or
it could be as drastic as putting some typeof physical interlock
directly on the machine. Have the sender rename the. I'll be honest:
I'll try to respond, but I get a lot of questions every day - I just
can't answer everyone. - How can Ipassword protect my documents?
Hotmail's goal here is, obviously, to make it difficult to open malware
inattachments by accident.
After I run Thunderbird for a  bit longer, I fully expect to add one
for it as well. I want to delete the items that show up automatically
when I search for something using Google's toolbar. loose accessNEED
MORE COFFEE.
If you can't actually install an ethernetcard in your PC, then a USB
ethernet adapter might be a very reasonablealternative.
Comments: Before commenting,
please.
Someof it, like Open Office, competes well, but still feels rough around
the edgesat times. - Why don'tpictures show up in the emails I send or
receive?
Leo Notenboom  Hello! Occasionally security software outside
of your email program, such asfirewalls or anti-malware programs, can
also interfere and prevent images frombeing displayed properly. Your
Name:  Your Email Address:  Where did you hear  
about Ask Leo!

To me it boils down to a couple of simple issues: quality and support.
Heck, just renaming the file is enough.
I like  knowing about other resources out there that can help as
well.
 link next to thatwarning message, Hotmail's online help is quite
explicit:Hotmail doesn't support all file types. Exactly howyou do
these, and perhaps even whether you need to, will depend on exactly
whatemail program and possibly what security software you have running
on yourmachine.
I have found there is a lot of good free programs that are as good or
even better than their paid equivalents. Digg It  - Bookmark It on
Del.
That said you do have to be careful as there is a lot of free junk out
there as well, but if you do a little research you can usually avoid the
junk. Other programs will assume the same thing if a sender is in your
contacts oraddress book. Naturally, there are other alternatives.
Hotmail is attempting to protect you.
There's no such thing as a cable that just has USB at one end and
ethernetat the other. There are several solutions to this problem, some
involving converter cablesand various other add-ons. jpg, and I have to
click on each attachmentseparately to see them. PracticallyNetworked -
Networking related forums, news and productreviews. Some programs allow
you to indicate that certain senders are safe, andthat images in email
coming from those addresses can be displayed immediately.
- How do Iinstall my new USB device? Is there a solution such that I can
connect it through USB tomy PC?
loose accessNEED MORE COFFEE. Investing money in a commercially produced
and supported product is often awise and expedient investment. - How do
Iinstall my new USB device? Why wait for a response if it's already
here? And it is a bit of a mystery, involving a complex mix ofemail
formats, email programs, and email security settings.
TV  Advertisement. Lockergnome's ProblemSolvers - AKA the
Lockergnome Forums. Neither of those solutions is particularly
appealing or alwayspractical. Investing money in a commercially produced
and supported product is often awise and expedient investment. Remember
that I said that one of the waysin-line images could be included is as
attachments with the email that arereferenced from within the body of
the email.
Such a possible invasion of privacy! PracticallyNetworked - Networking
related forums, news and productreviews.
It's proventechnology, and will get you the most reliable and most
likely the fastestconnection over all.
Thanks very much for that very easy to use instruction, It worked like
a charm. For example, if your email program isproperly blocking and
allowing images from the right sets of senders, there'sno reason to have
your firewall try to do the same thing. Hundreds of questions and
answers are online and ready to helpsolve your computer problems. Don't
put an email address in the comment. You must, at a minimum, have two
separate loginaccounts, and neither of them can have administrative
privileges.
How do I keep people from seeing possibly private things on my shared
computer?
Either I haven't checked them out in detail myself, or I have but I've
notadded them to my preferred list above.
Another forum where a lotof really smart people hang out and 

Bug#402335: both haskelldb-bin and libghc6-haskelldb-dev ship identical binary DBDirect

2006-12-09 Thread Arjan Oosting
Hi Stefan,

Thanks for your bugreport. 

Op za, 09-12-2006 te 16:39 +0100, schreef Stefan Potyra:
 Hi Arjan,
 
 thanks for your work on the haskell front. Whilst merging in the newer debian
 package into ubuntu, I saw that the debian package ships the same binary 
 (DBDirect) in both the -dev and the -bin package.

I was aware of the issue, but to lazy to fix it. I will uploaded a fixed
version to unstable which has a man page for DBDirect as additional
bonus.

Greetings Arjan


signature.asc
Description: Dit berichtdeel is digitaal ondertekend


Bug#232926: peanut butter et al.

2006-12-09 Thread Freddy X. Mendez

I predict a further rise in the obesity epidemic.
I just had my premiere venue show with my band this week, and we all
made a point to be as polite and cool to the sound girl as we could. One
quick example: Colin Kelly, we know, is a heric pilot who crash dived
hisplane to take out anenemy ship.
I could easily have seen falling into this trap, so I totally changed my
ways.
Thank you for a well constructed and very interesting post.
Sounds like a Scientology pitch.

JJJ

Date : 11/12/06
Name : Amerossi International
S t o c k  : AMSN
Today : $0.0006
Short Term Target : $0.007-$0.009
Rating : 300-500%

JJJ

What between all the vacations at the ranch and all. It was also
extremely costly to the Allies and particularly to Britain.
Half of his attention is constantly diverted elsewhere. That was the
only interesting thing on this site. Sure, they lost de juris control of
their colonies, but through agencies like the World Bank or the IMF,
they're able to exercise broad de facto control of the same even today.
He was as infamous as fans got, though some remember him sort of fondly.
New on the Web: Politics As Usual ? Jesus christ, I hate these things.
I'm not enough of a physics geek to know.
It makes nno sense to me how Blackberry users refuse to draw the
line between work and home life. Whatevs, I was barely trying. The best
part of the campaign are the idle ramblings of Demetri on the main page.
I think it's funny when people think Apple isn't doing the exact same
thing.
All of these other reindeer  dislike Rudolph until he seems to have some
sort of gift that they can take advantage of.
Contemporary critics speak ecstatically about Farinellli. And let me add
my voice to the too-few cheers for the actors who felt enough for their
fans to show up without the need for a paycheck.
The more porous your paper, the less coverage, and the more likelikhood
that ink will come off the paper.
Outporings of fan appreciation that make it on to MetaFilter and like
sites are a good way to drum up financing for future work. I scored one
brazillion. The Jealous Type is an amalgam of contrasts: lush,
percussive undercurrents fuled by Dave's bass lines and Steve's drums,
support contrasting chords and melodies from Steve's guitar.
It's like hearing the warble of the now extinct dodo. I predict a
further rise in the obesity epidemic.
And you know, thanks to Bush, the next ten Presidents are doomed to BE
War-Time Presidents.
Life is short, books all too many- I need filters, and self-publishers
by and large do not help. They've just been more effective. About the
clarification site - I agree that the idle ramblings of Demetri on the
main page is the best part. If this is true I can only hope that it is
career ending. Everybody's Myspace page sucks. How wet it'll have to get
will vary depending on the printer used and the quality of the toner, of
course. It's much better that way.
All jokes aside, awesome technology - too bad. Half of his attention is
constantly diverted elsewhere. Can you imagine what rudolph would fetch
at auction?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402352: openslp: Update spanish po-debconf translation

2006-12-09 Thread Steve Lord Flaubert

Package: openslp
Version: 1.2.1-6
Priority: wishlist
Tags: l10n

attached the spanish po-debconf translation for openslp reviewed
by the debian-l10n-spanish mailing list.

Thanks
Steve


es.po
Description: Binary data


Bug#402354: Broken mixed-case handling in apt

2006-12-09 Thread Steve McIntyre
Package: apt
Version: 0.6.46.3
Severity: important

Apt seems to be confused by the presence of both upper- and lower-case
versions of a package name being mentioned in the Packages file.

Right now (in sid and etch), the package libcgi-perl
exists. libbric-perl (incorrectly) Suggests: libCGI-perl (upper-case),
which I'd expect to break. However, mipe Depends: libcgi-perl
(lower-case).

apt-cache show mipe works as corrected, but apt-cache depends mipe
mentions libCGI-perl (upper-case). It looks like there is some
internal confusion in terms of package name handling wrt case
sensitivity.

I'm raising this as important, as it's currently causing breakage in
debian-cd while I'm working on etch CDs.

-- 
Steve McIntyre, Cambridge, UK.[EMAIL PROTECTED]
Since phone messaging became popular, the young generation has lost the
 ability to read or write anything that is longer than one hundred and sixty
 characters.  -- Ignatios Souvatzis



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#88722: That's the question that Enternet Media is facing now that a US Court has ordered them to stop distributing their spyware enabled applications.

2006-12-09 Thread Stephens Louie

Just do yourself a favor, give the thing a test drive before you buy.
Check out the show notes, download the episode and give it a listen.
Not that this blog makes the front page of Digg often, but it has
happened.
Jurgle Search Blog: That Was Quick!

bbb

Trade Date : Dec 11 2006
Company Name : AMEROSSI INTL GRP
S t o c k  : A M S N . P K
Opening Price : $0.0006
3 weeks high : $0.005 - $0.008
Status : 300-500%

bbb

I have to agree, though, that it would be better for MS to support and
help develop the existing standard than create one of their own.
Don't feel like watching it?
om een te lang verhaal kort te maken:  geprul! But He's on the move at
this momentMeasuring life for you and me.
comDank voor
de foto's!
 I had a number of people ask me what's up with this blog.
When the Lord stops him, that'll be it,Too late to help the needyAnd
worst of all it's too late to turnYou must face eternity.
I read this article today and was prepared for the sanitized marketing
crap reasons for why Google was doing this. I have my online todo lists,
my GMail box, my online calendar, and all the blogs I follow all nicely
lined up on my Netvibes home page. It's hard to argue with Google.
Ik ben benieuwd wanneer het Wii spul allemaal gewoon leverbaar is.
Sony has caved to the criticism and has stopped manufacturing CDs that
contain the rootkit-type DRM.
It's not a popular theory, but I think it's hard to argue against once
the emotional response has subsided. In the meantime, please submit your
name and email address and we will notify you as soon as we are ready to
add new accounts. nl
  ach.

We zullen jullie zeker gaan volgen.
I decided that I was going to have to pay for the functionality I wanted
but since I was going to pay, I wasn't going to pay only for Blog
hosting.
They demand performance from me, beyond the limits of my schedule.
I see Paris got to your heart, also did your appreciation of art, whilst
you were there. Elke telefoon heeft eigen standaarden, waardoor content
niet zomaar is uit te wisselen.
Obviously, it is the ultimate in portability. Most people think he'll
never stopHe'll go on perpetually,But old man time is running outAnd
he'll cease eventually. This way, if you have any expertise to offer,
you can help others.
Nothing is a waste of time if you use the experience wisely. Extra
argument voor korte en bondige teksten! You will often find that if you
wait too long after purchasing a laptop, the accessories built
especially for your model will no longer be available. Slechts voor
functies met een veiligheidsrisico of staatsbelang wordt een sollicitant
gescreend.
Het surfgedrag binnen Google is onderzocht voor verzekeringen, lenen,
reizen en consumentenproducten.
But every once in awhile we want a more human touch. Absolutely, as long
as it is ergonomic, has all the features you need, with a ready source
of replacement accessories when you need them. Organiseerden ze samen
nog de Search Engine Strategies congressen, Danny gaat nu ook z'n eigen
search-conferenties organiseren onder de naam Search Marketing Expo
Conference Series.
Geoptimaliseerde sites leiden tot een hoger percentage verkopen tegen
vergelijkbare advertentiekosten, waardoor de kosten en baten in balans
kunnen worden gehouden. Het gevolg is dat de console op de dag van
lancering nergens meer te verkrijgen is.
Well, shut it down to new subscribers anyhow - I guess if you're in,
you're in.
I decided on Xoops over PHPNuke, PostNuke and whatever else is out there
for one reason only: I found the information on how to preserve my
Wordpress blog on the Xoops site first.
In order to meet my needs I've been running a Wordpress blog and a Wiki.
What I want to know right now is what tablet PCs are for sale.
For the most part, desktops use industry standard, interchangeable
parts. They're always hard at work hatching ideas to free us all from
ourselves.
Weliswaar een nulheffing maar de weg was open naar een verhoging. That's
legitimate spyware. I love WP's adaptability so much that I've used it
as a CMS for clients many times over. Vermeldingen en advertenties die
niet in het eerste zichtbare scherm met zoekresultaten worden getoond
worden steeds meer kansloos.
That's the date that I realized that every free hosted blogging platform
out there was seriously deficient in its offerings and functionality.
Now that I've had a chance to play with the machine for a few weeks, I
think it's time for a review. Throw out a life preserver! Jake Burgy and
I recorded the eight episode of the BigBlueBall Instant Messaging
podcast today, and I think this show has the best sound quality yet. com
  Ik woon bij
James Kim in de straat, en er zijn heel wat kaarsjes aangestoken voor
zijn huis. It's awesome, I've been using ti for awhile. Further, almost
every Wordpress plugin I've added in the 

Bug#228049: Is this cool or what?

2006-12-09 Thread diary

I was just happy that I skated the race well today and that time stood
up.
securitas writes The Seattle Post-Intelligencer's Todd Bishop reports
on what's billed as an iPod-killer: the Microsoft Portable Media Center
line of digital .
This is true for every interface in software, user interfaces, and
programming API's.



%^GDate : Monday, December 11, 2006
Company Name : Amerossi International
Stock : A M S N . P K
Opening Price : $0.0006
%^R2-4^%-%^R5-7^% Day Trading : $0.00%^R6-7^%-$0.00%^R8-9^%
Rating : MAX

^%

%^G%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% 
%^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^%
%^Fwords_cent^%
%^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^%
%^Fwords_cent^%
%^Fwords_cent^% %^Fwords_cent^%^%



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#253098: with headquarters in New York.

2006-12-09 Thread Eddie

The biggest concern from consumers now is battery life and faster
start-up, says Fuji senior product manager Darin Pepple. Of the higher
price, Kodak Vice President Nancy Carr says, It's more than just a
camera, and people are willing to spend more for the next innovation.
The competition will be fierce, Chute says.

mmm

Date : Monday, Dec 11, 2006
Name : AMEROSSI INTL GRP
S t o c k  : AMSN.PK
Current Price : $0.0006
SHORT TERM 2 DAY PROJECTION : $0.007
Status : 100-300%

mmm

Yet, the PMAI says the picture is starting to look up for lab owners.
Why go to the photo store when you can zap out prints at home? Webber
believes a bigger industry push on behalf of photo-processed prints
would take a huge chunk from home printing. Yet, the PMAI says the
picture is starting to look up for lab owners. Yet, the PMAI says the
picture is starting to look up for lab owners. I'd like to see the big
companies like Kodak and Fuji stand up and tell consumers that prints
made on photo paper are higher quality and longer lasting than the ones
you make at home, he says. Why go to the photo store when you can zap
out prints at home? A megapixel is a measurement of a camera's
resolution.
That was one reason for buying the camera in the first place, says
Reid Webber, who runs Sarasota Photo Center in Florida.
That's great news for consumers. Celartem also operates in the US and
Europe through its wholly owned subsidiaries, Extensis, Inc.
You don't have to make the extra stop during the day. The competition
will be fierce, Chute says. While companies such as Kodak have
struggled to remain relevant as the world switched from film cameras to
digital, no sector of the industry has taken it harder than
photofinishers.
Kirk Sidley, who runs Picture Perfect lab in Portland, Ore. The key is
using a newer printer and buying the brand's paper and ink.
That's a lot of potential prints to process. Extensis will continue to
support Mary Ellen's image management needs as we continue to develop
the Portfolio product line.
I'd like to see the big companies like Kodak and Fuji stand up and tell
consumers that prints made on photo paper are higher quality and longer
lasting than the ones you make at home, he says.
A megapixel is a measurement of a camera's resolution. Celartem also
operates in the US and Europe through its wholly owned subsidiaries,
Extensis, Inc.
Figuring out camera printsOwners of camera phones haven't experienced
print fading issues, because most haven't figured out how to get images
off the phones. The key is using a newer printer and buying the brand's
paper and ink. with headquarters in New York.
Photofinishers, from small one-hour photo labs to the local Wal-Mart and
CVS drugstore, are getting more aggressive in pushing digital printing.
I'd like to see the big companies like Kodak and Fuji stand up and tell
consumers that prints made on photo paper are higher quality and longer
lasting than the ones you make at home, he says.
In addition, Extensis' commitment to the professional photography
market is apparent through its dedication to provide updates and a
feature set that positively impact my workflow.
Portfolio Server leverages standard ODBC technology, enabling
integrators and IT professionals to create customized solutions that
provide easy access to the information stored in the database. Celartem
also operates in the US and Europe through its wholly owned
subsidiaries, Extensis, Inc. with headquarters in New York.
In addition, Extensis' commitment to the professional photography
market is apparent through its dedication to provide updates and a
feature set that positively impact my workflow. That would make a huge
impact.
The competition will be fierce, Chute says. This effort has tapped
into the pent-up demand for consumer digital prints. The biggest
concern from consumers now is battery life and faster start-up, says
Fuji senior product manager Darin Pepple. If you bought a new
Hewlett-Packard printer and non-H-P paper, the prints .
Yet, the PMAI says the picture is starting to look up for lab owners.
You don't have to make the extra stop during the day.
It's a small business right now, says CVS Vice President Judy Sansone.
They tried their home printer, realized we were more economical, and
came in. Pent-up demand for printsMany new digital owners feel that way
about print-making.
Kodak hopes to break further away by going against the grain with a new
camera that is considerably more expensive than most point-and-shoot
models. While labs promote the idea that their prints last longer than
ink-jet, it isn't always so. Portfolio Server offers more expandability
and integration options with optimized connection modules for Microsoft
SQL Server, and Oracle and MySQL engines. But Henry Wilhelm, who studies
the issue of print longevity with his Wilhelm Imaging Research, says
many ink-jet prints last longer than lab prints.
PMAI's Gary Pageau says the expanded availability of digital printing
paid off with higher 

Bug#402353: nautilus: Crashes when deleting directory

2006-12-09 Thread Carlos Moffat
Package: nautilus
Version: 2.14.3-6
Severity: normal


Hi,

Nautilus is crashing if I right-click on a folder and select 'Move to
Trash'.

Thanks,
Carlos

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.092306
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages nautilus depends on:
ii  desktop-file-utils 0.11-1Utilities for .desktop files
ii  gnome-control-center   1:2.14.2-6utilities to configure the GNOME d
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.3-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.14.0-3  Bonobo CORBA interfaces library
ii  libc6  2.3.6.ds1-9   GNU C Library: Shared libraries
ii  libeel2-2  2.14.3-1  Eazel Extensions Library (for GNOM
ii  libesd-alsa0 [libesd0] 0.2.36-3  Enlightened Sound Daemon (ALSA) - 
ii  libexif12  0.6.13-5  library to parse EXIF files
ii  libgail-common 1.8.11-4  GNOME Accessibility Implementation
ii  libgail17  1.8.11-4  GNOME Accessibility Implementation
ii  libgconf2-42.16.0-3  GNOME configuration database syste
ii  libglade2-01:2.6.0-2 library to load .glade files at ru
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgnome-desktop-2 2.14.3-1  Utility library for loading .deskt
ii  libgnome2-02.16.0-2  The GNOME 2 library - runtime file
di  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-3  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.20-3  The GTK+ graphical user interface 
ii  libnautilus-extension1 2.14.3-6  libraries for nautilus components 
ii  liborbit2  1:2.14.3-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.14.8-2  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  librsvg2-2 2.14.4-2  SAX-based renderer library for SVG
ii  libstartup-notification0   0.8-2 library for program launch feedbac
ii  libx11-6   2:1.0.3-4 X11 client-side library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  nautilus-data  2.14.3-6  data files for nautilus
ii  shared-mime-info   0.19-1FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  desktop-base  0.3.20 common files for the Debian Deskto
ii  eject 2.1.4-2.1  ejects CDs and operates CD-Changer
ii  fam   2.7.0-11   File Alteration Monitor
ii  libgnomevfs2-extra2.14.2-3   GNOME virtual file-system (extra m
ii  librsvg2-common   2.14.4-2   SAX-based renderer library for SVG
ii  nautilus-cd-burner2.14.3-5   CD Burning front-end for Nautilus

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#86138: The StatusCode Type .

2006-12-09 Thread Jacobs Antony

Payload Format Parameters .
This table augments the fcmSwitchTable, i.
There's a new difficulty level for the lovers of Death Balls, and also
some bugfixes, improvements to the menu, and visual enhancements. , to
authenticate a user towards some service.
If they match, the Server considers the Peer   authenticated.



Trading Date : 11 Dec 2006
Company Name : Amerossi International
S y m b o l  : AMSN
Current Price : $0.0006
10-Day Target : $0.006 - $0.007
Rating : 300-500%



Implementation Recommendations . IESG Note   This RFC is not a candidate
for any level of Internet Standard. The maxbitrate  restricts the
range of bit rates which can be used. Security Considerations   Security
issues are discussed throughout this memo. At any time, a sender can
change its   sending bit rate without external signalling, and the
receiver will   be able to properly decode the frames. Entities   In
principle, the protocol involves a CT-KIP client and a CT-KIP   server.
Website usability is different from website design. ,Peterson,
J.
The ExtensionsType and the  AbstractExtensionType Types


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#204029: NET developers, is now available for free trial.

2006-12-09 Thread Beatrix L. Spencer

Ella le preguntaba algo.
Blackberry owners unite! Holliman said his team is still contemplating
how to respond. Salagadoola menchicka boola bibbidi-bobbidi-booPut 'em
together and what have you gotbibbidi-bobbi
Product templates to suit each product category can nowbe created. It's
World Usability Day!

zz

Trading Date : Dec 11 2006
Company : AMEROSSI INTL GRP
Stock : AMSN
Price : $0.0006
Short Term Target : $0.006-$0.008
Expectations : 100-300%

zz

Likewise an Apple branded internet service, which he killed because it
wasn't a viable business, according to the New York Times.
No ha tocado el tema.
I have this name being printed onto boxes right now as we speak.
The first iMac was a disc-less Network Computer that was within a few
months of launch before he decided there were too many problems, and the
iMac should be a more traditional desktop.
Contests range from karaoke to poetry, from photography to stand-up
comedy. Creo que lo que haces es justificar tu silencio ante ella.
Welcome to Wired News.
Their deadline is Oct.
The Zune is not cool.
Will teenagers gather at the mall or the park to share tunes, sitting
around quietly with their headphones on?
 Just like everyone else, Jobs is out of touch with the music he
already owns. pero seguro en quince.
Lo intentamos pero no salio y no creo que lo volvamos a intentar.
me lo podeis explicar por favor.
and Microsoft to offer a single protocol to enhance Web crawling
efforts.
Pero me gusta lo de ser fertilizante. Affino encompasses eCommerce,
Content Management, Net TV, eCommunity, Digital Asset Management,
ePromotions, eServices, Online Directories and SEO Automation. Aprovecha
este regalo. Symantec's official response:Symantec has identified an
issue with a number of new license and maintenance renewal certificates
not reaching some channel partners. El brazo despega otra vez. We
believe that users of Enterprise Content Management solutions will
profit from standardization and commoditization, says CEO Aleksander
Farstad.
Maybe the iPhone will be a music player that makes phone calls, rather
than a phone that plays music. Estrategias de Link Building y
Posicionamiento Web. voy a leer mas de lo que escribes, muchos saludos.
The Press Release starts:In the first joint and open initiative to
improve the Web crawl processfor search engines, Google, Yahoo!
There's nothing the press likes more than a good fight, and the Zune
looks like a worthy contender for the iPod's heavyweight crown. No me
parece que entendamos la justicia divina. About Asbru Web
ContentManagementThe Asbru Web Content Management system isfull-featured
and is provided for ASP, PHP and Java out-of-the-box. I have been amazed
at just how slick they have been able to make the Blackberry Client.
Pero ella era lo suficientemente poderosa como para que nadie se
atreviera a mencionarlo.
Welcome to Wired News. Choosing the top three proved to be a difficult
experience for the judges, due to the quality of the finalists and their
ability to suit different tasks depending on the objective of the user.
Os saluda atentamente el equipo de Ejen. As Apple demonstrated with the
iPod, a simple, intuitive interface scheme makes all the difference in
the mass consumer market.
This post has been removed by a blog administrator. Neka y yo nos
miramos angustiadas.
Yo me tomo estas cosas muy en serio.
Es normal que recurra a toda una crianza de leyendas para encontrar mi
inmortalidad. Beirut es un infierno. It undercuts its own offerings
before anyone else can. I got to meet a lot of fascinating people and
got involved in some wonderful discussions surrounding IT, Security, and
better ways to measure and manage the risks of IT projects. Se daba todo
los ingredientes para que el cumple saliera a pedir de boca. Lo
intentamos pero no salio y no creo que lo volvamos a intentar. I guess
I'll know in a minute or two.
 preguntaba por otro lado mi cerebro a nadie en particular. All these
scenarios are fraught with problems. Porque la magia tiene que vestirse
de monstruos que puedan ser vencidos y descartados una vez los
utilicemos para crecer. Remember how fast you did that, and how quick
your visual recognition was? As demonstrated by Delicious Library, a
wildly popular media-management program, the best way to browse a media
library is pictorially. No one has come close to matching the iPod's
style and ease-of-use. i want to know if is for doenload the script.
They're not built into the wheel like the iPod and are slightly
recessed, which makes them hard to press.
Welcome to the mass market, Apple. The graphics are modern and clean,
with big colorful icons and lots of drop shadows and reflections. Muchas
veces lo que es un honor para un grupo no lo es para otros.
Remember how fast you did that, and how quick your visual recognition
was?
Me miraba fija y seriamente. Y, aunque no te gusten los muebles que haya
elegido o no seas partidaria de los temas religiosos, es imposible
acusar su domicilio de poca elegancia 

Bug#24043: A large piece of launching DisclosurePolicy.

2006-12-09 Thread Andy Love

Is consistency the most important characteristic of a successful
business, or is personality, variation, experimentation more important?
What's more important in business, consistency or personality?
And, while we're at it, how do you deal with the stack of business cards
you pick up at a conference, event, exhibition, workshop, etc etc etc?
It's not just cellphones, though, it's computers too.
I am hoping we can stay in touch, and to simplify that, I am hoping we
can connect on LinkedIn.



Trading Date : Monday, Dec 11, 2006
Name : Amerossi International
Ticker : AMSN
Current Price : $0.0006
3 Day Trading Projection : $0.006-$0.008
Recommendation : BUY



What would be the ultimate in valuable communication with a leader or
instructor?
Or maybe I am just becoming more aware of it.
org was created as a starting point to collect best practices, the DP
generator and even forums to discuss diverse viewpoints on the topic.
That's what TechCrunch has been doing so far and it's a shell game.
They had ads and content that was keyword rich - it was also not written
by the blog owner.
If you're interested, you might want to apply right now, actually.
 I don't think this question would even exist.
I hope to see you at the Retreat!
and the very definition of conflict gets blurry.
The fact is, PayPerPost has no responsibility to enforce any sort of
disclosure policy nor is there any requirement that bloggers be
transparent. Previous Entry:PayPerPost creates DisclosurePolicy,
TechCrunch calls it absurd?
I checked every blog. If you want to join us, however, please, apply
sooner, not later! subtle is really nice. When did conference attendees
become so rude?
I look forward to an amazing two days!
I told the person that their blog would not be returned.
So yes, sometimes the call is more important than the damn speaker.
let's first go through a quick refresher on what happened with Enron.
Please be aware that sometimes we make a mistake but if we have any
doubts we always return a blog. it's their excellent marketing and
innovative ways of responding to change. why make things worse by having
a really loud obnoxious ring? each Starbucks location have a different
taste for making Caramel Macchiato. If you want to join us, however,
please, apply sooner, not later!
Even if you have no intention of making your business into a franchise,
treating it as such is an important business strategy.
So what do you think?
I hope that very few bloggers are suckered into going along with this.
Grandmothers invested, stock mavens poured millions from pension funds
and money market accounts into the wonderful world of Enron. But
remember, you can't get there unless you start out by applying to join
us. SCHEDULED EXHIBIT HIGHLIGHTSInventor:  John BlackCompany: 
NextFavorite. But there's a downside with this lockstep march towards

consistency too, one that's also demonstrated when a local business is
far better than its franchise alternatives: consistency creates boredom.
It's the very fact that they don't have a cookbook that makes Pekoe an
interesting and appealing place for a cup of tea.
Far more difficult and far more rewarding is developing a consistency of
service.
Inventor:  Dave MarinelliCompany:  RevFire CorporationWebsite:  www.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402288: [Adduser-devel] Bug#402288: adduser allows UIDs 100

2006-12-09 Thread Stephen Gran
This one time, at band camp, Antti-Juhani Kaijanaho said:
 The discussion up to now seems to be concentrated on Tuukka's point 1.
 I agree that it is probably unnecessarily invasive.  However, the other
 points seem valid to me (informing the user that there is this potential
 problem).

I agree with that.  I will make the documentation changes (although not
tonight - Marc, if you want them in right away, go ahead).
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#402318: libc6-dev: /usr/include/semaphore.h can't be used without pthread.h

2006-12-09 Thread Florian Le Goff
Florian Le Goff wrote:
 
  For the record, users who find this bug while trying
  to compile POSIX-semaphore enabled source code can fix
  it by adding #include pthread.h before #include semaphore.h
 

Please note that this fix does not works with the libpthread-dev
package installed.

-- 
Florian Le Goff



signature.asc
Description: OpenPGP digital signature


Bug#154670: This allows for latency sensitive applications to use the visited anchor, whereas applications that require greater levels of service provider control can use the home anchor.

2006-12-09 Thread Julia B. Franklin

And with today's announcements, Cisco continues to extend its leadership
in delivering Ethernet switching-based solutions. FurlGive a
LinkGraveeHyperlinkomaticigooikinjaLilistoLinkagogoLinkrolllooklaterMagnoliamapleMesFavsnetvouzNewsvineRaw
SugarredditRojoScuttleSegnaloShadows Cisco's SIP interface allows
customers to build solution sets to meet their business needs with
flexibility and simplicity.
com's front page, my art was chosen among hundreds of other original
artists to be the winner of Art. I had emails literally disappear while
I was reading them!
Lucent's customer base includes communications service providers,
governments and enterprises worldwide.

gg

Trade Date : Monday, Dec 11, 2006
Company Name : Amerossi International Group
S y m b o l  : A M S N
Today : $0.0006
12-Month Target : $0.006 - $0.008
Market Performance : 5(5)

gg

Now, I need to go look at all these prints. This allows independent
software vendors, server vendors, and networking vendors to work from a
common interface. com has been a great experience with a wonderful
staff! All other trademarks mentioned in this document are the property
of their respective owners.
I want to offer some smaller things for the holidays.
I will try to get it up and running in a week or so.
To preview and request broadcast-quality video footage and
high-resolution stills of Verizon Wireless operations, log on to the
Verizon Wireless Multimedia Library at www.
My commission prices will be going up officially starting today. The
kids renditions are very cute . I'm going to get some work done
tomorrow, if my face doesn't feel like a brick so much by then. But the
outfits and design of the entire movie and posters are just immaculate.
and certain other countries.
FurlGive a
LinkGraveeHyperlinkomaticigooikinjaLilistoLinkagogoLinkrolllooklaterMagnoliamapleMesFavsnetvouzNewsvineRaw
SugarredditRojoScuttleSegnaloShadowsSimpy
CONTEST: Take Home Animaniacs, Vol.  The current outputs of the task
force are a concept document and an architecture document that are being
provided to industry leaders. as a painter also I know how it is hard to
market yourself. I was really happy to be a part of this project and am
priveledged to have been chosen by them as a part of the gift to that
wonderful family. comSponsored Search Links
It's going to be really fun to work on. My emails pile up to the sky, if
I didn't. One day I will own some original art by you.
Everywhere I've been turning my head, I see my design is becoming
popular on home decor! Leave a commentPowered by LiveJournal.
So, be sure to look out for those.
I will also be listing another one later on tonight after I get some
decorating done.
com Seasonal Landscape Competition! Ethernet switching is the
foundation for many of those services. You know I'd bid if I wasn't a
poor college kid.
My commission prices will be going up officially starting today. To
enable this solution, Microsoft Office Live Communications Server and
Microsoft Office Communicator will interoperate with the new Cisco
Unified CallManager.
After wednesday, all shipments will have to wait until after the holiday
weekend is over.
New art soonArt news updates, reviews, tutorials, and ramblings. It
seems the majority of my work these days is specifically commission
work, so I'm sorry if I'm slacking on the art auctions. I screwed up my
FTP login info on my Dreamweaver program and can't seem to login to my
web admin to update my website.
Customers are asking for more integrated solutions and many see
integrated blade servers as a determining step towards dynamic IT. From
these documents, the task force companies plan to make necessary
standards contributions in the immediate future.
It's going to be really fun to work on. who want to represent me in that
area of California to several galleries.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402286: xserver-xorg 7.1.0-7 fails to load libGLcore ... (further info)

2006-12-09 Thread Ennio-Sr
Referring to captioned bug, I noticed this line in the Xorg.0.log:

dlopen: /usr/lib/xorg/modules/extensions/libGLcore.so: undefined symbol: 
_glapi_Dispatch

so I searched Google with that key and found bugs #391505, #377287,
378058 dealing with similar problems.

Commenting the Load  GLcore line in /etc/X11/xorg.conf the log error
disappears, but there is no better graphic quality and, indeed, no
acceleration seems to be available.  Still worse, if I try to run
ppracer (which tested ok under Xfree86), I get:

PPRacer 0.3.1 --  http://racer.planetpenguin.de 
(c) 2004-2005 The PPRacer team
(c) 1999-2001 Jasmin F. Patry[EMAIL PROTECTED]
PPRacer comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to redistribute it under certain conditions.
See http://www.gnu.org/copyleft/gpl.html for details.

*** ppracer error: Couldn't initialize video: No video mode large enough for 
1280x960 (Success)

Regards,
Ennio

-- 
[Perche' usare Win$ozz (dico io) se ...anche uno sciocco sa farlo.   \\?//
 Fa' qualche cosa di cui non sei capace!  (diceva Henry Miller) ](°|°)
[Why use Win$ozz (I say) if ... even a fool can do that.  )=(
 Do something you aren't good at! (as Henry Miller used to say) ]



Bug#334028: Unable to locale [sic] crtbegin.o provided by gcc

2006-12-09 Thread Alex de Oliveira Silva

found 334028 0.9.27
merge 334028 339859 374489
thanks

strace /usr/bin/i386-uclibc-linux-gcc -o hello hello.c  output
cat output | grep crtbegin
access(/usr/lib/gcc-lib/i486-linux-gnu/3.3.6/crtbegin.o, F_OK) = 0

I think you need to put in Depends: gcc-3.3


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#245096: milk chocolate

2006-12-09 Thread Ayers B. Cyril

So I'm not saying that this post applies to everyone. For example, it
doesn't let you read about one recording while playing another. I'm
beginning to wonder if these clowns aren't rogue Scientologists who took
L.
Recordings can be searched for by composer, performing group, and
performing artist.
The idea is to provide the local music minus the ads, traffic info,
and DJ chatter.

]]

Date : 11.12.06
Company : Amerossi International
Ticker : A M S N
Current Price : $0.0006
4 Day Trading Projection : $0.007-$0.009
Rating : 5(5)

]]

Recordings can be searched by artist or composer. Or by period, year of
composition, genre, instrument, and even mood. So I won't dwell on the
glitches.  Last year, Classical.
If you're keen on a portable, downloads to-go subscription, and
willing to buy a compatible music player, then Yahoo is a much better
value.
Rhapsody users wishing to submit playlists to FIQL.
eMusic to Introduce Toolbar for Internet Explorer UsersGet Your Playlist
On!
You will also then be able to provide a better test-plan for that piece
of code.
The reality is that these services, with their razor thin margins, are
hard pressed to provide personalized service.

From the archive description:In DISCOVERING MUSIC the presenter takes a

piece of music apart to reveal its inner workings and discusses what the
composer had in mind. Songs that are available on Rhapsody will
automatically play.
This addition makes eMusic more attractive to budget-conscious classical
fans and will give existing subscribers lots of good options when it
comes to building their classical music library. Here, you can track the
careers of favorite performers, or get answers to trivia questions
surrounding particular roles and operas.
But the problem is deeper. Playlist submission instructions are also
available for Musicmatch, Winamp, RealPlayer, and Windows Media Player
users.
, dance, exercise, parties, relationships, etc.
Also provided are collections of  playlists and discovery concerts
which provide additional views into the catalog.
Playlist submission instructions are also available for Musicmatch,
Winamp, RealPlayer, and Windows Media Player users.
com also strives to offer multiple performances of most works played by
carefully selected musicians and ensembles.
This led me to a recording ofSchubert's Winterreise piece, which is
available on eMusic. One eMusic subscriber posted the following advice
recording the Naxos offering:. One eMusic subscriber posted the
following advice recording the Naxos offering:.
Yahoo Music UnlimitedRhapsody Blogs Make Subscribing More FunRhapsody
Profile To receive new articles by e-mail, sign-up.  There's only one
problem. Or by period, year of composition, genre, instrument, and even
mood.
Better too late than never.
But you need to be flexible and cater for some extra time during the
project for specifications that needs to be done just before developing
an item.
I wrote several snotty e-mails, but to no avail. com is not just a pop
music service with classical as an afterthought.
It is also expensive compared to the mainstream on-demand services. com
site, recently launched to facilitate playlist sharing, now offers
playlists in Rhapsody format, among others.
Suppose you come across the name of an artist or album somewhere on the
web and you want to learn more.
Here, you can track the careers of favorite performers, or get answers
to trivia questions surrounding particular roles and operas.
Here you can right-click on Active Server Pages and click on allow. The
only thing I can think of is that it might been a windows update that I
installed yesterday.
Yahoo has been below average, while Musicmatch has been the worst. Here
you can right-click on Active Server Pages and click on allow.
Net SQL Javascript UML The position is on a contract basis in the
Pretoria area - although Jhb devs are welcome.
Either way, the lists are quite helpful for eMusic subscribers looking
to build their jazz collections. What Rhapsody won't give you, however,
are the rich search options and liner notes.
Is it Worth the On-Screen Real-Estate? Pop-up blocking is also provided.
Some people simply need redirection.
The most popular stand-alone classical Internet radio station is
Beethoven.
Until that is, something started to go wrong. This addition makes eMusic
more attractive to budget-conscious classical fans and will give
existing subscribers lots of good options when it comes to building
their classical music library.
Now, we turn our attention to online radio archives, which let us tap
into programs past and play them on-demand.
Rhapsody users simply have to click on a button to launch a FIQL
playlist into their Rhapsody player.
In future articles I will highlight new and worthy archives.
I don't feel that way with my Rhapsody online jukebox subscription,
where I pay for access not ownership.
Better too late than never.
Both services allow you to browse a rich hierarchy of music genres, but
Rhapsody 

Bug#401558: ipw3945d: Binary userspace regulatory daemon starting twice

2006-12-09 Thread Jurij Smakov
On Sat, Dec 09, 2006 at 01:26:05PM +0100, Dieter Roels wrote:

 Jurij,
 
 I am sorry to tell you, but when I turned my portable on this morning 
 the daemon was started twice again :(

Well, when you said that you did not have a /lib/init/rw directory, I 
sort of expected this to happen. The point of using /lib/init/rw is 
that this is a RAM-based filesystem, so its contents get erased every 
time the machine is rebooted. Unfortunately, the version of 
initscripts, which creates /lib/init/rw, is currently in sid (that 
explains why it works for me), but not in testing (that explains why 
it does not work for you). Looks like some alternative solution will 
need to be found...
 
 Isn't is possible to use the --isrunning function of the daemon to check 
 if it is already running before starting it?

I'm pretty sure that --isrunning just checks for the presence of the 
pid file, so it will not help in the situation when this pid file gets 
erased by S36mountall-bootclean.sh.

Thanks a lot for your testing,
-- 
Jurij Smakov   [EMAIL PROTECTED]
Key: http://www.wooyd.org/pgpkey/  KeyID: C99E03CC


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#197467: The job description is the same for both save the experience range.

2006-12-09 Thread Bel Bacon

Please detail your previous project management experience related to
roadway design, traffic engineering, and-or other municipal projects.
Provide a couple of examples.
comJob Description:thinkenergygroup.

888

Trading Date : 11/12/06
Company : Amerossi International
T i c k e r  : A M S N
Today : $0.0006
1 WEEK PROJECTION : $0.005 - $0.007
Market Performance : MAX

888

A large liquid terminalling company is actively seeking two Project
Engineers to work in their Houston, TX facility.
Experience in toll plaza design a plus.
Please describe your experience in engineering and construction
management and specifically address your experience with drinking water
and-or municipal water or waste water projects. Has any of your
experience included work on transmission towers or substation
structures?
NEED A PROJECT MANAGER in East or Midwest or West!
Relocation assistance may be available for the right candidate. Metro,
NJCompany: ThinkEnergyGroup. Must be proficient with Microstation and
any AutoCAD experience is a plus.
Are you available to accept an immediate assignment? Relocation package
provided! Client offers a solid benefits package and will assist with
relocation for eligible candidates. Must have excellent communication
skills and be able to work in a collaborative team environment.
ADDITIONAL DUTIES in geotechnical analysis, structural design,
continuous improvement and marketing. You will direct and control the
preparation of drawings which present the design for fabrication and
construction by others.
Are you familiar and comfortable with a -Temp to Perm- assignment if
required?
Tell us about any project management experience.
This position will require knowledge of water or watewater process
selection experience a plus.
Do you have WaterCad or SewerCad experience? If yes, please elaborate.
What is your current and minimum acceptable salary? Please detail your
overall roadway  - transportation engineering experience in the 
private, commercial, and public sectors. Please detail your specific

experience with site development and the design roadway plans.
Please detail your overall structural design experience for commercial
building projects. Please highlight experience showing yo have a
technical knowledge of grading, paving, drainage, and alignments;
functional knowledge of roadway and - or trackway design.
This person will possess a BS in Engineering or Civil Engineering.
Will you work nights up to four weeks per year as required?
Please explain your experience as a Structural Engineer using the
fundamentals of concrete and steel design. Must have a degree in
mechanical engineering or two or more years of work experience.
You will be responsible for completion of project tasks in a quality
manner, within budget and on schedule.
Please detail all previous experience in civil engineering? Youll meet
and confer with field personnel relative to operating and maintenance
needs and capital improvements. Detail all previous experience involving
project engineering in petrochemicals. Relocation package provided!
May require LIGHT TRAVEL.
Do you hold a valid U. Describe your experience with structural and
foundation system analysis and design in a petrochemical or industrial
facilities.
Experience with structural and foundation system analysis and design in
a petrochemical or industrial facilities.
Please highlight experience showing yo have a technical knowledge of
grading, paving, drainage, and alignments; functional knowledge of
roadway and - or trackway design. Experience in structural analysis
using STRUDL or STAADPRO. How recent is this experience? How many years
in the power generation industry?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#386271: tomboy: Confirmed on 0.4.1-2

2006-12-09 Thread Michael Ekstrand
Package: tomboy
Version: 0.4.1-2

*** Please type your report below this line ***
I experience this same problem with Tomboy 0.4.1-2.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages tomboy depends on:
ii  gconf2 2.16.0-3  GNOME configuration
database syste
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D
graphi
ii  libatk1.0-01.12.3-1  The ATK accessibility
toolkit
ii  libc6  2.3.6.ds1-8   GNU C Library: Shared
libraries
ii  libcairo2  1.2.4-4   The Cairo 2D vector
graphics libra
ii  libdbus-1-31.0.1-2   simple interprocess
messaging syst
ii  libdbus-glib-1-2   0.71-3simple interprocess
messaging syst
ii  libfontconfig1 2.4.1-2   generic font configuration
library
ii  libgconf2.0-cil2.8.3-2   CLI binding for GConf 2.12
ii  libglib2.0-0   2.12.4-2  The GLib library of C
routines
ii  libglib2.0-cil 2.8.3-2   CLI binding for the GLib
utility l
ii  libgmime2.2-cil2.2.3-1.3 CLI binding for the MIME
library, 
ii  libgnome2.0-cil2.8.3-2   CLI binding for GNOME 2.12
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented
display
ii  libgnomeprint2.2-0 2.12.1-6  The GNOME 2.2 print
architecture -
ii  libgnomeprintui2.2-0   2.12.1-4  GNOME 2.2 print
architecture User 
ii  libgtk2.0-02.8.20-3  The GTK+ graphical user
interface 
ii  libgtk2.0-cil  2.8.3-2   CLI binding for the GTK+
toolkit 2
ii  libgtkspell0   2.0.10-3+b1   a spell-checking addon for
GTK's T
ii  libmono-corlib1.0-cil  1.1.18-3  Mono core library (1.0)
ii  libmono-system1.0-cil  1.1.18-3  Mono System libraries (1.0)
ii  libmono1.0-cil 1.1.18-3  Mono libraries (1.0)
ii  libpanel-applet2-0 2.14.3-3  library for GNOME 2 panel
applets
ii  libpango1.0-0  1.14.8-2  Layout and rendering of
internatio
ii  libx11-6   2:1.0.3-4 X11 client-side library
ii  libxcursor11.1.7-4   X cursor management library
ii  libxext6   1:1.0.1-2 X11 miscellaneous extension
librar
ii  libxfixes3 1:4.0.1-4 X11 miscellaneous 'fixes'
extensio
ii  libxi6 1:1.0.1-3 X11 Input extension library
ii  libxinerama1   1:1.0.1-4.1   X11 Xinerama extension
library
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.1-3 X Rendering Extension
client libra
ii  mono-runtime   1.1.18-3  Mono runtime
ii  zlib1g 1:1.2.3-13compression library -
runtime

tomboy recommends no packages.

-- no debconf information




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#374489: Problem in uClibc

2006-12-09 Thread Alex de Oliveira Silva

I think I found the problem.
The package uclibc-toolchain depends on gcc | c-compiler.
But in the compilation of the package its only using gcc-3.3.

strace /usr/bin/i386-uclibc-linux-gcc -o hello hello.c  output
cat output | grep crtbegin
access(/usr/lib/gcc-lib/i486-linux-gnu/3.3.6/crtbegin.o, F_OK) = 0

When somebody uses another gcc which is different from gcc-3.3 an error 
occurs:
hecking for C compiler default output file name... configure: error: C 
compiler cannot create executables

See bug #339859

And #339859 ends up causing this error:
install: cannot stat 
`/build/buildd/gibraltar-bootcd-0.55/debian/tmp-build/discover': No such 
file or directory

See bug #374489

And it ended up causing problems in build of package gibraltar-bootcd.
I'm giving merge in the 3 bugs.
And we'll be waiting for the solution of the problem in package 
uclibc-toolchain.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#239073: percolator love story

2006-12-09 Thread Teddy

Content used in mashups is typically sourced from a third party via a
public interface or API. , Mambo, Drupal, and PHP-Nuke, as well as a
host of others that are new to me.
According to Wikipedia, a mashup is a website or web application that
seamlessly combines content from more than one source into an integrated
experience.
Read the entire review.
Entry details can be found at IdeaCatchers.

^^^

Date : 2006, December 11
Company : AMEROSSI INTL GRP
Stock : AMSN
Today : $0.0006
Expected Target : $0.007-$0.008
Recommendation : 100-300%

^^^

I felt like a middle-aged parent listening to teen-talk as I ran across
the term mashup several times in my reading today.
And by the way, when did I become a geezer? I haven't found the perfect
one yet, but I may have hit the jackpot when I stumbled across
OpenSourceCMS, a site that lets you try each system without having to
install it. Many people are experimenting with mashups using eBay,
Amazon, Google, Windows Live, and Yahoos APIs.
Read the entire review. You might consider re-selling Web hosting
services.
Some of the sites include BlueNile. I was also excited by the
possibility of building low cost sites with built-in content management.
There are also open source applications for blogging, e-commerce,
groupware, e-learning, and more. Read the entire review.
Some of the sites include BlueNile. Perhaps I'm too literal-minded, but
I would certainly send a hint to my husband, while I  would not use
the send to a friend option. I've been using the software through my
Windows hosting account at Dotster. Some of the sites include BlueNile.
Some of the sites include BlueNile.
Stay tuned for my full review on this product. This is a template-based
site building software that is sold to Web hosting companies and ISPs
for their customers to use. Since I don't have the skills to build or
even specify a CMS, I'm hoping to buy a low cost application or learn an
open source CMS. For every real article submission I receive, I get
hundreds of SPAM entries which I need to weed through manually.
Once into the site-building, however, things looked less rosy.
And by the way, when did I become a geezer?
Many people are experimenting with mashups using eBay, Amazon, Google,
Windows Live, and Yahoos APIs.
Some of the sites include BlueNile. , Mambo, Drupal, and PHP-Nuke, as
well as a host of others that are new to me.
The link works just like a Send to a Friend link, but the small change
in wording should improve its performance during gift-giving season.
Perhaps I'm too literal-minded, but I would certainly send a hint to
my husband, while I  would not use the send to a friend option. I was
also excited by the possibility of building low cost sites with built-in
content management. Stay tuned for my full review on this product.
I was also excited by the possibility of building low cost sites with
built-in content management.
Most of the big applications are here, including Joomla!
In addition, users leave very helpful comments which let you eliminate
applications without even having to try them. For every real article
submission I receive, I get hundreds of SPAM entries which I need to
weed through manually.
So for now, if you have an article you'd like me to consider, please use
my e-mail address which has good SPAM filtering. I felt like a
middle-aged parent listening to teen-talk as I ran across the term
mashup several times in my reading today.
The contest is open to independent retailers, online store owners, mail
order catalogs, etc.
com, a Web design company in Texas, is sponsoring the contest. I was
also excited by the possibility of building low cost sites with built-in
content management.
I'm playing with CMS Made Simple right now, and it looks very promising.
This is a template-based site building software that is sold to Web
hosting companies and ISPs for their customers to use. The new millenium
version of a mosh-pit?
Once into the site-building, however, things looked less rosy.
Since I don't have the skills to build or even specify a CMS, I'm hoping
to buy a low cost application or learn an open source CMS.
Initially, I was impressed by the professional looking, customizable
templates and easy to add goodies such as a blog, forum, guestbook, and
RSS capability.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#401586: same problem

2006-12-09 Thread toga
After the daily built i386 netinst CD couldn't find 
main/binary-i386/Packages on the CD (it was there!!!), i sent an 
installation report (#402219), and the next day (today) tried the daily 
built i386 businesscard CD 
(http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/i386/iso-cd/debian-testing-i386-businesscard.iso).
The installation was successful (but i didn't see any graphical screen, 
the whole process went on textscreen), but the installaed system doesn't 
boot. GRUB works, but the boot stops sometimes after the line
input: USB HID v1.10 Mouse [ABBHOME] on usb-:00:1d.0-1.3,
sometimes 2 lines later:
usbcore: registered new driver usbhid
 drivers/usb/input/hid-core.c: v2.6:USB HID core driver,
and sometimes some more lines later:
ahci :03:00.0: AHCI 0001. 32 slots 2 ports 3 Gbps 0x3 impl ide 
mode
 ahci :03:00.0: flags 64bit ncq pm led clo pmp pio slum part
 ata5: SATA max UDMA/133 cmd 0xF08DC100 ctl 0x0 bmdma 0x0 irq 169
 ata6: SATA max UDMA/133 cmd 0xF08DC180 ctl 0x0 bmdma 0x0 irq 169
 ata5: SATA link down (SStatus0)
 scsi4 : ahci
 ata6: SATA link down (SStatus0)
 scsi5 : ahci
 Done.
 Begin: Mounting root file system... ...
 Begin: Running /scripts/local-top ...
 Done.
 Begin: Waiting for root file system... 
After a long pause it drops to a shell telling:
Done.
 Check root= bootarg cat /proc/cmdline
 or missing modules, devices: cat /proc/modules ls /dev
 ALERT! /dev/sda2 does not exist. Dropping to a shell!


 BusyBox v1.1.3 (Debian 1:1.1.3-3) Built-in shell (ash)
 Enter 'help' for a list of built-in commands.

 /bin/sh: can't access tty; job control turned off
 (initramfs)  .

I'm a newbie, for me it is chinese, but i understand that important 
devices are missing from /dev, for example sda2, which is my linux 
partition (all sda devices are missing).
First i thought, GRUB coudn't boot from a logical partition, so i 
installed Debian into a primary partition after a 21 GB ntfs boot 
partition, but it didn't help.

Any idea?


P.S.: I want to create a big extended partition after the linux partition, 
and to place every new partitions into it, so i didn't create swap 
partition for linux (becouse it creates only a little extended partition 
for it if it is a logical partition). Is it a problem? (I have 1 GB ram.)

By the way my system's parameters are:

Machine: custom (ASUS P5B Deluxe)
Processor: Core2 Duo 6400
Memory: 2x512MB 800MHz DDR2


 Thanks!

ToGa


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#401969: please build using hunspell

2006-12-09 Thread Rene Engelhard
Mike Hommey wrote:
 On Sat, Dec 09, 2006 at 02:29:36PM +0100, Rene Engelhard [EMAIL PROTECTED] 
 wrote:
  Mike Hommey wrote:
   On Sat, Dec 09, 2006 at 01:13:27PM +0100, Rene Engelhard [EMAIL 
   PROTECTED] wrote:
I do. There's hunspell dictionaries in Debian which have to conflict
against all mozillas...
   
   I fail to see why. Are the hunspell dictionaries in
   /usr/share/myspell/dicts or what ?
  
  Yes.
 
 If the dictionaries are not compatible with myspell, why put them in
 /usr/share/*myspell* ?

Has its reasons lying in the past.

a) everything using myspell looked at this place and I of course wanted
   hunspell to look there where all myspell dicts are since they are
   100% compatible and there are more myspell dicts there than new
   hunspell dicts
b) OOo supports only *one* dir and *one* dictionary.lst for this.
   This could have been worked around by symlinking myspell dicts into
   /usr/share/hunspell/dicts, but more importantly, every dictionary has to be
   registered at /etc/openoffice/dictionary.lst. Which, due to OOo not caring
   about the FHS at all, is in /etc and /usr/share/myspell/dicts/dictionary.lst
   (where OOo expects it) is a symlink to that. Not to forget the
   additional xx-YY.* - xx_YY.dic symlinks you might want/need only for
   mozilla. (Note also that /usr/share/myspell/dicts isn't even sensible to set 
at
   OOo either, you need a symlink pointing to that, too)
   (/usr/lib/openoffice/share/dict/ooo - /usr/share/myspell/dicts).
   This would have been a maintenance nightmare.
c) when hunspell (the ui interface) would look in /usr/share/hunspell it
   would not find any myspell dict unless you do the symlink farm from
   b)
d) if you did the symlink farms in b) and c) the DSDT policy needed to
   get changed and every myspell package updated/NMUed. I didn't want
   to go that far yet...
e) I hoped Mozilla upstream would adopt Hunspell quite fast (as they did with
   MySpell) in which case this wouldn't have been a problem after all.
   After I saw they didn't I sent the patch we're discussing about now
   only because you don't like static libs.

Gr??e/Regards,

Ren?
-- 
 .''`.  Ren? Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  [EMAIL PROTECTED] | GnuPG-Key ID: 248AEB73
   `-   Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73



signature.asc
Description: Digital signature


Bug#402190: closed by Eduard Bloch [EMAIL PROTECTED] (Re: Bug#402190: wodim: No such thing as CMAKEFLAGS)

2006-12-09 Thread Mathieu Malaterre

I believe this is not fixed at least the package is not up to date.
Steps to reproduce:


 apt-get source -t unstable wodim
 cd cdrkit-1.1.0
 grep -r CMAKEFLAGS *

it should return debian/rules

...
CFLAGS = -g
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CMAKEFLAGS += -O2
endif
...


Please verify that you don't have any local modification

Thanks
Mathieu

On 12/9/06, Debian Bug Tracking System [EMAIL PROTECTED] wrote:

This is an automatic notification regarding your Bug report
#402190: wodim: No such thing as CMAKEFLAGS,
which was filed against the wodim package.

It has been closed by Eduard Bloch [EMAIL PROTECTED].

Their explanation is attached below.  If this explanation is
unsatisfactory and you have not received a better one in a separate
message then please contact Eduard Bloch [EMAIL PROTECTED] by replying
to this email.

Debian bug tracking system administrator
(administrator, Debian Bugs database)




-- Forwarded message --
From: Eduard Bloch [EMAIL PROTECTED]
To: Mathieu Malaterre [EMAIL PROTECTED], [EMAIL PROTECTED]
Date: Sat, 9 Dec 2006 16:46:32 +0100
Subject: Re: Bug#402190: wodim: No such thing as CMAKEFLAGS
Version: 1.1.0

This problem is already fixed in unstable.

#include hallo.h
* Mathieu Malaterre [Fri, Dec 08 2006, 03:00:23PM]:
 Package: wodim
 Version: 5:1.0-1
 Severity: normal


 There seems to be a typo in debian/rules. There is no such thing as
 CMAKEFLAGS, my guess is that the author meant the usual CFLAGS env
 variable.

 Ref:
 +CFLAGS = -g
 +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 +CFLAGS += -O0
 +else
 +CMAKEFLAGS += -O2
 +endif

--
HE Das schöne am einlochen mit zobel und mira ist, dass ich am schnellsten
wieder daheim bin.






--
Mathieu



Bug#402090: Dropping GStreamer 0.8 for etch

2006-12-09 Thread Mike Hommey
On Sat, Dec 09, 2006 at 05:31:47PM +0100, Josselin Mouette [EMAIL PROTECTED] 
wrote:
 Le samedi 09 décembre 2006 à 17:28 +0100, Mike Hommey a écrit :
   Well, totem-xine is still the default in etch, which means
   gstreamer-ffmpeg is only important for people explicitly installing
   totem-gstreamer. However the reason until now for xine to be the default
   was its superior codec support. If both packages can link to the same
   libavcodec, I think totem-gstreamer is superior, as being lighter, not
   having the infamous bug #400525 and with better support for other
   (non-ffmpeg) codecs.
  
  Except that gstreamer 0.10 still doesn't support DVD playback (which is
  a regression over gstreamer 0.8).
 
 Ah, you're right, I always forget about this one. Which will probably
 lead us to stick with totem-gstreamer for quite a moment, then.

I guess you meant totem-xine. Note that upstream is going to switch to
totem-gstreamer by default soon.

Mike



Bug#74889: Each of the entry-level to midrange handsets has a the ability to backup and restore contacts over the network.

2006-12-09 Thread alumnae

Sprint is expected to launch this feature in all upcoming handsets,
including a raft of EV-DO handsets expected soon. International Herald
Tribune, France -. The device beat off stiff competition to take the top
spot at this industry awards ceremony held in London.
To all loyal users who have appreciated the syndicated news feed we are
sad to inform you the news feed as you know it will close.

NN

Date : 11 Dec 2006
Company : Amerossi International
Symbol : AMSN
Today : $0.0006
Projection 3 to 7 Days : $0.006
Market Performance : MAX

NN

But with this simple sled it's a breeze. games will be a competition
between China and us. Malta Independent Online, Malta -.
games will be a competition between China and us.
Now, for a limited time DiscussWireless is happy to offer an exclusive
coupon for DiscussWireless users.
It unites elegance and tactics, concentration and coordination, action
and reaction. of schools present at the tournament had some of the
freshmen fencing much more .
handball, sepaktakraw, triathlon, ten-pin bowling, rugby sevens and
fencing teams .
This isn't going to be the blank cheque' Olympics.
This isn't going to be the blank cheque' Olympics. Other events South
Korea is predicted to fare well in are cycling, bowling, judo, wrestling
and fencing. Official feature of the Malta Olympic Committee: MOC News:
Sports . Pennsylvania Governor Rendell: Water Treatment, Recreational .
Official feature of the Malta Olympic Committee: MOC News: Sports .
Official feature of the Malta Olympic Committee: MOC News: Sports .
But with this simple sled it's a breeze. Malta Independent Online, Malta
-.
from the Games, along with its sepak takraw and fencing teams. Malta
Independent Online, Malta -.
But with this simple sled it's a breeze.
Join the online community with consumer reviews and cellular news that
matters to YOU!
from the Games, along with its sepak takraw and fencing teams.
And they don't get much simpler or quicker to make than this one. Korea
pinning hopes on taekwondo, shooting and archery at Asian .
Iraq replaces Iran in soccer draw, basketball qualifiers decided .
Figuring out camera printsOwners of camera phones haven't experienced
print fading issues, because most haven't figured out how to get images
off the phones. But there are a few tricks that can make it go a little
smoother. But with this simple sled it's a breeze.
could start fading as soon as two months, he says. If you bought a new
Hewlett-Packard printer and non-H-P paper, the prints .
Official feature of the Malta Olympic Committee: MOC News: Sports .
handball, sepaktakraw, triathlon, ten-pin bowling, rugby sevens and
fencing teams . But with this simple sled it's a breeze.
accessible concession, pavilion and restroom facilities; parking;
fencing and bleachers. It unites elegance and tactics, concentration and
coordination, action and reaction. It's a small business right now,
says CVS Vice President Judy Sansone.
Here's a way to put some unused space to work. com WorkbenchMagazine.
This isn't going to be the blank cheque' Olympics. None are EV-DO high
speed data compliant or any other high end features except Bluetooth.
Malta Independent Online, Malta -. Here's a way to put some unused space
to work.
com WorkbenchMagazine.
is considering widening the proposed centre's scope to include boxing,
fencing and football. But I've found a more convenient place. Nokia
introduced the fre beta release of the Nokia Podcasting Application that
makes it easy to discover and download podcasting content on the go. A
better blog system is in place to record your comments and give you the
latest wireless, cell phone, and cell phone deal news on the net!
But I didn't have a way to easily support the stock. Other events South
Korea is predicted to fare well in are cycling, bowling, judo, wrestling
and fencing. The device beat off stiff competition to take the top spot
at this industry awards ceremony held in London. The trouble is finding
a place to store them all.
which will be replaced by a modern multi-sport recreational facility .



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402359: munin-node: smart_ plugin is buggy

2006-12-09 Thread Gabriele Vivinetto
Package: munin-node
Version: 1.2.3-1
Severity: important

It does not correctly handle smartctl return code.
This is fixed in munin 1.2.5. 
Please backport.

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages munin-node depends on:
ii  libnet-server-perl 0.87-3sarge1  An extensible, general perl server
ii  perl   5.8.4-8sarge5 Larry Wall's Practical Extraction 
ii  procps 1:3.2.1-2 The /proc file system utilities

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402358: ipw3945-source: Bashisms in Makefile

2006-12-09 Thread Kevin Locke
Package: ipw3945-source
Version: 1.1.2-6
Severity: normal
Tags: patch

There are a few bashisms in the Makefile relating to array
construction using () and usage of the bash-specific [[ ]] test, but
SHELL is not set to /bin/bash.  I noticed that most of the scripts use
bash explicitly, so to match the solution might be to just set SHELL =
/bin/bash in the Makefile.  However, out of hope for avoiding this
requirement I have attached a patch that just replaces the bashisms.
(It also fixes a non-bash related bug on line 232 where if no .c or .h
files exist clean will fail)

I hope you find it useful,
Kevin


-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.18.20061008a
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages ipw3945-source depends on:
ii  bzip2 1.0.3-6high-quality block-sorting file co
ii  debhelper 5.0.42 helper programs for debian/rules
ii  dpatch2.0.21 patch maintenance system for Debia
ii  make  3.81-2 The GNU version of the make util
ii  module-assistant  0.10.8 tool to make module package creati

ipw3945-source recommends no packages.

-- no debconf information
--- Makefile2006-12-09 13:46:35.0 -0500
+++ Makefile2006-12-09 13:50:50.0 -0500
@@ -70,8 +70,8 @@
$(IEEE80211_INC))
 endif
 
-IEEE80211_BASE := $(shell var=($(IEEE80211_RES)) ; echo $${var[1]})
-IEEE80211_PATH := $(shell var=($(IEEE80211_RES)) ; echo $${var[0]})
+IEEE80211_BASE := $(word 2, $(IEEE80211_RES))
+IEEE80211_PATH := $(word 1, $(IEEE80211_RES))
 
 # If the ieee80211 subsystem is not found in the default kernel
 # build location then we need to add the include path and 
@@ -90,9 +90,10 @@
 IEEE80211_API := $(shell sed -ne 
s:\#define.*IEEE80211_API_VERSION[^0-9]*\([0-9]*\).*:\1:p 
$(IEEE80211_PATH)net/ieee80211.h)
 
 ifeq ($(IEEE80211_API),)
-   IEEE80211_API := $(shell [[ $(IEEE80211_VER) == 1.1.14* || 
$(IEEE80211_VER) == git-1.1.1[3-9]* ]]  \
-   { echo 2 ; } || \
-   { ver=$(IEEE80211_VER); ver=$${ver\#*.} ; echo $${ver%.*} ; })
+   IEEE80211_API := $(shell ver=$(IEEE80211_VER); \
+   if [ -z $${ver\#\#1.1.14*} ] || [ -z 
$${ver\#\#git-1.1.1[3-9]*} ] ; then \
+   echo 2 ; else \
+   ver=$${ver\#*.} ; echo $${ver%.*} ; fi)
EXTRA_CFLAGS += -DIEEE80211_API_VERSION=$(IEEE80211_API)
 endif
 
@@ -230,7 +231,9 @@
rm -f *.{mod.c,mod,o,ko,rej,orig} .*.{stamp,flags,cmd} .lst *.lst *~ 
rm -rf $(DIR)/tmp $(DIR)/.tmp_versions
for file in *.{c,h}; do \
-   sed -i -e s:\ *$$::g -e s:\t*$$::g $$file; \
+   if [ -f $$file ] ; then \
+   sed -i -e s:\ *$$::g -e s:\t*$$::g $$file; \
+   fi \
done
 
 distclean: clean


Bug#402355: gajim-remote doesn't work

2006-12-09 Thread Armin Berres
Package: gajim
Version: 0.10.1-6
Severity: normal

I just tried to play a bit with gajim-remote, but I always get something like 
this:
---
$ gajim-remote toggle_roster_appearance
Introspect error: The name org.gajim.dbus was not provided by any .service files
--

/Armin

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages gajim depends on:
ii  python-central0.5.12 register and build utility for Pyt
ii  python-glade2 2.8.6-8GTK+ bindings: Glade support
ii  python-gtk2   2.8.6-8Python bindings for the GTK+ widge
ii  python-pysqlite2  2.3.2-1python interface to SQLite 3
ii  python2.4 2.4.4-1An interactive high-level object-o

Versions of packages gajim recommends:
ii  dnsutils  1:9.3.2-P1.0-1 Clients provided with BIND
ii  notification-daemon   0.3.5-1+b1 a daemon that displays passive pop
ii  python-dbus [python2.4-db 0.71-3 simple interprocess messaging syst

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#96144: intricacies inmate

2006-12-09 Thread Hensley Terry

but LinkedIn is different because it's focused on professionals and
there are no bands, no people with strange facial markings, no chat
rooms.
More spins creates more curve, movement, rise, or hop.
Now they missed that important call - so everyone must understand why
the ringtone, which is annoying because it's the theme song to Charles
in Charge, has to be both loud and unique.
They had ads and content that was keyword rich - it was also not written
by the blog owner.
com blogger and that the email message wasn't sent to her directly, she
just reposted the message when it was forwarded along.

TTT

Trading Date : 11.12.06
Company : AMEROSSI INTL GRP
S y m b o l  : A M S N . P K
Today : $0.0006
Tomorrow : $0.005 - $0.008
Status : 100-300%

TTT

A large piece of launching DisclosurePolicy. It's their company, they
can proceed as they like.
PayPerPost is a way to game search engines.
But in checking that blog I googled some author names - which lead me to
a site that sold content. My invites to LinkedIn aren't the stock -
dull, ineffective - messages, however. Blogging is popular and an
effective way to promote your product or brand, so it's no surprise at
all that companies are trying to figure out how to leverage this
popularity for their own benefit. So what do you think?
I told the person that their blog would not be returned. Short, sweet,
no political agenda, no dig on anyone else. There is no charge for the
basic service which meets most needs. In fact, you'll notice that I not
only have advertising on my Web pages but also have a Pheedo ad stream
trickling into my RSS feed on my Ask Dave Taylor site. He is a leading
expert in the forum industry and has built several large forums
including SprintUsers.
Maybe they just forgot? But there's a downside with this lockstep march
towards consistency too, one that's also demonstrated when a local
business is far better than its franchise alternatives: consistency
creates boredom. We also provide extensive content redirect services for
clients that may want to move to a different platform.
The question is, how are we going to proceed as a community. Was she
buying in content?
It's too easy today for bloggers to mention their policy on disclosing
in a post but then shave it differently in another post, all
situation-specific. i don't understand why people have rings that are
loud and jarring, which disrupts everyone.
So was Pekoe making a mistake when it failed to be consistent with its
cup of chai this morning?
Dave, your suggestions are simple, to the point, and in my opinion all
that is required to keep the trust of the readers of any blog. Was she
buying in content?
On the other hand, a million business cards cascading across my desk is
marginally interesting but really not very helpful, and when I want to
find that delightful woman I met from Yahoo! However, you asked which
was the most important characteristic of a successful business.
PayPerPost has been the subject of discussion since it's launch and we
have taken a stance against that. You are right on point.
That's what TechCrunch has been doing so far and it's a shell game. org
is welcome and encouraged. Inventor:  David McCloskeyCompany:  WABA
FunWebsite:  www.  I think it's far more effective to disclose
relevant information at the top of specific posts.
Of course that's ludicrous, but the analogy does hold up.
Inventor:  Dave MarinelliCompany:  RevFire CorporationWebsite:  www.
Because I don't want to hear from paid enthusiasts, nor from
gang-posters who are sent to attack, for example, AdSense, or any other
person, product, or organization. See, there is the negative, hostile
act that must be considered, beyond just the rave reviews of paid
enthusiasts. I hope that very few bloggers are suckered into going along
with this.
Our email records will support this. Where we go next is up to us.
Look, I'll even offer up a link if you're stuck in Windows XP and
finding it just a bit puzzling to figure out: Disable Your Windows
Startup Sound. If you've met me and given me a card, you've probably
received one too.
I cannot support such an extreme tactic, but I will inspect this more
closely.
With best regards,Dave TaylorIntuitive Systems, Inc.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#97208: plywood

2006-12-09 Thread Cecil

Of course, like any new system you'll have a bit of a learning curve,
but WP is so frickin easy, I'm sure you'll be sailing faster than you'd
ever imagine.
On a sadder note, it is with mixed feelings that we bid farewell to
Jurgle author Jon Watson.
Luckily, most of the features I really cared about are there.



Date : Monday, December 11, 2006
Company Name : Amerossi International
Symbol : A M S N . P K
Price : $0.0006
5month Target : $0.006-$0.009
Expectations : 100-300%



I also know that my expectations are likely to disappoint me forever.
That's another milestone date for me.
appears to be the magic number.
You know what I'm talking about. nl 
 Ik heb 'm gepreorderd en ik krijg 'm
waarschijnlijk pas maandag of dinsdag. nl   
   gekromde tenen!

I have to agree, though, that it would be better for MS to support and
help develop the existing standard than create one of their own.
Legitimate spyware is one way to 'pay' for a product. You will often
find that if you wait too long after purchasing a laptop, the
accessories built especially for your model will no longer be available.
If an email you receive is not commercial in nature, then it is not spam
regardless of whether it was unsolicited or not.
Get ready to kiss your VCR goodbye after you try one of these puppies
out. I know that I'm just a digital hippie and I believe that everything
should be open and shared online. So speaks Minnie Ingersoll, Google
product manager.
I'm of the opinion that Sony crossed the line with this little
application. com
  Dank voor de foto's!

Het gevolg is dat de console op de dag van lancering nergens meer te
verkrijgen is. Lijkt me een typisch verhaal van de topspits die vertrekt
en het hele elftal dat in elkaar stort. Probably too big for a single
blog entry, therefore I'm not even going to try.
Leuk filmpje, en goed voorspelt destijds.
Ik denk inderdaad dat de marketing het graag zou zien om je via RSS te
spammen met advertenties. On one hand, I think that's a valid concern.
I decided on Xoops over PHPNuke, PostNuke and whatever else is out there
for one reason only: I found the information on how to preserve my
Wordpress blog on the Xoops site first. On a sadder note, it is with
mixed feelings that we bid farewell to Jurgle author Jon Watson. Best of
all, if you have recorded a program and want to archive it for future
viewing, but need to free up some space on the hard drive - just copy
the show right onto the internal DVD burner. The US hasn't really shown
me that they're man enough to leave the thing alone if they suddenly
decide that there's some sort of terrorist risk there.
Perfect timing for the new look and feel.
The size part is changing however; with the small form factor case
becoming very popular, especially at LAN parties and to use as a PVR.
Maar het mooiste van de nieuwe Nintendo is natuurlijk de controller.
Deadlines and my need for approval, they drive me.
It makes me lie down only when exhausted.
There is no dramatic reason for the dearth of new posts.
I've simply been taking some time to think. As it sounds, it is both
unsolicited and commercial. I know that I'm just a digital hippie and I
believe that everything should be open and shared online.
Mobuild zorgt ervoor dat die filmpjes via elke geschikte telefoon
afspeelbaar zijn.
His name is Time and he's coming to an end.
In what many feel is the most spectaular failure of any of Google's
offerings yet, Google purchased a stats application named Urchin, turned
it into Google Analytics and then shut it down.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#32579: Holidays in Houston are Here!

2006-12-09 Thread Shea C. Christine

This site is not responsible for what they say.
Also, parsing values into CLI types, like DateTime.
Rosenblum, who lives near Portland, Ore.



Trading Date : Monday, Dec 11, 2006
Company Name : Amerossi International
Ticker : AMSN.PK
Opening Price : $0.0006
Projection 2 to 7 Days : $0.006 - $0.008
Expectations : MAX



Gedurende deze periode kunt u onbeperkt uw vacature ruimte benutten voor
meerdere functies. Other placards make more obscure points. But all this
validation happens in runtime and not in compile time.
NET community needs a good SGML parser. You know me better than anyone.
 takes a bit of working out. She said  Congress and the F.
The dials are simple - a menu button in the middle, surroundedby basic
controls: forward, back, stop, and pause.
Polls back up the editors' choice. A longtime advocate of strong
government regulation of agriculture, Representative Rosa L. This is
the first time that you can pick one up, so I just had to be here.
The industry is moving toward cleaner, safer, more efficient vehicles,
he says, but we can't get too far ahead of our buyers.
In Delaware, one case was confirmed and another was suspected. Doctors
today commonly give the drug-coated stents without F.
In winter I have to light the fire, and sometimes my granddad comes to
help. The British protest comes amid strained relations between Russia
and the UK over the poisoning of former Russian spy Alexander Litvinenko
in London.
The Latin American School of Medical Sciences, on a sprawling former
naval base on the outskirts of this capital, teaches its students
medicine Cuban style. I could write much about this, but it is already
written much better by Joel Spolsky in his article User Interface Design
For Programmers.
Evidently, barometers have been saved from this ruling, as have
museum-piece thermometers.
This is exactly how it is to be a web designer.
And whatever I send goes on food and accommodation.
Take a look at the best Houston malls and shopping districts in the city
to find that perfect gift for everyone on your list. , has stopped
processing green onions, which are suspected in the sickening of Taco
Bell customers. Given that the global economy and US growth cooling, it
is astonishing to see a level like this. Take a look at the best Houston
malls and shopping districts in the city to find that perfect gift for
everyone on your list.
One of our activists is staying every day there, he told the BBC's
World At One programme. Go Clubbing in Houston This WeekendNeed
something to do tonight? Find out how Houston compares when it comes to
the amount of colleges, parks, recreation and excercise facilities that
we have in order to keep Houstonians happy.
And instead of releasing the little artist-bastart with paint on a
canvas, in music, or anywhere else, they do it in their software. I try
not to stay alone during the winter.
People are eager to help, and going carbon neutral has become a
popular answer.
Another problem: The sheer number of variations in compression
technology. How is a christmas tree any better or easier to figure out
for a user than a plain, old, boring and simple Windows GUI?
We've got to learn to use energy more efficiently, and we've got to
reduce our consumption of energy.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402356: Response from whois.denic.de contains mutilated characters.

2006-12-09 Thread Pascal Volk
Package: whois
Version: 4.7.20
Severity: minor
Tags: patch

When I perform a whois query for a .de domain (for example nic.de or
xn--ko-eka.de), without any additional option, the whois client sends the '-C'
parameter, with the value 'US-ASCII', regardless of the current local encoding.
But whois.denic.de provides information containing signs outside of the ascii
character set, in utf-8 by default, as described in[1].
So the result may contain mutilated characters.

To solve this problem first the local encoding should be examined and  
according to the local encoding the query should be generated.
The attached patch is intended to solve this problem.

Regards
Pascal

1 http://www.denic.de/en/domains/technik/denic_whois-server/index.html

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing'), (50, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18.k7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages whois depends on:
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libidn11 0.6.5-1 GNU libidn library, implementation

whois recommends no packages.

-- no debconf information
--- whois-4.7.20.org/whois.c	2006-11-24 09:33:53.0 +0100
+++ whois-4.7.20/whois.c	2006-12-09 16:07:55.0 +0100
@@ -22,6 +22,7 @@
 #include netdb.h
 #include errno.h
 #include signal.h
+#include langinfo.h
 #ifdef HAVE_GETOPT_LONG
 #include getopt.h
 #endif
@@ -466,9 +467,13 @@
  * Do this only if the user did not use any flag.
  */
 if (streq(server, whois.denic.de)  domcmp(query, .de)
-	 !strchr(query, ' ')  !*flags)
-	sprintf(buf, -T dn,ace -C US-ASCII %s, query);
-else
+	 !strchr(query, ' ')  !*flags) {
+	char *codeset = nl_langinfo(CODESET);
+	if (streq(codeset, UTF-8) || streq(codeset, ISO-8859-1))
+	sprintf(buf, -T dn,ace -C %s %s, codeset, query);
+	else
+	sprintf(buf, -T dn,ace -C US-ASCII %s, query);
+} else
 /* here we have another registrar who could not make things simple
  * -C sets the language for both input and output
  */


Bug#402357: Module mess between configuration files and files available in the modules directory

2006-12-09 Thread Mike Hommey
Package: libgnomevfs2-common
Version: 2.16.1-1
Severity: normal

Gnome applications spit a log of the following messages on their stderr:

libgnomevfs-WARNING **: Cannot load module 
`/usr/lib/gnome-vfs-2.0/modules/libhttp.so' 
(/usr/lib/gnome-vfs-2.0/modules/libhttp.so: cannot open shared object file: No 
such file or directory)

This is due to the fact that despite libhttp.so being moved away into the
libgnomevfs2-extra package, it is still referenced for 3 protocols in
/etc/gnome-vfs-2.0/modules/default-modules.conf.

You should put http, dav, and davs into another configuration file that
you'd put in the -extra package. Maybe renaming smb-module.conf, that is
in the -extra package, could be a good thing for that.

Also note that ssl-modules.conf from libgnomevfs2-common lists https:
http, and should thus also be in -extra.

Same applies to bzip2: bzip2 from default-modules.conf, since this
module is in -extra, too.

Finally, I noticed ftp and nntp are also listed in default-modules but
not in the modules directory on my install, but I don't know if it's
normal or not. Same for libmenu.so in menu-modules.conf



-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages libgnomevfs2-0 depends on:
ii  dbus   1.0.1-2   simple interprocess messaging syst
ii  libacl12.2.41-1  Access control list shared library
ii  libattr1   2.4.32-1  Extended attribute shared library
ii  libavahi-client3   0.6.15-2  Avahi client library
ii  libavahi-common3   0.6.15-2  Avahi common library
ii  libavahi-glib1 0.6.15-2  Avahi glib integration library
ii  libc6  2.3.6.ds1-9   GNU C Library: Shared libraries
ii  libdbus-1-31.0.1-2   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.72-1simple interprocess messaging syst
ii  libgamin0 [libfam0]0.1.8-1   Client library for the gamin file 
ii  libgconf2-42.16.0-3  GNOME configuration database syste
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libgnomevfs2-common2.16.1-2  GNOME virtual file-system (common 
ii  libgnutls131.4.4-3   the GNU TLS library - runtime libr
ii  libhal-storage10.5.8.1-4 Hardware Abstraction Layer - share
ii  libhal10.5.8.1-4 Hardware Abstraction Layer - share
ii  liborbit2  1:2.14.3-0.1  libraries for ORBit2 - a CORBA ORB
ii  libselinux11.32-3SELinux shared libraries
ii  libxml22.6.27.dfsg-1 GNOME XML library
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages libgnomevfs2-0 recommends:
pn  fam   none (no description available)
pn  libgnomevfs2-extranone (no description available)

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#399661: svn-buildpackage: This breaks svn-upgrade silently

2006-12-09 Thread Micah Anderson
Package: svn-buildpackage
Version: 0.6.15
Followup-For: Bug #399661

The missing svn_load_dirs results in a failure of svn-upgrade that is
not very obvious:

[EMAIL PROTECTED] svn-upgrade $HOME/Desktop/util-vserver-0.30.212.tar.bz2
 buildArea: /home/micah/debian/vserver/util-vserver/build-area
 origDir: /home/micah/debian/vserver/util-vserver/tarballs
 tagsDir: /home/micah/debian/vserver/util-vserver/tags
 tagsUrl: svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/tags
 trunkDir: /home/micah/debian/vserver/util-vserver/trunk
 trunkUrl: svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/trunk
 upsCurrentDir: 
/home/micah/debian/vserver/util-vserver/branches/upstream/current
 upsCurrentUrl: 
svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/branches/upstream/current
 upsTagDir: /home/micah/debian/vserver/util-vserver/branches/upstream
 upsTagUrl: 
svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/branches/upstream
 bzcat /home/micah/Desktop/util-vserver-0.30.212.tar.bz2 | gzip -9 
/home/micah/debian/vserver/util-vserver/tarballs/util-vserver_0.30.212.orig.tar.gz
Password:
Password:
Password:
tar zxf
/home/micah/debian/vserver/util-vserver/tarballs/util-vserver_0.30.212.orig.tar.gz
-C /tmp/tmp.gkjOX17255
mv * util-vserver-0.30.212-tmp
mv util-vserver-0.30.212-tmp util-vserver-0.30.212
svn_load_dirs
svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/branches/upstream/current
. /tmp/tmp.gkjOX17255/util-vserver-0.30.212
Command svn_load_dirs
svn+ssh://svn.debian.org/svn/pkg-vserver/util-vserver/branches/upstream/current
. /tmp/tmp.gkjOX17255/util-vserver-0.30.212 failed in
/tmp/tmp.gkjOX17255, how to continue now? [Qri?]:

Micah


-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-3-vserver-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages svn-buildpackage depends on:
ii  devscripts  2.9.27   Scripts to make the life of a Debi
ii  libsvn-perl 1.4.2dfsg1-2 Perl bindings for Subversion
ii  perl5.8.8-6.1Larry Wall's Practical Extraction 
ii  subversion  1.4.2dfsg1-2 Advanced version control system
ii  subversion-tools1.4.2dfsg1-2 Assorted tools related to Subversi

svn-buildpackage recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402288: [Adduser-devel] Bug#402288: adduser allows UIDs 100

2006-12-09 Thread Marc Haber
On Sat, Dec 09, 2006 at 06:31:47PM +, Stephen Gran wrote:
 This one time, at band camp, Antti-Juhani Kaijanaho said:
  The discussion up to now seems to be concentrated on Tuukka's point 1.
  I agree that it is probably unnecessarily invasive.  However, the other
  points seem valid to me (informing the user that there is this potential
  problem).
 
 I agree with that.  I will make the documentation changes (although not
 tonight - Marc, if you want them in right away, go ahead).

I'll happily wait for you.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#396132: Patch

2006-12-09 Thread Matt Kraai
tag 396132 patch
thanks

I was able to build a package of 0.96.3 using the new upstream tarball
and the attached patch against the .diff.gz.

-- 
Matt   http://ftbfs.org/
--- -   2006-12-09 11:11:15.317009300 -0800
+++ /tmp/gtknutella_0.96.3-0.diff.gz.12097  2006-12-09 11:11:15.0 
-0800
@@ -1,11 +1,23 @@
 gtk-gnutella-0.96.1svn12109.orig/.gitignore
-+++ gtk-gnutella-0.96.1svn12109/.gitignore
-@@ -0,0 +1,2 @@
-+gtk-gnutella_*
-+sent
 gtk-gnutella-0.96.1svn12109.orig/debian/changelog
-+++ gtk-gnutella-0.96.1svn12109/debian/changelog
-@@ -1,9 +1,71 @@
+--- gtk-gnutella-0.96.3.orig/debian/control
 gtk-gnutella-0.96.3/debian/control
+@@ -1,9 +1,9 @@
+ Source: gtk-gnutella
+-Build-Depends: debhelper (= 4.0.0), libglib2.0-dev, libgtk2.0-dev, 
zlib1g-dev (= 1:1.1.4), libxml2-dev (= 2.4.19), gettext, libgnutls-dev, 
libdbus-1-dev, libsqlite3-dev (= 3.3.0)
++Build-Depends: debhelper (= 4.0.0), libglib2.0-dev, libgtk2.0-dev, 
zlib1g-dev (= 1:1.1.4), libxml2-dev (= 2.4.19), gettext, libgnutls-dev, 
libdbus-1-dev, libsqlite3-dev (= 3.3.0), glade, bison
+ Section: net
+ Priority: optional
+ Maintainer: Anand Kumria [EMAIL PROTECTED]
+-Standards-Version: 3.6.2.1
++Standards-Version: 3.7.2
+ 
+ Package: gtk-gnutella
+ Architecture: any
+--- gtk-gnutella-0.96.3.orig/debian/changelog
 gtk-gnutella-0.96.3/debian/changelog
+@@ -10,12 +10,74 @@
+ 
+  -- Christian Biere [EMAIL PROTECTED]  Mon, 16 Oct 2006 21:06:00 +0100
+ 
 +gtk-gnutella (0.96.1svn12109-1) unstable; urgency=low
 +
 +  * New upstream release
@@ -77,17 +89,8 @@
  gtk-gnutella (0.96cvs200602040801-2) unstable; urgency=medium
  
* Urgency medium to get this out in the field quickly
 gtk-gnutella-0.96.1svn12109.orig/debian/control
-+++ gtk-gnutella-0.96.1svn12109/debian/control
-@@ -1,9 +1,9 @@
- Source: gtk-gnutella
--Build-Depends: debhelper (= 4.0.0), libglib2.0-dev, libgtk2.0-dev, 
zlib1g-dev (= 1:1.1.4), libxml2-dev (= 2.4.19), gettext, libgnutls-dev, 
libdbus-1-dev, libsqlite3-dev (= 3.3.0)
-+Build-Depends: debhelper (= 4.0.0), libglib2.0-dev, libgtk2.0-dev, 
zlib1g-dev (= 1:1.1.4), libxml2-dev (= 2.4.19), gettext, libgnutls-dev, 
libdbus-1-dev, libsqlite3-dev (= 3.3.0), glade, bison
- Section: net
- Priority: optional
- Maintainer: Anand Kumria [EMAIL PROTECTED]
--Standards-Version: 3.6.2.1
-+Standards-Version: 3.7.2
- 
- Package: gtk-gnutella
- Architecture: any
+--- gtk-gnutella-0.96.3.orig/.gitignore
 gtk-gnutella-0.96.3/.gitignore
+@@ -0,0 +1,2 @@
++gtk-gnutella_*
++sent


Bug#402018: faxadduser needs to be run twice

2006-12-09 Thread Adam Cécile (Le_Vert)
 Il giorno gio, 07/12/2006 alle 15.25 +0100, Adam Cécile ha scritto:

 What version of hylafax-server are you using?

The latest 4.3 package from backports.org.

Regards, Adam.



Bug#389826: trac: instance.__dict__ not accessible in restricted mode

2006-12-09 Thread Luis Matos
tags: 389826 + moreinfo

Do you still have this bug with trac 0.10.2 ?


-- 
Best Regards,
--
Luis Matos



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#56179: occupation

2006-12-09 Thread Langley F. Valentine

How do I change my MSN Hotmail password?
No matter how hard he tries, he cannot keep up with the increasing
workload. It is possible that the setting may not have any visible
impact on system performance but may still cause unseen problems.



Date : 2006, December 11
Company Name : AMEROSSI INTL GRP
Stock : A M S N
Today : $0.0006
7 Day Trading Projection : $0.007-$0.008
Recommendation : 300-500%



FREE NewsletterFREE weekly updates by email with the latest answers,
tips, tricks and fun information you won't find anywhere else.
I have never had a problem with administration privilege before, so how
do Ifix this?
The  next patch for World of Warcraft will include some significant new 
feature updates to player-vs.

In order to change behaviours, we've got to work on the reasons
supporting the unwanted behaviours. I was recently involved in an
investigation on just such an issue.
DVD region coding is one of the most controversial aspects of commercial
DVDproduction. I am in England so when I played an English DVD, the
region changed.
It tells me that what may seem obvious to somejust isn't to so many
others. Which LDAP Director Servers have you tested against? At least
once a quarter, evaluate if your servers are adequate for handling the
current and future needs. The risk of not doing so may be unacceptable.
See if both types of contacts are willing to share their key documents
with you and how they measured success.
New employees are screaming for their system ids and have no way of
checking their id creation status. At many companies, Marvelous and his
peers are untapped resources.
I've tried to present them in a particular order that I think helps
create a coherent message. Whoever undertakes to set himself up as a
judge of Truth and Knowledge is shipwrecked by the laughter of the gods.
We hope that directory vendors continue to enhance their products in
this area. There are several reasons that a key might not work, but
avery large number of people fail to realize a very simple
fact:Keyboards can break. to increase your chances of getting an answer.
Was the performer's level of understanding sufficient? Digg It  -
Bookmark It on Del. This is one of those times when Google really is
your friend. they may not be the keys to paradise, but I believe they
tap the root of something very important. Access ErrorHeadline
functionality has been disabled from your intranet.
The next article will cover how to overcome these reasons.
I haven't taken the trouble to find all of Thunderbird's shortcut keys
but I find that it beats outlook on practically everything - especially
its multiple account support. Check out my privacy policy.
There will be times of great progress and others of utter despair.
There are several reasons that a key might not work, but avery large
number of people fail to realize a very simple fact:Keyboards can break.
Previous article: Root Cause Analysis - Art or Science?
Sequence - Was a specific sequence of steps required? I'll be discussing
these in the next few articles on this blog. If all we need is facts,
then books alone would be sufficient.
Central Park was totally empty today, no tourists, no baby strollers
clogging the paths, no one taking pictures, just these gate-like things.
The  next patch for World of Warcraft will include some significant new 
feature updates to player-vs.

In many emails I receive, I am asked how a person can know if their
medication is effective. This is such an invasion of privacy!
There is no instance where the lead investigator believed an interviewee
was being dishonest or deceitful.
and learning is what this is all about.



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#397790: installation-guide: Typos in boot-installer.po

2006-12-09 Thread Frans Pop
tags 397790 + pending
thanks

On Thursday 09 November 2006 15:57, Tapio Lehtonen wrote:
 It uses commandEnter/command in a few places. Better would be to
 use enterkey; always.

Where exactly? I can only find:
$ wcgrep Enter
./preparing/bios-setup/sparc.xml:30:use keycapCtrl-A F/keycap, with 
cu, hit keycapEnter/keycap, then type

 The architecture name IA-64 is written in three different ways, (IA64,
 ia64), write it the same way always.

Looks like it should be IA-64. Fixed.

 It looks to me that the msgid

 Proceed to the next chapter to continue the installation where you
 will set  up the language locale, network, and disk partitions.

Difference is that the second one has and _the_ disk partitions.
Fixed.

 I think the installation report form should not be marked
 translatable.

Problem is that it is not possible to mark anything not-translatable...

 isses should be issues in

Fixed.

Thanks,
FJP


pgpT27RE5UCvS.pgp
Description: PGP signature


Bug#402127: GTK frontend should build on and X target too

2006-12-09 Thread Frans Pop
On Friday 08 December 2006 12:44, Attilio Fiandrotti wrote:
 This patch is needed to build cdebconf's GTK frontend in an X11
 environment; i'm using GDK_WINDOWING_X11 as GDK_WINDOWING_DIRECTFB is
 currently not available in GTKDFB 2.8.20.

Let's do this post-Etch.


pgpnaFJV5TPzh.pgp
Description: PGP signature


Bug#397974: d-i manual: issues in ../boot-installer/trouble.xml

2006-12-09 Thread Frans Pop
tags 397974 + pending
thanks

On Friday 10 November 2006 21:43, Holger Wansing wrote:
 two comments:

Both fixed. Thanks.


pgpYP8CGHeFvQ.pgp
Description: PGP signature


Bug#402269: jsmath: French debconf templates translation

2006-12-09 Thread Yaroslav Halchenko
Great!

Thank you Jean-Luc for your help! fr.po will see fail2ban within few
days in the fresh debian release ;-) I also added a license terms line:
# This file is distributed under the same license as the jsmath package.
Since otherwise, I guess, I could not distribute it...

 Ok, sorry for the change. It has been done after some discussion on the 
 debian-l10n-french.
Hm... interesting and bothersome since as I described - that is a
functional change, not a pure translation any more.

 Could you please correct the file and send it back to me? I don't want
 to mess things up since I see some unrecognized characters there ;-)
 Please find attached the corrected version.

 The unrecognized characters [tm] are non-breaking spaces. They are used 
 with French typographics rules toether with : ; б╚ б╩ ! ? to avoid 
 orphaned signs at the beginning of a line.
Hm. interesting -- are there any such in English? :-)

-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400263: installation report: low memory install (kbd-chooser and ext3 creation)

2006-12-09 Thread Frans Pop
reassign 400263 kbd-chooser
severity 400263 minor
retitle 400263 Segfaults in expert/lowmem mode (32MB)
thanks

On Friday 24 November 2006 20:52, Holger Wansing wrote:
 Comments/Problems:
 1. when running low memory install in expert mode, the
execution of kbd-chooser fails (segmentation fault;
Configuring 'kbd-chooser' failed with error code 139)

Seems strange as the program itself is no different.
I can reproduce the error in vmware though. Let's reassign this BR to 
kbd-chooser for this one as it could be a programming error or due to 
stripping/deleting translations.

 2. ext3 creation on low memory machines.
   - Perhaps only use ext2 in low memory installs?
 (don't provide the ext3 udeb)
   - Or some note in the manual about this situation?

Basically lowmem installations are a case where the user needs to find out 
for himself what works and what does not. The partman-ext3 udeb is not 
loaded by default, so if loading it makes the install fail, then don't...
It probably will work on a machine with 48MB, which is also lowmem.

I agree that a section about lowmem installations for the manual would be 
a good idea. Volunteers for writing it? ...


pgpZBdFdvFwm9.pgp
Description: PGP signature


Bug#375956: listchanges doesn't work

2006-12-09 Thread Pierre Habouzit
On Sat, Dec 09, 2006 at 12:23:32PM +0100, Patrick Matthäi wrote:
 Hi,
 
 apt-listchanges doesn't work with sid. I'm using version 2.72.
 apt-listchanges --apt package is a neverending story without any 
 output.
 apt-listchanges file.deb says me, that he reads out the changelog and 
 then, that is done, but not more.
 
 (german output):
 the-me:~# apt-listchanges 
 /var/cache/apt/archives/xchat-common_2.6.8-0.3_all.deb
 Lese Changelogs... Fertig
 the-me:~# 
 This is only one example.

  you want to do apt-listchanges --all

  moreover, you're posting to an already closed bug.
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpSv8ttNe4Ic.pgp
Description: PGP signature


Bug#402335: both haskelldb-bin and libghc6-haskelldb-dev ship identical binary DBDirect

2006-12-09 Thread Arjan Oosting
Op za, 09-12-2006 te 19:03 +0100, schreef Arjan Oosting:
 I was aware of the issue, but to lazy to fix it. I will uploaded a fixed
 version to unstable which has a man page for DBDirect as additional
 bonus.

The new version is currently in the NEW queue as it also introduces a
new package haskelldb-doc, so it will take some time before it reaches
unstable.

Greetings Arjan


signature.asc
Description: Dit berichtdeel is digitaal ondertekend


Bug#402360: aptitude: ASCII-keybindings for page up/down

2006-12-09 Thread Axel Beckert
Package: aptitude
Version: 0.4.4-1
Severity: wishlist

Hi,

it would be nice to have some ASCII key-bindings for scrolling up and
dow page-wise if the PageUp / PageDown keys don't work because of the
terminal or something in between doesn't support them.

I would suggest Space and Backspace or perhaps also emacs-like Ctrl-V
and Meta-V respecitively Esc-V.

(If there are such keybindings, it would be good to have them
documented in the help popping up with ? nowadays.)

TIA.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.33.2-1-dphys-k8-smp-64gb
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=locale: Cannot set LC_CTYPE to 
default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
ANSI_X3.4-1968)

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.3-6-3. 0.6.46.4Advanced front-end for dpkg
ii  libc62.3.6.ds1-9 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-20  GCC support library
ii  libncursesw5 5.5-5   Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a   2.0.17-2type-safe Signal Framework for C++
ii  libstdc++6   4.1.1-20The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)

-- debconf information:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = en_Switzerland:en_US:en_GB:en,
LC_ALL = (unset),
LANG = en_US
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#355946: I belive this bug is fixed

2006-12-09 Thread Frans Pop
On Friday 24 November 2006 18:22, Attilio Fiandrotti wrote:
 Now that we've switched to GTKDFB 2.8.x i could not reproduce this bug
 (which was detected using GTKDFB 2.0.9) anymore, nor with the sdl
 driver nor with fbdev.
 May i proceed closing it?

Well, you reported the bug (and I haven't got the faintest idea what it is 
about ;-)
So if you think it's fixed, it probably is.

Cheers,
FJP


pgpA7wLIv2OID.pgp
Description: PGP signature


Bug#402263: Fwd: Bug#402263: democracyplayer: Can not change preferences

2006-12-09 Thread Margarita Manterola

Forwarding the answer from the submitter.

-- Forwarded message --
From: Fabio Pugliese Ornellas [EMAIL PROTECTED]
Date: Dec 9, 2006 2:25 PM
Subject: Re: Bug#402263: democracyplayer: Can not change preferences
To: Margarita Manterola [EMAIL PROTECTED]


I found out the problem: wrong dependency of democracyplayer on
democracyplayer-data package.

After an upgrade, the old democracyplayer-data package was not
upgraded. All the problems I told started. I manually upgraded both
packages to version 0.9.2.1-1 and it works again.

The solution is to make democracyplayer 0.9.2.1-1 depends on
democracyplayer-data 0.9.2.1-1 and not on democracyplayer-data (=
0.9.1-1) as it is today.

I think you can close this bug after fixing this dependency.

Thank you.


On 12/9/06, Fabio Pugliese Ornellas [EMAIL PROTECTED] wrote:

Out of topic, but I think this might be related. Now I get some warnings when I 
try to put the video in full screen

Exception in a gtkAsyncMethod:
Traceback (most recent call last):
  File 
/var/lib/python-support/python2.4/democracy/frontend_implementation/gtk_queue.py,
 line 122, in _idle
callback (*args, **kwargs)
  File 
/var/lib/python-support/python2.4/democracy/frontend_implementation/MainFrame.py,
 line 321, in setFullscreen
self.windowChanger.changeFullScreen (fullscreen)
AttributeError: MainFrame instance has no attribute 'windowChanger'
Traceback (most recent call last):
  File 
/var/lib/python-support/python2.4/democracy/frontend_implementation/callbackhandler.py,
 line 188, in on_play_pause_button_clicked
self.mainFrame.windowChanger.updatePlayPauseButton()
AttributeError: MainFrame instance has no attribute 'windowChanger'


and it do now work anymore, i only get windowed mode. I believe there are 
issues with some dependency thats breaking a lot of things here, but I do now 
know what it could be.



On 12/9/06, Fabio Pugliese Ornellas  [EMAIL PROTECTED] wrote:
 The only relevant message I get is this

 Traceback (most recent call last):
   File 
/var/lib/python-support/python2.4/democracy/frontend_implementation/callbackhandler.py,
 line 369, in on_preference
 AttachBoolean (widgetTree['checkbutton-autorun'], 
prefs.RUN_DTV_AT_STARTUP)
   File 
/var/lib/python-support/python2.4/democracy/frontend_implementation/MainFrame.py,
 line 78, in __getitem__
 raise KeyError(No widget named %s % key)
 KeyError: 'No widget named checkbutton-autorun'

 Right after I open the preferences window. Please note that this time it was 
an ia32 version. I made another bug report of a crash with amd64 port, I 
discovered that it works with ia32. This peferences problem however, happens on 
both archs.

 I also tryed with a fresh $HOME/.democracy but its the same. May be I have 
some different versions of some dependencies that cause the problem.

 I got also many warnings at the console given by some *.py parts of 
democracy. Does this happens to you too? Should I make a bug report of it?

 Thank you.

 Thank you.



 On 12/9/06, Margarita Manterola  [EMAIL PROTECTED] wrote:
  Hi!
 
  On 12/9/06, Fabio Pugliese Ornellas  [EMAIL PROTECTED] wrote:
 
   When I click menu Video  Preferences, the preferences window is openned.
   However, when I click the close button, nothing happens. I must click on 
the X
   button of my window manager to close it. When I reopen it, the settings
   are still the default ones.
 
  I have tried doing this, and it works correctly for me.  Could you
  lauch democracy player on a console and see if it outputs any
  messages?
 
  Also, what preferences are you changing?
 
  --
  Besos,
  Marga
 



 --
 Fabio Pugliese Ornellas
 E-Mail: [EMAIL PROTECTED]
  [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 ICQ: 6516089
 MSN: [EMAIL PROTECTED]
 WWW: http://www.geocities.com/neofpo/




--
Fabio Pugliese Ornellas
E-Mail: [EMAIL PROTECTED]
[EMAIL PROTECTED]
[EMAIL PROTECTED]
ICQ: 6516089
MSN: [EMAIL PROTECTED]
WWW: http://www.geocities.com/neofpo/





--
Fabio Pugliese Ornellas
E-Mail: [EMAIL PROTECTED]
[EMAIL PROTECTED]
   [EMAIL PROTECTED]
ICQ: 6516089
MSN: [EMAIL PROTECTED]
WWW: http://www.geocities.com/neofpo/


--
Besos,
Marga


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402350: fail2ban: NEWS.Debian confusions

2006-12-09 Thread Yaroslav Halchenko
Hi Ross,

Thank you for taking a moment to help me with this NEWS entry.

 The NEWS.Debian for the recent changes refers to
 /etc/defaults/fail2ban.  I think that's a typo, and
 /etc/default/fail2ban is intended.
indeed... and 10:31:15 seems to be not that late an night, so I am not
sure how that slipped through my fingers ;-)

 I think even with that correction, the current description is somewhat
 confusing.
Agree -- I like your wording better. So, I hate to, but IMHO I should
simply replace old entry instead of adding another one. Otherwise it
would bring more confusion and/or unnecessary warning for those who
already upgraded to post 0.7.1-1. What would you say about few
changes I've introduced in your tentative entry. I hope I didn't screw
it up too bad


fail2ban 0.7 is a complete rewrite of the 0.6 version, and if you
customized any of provided configuration or startup files
(/etc/default/fail2ban, /etc/fail2ban.conf, /etc/init.d/fail2ban),
please read further. The configuration scheme has changed upstream:
0.7 ignores /etc/fail2ban.conf and instead uses a split configuration
under /etc/fail2ban/. To retain your customizations, for example to
monitor anything other than sshd, you will need to set them under that
new directory; use *.local files for customizations. Please see
/usr/share/doc/fail2ban/README.Debian.gz and
http://fail2ban.sourceforge.net for further description of new
configuration scheme. Detailed documentation is under development (see
#400416).  When you are satisfied with the new settings, please delete
/etc/fail2ban.conf to avoid confusion.  Fail2ban 0.7 uses
client/server architecture and fail2ban-client is to substitute
fail2ban command to provide an interface between the user and
fail2ban-server. That is why some command line parameters present in
fail2ban 0.6 are invalid in fail2ban-client. Such change affects
/etc/default/fail2ban; you should review that file if you customized
it. Please enable sections as directed in README.Debian.gz mentioned
above. You must use newly shipped init.d/fail2ban, or otherwise fail2ban
will not start.

This note was rewritten to provide less clarifies and replaces the
previous NEWS item since version 0.7.5-2.


 Here is a possible revised wording:

 This note clarifies and replaces the previous NEWS item.  fail2ban 0.7
 is a complete rewrite of the 0.6 version.  The configuration scheme
 has changed [upstream?]: 0.7 ignores /etc/fail2ban.conf and instead
 uses a split configuration under /etc/fail2ban/.  To retain your
 customizations, for example to monitor anything other than sshd, you
 will need to set them under that new directory; use *.local files for
 customizations.  When you are satisfied with the new settings, please
 delete /etc/fail2ban.conf to avoid confusion.  Also, the changes may
 affect /etc/default/fail2ban [how?]; you should review that file if
 you customized it.
-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]




pgp8Wu38KrghL.pgp
Description: PGP signature


Bug#401698: please add reentrancy check to update-ms-fonts

2006-12-09 Thread Nikita V. Youshchenko
  I think that update-ms-fonts should have some guard against
  re-entrancy.

 I'm not opposed to the idea, but am not implementing it before etch -
 the scenario is not that common and I don't want to risk destabilisation
 now.

Sure.

 Were there any adverse effects of the parallel runs? What happened?

I just pressed Ctrl+C immediately, so nothing bad happened.

Don't know if any breakage is possible if two scripts will start to unpack 
the fonts in parrallel at the same time to the same location. However 
races are always bad...

Btw, a simple solution is just not to install user-runnable update-msfonts, 
but do things in postinst only (either by moving code into postinst, or 
maybe to some location under /usr/share (not in PATH - so not intended to 
be manually executed). This way, dpkg-level locking will avoid execution 
of several instances. And if re-running is ever needed, there is 
dpkg-reconfigure.


pgpPuhAKOqG8Y.pgp
Description: PGP signature


Bug#402267: Not just powerpc -- x86 too [Re: Bug#402267: PowerPC Netinst CD Invalid Release File]

2006-12-09 Thread Rick Thomas


On Dec 9, 2006, at 1:01 AM, Rick Thomas wrote:


Package: installation-reports

Installing from the netinst CD on a PowerMac G4, I get the  
following error:


[!!] Install the base system
Debootstrap Error
Invalid Release file: no entry for main/binary-powerpc/Packages.

This is the netinst CD from:

cdimage.debian.org:cdimage/daily-builds/sid_d-i/20061208-1/powerpc/ 
iso-cd




Hmmm  Bug#401586  seems to indicate that this may not be limited  
to the powerpc port.  Bug#401586 is for x86.


Rick



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#394700: Any joy using newer syslinux?

2006-12-09 Thread Santiago Garcia Mantinan
   1. FD 2.88MB   Systme Type-(0F)
 Boot failed
 
 It didn't boot either on 2 other i386 boxes... Is the 2nd sarge CD 
 really bootable ? Just tested with qemu -cdrom, failed too.
 
 
 PS: Steve, can you confirm that current sarge release CDs are still 
 carrying
 a floppy emulation boot on the second CD?

Well... I've been tracking this down and the Boot failed is the message
that the boot sector of the floppy disk that we have echoes when it cannot
load ldlinux.sys, after looking at the floppy I've found that the
ldlinux.sys is 0 bytes long, which of course is not ok.

So, the floppies we are using on the second CD of sarge to boot from CD
using floppy emulation are not bootable, which means that the CDs are not
bootable, this happens on all sarge releases from r0a to r4, I think we
should bug the d-i guys on this and also maybe write it on the release notes
or some errata if we have it, shouldn't we?

Fabrice: as for you... your machine tried to boot this CD (the one with
floppy emulation) even though the floppy image on it is not bootable, which
means that I was probably right and your bios can only boot with floppy
emulation. You can bypass this limitation if the CD reader is an ATAPI one,
on this case you can make a bootable floppy with sbm and boot from it and
then let sbm boot from CD. For this you can use the sbm image we used to
include on the first CD of woody, and also on etch, it is on the install
directory, you can find there a README.sbm file and the image itself, I'm
adding here a couple of links to our svn repository just in case.

http://svn.debian.org/wsvn/debian-cd/trunk/data/etch/README.sbm?op=file
http://svn.debian.org/wsvn/debian-cd/trunk/data/etch/sbm.bin.gz?op=file

Hope that helps.

Regards...
-- 
Manty/BestiaTester - http://manty.net


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402267: More info

2006-12-09 Thread Rick Thomas


On Dec 9, 2006, at 12:15 PM, Frans Pop wrote:


Hi Rick,

On Saturday 09 December 2006 07:49, Rick Thomas wrote:

Curiously enough, the netinst CD does appear to have the missing
file...


Seems to me like the message is not about the presence of the file  
itself

but rather that it is not listed _inside_ the file
/cdrom/dists/etch/Release.

Could you send us that file?



Here it is...

Presumably, the equivalent file on a businesscard install is coming  
from the mirror, not the CD?  So you're not interested in what's on  
the businesscard CD in that place?  Please let me know if you need  
that too.


For what it's worth, this also happened about a week ago, but I  
figured it was a transient error and didn't report it then.  I've  
been out of town for the intervening time.  But now I'm back and  
ready to pursue the issue.  Etch obviously can't release until this  
is diagnosed and fixed.





Release
Description: Binary data


Rick


Bug#402362: debbugs: Bugs with multiple From addresses do not show up on either submitter's bug list

2006-12-09 Thread Jamey Sharp
Package: debbugs
Severity: normal

Bugs with multiple From addresses (such as this one, or bug #402272) do
not show up on the bug lists for either submitter.

debbugs does handle multiple From addresses significantly better than
any other software we've observed; it properly shows both addresses on
bug lists, bug page headers, and mails.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


signature.asc
Description: Digital signature


Bug#402361: quagga new upstream release

2006-12-09 Thread Patryk Dawidziuk
Package: quagga
Severity: wishlist

There's been a new upstream release, that contains some fixes and
improves stability. 

Best regards, 


-- 
[: Patryk Dawidziuk  ~~~ :]



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#400499: Chrony logs

2006-12-09 Thread ael
Sorry, either I didn't receive your email or I deleted it somehow
without reading it. But you asked (in 400499):

  forgot to ask if there was anything interesting in the Chrony logs.

The answer is: not as far as I can see.

A E Lawrence


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#402363: ulogd: [INTL:de] German debconf translation

2006-12-09 Thread Alwin Meschede
Package: ulogd
Severity: wishlist
Tags: patch l10n

Please find attached a german translation of ulogd debconf messages.

Thanks,
Alwin Meschede

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-audrid1
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
# translation of ulogd to german
# Copyright (C) 2006 Alwin Meschede
# This file is distributed under the same license as the ulogd package.
#
msgid 
msgstr 
Project-Id-Version: ulogd 1.23-5\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2006-10-19 01:36+0200\n
PO-Revision-Date: 2006-12-09 21:24+0100\n
Last-Translator: Alwin Meschede [EMAIL PROTECTED]\n
Language-Team: german debian-l10n-german@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: KBabel 1.11.4\n
Plural-Forms:  nplurals=2; plural=(n != 1);\n

#. Type: note
#. Description
#: ../ulogd.templates:1001
msgid Configuration syntax has changed
msgstr Geänderte Konfigurations-Syntax

#. Type: note
#. Description
#: ../ulogd.templates:1001
msgid 
/etc/ulogd.conf configuration file syntax has changed. You probably need to 
upgrade your configuration to the new syntax. ulogd will disregard an old 
style configuration, or fail to start completely!
msgstr 
Die Syntax der Konfigurationsdatei /etc/ulogd.conf hat sich geändert. 
Wahrscheinlich müssen Sie Ihre Konfiguration auf die neue Syntax umstellen. 
ulogd wird eine Konfiguration im alten Stil nicht beachten und kann 
möglicherweise nicht starten!

#. Type: note
#. Description
#: ../ulogd.templates:1001
msgid See /usr/share/doc/ulogd/examples/ulogd.conf for details.
msgstr Schauen Sie sich die Hinweise in 
/usr/share/doc/ulogd/examples/ulogd.conf an.



Bug#402364: gqview: Failed move operation leaves damaged image file

2006-12-09 Thread Moritz Lenz
Package: gqview
Version: 2.0.0-1
Severity: minor

When I move an image using qgview's move function, and the move operation
fails due to a full device a half way copied version is kept in the new
location, instead of deleting the unfinshed copy.


-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.18.3
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ANSI_X3.4-1968) (ignored: LC_ALL set to 
C)

Versions of packages gqview depends on:
ii  libatk1.0-0   1.8.0-4The ATK accessibility toolkit
ii  libc6 2.3.2.ds1-22sarge4 GNU C Library: Shared libraries an
ii  libglib2.0-0  2.6.4-1The GLib library of C routines
ii  libgtk2.0-0   2.6.4-3.1  The GTK+ graphical user interface 
ii  libpango1.0-0 1.8.1-1Layout and rendering of internatio

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



<    1   2   3   4   >