Lindsay Lohan prefers Rolex, Cartier and Breitling

2005-06-23 Thread Herbert
Get the Finest Rolex Watch Replica !
  
We only sell premium watches. There's no battery in these replicas
just like the real ones since they charge themselves as you move. 
The second hand moves JUST like the real ones, too. 
These original watches sell in stores for thousands of dollars. 
We sell them for much less. 
  
- Replicated to the Smallest Detail
- 98% Perfectly Accurate Markings 
- Signature Green Sticker w/ Serial Number on Watch Back
- Magnified Quickset Date
- Includes all Proper Markings

http://www.chooseyourwatch4u.net/














you courageous me barlow me  [2


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



Bug#131950: xaw3dg: debconf question should be asked in .config script

2002-02-02 Thread herbert
Package: xaw3dg
Version: 1.5-9
Severity: normal

Please move the debconf query from the preinst script to the .config
script.  This would allow preconfiguration to occur.

-- System Information
Debian Release: 3.0
Kernel Version: Linux gondolin 2.4.17-686-smp #2 SMP Sat Dec 22 22:00:42 EST 
2001 i686 unknown

Versions of the packages xaw3dg depends on:
ii  debconf1.0.25 Debian configuration management system
ii  libc6  2.2.4-7GNU C Library: Shared libraries and Timezone
ii  xlibs  4.1.0-13   X Window System client libraries



Bug#832291: bogofilter-{bdb, sqlite, tokyocabinet}: copyright file missing after upgrade (policy 12.5)

2016-07-27 Thread Herbert

Hi Andreas Beckmann,

I did the last upload. Please see below.



a test with piuparts revealed that your package misses the copyright
file after an upgrade, which is a violation of Policy 12.5:
https://www.debian.org/doc/debian-policy/ch-docs.html#s-copyrightfile

After the upgrade /usr/share/doc/$PACKAGE/ is just an empty directory.

This was observed on the following upgrade paths:

jessie -> stretch

>From the attached log (scroll to the bottom...):

1m18.5s ERROR: WARN: Inadequate results from running adequate!
  bogofilter-bdb: missing-copyright-file /usr/share/doc/bogofilter-bdb/copyright

  MISSING COPYRIGHT FILE: /usr/share/doc/bogofilter-bdb/copyright
  # ls -lad /usr/share/doc/bogofilter-bdb
  drwxr-xr-x 2 root root 40 Jun 10 11:52 /usr/share/doc/bogofilter-bdb
  # ls -la /usr/share/doc/bogofilter-bdb/
  total 0
  drwxr-xr-x   2 root root   40 Jun 10 11:52 .
  drwxr-xr-x 109 root root 2300 Jun 10 11:52 ..


Additional info may be available here:
https://wiki.debian.org/MissingCopyrightFile

Note that dpkg intentionally does not replace directories with symlinks
and vice versa, you need the maintainer scripts to do this.
See in particular the end of point 4 in
https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-unpackphase

It is recommended to use the dpkg-maintscript-helper commands
'dir_to_symlink' and 'symlink_to_dir' (available since dpkg 1.17.14)
to perform the conversion, ideally using d/$PACKAGE.maintscript.
Do not forget to add 'Pre-Depends: ${misc:Pre-Depends}' in d/control.
See dpkg-maintscript-helper(1) and dh_installdeb(1) for details.



bogofilter-{bdb, sqlite, tokyocabinet} depends on bogofilter-common[0], 
which has the copyright file[1]. And I used:


debian/rules:

override_dh_installdocs:
dh_installdocs --link-doc=bogofilter-common

[0] - 
https://anonscm.debian.org/git/collab-maint/bogofilter.git/tree/debian/control

[1] - https://packages.debian.org/sid/all/bogofilter-common/filelist


Debian Policy 12.5 says:

"/usr/share/doc/package may be a symbolic link to another directory in 
/usr/share/doc only if the two packages both come from the same source 
and the first package Depends on the second. These rules are important 
because copyright files must be extractable by mechanical means."


I will check the current dh_installdocs manpage tomorrow.



regards,
Herbert



Bug#1004116: ssmtp: ssmtp truncates headers longer than BUF_SZ

2022-01-20 Thread herbert
Package: ssmtp
Version: 2.64-10
Severity: normal

The function smtp_write fails to handle headers longer than BUF_SZ.
For example, the following email will be truncated, resulting in an
invalid email header:

https://lore.kernel.org/all/de35edd9-b85d-0ed7-98b6-7a41134c3...@foss.st.com/

There is no reason why this limit should exist.  This patch fixes
it so that the length is practically unlimited (it is still limited
by the return value of vsnprintf which is INT_MAX).

diff --git a/ssmtp.c b/ssmtp.c
index dbb1437..f9d959a 100644
--- a/ssmtp.c
+++ b/ssmtp.c
@@ -1371,16 +1371,32 @@ smtp_write() -- A printf to an fd and append 
 */
 ssize_t smtp_write(int fd, char *format, ...)
 {
-   char buf[(BUF_SZ + 2)];
+   char stbuf[(BUF_SZ + 2)];
+   char *buf = stbuf;
va_list ap;
ssize_t outbytes = 0;
+   int sz;
 
va_start(ap, format);
-   if(vsnprintf(buf, (BUF_SZ - 1), format, ap) == -1) {
+   sz = vsnprintf(buf, (BUF_SZ), format, ap);
+   if(sz < 0) {
die("smtp_write() -- vsnprintf() failed");
}
va_end(ap);
 
+   if(sz >= (BUF_SZ)) {
+   buf = malloc(sz + 3);
+   if(!buf) {
+   die("smtp_write() -- malloc() failed");
+   }
+
+   va_start(ap, format);
+   if(vsnprintf(buf, sz + 1, format, ap) < 0) {
+   die("smtp_write() -- vsnprintf() failed");
+   }
+   va_end(ap);
+   }
+
if(log_level > 0) {
log_event(LOG_INFO, "%s\n", buf);
}
@@ -1391,6 +1407,10 @@ ssize_t smtp_write(int fd, char *format, ...)
(void)strcat(buf, "\r\n");
 
outbytes = fd_puts(fd, buf, strlen(buf));
+
+   if(buf != stbuf) {
+   free(buf);
+   }

    return (outbytes >= 0) ? outbytes : 0;
 }

--
Email: Herbert Xu 
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt



Bug#662003: apt-move with SHA256 support?

2012-03-30 Thread Herbert Xu
Hi:

Do we still need MD5 sums in the Packages file? If not I'd
suggest simply changing all existing references to md5 with
sha256 and it should just work.

Cheers,
-- 
Email: Herbert Xu 
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120331010717.ga2...@gondor.apana.org.au



Bug#579892: qtparted: Cannot get parted version

2010-05-01 Thread David Herbert
Package: qtparted
Version: 0.4.5-6+b1
Severity: important

The message "Cannot get parted version" appears in a dialog box and is printed
on the terminal before the main window appears, then qtparted exits.


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages qtparted depends on:
ii  kdebase-bin 4:4.3.4-1core binaries for the KDE 4 base m
ii  kdebase-runtime 4:4.3.4-2runtime components from the offici
ii  libc6   2.10.2-6 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.2-9GCC support library
ii  libice6 2:1.0.6-1X11 Inter-Client Exchange library
ii  libparted0debian1   2.2-5The GNU Parted disk partitioning s
ii  libpng12-0  1.2.43-1 PNG library - runtime
ii  libqt3-mt   3:3.3.8b-6   Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.1.1-1X11 Session Management library
ii  libstdc++6  4.4.2-9  The GNU Standard C++ Library v3
ii  libuuid12.16.2-0 Universally Unique ID library
ii  libx11-62:1.3.3-3X11 client-side library
ii  libxext62:1.1.1-3X11 miscellaneous extension librar
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages qtparted recommends:
ii  e2fsprogs 1.41.11-1  ext2/ext3/ext4 file system utiliti
ii  jfsutils  1.1.12-2.1 utilities for managing the JFS fil
ii  ntfsprogs 2.0.0-1+b1 tools for doing neat things in NTF
ii  parted2.2-5  The GNU Parted disk partition resi
ii  xfsprogs  3.1.1  Utilities for managing the XFS fil

qtparted suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100502024606.8794.55303.report...@apricot.local



Bug#579892: bumping up the severity

2010-08-20 Thread David Herbert


I think the last upstream version was back in 2005 and it's Debian 
package is unmaintained. Is it working for anyone?


David.

On 21/08/10 03:31, Kamaraju Kusumanchi wrote:

severity 579892 grave
stop

I can reproduce this bug on Debian Squeeze. This bug makes the
qtparted package unusable by most or all users. Hence bumping up the
severity.

The 0.4.5-4+b1 version in Lenny works fine. I wonder what caused the
regression in 0.4.5-6+b1?

thanks
raju





--
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4c6f6960.80...@deadbattery.co.uk



ЭЛИТНЫЕ ДАТСКИЕ ЕЛКИ

2006-12-29 Thread Meagan Herbert



  ДАТСКИЕ ЕЛКИ
  Цены от 3950 руб.




  РАЗМЕР ЕЛКИ
  ЦЕНА ЗА ЕЛКУ


  45..75 см
  3950 руб.


  75..100 см
  4350 руб.


  100..125 см
  5850  руб.


  125..150 см
   5350  руб.


  150..175  см
  5850  руб.


  175..200  см
  6350  руб.


  200..225  см
  7650  руб.


  225..250  см
   8250  руб.


  250..275  см
  11100  руб.


  275..300  см
  13800  руб.


  300..350  см
  17800  руб.


  350..400  см
  19900  руб.


  400..450  см
  31900  руб.


  450..500  см
  34000  руб.


  лапник Nobilis (1 упаковка)
  3400  руб.


  лапник Nordmann (1 упаковка)
  2600  руб.





  БЕСПЛАТНАЯ ДОСТАВКА ПО МОСКВЕ


  ТЕЛЕФОН: (495)223 17 37
ICQ  394 205 506
[EMAIL PROTECTED]





GoodPillsQueen

2008-01-07 Thread Herbert Downey
CheapOnlineStoreElliott
http://rxdev77.com


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



Bug#158696: Herbert Butcher wrote:

2006-10-17 Thread Herbert Butcher
hi Herbert i hope this is your mailbox.
I was pleased to meet you the other day. I hope you are really had like the  
New York.
So much so much happening all the time, lots of great opportunities.  
And speaking of opportunities, the deal I was speaking you about other day 
involves a company 
known as Tex-Homa (TXHE).
It's already growing up, but the big announcement isn't even 
out yet, so there's still time. I have got this shares already and made
2000. I counsel you to do the same today.

Hope this helps you out.  I'll see you this weekend.
Yours Herbert Butcher




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



Bug#822476: python-django-authority: Package is useless

2016-06-15 Thread Herbert Fortes
Hi Raphael Rigo,

> Package: python-django-authority
> Severity: grave
> Justification: renders package unusable
> 
> Dear Maintainer,
> 
> current version of the package does not support Django 1.7, which is the
> version included in jessie. As such, the package is probably useless for
> all users.
> 
> Django 1.7 support was added in version 0.9, released in november 2015.
> Version 0.5, which is in Debian, has been released in March 2013.
> 
> The package should be removed or upgraded.
> 

I will try to close this bug doing the upgrade to
the last version[0]:

 - 0.11 (2016-03-29):

Added Migration in order to support Django 1.8
Dropped Support for Django 1.7 and lower
Fix linter issues

[0] - https://github.com/jazzband/django-authority



regards,
-- 
Herbert Parentes Fortes Neto (hpfn)



Bug#822476: python-django-authority: Package is useless

2016-06-16 Thread Herbert Fortes
We have to wait a next release:

https://github.com/jazzband/django-authority/issues/50#issuecomment-226319945



regards,
-- 
Herbert Parentes Fortes Neto (hpfn)



Bug#811970: blackbox: FTBFS with GCC 6: symbol changes

2016-06-26 Thread Herbert Fortes
Hi,

On Tue, 19 Jan 2016 20:09:51 -0800 Martin Michlmayr  wrote:
> Package: blackbox
> Version: 0.70.1-30
> Severity: important
> User: debian-...@lists.debian.org
> Usertags: ftbfs-gcc-6 gcc-6-symbols
> 
> This package fails to build with GCC 6.  GCC 6 has not been released
> yet, but it's expected that GCC 6 will become the default compiler for
> stretch.
> 
> Note that only the first error is reported; there might be more.  You
> can find a snapshot of GCC 6 in experimental.  To build with GCC 6,
> you can set CC=gcc-6 CXX=g++-6 explicitly.

I am trying to fix this bug.



regards,
-- 

signature.asc
Description: This is a digitally signed message part


Bug#811970: fixed in blackbox 0.70.1-31

2016-06-28 Thread Herbert Fortes
fixed 811970 0.70.1-33
thanks

Hi,

Really fixed on version 0.70.1-33 (sent to experimental).



regards,
-- Herbert Parentes Fortes Neto (hpfn)

signature.asc
Description: This is a digitally signed message part


Bug#722200: libextractor-python: Please remove recommends on libextractor-plugins

2016-07-16 Thread Herbert Fortes
On Sun, 08 Sep 2013 19:46:15 -0500 Micah Gersten  wrote:
> Package: libextractor-python
> Version: 1:0.6-4
> Severity: normal
> Tags: patch
> User: ubuntu-de...@lists.ubuntu.com
> Usertags: origin-ubuntu saucy ubuntu-patch
> 
> The package merge happened in 1:1.1-1
> Thanks in advance.
> 
> *** /tmp/tmp9NACDg/bug_body
> 
> In Ubuntu, the attached patch was applied to achieve the following:
> 
>   * Drop Recommends on libextractor-plugins since this has been merged
> into libextractor3
> - update debian/control 
> 

I am doing a QA.



regards,
-- Herbert Parentes Fortes Neto (hpfn)

signature.asc
Description: This is a digitally signed message part


Bug#822476: python-django-authority: Package is useless

2016-07-21 Thread Herbert Fortes
On Thu, 16 Jun 2016 16:00:02 -0300 Herbert Fortes  wrote:
> We have to wait a next release:
> 
> https://github.com/jazzband/django-authority/issues/50#issuecomment-226319945
> 
> 

About Django 1.9.

It seems that one will do a 'Pull Request' and the
upstream will do the merge .



regards,
-- Herbert Parentes Fortes Neto (hpfn)

signature.asc
Description: This is a digitally signed message part


Bug#831261: xmlrpc-c: FTBFS: Tests failures

2016-07-23 Thread Herbert Fortes
owner 831261 !
thanks



Bug#832291: bogofilter-{bdb, sqlite, tokyocabinet}: copyright file missing after upgrade (policy 12.5)

2016-07-28 Thread Herbert Fortes
Hi Andreas,

> 
> Read these two paragraphs from the original report! This is exactly your
> problem!

I am not arguing against you. Just checking my
steps. The manpage enforces the bug. I did not 
read it with full attention:

CAVEAT: If a previous version of the package 
        was built without this option and is 
        now built with it (or vice-versa), it 
        requires a "dir to symlink" (or "symlink 
        to dir") migration.  Since debhelper has
        no knowledge of previous versions, you 
        have to enable this migration itself.


> 
> >> Note that dpkg intentionally does not replace directories with symlinks
> >> and vice versa, you need the maintainer scripts to do this.
> >> See in particular the end of point 4 in
> >> https://www.debian.org/doc/debian-policy/ch-maintainerscripts.html#s-unpackphase
> >>
> >>
> >> It is recommended to use the dpkg-maintscript-helper commands
> >> 'dir_to_symlink' and 'symlink_to_dir' (available since dpkg 1.17.14)
> >> to perform the conversion, ideally using d/$PACKAGE.maintscript.
> >> Do not forget to add 'Pre-Depends: ${misc:Pre-Depends}' in d/control.
> >> See dpkg-maintscript-helper(1) and dh_installdeb(1) for details.

Thanks to point me the fix.

> 
> 
> > bogofilter-{bdb, sqlite, tokyocabinet} depends on bogofilter-common[0],
> > which has the copyright file[1]. And I used:
> 
> That's fine
> 
> > override_dh_installdocs:
> > dh_installdocs --link-doc=bogofilter-common
> 
> Which is also fine, but not sufficient for clean upgrades.
> 

Hopefully I close this bug today.



regards,
-- Herbert Parentes Fortes Neto (hpfn)

signature.asc
Description: This is a digitally signed message part


Bug#832291: bogofilter-{bdb, sqlite, tokyocabinet}: copyright file missing after upgrade (policy 12.5)

2016-07-28 Thread Herbert Fortes
Hi,

I created the .preinst files and now it
seems that the upgrade is ok.

I did manual tests and ran piuparts too.

# piuparts bogofilter_1.2.4+dfsg1-7_amd64.changes

9m24.4s DEBUG: Recording chroot state
9m25.9s INFO: PASS: Installation, upgrade and purging tests.
9m26.3s DEBUG: Starting command: ['umount', '/tmp/tmpztbiO1/dev/shm']
9m26.3s DEBUG: Command ok: ['umount', '/tmp/tmpztbiO1/dev/shm']
9m26.3s DEBUG: Starting command: ['umount', '/tmp/tmpztbiO1/dev/pts']
9m26.3s DEBUG: Command ok: ['umount', '/tmp/tmpztbiO1/dev/pts']
9m26.3s DEBUG: Starting command: ['umount', '/tmp/tmpztbiO1/proc']
9m26.3s DEBUG: Command ok: ['umount', '/tmp/tmpztbiO1/proc']
9m26.3s DEBUG: Starting command: ['rm', '-rf', '--one-file-system', 
'/tmp/tmpztbiO1']
9m27.2s DEBUG: Command ok: ['rm', '-rf', '--one-file-system', '/tmp/tmpztbiO1']
9m27.2s DEBUG: Removed directory tree at /tmp/tmpztbiO1
9m27.2s INFO: PASS: All tests.
9m27.2s INFO: piuparts run ends.

The debdiff is basically:

+case "$1" in
+   install|upgrade)
+   # dpkg does not replace directories by symlinks or vice versa.
+if dpkg --compare-versions "$2" lt "1.2.4+dfsg1-7" ; then
+  rm -rf /usr/share/doc/bogofilter-bdb || true
+fi
+;;
+abort-upgrade)
+;;
+*)
+echo "preinst called with unknown argument \`$1'" >&2
+exit 1
+;;
+esac

For each package, of course.

First did an upload to mentors[0]. Then did 
th upload with delay/3 (just in case of)
to ftp-master.

[0]- https://mentors.debian.net/package/bogofilter
     
https://mentors.debian.net/debian/pool/main/b/bogofilter/bogofilter_1.2.4+dfsg1-7.dsc



regards,
-- Herbert Parentes Fortes Neto (hpfn)

signature.asc
Description: This is a digitally signed message part


Bug#783396: python-irc: New upstream version 15.0.5

2016-12-18 Thread Herbert Fortes
Hi,

On Sun, 18 Dec 2016 22:39:55 +1100 Ben Finney wrote:
> Control: retitle -1 python-irc: New upstream version 15.0.5
>
> On 26-Apr-2015, Daniel Baumann wrote:
> > it would be nice if this could be upgraded to the current upstream
>
> On 2016-11-28 upstream released version “15.0.5”.
>

The package was split up in several packages. That's
why I did not update it.

Now python-irc needs a lot of packages that are not
part of Debian. This is what I understood.



Regards,herbert




Bug#783396: python-irc: New upstream version 15.0.5

2016-12-18 Thread Herbert Fortes
Hi,

On Sun, 18 Dec 2016 22:39:55 +1100 Ben Finney wrote:
> Control: retitle -1 python-irc: New upstream version 15.0.5
>
> On 26-Apr-2015, Daniel Baumann wrote:
> > it would be nice if this could be upgraded to the current upstream
>
> On 2016-11-28 upstream released version “15.0.5”.
>

python-irc was split in several packages and needs a
lot of packages that are not part of Debian. It is what
I understood.

That's why I did not updated it.



Regards,
Herbert



Bug#711197: pyneighborhood: Fails on TypeError: 'NoneType' object has no attribute '__getitem__'

2017-09-09 Thread Herbert Fortes
On Wed, 05 Jun 2013 13:32:46 +0200 Olivier Berger wrote:
> Package: pyneighborhood
> Version: 0.5.1-2
> Severity: normal
>
> Hi.
>
> Trying to browse a remote servern through its IP, I get :
>
> $ /usr/bin/pyNeighborhood
> Traceback (most recent call last):
> File "/usr/lib/python2.7/dist-packages/pyneighborhood/addwindow.py", line 
> 111, in response_handler
> query_workgroup(ip, True)
> File "/usr/lib/python2.7/dist-packages/pyneighborhood/nmblookup.py", line 94, 
> in query_workgroup
> return (workgroup, cursor.fetchone()[0])
> TypeError: 'NoneType' object has no attribute '__getitem__'
>

The upstream was informed about that. And ask the
user to fix the configuration file at the time.

"Please fix your /etc/samba/smb.conf, "testparm"
is your friend!"

https://bugs.launchpad.net/pyneighborhood/+bug/846882



Regards,
Herbert


Sport ist Mord

2009-08-23 Thread Dr. Tanja Herbert

5, 10 oder sogar 25 Kilo abnehmen? Wer moechte das nicht! Nur erreicht es
kaum jemand. Zumindest nicht ohne Hilfe. 

Aber jetzt gibt es fuer alle die, die abnehmen wollen, eine wirklich
fantastische Neuigkeit. Es wurde endlich ein Produkt entdeckt, mit dessen
Hilfe Sie sehr schnell sehr viel Gewicht reduzieren werden, ohne dass Sie
halb verhungern und staendig Sport treiben muessen.

Das neu entdeckte Mittel ist so revolutionaer, es hat es sogar in die
beruehmte Show von Oprah Winfrey geschafft!

Abnehmprodukte aus den USA erreichen den massiven Erfolg. Partizipieren
auch Sie an dem Erfolg!

Einfache und sichere Bestellung sowie mehr Hintergrundinformationen im Netz
unter 

http://groups.yahoo.com/group/takenscentovjifs

Mit angenehmen Gruessen
Dr. Gabi Hausberger


-- 
To UNSUBSCRIBE, email to debian-qa-packages-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#408804: myphpmoney: check tables

2007-01-28 Thread Herbert P Fortes Neto
Package: myphpmoney
Version: 1.3RC3+dfsg-2
Severity: whislist

 Hi,

 It is necessary to always check if tables exist? This
is necessary only at first usage, for create the tables.
IMHO.

 My suggestion is create the tables when installing the
package. At the moment, only the data base is created.
And comment lines 44 and 45 in public_html/class/extends.class file.

 ## Create the table
// if ($this->verif() == 2) include_once 
$_MPM['dir_tables'].''.$_MPM['table_lib'];
// if ($this->verif() == 1) include_once 
$_MPM['dir_tables'].''.$_MPM['table_php'];


Or something more simple. Define in public_html/config/vars.inc.php file:

 /**
  * CHECK TABLES
  * DEFINE  0 = DISABLE
  * DEFINE  1 = ENABLE  (default)
  */
  define('__CHK_TABLE__',  1);



and use a flag in public_html/class/extends.class:

var $Chk_tables = __CHK_TABLE__;   ## 1 default check.

if  (isset($this->Chk_tables) && $this->Chk_tables == 1) {
if ($this->verif() == 2) include_once 
$_MPM['dir_tables'].''.$_MPM['table_lib'];
if ($this->verif() == 1) include_once 
$_MPM['dir_tables'].''.$_MPM['table_php'];
}

 Then put a message in the Helper window. Below  Calendar window.

"to improve performance disable checking tables in
public_html/config/vars.inc.php. To be used _after_ signup."

The program will improve performace.


 []

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpAlm7oGTIJ8.pgp
Description: PGP signature


Bug#402032: please update brazilian.inc.php

2007-01-28 Thread Herbert P Fortes Neto

 Hi,

 Forget about the file, for now at least.
I will make a revision and ask for a QA revision
at debian-l10n-portuguese list.

 I wrote 'wishlist' wrong. Sorry.


 []

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
Debian GNU/kFreeBSD (qemu)
0x9834F79E -- http://pgp.mit.edu/



pgpmrGFjaRqJj.pgp
Description: PGP signature


Bug#395179: wmakerconf: shortcut names are unsorted

2007-03-02 Thread Herbert P Fortes Neto

 Hi,

 i added this to src/shortcuts.c file to have
the list in the ascending order:

  gtk_clist_insert (GTK_CLIST (clist), GTK_CLIST (clist)->rows, &keyname);
  gtk_clist_set_row_data (GTK_CLIST (clist),
  GTK_CLIST (clist)->rows - 1, key);
  if (GTK_CLIST (clist)->rows == 1)
 gtk_clist_select_row (GTK_CLIST (clist), 0, 0);
+
+ gtk_clist_sort(GTK_CLIST (clist));
+
   }
   connect_update_function (key, clist, update_shortcut);
}



 []

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgposMP5Wic7T.pgp
Description: PGP signature


Bug#414942: myphpmoney: [INTL:es] Spanish po-debconf translation

2007-06-10 Thread Herbert P Fortes Neto

 Hi,

 The English template has been changed, and now some messages
are marked "fuzzy". I would be grateful if you could take the
time and update it.

 The deadline for receiving the updated translation is 06/24/2007.

 Please find attached the template file.


 Thanks.

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpRaNKdQAZFU.pgp
Description: PGP signature


Bug#414942: myphpmoney: [INTL:es] Spanish po-debconf translation

2007-06-10 Thread Herbert P Fortes Neto

 Please find attached the template file.


 []

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/

# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <[EMAIL PROTECTED]>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
"POT-Creation-Date: 2007-06-08 13:06-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <[EMAIL PROTECTED]>\n"
"Language-Team: LANGUAGE <[EMAIL PROTECTED]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"

#. Type: boolean
#. Description
#: ../templates:1001
msgid "Do you want to configure MyPhpMoney now?"
msgstr ""

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"MyPhpMoney needs to be configured before its use, i.e. the MySQL database "
"should be created and the Apache Web Server should be configured."
msgstr ""

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"For that you will need the username and the password of your MySQL database "
"administrator."
msgstr ""

#. Type: boolean
#. Description
#: ../templates:1001
msgid ""
"If you want to configure it later, you should run 'dpkg-reconfigure "
"myphpmoney'."
msgstr ""

#. Type: multiselect
#. Description
#: ../templates:2001
msgid "Tell which Web Server you want to use for MyPhpMoney:"
msgstr ""

#. Type: multiselect
#. Description
#: ../templates:2001
msgid "MyPhpMoney currently only supports Apache type Web Servers."
msgstr ""

#. Type: string
#. Description
#: ../templates:3001
msgid "The hostname where your database is running:"
msgstr ""

#. Type: string
#. Description
#: ../templates:3001
msgid ""
"If your database is on another machine besides the one that MyPhpMoney is "
"running on then you need to change this value to the fully qualified domain "
"name for that system.  If you wish to access it locally, simply use "
"\"localhost\" here."
msgstr ""

#. Type: string
#. Description
#: ../templates:4001
msgid "The name do you want for your MyPhpMoney database:"
msgstr ""

#. Type: string
#. Description
#: ../templates:4001
msgid "This is where all the MyPhpMoney data will be stored."
msgstr ""

#. Type: string
#. Description
#: ../templates:5001
msgid "MySQL database username:"
msgstr ""

#. Type: string
#. Description
#: ../templates:5001
msgid ""
"What username will access the MySQL database for MyPhpMoney?  This user will "
"be created if it doesn't already exist.  Note that your database manager "
"must be configured to allow password authentication or MyPhpMoney will not "
"work."
msgstr ""

#. Type: password
#. Description
#: ../templates:6001
msgid "The password you wish to use for the database user:"
msgstr ""

#. Type: password
#. Description
#: ../templates:6001
msgid ""
"Enter a password for the database user (leave blank for no password). This "
"is the password that will be used along with the database user name you have "
"already supplied to connect to the database."
msgstr ""

#. Type: string
#. Description
#: ../templates:7001
msgid "The username of your MySQL database administrator:"
msgstr ""

#. Type: string
#. Description
#: ../templates:7001
msgid ""
"This is the database admin username used to create MyPhpMoney database and "
"user.  For MySQL databases, this is usually \"root\"."
msgstr ""

#. Type: password
#. Description
#: ../templates:8001
msgid "The admin database password:"
msgstr ""

#. Type: password
#. Description
#: ../templates:8001
msgid "Enter the password for your database admin user to access the database."
msgstr ""

#. Type: note
#. Description
#: ../templates:9001
msgid "Error: failed to set up MyPhpMoney database properly !"
msgstr ""

#. Type: note
#. Description
#: ../templates:9001
msgid ""
"MyPhpMoney installation program failed to set up a database properly for its "
"needs.  Please make sure all of parameters you supplied are correct and that "
"your database manager is running.  Install MyPhpMoney again to make it "
"working."
msgstr ""

#. Type: note
#.

Bug#434265: myphpmoney: [INTL:pt_BR] Brazilian Portuguese debconf templates translation

2007-07-22 Thread Herbert P Fortes Neto
Package: myphpmoney
Tags: l10n patch
Severity: wishlist


 Hi,

 Could you please update the Brazilian Portuguese Translation?

 Attached you will find myphpmoney_pt_BR.po.gz , it is update. It
is encoded using UTF-8 and it is tested with msgfmt and also with
podebconf-display-po.

 Kind regards.



 []

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



myphpmoney_pt_BR.po.gz
Description: Binary data


pgpL7mw9tjB7U.pgp
Description: PGP signature


Bug#435421: myphpmoney: can't install, remove or purge

2007-07-31 Thread Herbert P Fortes Neto
Package: myphpmoney
Version: 1.3RC3+dfsg-5
Severity: grave
Justification: renders package unusable


 Hi,

 In version 1.3RC3+dfsg-4 
"Remove useless question about webservers
as only Apache 2 is remaining in the archive.
Edited prerm, postinst and config accordingly"

 But, in version 1.3RC3+dfsg-5, debian/postinst:96 and
debian/prerm:13 are using "db_get "myphpmoney/webservers".
And debian/templates does not make questions about webservers.



 []

-- 
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpIKDGHVrbKi.pgp
Description: PGP signature


Bug#435425: myphpmoney: database is not been removed

2007-07-31 Thread Herbert P Fortes Neto
Package: myphpmoney
Version: 1.3RC3+dfsg-5
Severity: normal

 Hi,

 Myphpmoney's database is not been removed when the option
'purge' is selected.

 My suggestion is to comment the current debian/postinst
file, line 30

db_reset "myphpmoney/dbadmpass" || true

and in current debian/postrm file, line 8:
-if [ -x /usr/share/debconf/confmodule ] ; then
+if [ -f /usr/share/debconf/confmodule ] ; then

 because the file is "-rw-r--r--"


 []


Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpnY2FD2Ul3s.pgp
Description: PGP signature


Bug#435421: myphpmoney: can't install, remove or purge

2007-07-31 Thread Herbert P Fortes Neto

 The debian/postinst file also use
'myphpmoney/installed'. Lines 139, 140 and 141.
But debian/templates does not use this.


 []

-- 
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpxJQq9KuF2i.pgp
Description: PGP signature


Bug#424799: myphpmoney: affected by php4-removal

2007-07-31 Thread Herbert P Fortes Neto

 Hi,

 Myphpmoney can be used with php5 if
'register_long_arrays = On'.


 []

-- 
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgpGQtCXFrYwE.pgp
Description: PGP signature


Bug#424799: myphpmoney: affected by php4-removal

2007-08-02 Thread Herbert P Fortes Neto
On Wed, 1 Aug 2007 09:01:20 +0200
Christian Perrier <[EMAIL PROTECTED]> wrote:

> Quoting Herbert P Fortes Neto ([EMAIL PROTECTED]):
> >
> >  Hi,
> >
> >  Myphpmoney can be used with php5 if
> > 'register_long_arrays = On'.
>
>
> As you apparently have interest in having this package properly
> maintained, why not adopting it?

 I thought about that. I sent a ITA on february
and talked to faw by email few times. And i still
have interest.

 I think be better/nice the template file be fixed
by QA, and the QA ask for an update if necessary,
avoiding errors. Then i can check debian
scripts. After that, i will try to find a
sponsor to upload the package. Can be you if
you want.

 Only 'myphpmoney/installed' would come back, i guess.
'myphpmoney/webservers' could be left commented.


 Regards

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
0x9834F79E -- http://pgp.mit.edu/



pgp6PKSMaAGTN.pgp
Description: PGP signature


Bug#372177: f-prot-installer: no f-prot.conf.5.gz in manpath

2006-06-08 Thread Herbert P Fortes Neto

Subject: f-prot-installer: no f-prot.conf.5.gz in manpath
Package: f-prot-installer
Version: 0.5.14.sarge.3
Severity: normal

*** Please type your report below this line ***

 Hi,

the file /usr/lib/f-prot/man_pages/f-prot.conf.5 is not gzip
and /usr/share/man/man5/ doesn't have a symlink pointing to it

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-osso
Locale: LANG=pt_BR, LC_CTYPE=pt_BR (charmap=ISO-8859-1)

Versions of packages f-prot-installer depends on:
ii  debconf 1.4.30.13Debian configuration management sy
ii  debianutils 2.8.4Miscellaneous utilities specific t
ii  libwww-perl 5.803-4  WWW client/server library for Perl
ii  unzip   5.52-1sarge4 De-archiver for .zip files
ii  wget1.9.1-12 retrieves files from the web

-- debconf information:
* f-prot-installer/action: Download and install
* f-prot-installer/configured: false
  f-prot-installer/note_cron:
  f-prot-installer/where_are_files: /tmp
* f-prot-installer/reinstall: true
  f-prot-installer/failed:
* f-prot-installer/update_defs: true
  f-prot-installer/install_later:


 []
 hpfn

-- 
Linux user number 416100


pgpdm5yBra6Ud.pgp
Description: PGP signature


Bug#402032: please update brazilian.inc.php

2006-12-07 Thread Herbert P Fortes Neto
Package: myphpmoney
Version : 1.3.RC3+dfsg-2.1
Severity: wishlist

 Please update
/var/lib/myphpmoney/public_html/lang/brazilian.inc.php.

 Exist an update file at
http://sourceforge.net/tracker/index.php?func=detail&aid=1509692&group_id=46190&atid=445352

 Link to download:
http://sourceforge.net/tracker/download.php?group_id=46190&atid=445352&file_id=182386&aid=1509692


 Thanks

--
Herbert Parentes Fortes Neto (hpfn)
Linux user number 416100
Debian GNU/kFreeBSD (qemu)
0x9834F79E -- http://pgp.mit.edu/



pgpGvEmA8uHwK.pgp
Description: PGP signature