Bug#431269: mozilla-openoffice.org recommends unavailable mozilla-browser

2007-07-01 Thread Noèl Köthe
Package: mozilla-openoffice.org
Version: 2.2.1-4
Severity: minor

Hello,

mozilla-browser was removed from sid but mozilla-openoffice.org recommends
mozilla-browser.

thx.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages mozilla-openoffice.org depends on:
ii  libc6   2.5-11   GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070627-1 GCC support library
ii  libstdc++6  4.2-20070627-1   The GNU Standard C++ Library v3
ii  libstlport5.1   5.1.3-1  STLport C++ class library
ii  openoffice.org-core 2.2.1-4  OpenOffice.org office suite archit

Versions of packages mozilla-openoffice.org recommends:
ii  iceape-browser 1.1.2-1   Iceape Navigator (Internet browser
ii  iceweasel  2.0.0.4-1 lightweight web browser based on M
ii  mozilla-browser2:1.8+1.1.1-2 Transition package for Iceape Navi
ii  openoffice.org-base2.2.1-4   OpenOffice.org office suite - data
ii  openoffice.org-calc2.2.1-4   OpenOffice.org office suite - spre
ii  openoffice.org-draw2.2.1-4   OpenOffice.org office suite - draw
ii  openoffice.org-impress 2.2.1-4   OpenOffice.org office suite - pres
ii  openoffice.org-math2.2.1-4   OpenOffice.org office suite - equa
ii  openoffice.org-writer  2.2.1-4   OpenOffice.org office suite - word

-- no debconf information


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



Processed: ooqstart: Fix build with GCC 4.2

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 364104 + patch
Bug#364104: FTBFS with GCC 4.2: deprecated conversion
There were no tags set.
Tags added: patch

 thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#364104: ooqstart: Fix build with GCC 4.2

2007-07-01 Thread Mark Brown
tag 364104 + patch
thanks

Please find enclosed a patch fixing compilation of ooqstart with GCC
4.2 - the issues were all const correctness problems with string
constants.  If desired I can prepare a NMU with this fix.

Thanks.

-- 
You grabbed my hand and we fell into it, like a daydream - or a fever.
diff -u ooqstart-0.8.3/gnome/gnome.cxx ooqstart-0.8.3/gnome/gnome.cxx
--- ooqstart-0.8.3/gnome/gnome.cxx
+++ ooqstart-0.8.3/gnome/gnome.cxx
@@ -152,7 +152,7 @@
 
//if (tilepixmap) gtk_container_remove(GTK_CONTAINER(tile), 
tilepixmap);
 tilepixmap = 0;
-char **pixmapData = 0;
+const char **pixmapData = 0;
 switch (state) {
   case ICON_OFF:   pixmapData = ooqstart_off_xpm;   break;
   case ICON_WAIT:  pixmapData = ooqstart_wait_xpm;  break;
@@ -161,7 +161,7 @@
 }
 
 if (pixmapData) {
-tilepixmap = create_pixmap(GTK_WIDGET(tile), pixmapData,
+tilepixmap = create_pixmap(GTK_WIDGET(tile), (char **)pixmapData,
panelPixelSize, panelPixelSize);
 }
 
@@ -193,7 +193,7 @@
 #define GsmDeselectClientEvents  DeselectClientEvents
 #define GsmChangeProperties  ChangeProperties
 
-static SmProp *mkSmProp (gchar *name, gchar *value1, gchar *value2) {
+static SmProp *mkSmProp (const gchar *name, const gchar *value1, const gchar 
*value2) {
 SmProp *prop = (SmProp *)malloc(sizeof(SmProp));
 
 prop-name = strdup(name);
@@ -204,19 +204,19 @@
 
 prop-vals = (SmPropValue *)malloc(prop-num_vals * sizeof(SmPropValue));
 for (int i = 0; i  prop-num_vals; ++i) {
-gchar *value = (i == 0) ? value1 : value2;
-prop-vals[i].value  = value;
+const gchar *value = (i == 0) ? value1 : value2;
+prop-vals[i].value  = (char *)value;
 prop-vals[i].length = strlen(value);
 }
 
 return prop;
 }
 
-static SmProp *mkSmProp (gchar *name, gchar *value) {
+static SmProp *mkSmProp (const gchar *name, const gchar *value) {
 return mkSmProp(name, value, 0);
 }
 
-static SmProp *mkSmProp (gchar *name, int value) {
+static SmProp *mkSmProp (const gchar *name, int value) {
 SmProp *prop = (SmProp *)malloc(sizeof(SmProp));
 
 prop-name = strdup(name);
only in patch2:
unchanged:
--- ooqstart-0.8.3.orig/ooqstart-off.xpm
+++ ooqstart-0.8.3/ooqstart-off.xpm
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ooqstart_off_xpm[] = {
+static const char * ooqstart_off_xpm[] = {
 48 48 594 2,
   c None,
 . c #DFDEDF,
only in patch2:
unchanged:
--- ooqstart-0.8.3.orig/ooqstart-on.xpm
+++ ooqstart-0.8.3/ooqstart-on.xpm
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ooqstart_on_xpm[] = {
+static const char * ooqstart_on_xpm[] = {
 48 48 588 2,
   c None,
 . c #DFDEDF,
only in patch2:
unchanged:
--- ooqstart-0.8.3.orig/ooqstart-wait.xpm
+++ ooqstart-0.8.3/ooqstart-wait.xpm
@@ -1,5 +1,5 @@
 /* XPM */
-static char * ooqstart_wait_xpm[] = {
+static const char * ooqstart_wait_xpm[] = {
 48 48 460 2,
   c None,
 . c #DFDEDF,


signature.asc
Description: Digital signature


Processed: found 318308 in 1.1.3

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 318308 1.1.3
Bug#318308: openoffice.org: Spreadsheet DataPilot filter does not work
Bug marked as found in version 1.1.3.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 259332 in 1.1.2

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 259332 1.1.2
Bug#259332: OpenOffice 1.1.2 doesn't update profile corectly on SID
Bug marked as found in version 1.1.2.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 300772 in 1.1.2dfsg1-3

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 300772 1.1.2dfsg1-3
Bug#300772: OpenOffice.org 1.1.2dfsg1-3 in Sarge 
Bug marked as found in version 1.1.2dfsg1-3.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 288240 in 1.1.3-3+1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 288240 1.1.3-3+1
Bug#288240: /usr/bin/openoffice: [OOImpress] Error in the PDF distiller  (sxi 
- pdf)
Bug marked as found in version 1.1.3-3+1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed (with 2 errors): found 313029 in 2.0.3-3, user debian-openoffice.org, usertagging 313029

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 313029 2.0.3-3
Bug#313029: Copy from Scite, Paste to openoffice
Bug marked as found in version 2.0.3-3.

 user debian-openoffice.org
Selected user id (debian-openoffice.org) invalid, sorry
 usertags 313029 - oo.org-pre-2.0-bug
No valid user selected

End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 281865 in 1.1.2dfsg1-1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 281865 1.1.2dfsg1-1
Bug#281865: openoffice.org does not pick the right glyphs from fonts
Bug marked as found in version 1.1.2dfsg1-1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 278624 in 1.1.2-5

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 278624 1.1.2-5
Bug#278624: base: Square bullets have disappeared from Arial font
Bug marked as found in version 1.1.2-5.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 279832 in 1.1.2dfsg1-1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 279832 1.1.2dfsg1-1
Bug#279832: Printer problems
Bug marked as found in version 1.1.2dfsg1-1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 333547 in 1.9.125+2.0beta2-1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 333547 1.9.125+2.0beta2-1
Bug#333547: openoffice.org2-writer: Spellchecker only check the content of the 
first page
Bug marked as found in version 1.9.125+2.0beta2-1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 326189 in 1.9.125+2.0beta2-1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 326189 1.9.125+2.0beta2-1
Bug#326189: openoffice.org2-core: random crash with mix 
stable/testing/unstable/experimental
Bug marked as found in version 1.9.125+2.0beta2-1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 326091 in 1.9.125+2.0beta2-1

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 326091 1.9.125+2.0beta2-1
Bug#326091: openoffice.org2-writer: crash at opening a ms-word document
Bug marked as found in version 1.9.125+2.0beta2-1.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 290016 in 2.0.2-3, user debian-openoffice@lists.debian.org, usertagging 290016

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 290016 2.0.2-3
Bug#290016: CUPS printers are not automatically if cupsd is started after 
openoffice.org
Bug marked as found in version 2.0.2-3.

 user debian-openoffice@lists.debian.org
Setting user to debian-openoffice@lists.debian.org (was [EMAIL PROTECTED]).
 usertags 290016 - oo.org-pre-2.0-bug
Bug#290016: CUPS printers are not automatically if cupsd is started after 
openoffice.org
Usertags were: oo.org-pre-2.0-bug.
Usertags are now: .

End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 290016 in 2.0.2-3, user debian-openoffice@lists.debian.org, usertagging 290016

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.6
 found 290016 2.0.2-3
Bug#290016: CUPS printers are not automatically if cupsd is started after 
openoffice.org
Bug marked as found in version 2.0.2-3.

 user debian-openoffice@lists.debian.org
Setting user to debian-openoffice@lists.debian.org (was [EMAIL PROTECTED]).
 usertags 290016 - oo.org-pre-2.0-bug
Bug#290016: CUPS printers are not automatically if cupsd is started after 
openoffice.org
There were no usertags set.
Usertags are now: .

End of message, stopping processing here.

Please contact me if you need assistance.

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


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



r772 ./packages/openofficeorg/2.2.1/unstable: -4

2007-07-01 Thread Rene Engelhard

revno: 772
committer: Rene Engelhard [EMAIL PROTECTED]
branch nick: debian
timestamp: Sun 2007-07-01 22:11:21 +0200
message:
  -4
modified:
  changelog
  control
  rules
=== modified file 'changelog'
--- a/changelog 2007-06-29 11:03:21 +
+++ b/changelog 2007-07-01 20:11:21 +
@@ -1,3 +1,9 @@
+openoffice.org (2.2.1-4) unstable; urgency=low
+
+  * debian/rules: fix lp-solve builddeps, oops
+
+ -- Rene Engelhard [EMAIL PROTECTED]  Fri, 29 Jun 2007 17:47:56 +0200
+
 openoffice.org (2.2.1-3) unstable; urgency=low
 
   * debian/shell-lib.sh: do not parse /var/lib/dpkg/status diretcly, use

=== modified file 'control'
--- a/control   2007-06-28 23:20:02 +
+++ b/control   2007-07-01 20:11:21 +
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian OpenOffice Team debian-openoffice@lists.debian.org
 Uploaders: Chris Halls [EMAIL PROTECTED], Rene Engelhard [EMAIL PROTECTED]
-Build-Depends: lsb-release, bzip2, bison (= 1:1.875a-1) [i386 powerpc sparc 
amd64], flex [i386 powerpc sparc amd64], libpam0g-dev [i386 powerpc sparc 
amd64], libxaw7-dev [i386 powerpc sparc amd64], unzip [i386 powerpc sparc 
amd64], zip [i386 powerpc sparc amd64], autoconf [i386 powerpc sparc amd64], 
sharutils [i386 powerpc sparc amd64], pkg-config [i386 powerpc sparc amd64], 
xutils [i386 powerpc sparc amd64], libfontconfig1-dev [i386 powerpc sparc 
amd64], binutils (= 2.14.90.0.6-3) [sparc], libc6 (= 2.3.2-1) [powerpc], 
zlib1g-dev [i386 powerpc sparc amd64], libfreetype6-dev [i386 powerpc sparc 
amd64], libx11-dev [i386 powerpc sparc amd64], libsm-dev [i386 powerpc sparc 
amd64], libxt-dev [i386 powerpc sparc amd64], libxext-dev [i386 powerpc sparc 
amd64], libice-dev [i386 powerpc sparc amd64], libsane-dev [i386 powerpc sparc 
amd64], libxrender-dev [i386 powerpc sparc amd64], libcupsys2-dev [i386 powerpc 
sparc amd64], libarchive-zip-perl [i386 powerpc sparc amd64], 
libstartup-notification0-dev [i386 powerpc sparc amd64], libpng12-dev [i386 
powerpc sparc amd64], libjpeg62-dev [i386 powerpc sparc amd64], libxml2-dev 
[i386 powerpc sparc amd64], dmake (= 1:4.6) [i386 powerpc sparc amd64], 
libldap2-dev [i386 powerpc sparc amd64], libexpat1-dev [i386 powerpc sparc 
amd64], libgnomevfs2-dev [i386 powerpc sparc amd64], fastjar [i386 powerpc 
sparc amd64], libsndfile1-dev [i386 powerpc sparc amd64], xsltproc [i386 
powerpc sparc amd64], imagemagick [i386 powerpc sparc amd64], fdupes [i386 
powerpc sparc amd64], xml-core [i386 powerpc sparc amd64], libxkbfile-dev [i386 
powerpc sparc amd64], libxinerama-dev [i386 powerpc sparc amd64], 
x11proto-render-dev [i386 powerpc sparc amd64], unixodbc-dev (= 2.2.11) [i386 
powerpc sparc amd64], libdb4.4-dev [i386 powerpc sparc amd64] , 
libcurl3-gnutls-dev [i386 powerpc sparc amd64] , python-central (= 0.5) [i386 
powerpc sparc amd64], debhelper (= 5.0.37.2), python-dev (= 2.4) [i386 
powerpc sparc amd64] , dpkg-dev (= 1.13.19) , xvfb [i386 powerpc sparc amd64], 
xbase-clients [i386 powerpc sparc amd64], xfonts-base [i386 powerpc sparc 
amd64] , java-gcj-compat-dev (= 1.0.65-4) [i386 powerpc sparc amd64] , ant (= 
1.6.5) [i386 powerpc sparc amd64] , libxt-java (= 0.20050823) [i386 powerpc 
sparc amd64] , libxerces2-java [i386 powerpc sparc amd64] , libxalan2-java (= 
2.6.0-1) [i386 powerpc sparc amd64] , libdb4.4-java [i386 powerpc sparc amd64] 
, mingw32 [i386 powerpc sparc amd64] , libxul-dev [i386 powerpc sparc amd64], 
libnss3-dev [i386 powerpc sparc amd64] , mono-mcs (= 1.2.3) [i386 amd64], 
mono-gmcs (= 1.2.3) [i386 amd64], libmono-dev (= 1.2.3) [i386 amd64], 
mono-utils (= 1.2.3) [i386 amd64], cli-common-dev (= 0.4.4) [i386 amd64] , 
libhunspell-dev (= 1.1.5-2) [i386 powerpc sparc amd64] , libaltlinuxhyph-dev 
(= 0.1.1-11) [i386 powerpc sparc amd64] , libstlport5.1-dev (= 5.0.99rc2-5) 
[i386 powerpc sparc amd64] , portaudio19-dev [i386 powerpc sparc amd64] , 
libwpd8-dev (= 0.8.3-3) [i386 powerpc sparc amd64] , libwps-dev [i386 powerpc 
sparc amd64] , libicu36-dev [i386 powerpc sparc amd64] , libxslt1-dev [i386 
powerpc sparc amd64] , libcairo2-dev [i386 powerpc sparc amd64], 
libglitz-glx1-dev [i386 powerpc sparc amd64] , kdelibs4-dev (= 4:3.4.3-2) 
[i386 powerpc sparc amd64] , libhsqldb-java (= 1.8.0.0-2) [i386 powerpc sparc 
amd64] , bsh (= 2.0b4-1) [i386 powerpc sparc amd64] , liblpsolve55-dev (= 
5.5.0.10-2) [i386 powerpc sparc amd64] , libufsparse-dev [i386 powerpc sparc 
amd64] , libdbus-glib-1-dev (= 0.60) [i386 powerpc sparc amd64] , 
libgstreamer-plugins-base0.10-dev [i386 powerpc sparc amd64] , libneon25-dev 
[i386 powerpc sparc amd64] , libgtk2.0-dev (= 2.10) [i386 powerpc sparc amd64]
+Build-Depends: lsb-release, bzip2, bison (= 1:1.875a-1) [i386 powerpc sparc 
amd64], flex [i386 powerpc sparc amd64], libpam0g-dev [i386 powerpc sparc 
amd64], libxaw7-dev [i386 powerpc sparc amd64], unzip [i386 powerpc sparc 
amd64], zip [i386 powerpc sparc amd64], autoconf [i386 powerpc sparc amd64], 
sharutils [i386 

r773 ./packages/openofficeorg/2.2.1/unstable: stop recommending mozilla-browser

2007-07-01 Thread Rene Engelhard

revno: 773
committer: Rene Engelhard [EMAIL PROTECTED]
branch nick: debian
timestamp: Sun 2007-07-01 22:20:14 +0200
message:
  stop recommending mozilla-browser
modified:
  changelog
  control
  control.mozilla.in
=== modified file 'changelog'
--- a/changelog 2007-07-01 20:11:21 +
+++ b/changelog 2007-07-01 20:20:14 +
@@ -1,3 +1,10 @@
+openoffice.org (2.2.1-4.5pre) unstable; urgency=low
+
+  * debian/control.mozilla.in:
+- stop recommending mozilla-browser (closes: #431269)
+
+ -- Rene Engelhard [EMAIL PROTECTED]  Sun,  1 Jul 2007 22:11:28 +0200
+
 openoffice.org (2.2.1-4) unstable; urgency=low
 
   * debian/rules: fix lp-solve builddeps, oops

=== modified file 'control'
--- a/control   2007-07-01 20:11:21 +
+++ b/control   2007-07-01 20:20:14 +
@@ -3088,7 +3088,7 @@
  openoffice.org,
  openoffice.org-core
 Depends: ${shlibs:Depends}, openoffice.org-core (= 2.2.0-2)
-Recommends: iceweasel | firefox | iceape-browser | mozilla-browser, 
openoffice.org-writer, openoffice.org-calc, openoffice.org-draw, 
openoffice.org-impress, openoffice.org-math, openoffice.org-base
+Recommends: iceweasel | firefox | iceape-browser, openoffice.org-writer, 
openoffice.org-calc, openoffice.org-draw, openoffice.org-impress, 
openoffice.org-math, openoffice.org-base
 Description: OpenOffice.org Mozilla plugin
  OpenOffice.org is a full-featured office productivity suite that provides
  a near drop-in replacement for Microsoft(R) Office.

=== modified file 'control.mozilla.in'
--- a/control.mozilla.in2007-06-28 23:20:02 +
+++ b/control.mozilla.in2007-07-01 20:20:14 +
@@ -9,7 +9,7 @@
  openoffice.orgVER-core
 Depends: ${shlibs:Depends},
  openoffice.orgVER-core (= 2.2.0-2)
-Recommends: iceweasel | firefox | iceape-browser | mozilla-browser,
+Recommends: iceweasel | firefox | iceape-browser,
  openoffice.org-writer,
  openoffice.org-calc,
  openoffice.org-draw,



Processed: tagging 431269

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.26
 tags 431269 + pending
Bug#431269: mozilla-openoffice.org recommends unavailable mozilla-browser
There were no tags set.
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#273035: Go ahead and close it

2007-07-01 Thread David Welton

I don't have the original spreadsheet any more, so go ahead and close it.

--
David N. Welton
- http://www.dedasys.com/davidw/

Linux, Open Source Consulting
- http://www.dedasys.com/


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



Processed: notfound 332844 in 2.0.4.dfsg.2-7

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.4
 notfound 332844 2.0.4.dfsg.2-7
Bug#332844: openoffice.org: saving as text or encoded text mangles some special 
characters
Bug marked as not found in version 2.0.4.dfsg.2-7.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Processed: found 332843 in 2.0.4.dfsg.2-7

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.4
 found 332843 2.0.4.dfsg.2-7
Bug#332843: openoffice.org: OOo saves in HTML and uses character entities even 
if charset announced doesn't need them
Bug marked as found in version 2.0.4.dfsg.2-7.


End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#310922: marked as done (OO.org crashes after opening - libc6 involved?)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2007 23:03:10 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#297743: Please update your Debian openoffice.org bug report
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: Openoffice.org
Version: 1.1.3
Kernel: Linux x386 2.6.11.7
Libc6 Version: 2.3.2.ds1-22

OOo Writer crashes shortly after starting, at inconsistent points, but
usually during input.  Latest crash produced this report:

sh: line 1: crash_report: command not found
Xlib: unexpected async reply (sequence 0xabf8)!


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0xb72e03ec]
/usr/lib/openoffice/program/libsal.so.3[0xb72e0579]
/usr/lib/openoffice/program/libsal.so.3[0xb72e0644]
[0xe420]
/usr/lib/openoffice/program/libsal.so.3[0xb72d575f]
/lib/tls/libpthread.so.0[0xb6eebb63]
/lib/tls/libc.so.6(__clone+0x5a)[0xb6cde18a]
Aborted

I have wiped out .sversionrc and the .openoffice directory (and
contents) with no change in behaviour.

Loading of files, in advance of the crash, is consistently very slow.

I first noticed this behaviour after I upgraded with the latest Sarge
libc6 and libc6-dev.  Given the line above Aborted, this may be
significant.

I have a voluminous strace file (which I really don't understand), if
that helps.

Cheers

Cam

-- 
Cam Ellison  Ph.D.  R.Psych. #01417

Cam Ellison  Associates Ltd.
Management Psychology

RR 223446 Beach Avenue
Roberts Creek  BC  V0N 2W2

Phone: 604-885-4806
Fax:   604-885-4809


---End Message---
---BeginMessage---
On 01.07.07 23:29:22, Lior Kaplan wrote:
 Dear openoffice.org user,
 
 Thanks for your interest in OO.org and the bug report you have contributed.
 
 Your report was done for a version which is now quite old (pre
 version 2.0.0).
 
 Please reproduce your bug on an updated version and confirm it still
 exists, or close it as irrelevant for recent versions.
 
 At the moment, these are the openoffice.org versions available:
 2.0.4 for the stable (Etch), and testing (Lenny) flavors.
 2.2.1 for the unstable (Sid) flavor.
 
 If you don't know or are not sure how to update or close your bug report, 
 please contact me directly, and I'll help you.
 
 IMPORTANT: In any case, please provide version info, as we use it to
 determine the relevance of the bug.

I can't reproduce this anymore here and the last messages in the report
are from more than 1 year ago. Thus I'm closing it..

Andreas

-- 
Bridge ahead.  Pay troll.
---End Message---


Bug#297743: Please update your Debian openoffice.org bug report

2007-07-01 Thread Andreas Pakulat
On 01.07.07 23:29:22, Lior Kaplan wrote:
 Dear openoffice.org user,
 
 Thanks for your interest in OO.org and the bug report you have contributed.
 
 Your report was done for a version which is now quite old (pre
 version 2.0.0).
 
 Please reproduce your bug on an updated version and confirm it still
 exists, or close it as irrelevant for recent versions.
 
 At the moment, these are the openoffice.org versions available:
 2.0.4 for the stable (Etch), and testing (Lenny) flavors.
 2.2.1 for the unstable (Sid) flavor.
 
 If you don't know or are not sure how to update or close your bug report, 
 please contact me directly, and I'll help you.
 
 IMPORTANT: In any case, please provide version info, as we use it to
 determine the relevance of the bug.

I can't reproduce this anymore here and the last messages in the report
are from more than 1 year ago. Thus I'm closing it..

Andreas

-- 
Bridge ahead.  Pay troll.


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



Bug#297288: Please update your Debian openoffice.org bug report

2007-07-01 Thread Joris

Dear OOO maintainer,


I'm afraid I don't remember much of this bug, certainly not enough to
replicate it.

It's probably best to just close it.

Kind regards,

2007/7/1, Lior Kaplan [EMAIL PROTECTED]:


Dear openoffice.org user,

Thanks for your interest in OO.org and the bug report you have
contributed.

Your report was done for a version which is now quite old (pre
version 2.0.0).

Please reproduce your bug on an updated version and confirm it still
exists, or close it as irrelevant for recent versions.

At the moment, these are the openoffice.org versions available:
2.0.4 for the stable (Etch), and testing (Lenny) flavors.
2.2.1 for the unstable (Sid) flavor.

If you don't know or are not sure how to update or close your bug
report, please contact me directly, and I'll help you.

IMPORTANT: In any case, please provide version info, as we use it to
determine the relevance of the bug.

As this bug is quite old, I intend to close it if you don't update your
bug report in the next 6 weeks.

This is the time line for the old bugs cleanup:
1. July 1st - first warning
2. July 15th - Second warning
3. July 31st - Third warning.
4. August 15th - Closing the bug.

--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0




Bug#297743: marked as done (openoffice.org: oowriter crashes short after startup)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2007 23:03:10 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#297743: Please update your Debian openoffice.org bug report
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.3-7
Severity: grave
Justification: renders package unusable

Hi,

oowriter crashes a few minutes after starting them
with following:

sh: crash_report: command not found
Xlib: unexpected async reply (sequence 0x7ada)!


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x411ab3ec]
/usr/lib/openoffice/program/libsal.so.3[0x411ab579]
/usr/lib/openoffice/program/libsal.so.3[0x411ab644]
[0xe420]
/usr/lib/openoffice/program/libsal.so.3[0x411a075f]
/lib/tls/libpthread.so.0[0x41177b63]
/lib/tls/libc.so.6(__clone+0x5a)[0x410f0c4a]

Andreas

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-cherry
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.24.10Common utilities for spelling dict
ii  openoffice.org-bin1.1.3-7OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.3-5+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-de [openo 1.1.3-7German language package for OpenOf
ii  openoffice.org-l10n-en [openo 1.1.3-7English (US) language package for 
ii  ttf-opensymbol1.1.3-7The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---
On 01.07.07 23:29:22, Lior Kaplan wrote:
 Dear openoffice.org user,
 
 Thanks for your interest in OO.org and the bug report you have contributed.
 
 Your report was done for a version which is now quite old (pre
 version 2.0.0).
 
 Please reproduce your bug on an updated version and confirm it still
 exists, or close it as irrelevant for recent versions.
 
 At the moment, these are the openoffice.org versions available:
 2.0.4 for the stable (Etch), and testing (Lenny) flavors.
 2.2.1 for the unstable (Sid) flavor.
 
 If you don't know or are not sure how to update or close your bug report, 
 please contact me directly, and I'll help you.
 
 IMPORTANT: In any case, please provide version info, as we use it to
 determine the relevance of the bug.

I can't reproduce this anymore here and the last messages in the report
are from more than 1 year ago. Thus I'm closing it..

Andreas

-- 
Bridge ahead.  Pay troll.
---End Message---


Bug#273035: marked as done (calc: changing y axis properties crashes oo)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:15:51 +0300
with message-id [EMAIL PROTECTED]
and subject line closing #273035
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.2-4
Severity: normal


I have a spreadsheet with some charts, which until now have worked
just fine.  Now when I go to modify the Y axis of one of them (through
'format'), it crashes:

@eugene [~] $ oocalc stats.sxc 
sh: crash_report: command not found


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x40bff324]
/usr/lib/openoffice/program/libsal.so.3[0x40bff4b1]
/usr/lib/openoffice/program/libsal.so.3[0x40bff57c]
[0xe420]
/usr/lib/openoffice/program/libsch645li.so[0x48a485af]
/usr/lib/openoffice/program/libsch645li.so[0x48a15122]
/usr/lib/openoffice/program/libsch645li.so[0x48ab7542]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8816]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8447]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8ece]
/usr/lib/openoffice/program/libsfx645li.so(_ZN13SfxDispatcher9Call_ImplER8SfxShellRK7SfxSlotR10SfxRequesth+0x60a)[0x458114fe]
/usr/lib/openoffice/program/libsfx645li.so(_ZN13SfxDispatcher8_ExecuteER8SfxShellRK7SfxSlotR10SfxRequestt+0x180)[0x45812950]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings12Execute_ImplER10SfxRequestPK7SfxSlotP8SfxShell+0x35c)[0x45822b2e]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings12Execute_ImplEtPPK11SfxPoolItemttS3_h+0x3d6)[0x45822704]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings7ExecuteEtPPK11SfxPoolItemttS3_+0x65)[0x458222b7]
/usr/lib/openoffice/program/libsfx645li.so(_ZN14SfxVirtualMenu6SelectEP4Menu+0x552)[0x4583fc24]
/usr/lib/openoffice/program/libsfx645li.so(_ZN14SfxVirtualMenu14LinkStubSelectEPvS0_+0x26)[0x4583f6ca]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu6SelectEv+0x5e)[0x401e764a]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu14ImplCallSelectEPS_+0x18)[0x401eb486]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu22LinkStubImplCallSelectEPvS0_+0x26)[0x401eb466]
/usr/lib/openoffice/program/libvcl645li.so[0x40233df4]
/usr/lib/openoffice/program/libvcl645li.so(_Z19ImplWindowFrameProcPvP8SalFrametPKv+0x436)[0x40234650]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData19HandleClientMessageEP19XClientMessageEvent+0xb0)[0x402962f8]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData8DispatchEP7_XEvent+0x5c4)[0x40296bda]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay8DispatchEP7_XEvent+0x2a0)[0x402c367e]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay5YieldEh+0x10a)[0x402c33b8]
/usr/lib/openoffice/program/libvcl645li.so[0x402bf003]
/usr/lib/openoffice/program/libvcl645li.so(_ZN7SalXLib5YieldEh+0x3cc)[0x402bdb08]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11SalInstance5YieldEh+0x34)[0x402c6cc0]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application5YieldEv+0x61)[0x400e40e3]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application7ExecuteEv+0x35)[0x400e3ff5]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop4MainEv+0x1f56)[0x8065a84]
/usr/lib/openoffice/program/libvcl645li.so(_Z6SVMainv+0x49)[0x400e8d03]
/usr/lib/openoffice/program/libvcl645li.so(main+0x4c)[0x402bc4dc]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xfa)[0x4131c7da]

Thanks, Dave

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=en_US, LC_CTYPE=en_US

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.22.54Common utilities for spelling dict
ii  openoffice.org-bin1.1.2-4OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.2-4+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [openo 1.1.2-4English (US) language package for 
ii  ttf-opensymbol1.1.2-4The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---

version: 2.0.4.dfsg.2-5


Please reproduce your bug on an updated version and confirm it still
exists, or close it as irrelevant for recent versions.


Closing with permission of submitter.

I'm using the lowest common version number for both Etch and Lenny.

--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
---End Message---


Bug#297288: marked as done (openoffice.org: Navigation toolbar invisible)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:17:54 +0300
with message-id [EMAIL PROTECTED]
and subject line closing #297288
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.2dfsg1-3
Severity: important


The navigation toolbar is invisible, even when it is enabled in extra - 
configuration - toolbars

Disabling and re-enabling the toolbar has no effect, as has removing the
openoffice settings directory.

Very annoying if you work with database forms...



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-1-386
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openo 0.22.40sarge7 Common utilities for spelling dict
ii  openoffice.org-bin 1.1.2dfsg1-3  OpenOffice.org office suite binary
ii  openoffice.org-debian-file 1.1.2-5+1 Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [op 1.1.2dfsg1-3  English (US) language package for 
ii  openoffice.org-l10n-nl [op 1.1.2dfsg1-3  Dutch language package for OpenOff
ii  ttf-opensymbol 1.1.2dfsg1-3  The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---

version: 1.1.3-9sarge6

 Please reproduce your bug on an updated version and confirm it still
 exists, or close it as irrelevant for recent versions.

Closing with permission of submitter.

I'm using the Sarge version for closing.
--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
---End Message---


Bug#274221: marked as done (openoffice: crashes when started with xmule running in parallel)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:19:40 +0300
with message-id [EMAIL PROTECTED]
and subject line closing 274221
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.2-4
Severity: grave
Justification: renders package unusable

On startup, both oocalc and oowriter crash with the backtrace below.
(backtrace and strace from oocalc, but oowriter's are very similar.)

When starting 'oofice', the program doesn't crash, but briefly shows
is window frame and then exits without any user interaction.

Moving .sversionrc and .openoffice away didn't help, 
disabling CUPS as suggested in #266829 didn't help either.
(I don't use CUPS anyway.)

Feel free to downgrade, if you don't think the severity is appropriate.

backtrace:
---
void:/home/florian strace -o oocalc.strace oocalc
sh: line 1: crash_report: command not found


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x40bff324]
/usr/lib/openoffice/program/libsal.so.3[0x40bff4b1]
/usr/lib/openoffice/program/libsal.so.3[0x40bff57c]
[0xe420]
/usr/lib/openoffice/program/libsfx645li.so(_ZNK16SfxFilterMatcher12GetFilter4EAERK6Stringmm+0x64)[0x458d30be]
/usr/lib/openoffice/program/libsfx645li.so(_ZN19SfxFrameLoader_Impl6detectERN3com3sun4star3uno8SequenceINS2_5beans13PropertyValueEEE+0x104b)[0x4579d573]
/usr/lib/openoffice/program/libfwl645li.so[0x445299d0]
/usr/lib/openoffice/program/libfwl645li.so[0x445282b0]
/usr/lib/openoffice/program/libfwk645li.so[0x4632c0e3]
/usr/lib/openoffice/program/libfwk645li.so[0x46336238]
/usr/lib/openoffice/program/libfwk645li.so[0x46329adc]
/usr/lib/openoffice/program/libfwk645li.so[0x463445e8]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenDefaultEv+0x51c)[0x8068ee4]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenClientsEv+0x202c)[0x8068948]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop16OpenClients_ImplEPv+0x11)[0x8066525]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop24LinkStubOpenClients_ImplEPvS1_+0x18)[0x8066510]
/usr/lib/openoffice/program/libvcl645li.so[0x40233df4]
/usr/lib/openoffice/program/libvcl645li.so(_Z19ImplWindowFrameProcPvP8SalFrametPKv+0x436)[0x40234650]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData19HandleClientMessageEP19XClientMessageEvent+0xb0)[0x402962f8]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData8DispatchEP7_XEvent+0x5c4)[0x40296bda]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay8DispatchEP7_XEvent+0x2a0)[0x402c367e]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay5YieldEh+0x10a)[0x402c33b8]
/usr/lib/openoffice/program/libvcl645li.so[0x402bf003]
/usr/lib/openoffice/program/libvcl645li.so(_ZN7SalXLib5YieldEh+0x3cc)[0x402bdb08]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11SalInstance5YieldEh+0x34)[0x402c6cc0]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application5YieldEv+0x61)[0x400e40e3]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application7ExecuteEv+0x35)[0x400e3ff5]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop4MainEv+0x1f56)[0x8065a84]
/usr/lib/openoffice/program/libvcl645li.so(_Z6SVMainv+0x49)[0x400e8d03]
/usr/lib/openoffice/program/libvcl645li.so(main+0x4c)[0x402bc4dc]
/lib/tls/libc.so.6(__libc_start_main+0x108)[0x413087f8]
---

strace (excerpts):
---
[...]
select(7, [6], NULL, [], {0, 0})= 1 (in [6], left {0, 0})
ioctl(6, FIONREAD, [32])= 0
read(6, \5\1\256\33\246(\2O+\0\0\0\32\0 \3\0\0\0\0\332\0\301\0..., 32) = 32
gettimeofday({1096542202, 62750}, NULL) = 0
write(6, [EMAIL PROTECTED], 16) = 16
write(5, \0, 1)   = 1
write(6, F\3\v\0\32\0 \3\36\0 \3\232\0O\0\25\0\1\0\232\0_\0\25\0..., 416) = 
416
read(6, \1\30\303\33\264\0\0\0$\0\0\0\4\0\16\0\270\307\227\10\20..., 32) = 32
readv(6, [{\325\332\334\0\325\332\334\0\325\332\334\0\325\332\334..., 720}, 
{, 0}], 2) = 720
write(6, ;\3\5\0\35\0 \3\0\0\0\0\203\0M\0?\0\22\0H\2\272\0\32\0..., 880) = 880
rt_sigaction(SIGABRT, {SIG_DFL}, NULL, 8) = 0
write(2, \n\nFatal exception: Signal 11\n, 29) = 29
write(2, Stack:\n, 7) = 7
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff324, 8}, {]\n, 2}], 4) = 52
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff4b1, 8}, {]\n, 2}], 4) = 52
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff57c, 8}, {]\n, 2}], 4) = 52
writev(2, [{[0x, 3}, {e420, 8}, {]\n, 2}], 3) = 13
[...]
writev(2, [{/usr/lib/openoffice/program/libv..., 42}, {(, 

Bug#274221: marked as done (openoffice: crashes when started with xmule running in parallel)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2007 23:16:34 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#274221: Please update your Debian openoffice.org bug report
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.2-4
Severity: grave
Justification: renders package unusable

On startup, both oocalc and oowriter crash with the backtrace below.
(backtrace and strace from oocalc, but oowriter's are very similar.)

When starting 'oofice', the program doesn't crash, but briefly shows
is window frame and then exits without any user interaction.

Moving .sversionrc and .openoffice away didn't help, 
disabling CUPS as suggested in #266829 didn't help either.
(I don't use CUPS anyway.)

Feel free to downgrade, if you don't think the severity is appropriate.

backtrace:
---
void:/home/florian strace -o oocalc.strace oocalc
sh: line 1: crash_report: command not found


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x40bff324]
/usr/lib/openoffice/program/libsal.so.3[0x40bff4b1]
/usr/lib/openoffice/program/libsal.so.3[0x40bff57c]
[0xe420]
/usr/lib/openoffice/program/libsfx645li.so(_ZNK16SfxFilterMatcher12GetFilter4EAERK6Stringmm+0x64)[0x458d30be]
/usr/lib/openoffice/program/libsfx645li.so(_ZN19SfxFrameLoader_Impl6detectERN3com3sun4star3uno8SequenceINS2_5beans13PropertyValueEEE+0x104b)[0x4579d573]
/usr/lib/openoffice/program/libfwl645li.so[0x445299d0]
/usr/lib/openoffice/program/libfwl645li.so[0x445282b0]
/usr/lib/openoffice/program/libfwk645li.so[0x4632c0e3]
/usr/lib/openoffice/program/libfwk645li.so[0x46336238]
/usr/lib/openoffice/program/libfwk645li.so[0x46329adc]
/usr/lib/openoffice/program/libfwk645li.so[0x463445e8]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenDefaultEv+0x51c)[0x8068ee4]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop11OpenClientsEv+0x202c)[0x8068948]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop16OpenClients_ImplEPv+0x11)[0x8066525]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop24LinkStubOpenClients_ImplEPvS1_+0x18)[0x8066510]
/usr/lib/openoffice/program/libvcl645li.so[0x40233df4]
/usr/lib/openoffice/program/libvcl645li.so(_Z19ImplWindowFrameProcPvP8SalFrametPKv+0x436)[0x40234650]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData19HandleClientMessageEP19XClientMessageEvent+0xb0)[0x402962f8]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData8DispatchEP7_XEvent+0x5c4)[0x40296bda]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay8DispatchEP7_XEvent+0x2a0)[0x402c367e]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay5YieldEh+0x10a)[0x402c33b8]
/usr/lib/openoffice/program/libvcl645li.so[0x402bf003]
/usr/lib/openoffice/program/libvcl645li.so(_ZN7SalXLib5YieldEh+0x3cc)[0x402bdb08]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11SalInstance5YieldEh+0x34)[0x402c6cc0]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application5YieldEv+0x61)[0x400e40e3]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application7ExecuteEv+0x35)[0x400e3ff5]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop4MainEv+0x1f56)[0x8065a84]
/usr/lib/openoffice/program/libvcl645li.so(_Z6SVMainv+0x49)[0x400e8d03]
/usr/lib/openoffice/program/libvcl645li.so(main+0x4c)[0x402bc4dc]
/lib/tls/libc.so.6(__libc_start_main+0x108)[0x413087f8]
---

strace (excerpts):
---
[...]
select(7, [6], NULL, [], {0, 0})= 1 (in [6], left {0, 0})
ioctl(6, FIONREAD, [32])= 0
read(6, \5\1\256\33\246(\2O+\0\0\0\32\0 \3\0\0\0\0\332\0\301\0..., 32) = 32
gettimeofday({1096542202, 62750}, NULL) = 0
write(6, [EMAIL PROTECTED], 16) = 16
write(5, \0, 1)   = 1
write(6, F\3\v\0\32\0 \3\36\0 \3\232\0O\0\25\0\1\0\232\0_\0\25\0..., 416) = 
416
read(6, \1\30\303\33\264\0\0\0$\0\0\0\4\0\16\0\270\307\227\10\20..., 32) = 32
readv(6, [{\325\332\334\0\325\332\334\0\325\332\334\0\325\332\334..., 720}, 
{, 0}], 2) = 720
write(6, ;\3\5\0\35\0 \3\0\0\0\0\203\0M\0?\0\22\0H\2\272\0\32\0..., 880) = 880
rt_sigaction(SIGABRT, {SIG_DFL}, NULL, 8) = 0
write(2, \n\nFatal exception: Signal 11\n, 29) = 29
write(2, Stack:\n, 7) = 7
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff324, 8}, {]\n, 2}], 4) = 52
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff4b1, 8}, {]\n, 2}], 4) = 52
writev(2, [{/usr/lib/openoffice/program/libs..., 39}, {[0x, 3}, 
{40bff57c, 8}, {]\n, 2}], 4) = 52
writev(2, [{[0x, 3}, {e420, 8}, {]\n, 2}], 3) = 13
[...]
writev(2, 

Bug#273035: marked as done (calc: changing y axis properties crashes oo)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:20:53 +0300
with message-id [EMAIL PROTECTED]
and subject line closing #273035
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.2-4
Severity: normal


I have a spreadsheet with some charts, which until now have worked
just fine.  Now when I go to modify the Y axis of one of them (through
'format'), it crashes:

@eugene [~] $ oocalc stats.sxc 
sh: crash_report: command not found


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x40bff324]
/usr/lib/openoffice/program/libsal.so.3[0x40bff4b1]
/usr/lib/openoffice/program/libsal.so.3[0x40bff57c]
[0xe420]
/usr/lib/openoffice/program/libsch645li.so[0x48a485af]
/usr/lib/openoffice/program/libsch645li.so[0x48a15122]
/usr/lib/openoffice/program/libsch645li.so[0x48ab7542]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8816]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8447]
/usr/lib/openoffice/program/libsch645li.so[0x48ac8ece]
/usr/lib/openoffice/program/libsfx645li.so(_ZN13SfxDispatcher9Call_ImplER8SfxShellRK7SfxSlotR10SfxRequesth+0x60a)[0x458114fe]
/usr/lib/openoffice/program/libsfx645li.so(_ZN13SfxDispatcher8_ExecuteER8SfxShellRK7SfxSlotR10SfxRequestt+0x180)[0x45812950]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings12Execute_ImplER10SfxRequestPK7SfxSlotP8SfxShell+0x35c)[0x45822b2e]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings12Execute_ImplEtPPK11SfxPoolItemttS3_h+0x3d6)[0x45822704]
/usr/lib/openoffice/program/libsfx645li.so(_ZN11SfxBindings7ExecuteEtPPK11SfxPoolItemttS3_+0x65)[0x458222b7]
/usr/lib/openoffice/program/libsfx645li.so(_ZN14SfxVirtualMenu6SelectEP4Menu+0x552)[0x4583fc24]
/usr/lib/openoffice/program/libsfx645li.so(_ZN14SfxVirtualMenu14LinkStubSelectEPvS0_+0x26)[0x4583f6ca]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu6SelectEv+0x5e)[0x401e764a]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu14ImplCallSelectEPS_+0x18)[0x401eb486]
/usr/lib/openoffice/program/libvcl645li.so(_ZN4Menu22LinkStubImplCallSelectEPvS0_+0x26)[0x401eb466]
/usr/lib/openoffice/program/libvcl645li.so[0x40233df4]
/usr/lib/openoffice/program/libvcl645li.so(_Z19ImplWindowFrameProcPvP8SalFrametPKv+0x436)[0x40234650]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData19HandleClientMessageEP19XClientMessageEvent+0xb0)[0x402962f8]
/usr/lib/openoffice/program/libvcl645li.so(_ZN12SalFrameData8DispatchEP7_XEvent+0x5c4)[0x40296bda]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay8DispatchEP7_XEvent+0x2a0)[0x402c367e]
/usr/lib/openoffice/program/libvcl645li.so(_ZN10SalDisplay5YieldEh+0x10a)[0x402c33b8]
/usr/lib/openoffice/program/libvcl645li.so[0x402bf003]
/usr/lib/openoffice/program/libvcl645li.so(_ZN7SalXLib5YieldEh+0x3cc)[0x402bdb08]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11SalInstance5YieldEh+0x34)[0x402c6cc0]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application5YieldEv+0x61)[0x400e40e3]
/usr/lib/openoffice/program/libvcl645li.so(_ZN11Application7ExecuteEv+0x35)[0x400e3ff5]
/usr/lib/openoffice/program/soffice.bin(_ZN7desktop7Desktop4MainEv+0x1f56)[0x8065a84]
/usr/lib/openoffice/program/libvcl645li.so(_Z6SVMainv+0x49)[0x400e8d03]
/usr/lib/openoffice/program/libvcl645li.so(main+0x4c)[0x402bc4dc]
/lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xfa)[0x4131c7da]

Thanks, Dave

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=en_US, LC_CTYPE=en_US

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.22.54Common utilities for spelling dict
ii  openoffice.org-bin1.1.2-4OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.2-4+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [openo 1.1.2-4English (US) language package for 
ii  ttf-opensymbol1.1.2-4The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---

version: 2.0.4.dfsg.2-3


Please reproduce your bug on an updated version and confirm it still
exists, or close it as irrelevant for recent versions.


Closing with permission of submitter.

I'm using the lowest common version number for both Etch and Lenny.

--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
---End Message---


Bug#297743: marked as done (openoffice.org: oowriter crashes short after startup)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:32:36 +0300
with message-id [EMAIL PROTECTED]
and subject line closing #297743
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.3-7
Severity: grave
Justification: renders package unusable

Hi,

oowriter crashes a few minutes after starting them
with following:

sh: crash_report: command not found
Xlib: unexpected async reply (sequence 0x7ada)!


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0x411ab3ec]
/usr/lib/openoffice/program/libsal.so.3[0x411ab579]
/usr/lib/openoffice/program/libsal.so.3[0x411ab644]
[0xe420]
/usr/lib/openoffice/program/libsal.so.3[0x411a075f]
/lib/tls/libpthread.so.0[0x41177b63]
/lib/tls/libc.so.6(__clone+0x5a)[0x410f0c4a]

Andreas

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-cherry
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.24.10Common utilities for spelling dict
ii  openoffice.org-bin1.1.3-7OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.3-5+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-de [openo 1.1.3-7German language package for OpenOf
ii  openoffice.org-l10n-en [openo 1.1.3-7English (US) language package for 
ii  ttf-opensymbol1.1.3-7The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---

version: 2.0.4.dfsg.2-3

Closing using a version common to Etch and Lenny.

--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
---End Message---


Bug#310922: marked as done (OO.org crashes after opening - libc6 involved?)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 02 Jul 2007 00:32:36 +0300
with message-id [EMAIL PROTECTED]
and subject line closing #297743
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: Openoffice.org
Version: 1.1.3
Kernel: Linux x386 2.6.11.7
Libc6 Version: 2.3.2.ds1-22

OOo Writer crashes shortly after starting, at inconsistent points, but
usually during input.  Latest crash produced this report:

sh: line 1: crash_report: command not found
Xlib: unexpected async reply (sequence 0xabf8)!


Fatal exception: Signal 11
Stack:
/usr/lib/openoffice/program/libsal.so.3[0xb72e03ec]
/usr/lib/openoffice/program/libsal.so.3[0xb72e0579]
/usr/lib/openoffice/program/libsal.so.3[0xb72e0644]
[0xe420]
/usr/lib/openoffice/program/libsal.so.3[0xb72d575f]
/lib/tls/libpthread.so.0[0xb6eebb63]
/lib/tls/libc.so.6(__clone+0x5a)[0xb6cde18a]
Aborted

I have wiped out .sversionrc and the .openoffice directory (and
contents) with no change in behaviour.

Loading of files, in advance of the crash, is consistently very slow.

I first noticed this behaviour after I upgraded with the latest Sarge
libc6 and libc6-dev.  Given the line above Aborted, this may be
significant.

I have a voluminous strace file (which I really don't understand), if
that helps.

Cheers

Cam

-- 
Cam Ellison  Ph.D.  R.Psych. #01417

Cam Ellison  Associates Ltd.
Management Psychology

RR 223446 Beach Avenue
Roberts Creek  BC  V0N 2W2

Phone: 604-885-4806
Fax:   604-885-4809


---End Message---
---BeginMessage---

version: 2.0.4.dfsg.2-3

Closing using a version common to Etch and Lenny.

--

Lior Kaplan
[EMAIL PROTECTED]

GPG fingerprint:
C644 D0B3 92F4 8FE4 4662  B541 1558 9445 99E8 1DA0
---End Message---


Bug#332685: Please update your Debian openoffice.org bug report

2007-07-01 Thread Ambrose Li
Yes, the bug still exists in the latest OpenOffice on unstable,
with the same symptoms (no line spacing under 7.1pt or over
283.5pt).

And this is not a minor problem. Since Microsoft Office does
not have these restrictons, this means that OOo Writer is not
compatible with Microsoft Office even if the user does not use
advanced features like mail merge.

(I cannot understand this request; this can be trivially
verified, even for someone who has to log in to X through ssh
over a WAN link.)



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



Bug#328140: Please update your Debian openoffice.org bug report

2007-07-01 Thread Ambrose Li
This seems to be fixed in the version in unstable.

PS: I don't understand this request; this took me one minute
to verify, even though I have to take the trouble to log in
remotely, through ssh, over a WAN link.

PS: I also would have expected that either the severity be
changed or a note posted explaining why a data-loss type bug
is considered by Debian to be only normal; this has not
happened even though so much time has passed that the bug has
to be closed due to it being too old.


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



Bug#330232: Please update your Debian openoffice.org bug report

2007-07-01 Thread Ambrose Li
The bug still affects the latest Ooo in unstable. As soon as
anchor is changed to page, the image is homed to the top-left
corner (i.e., not even the horizontal position is reset to zero,
the VERTICAL position also changes for no reason).

PS: I don't understand this request. I have included a very
straightforward test case which took only 1 minute to verify
(after taking 2 to 3 minutes fighting OOo's scim-related bugs).
A non-Chinese person certainly can reproduce this in just 1
minute.


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



Bug#332844: marked as done (openoffice.org: saving as text or encoded text mangles some special characters)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Mon, 2 Jul 2007 00:50:23 +0200
with message-id [EMAIL PROTECTED]
and subject line Done
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.4-7
Severity: normal

When I save a document as text or encoded text, the '...' character
(\ldots in TeX, hellip; in HTML) becomes '?'. I suspect some other
special chars could be treated the same way.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.8-2-k7
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoff 0.50.4  Common utilities for spelling dict
ii  openoffice.org-bin   1.1.4-7.0.1 OpenOffice.org office suite binary
ii  openoffice.org-debian-files  1.1.4-6+1   Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [open 1.1.4-7 English (US) language package for 
ii  openoffice.org-l10n-fr [open 1.1.4-7 French language package for OpenOf
ii  ttf-opensymbol   1.1.4-7 The OpenSymbol TrueType font
ii  xml-core 0.09XML infrastructure and XML catalog

openoffice.org recommends no packages.

-- no debconf information

-- 
[EMAIL PROTECTED]
OpenPGP 0xD9D50D8A


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
Not found in testing, closing.

Quickly,
Pierre
-- 
[EMAIL PROTECTED]
OpenPGP 0xD9D50D8A


signature.asc
Description: Digital signature
---End Message---


Bug#296298: marked as done (openoffice.org: OOo fails to detect itself having crashed)

2007-07-01 Thread Debian Bug Tracking System
Your message dated Sun, 1 Jul 2007 19:07:15 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#296298: Please update your Debian openoffice.org bug report
has caused the attached Bug report to be marked as done.

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

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

---BeginMessage---
Package: openoffice.org
Version: 1.1.3-4
Severity: normal


If the user logs out without having quit OOo first (including cases like X 
crashed
etc.), OOo will remain running, unaware that it should quit itself.

When the user logs back in and tries to run OOo, no window appears because OOo
finds the running session and tries to open the new window there, but since 
that
X display no longer exists, nothing happens (from the user's viewpoint).

It is especially strange that if Ooo tries to open a new window in a 
non-existent
X display, it does not detect that X has crashed, as if the window can open
successfully without errors even without a functional X.

The user has to killall -9 soffice.bin to make OOo become responsive again.

Steps to reproduce:

1. Log in (e.g., to Xfce4)
2. Run oowriter (e.g.)
3. Log out without quitting oowriter first
4. Log back in and try to open some Ooo document


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.28-ow1
Locale: LANG=zh_TW.Big5, LC_CTYPE=zh_TW.Big5 (charmap=BIG5)

Versions of packages openoffice.org depends on:
ii  dictionaries-common [openoffi 0.24.7 Common utilities for spelling dict
ii  openoffice.org-bin1.1.3-4OpenOffice.org office suite binary
ii  openoffice.org-debian-files   1.1.3-3+1  Debian specific parts of OpenOffic
ii  openoffice.org-l10n-en [openo 1.1.3-4English (US) language package for 
ii  ttf-opensymbol1.1.3-4The OpenSymbol TrueType font

-- no debconf information

---End Message---
---BeginMessage---
This seems to have been fixed in the version in unstable.

PS: The word warning should be reminder. The letter has an
extremely threatening tone because of the word warning being used.
---End Message---


Bug#385798:

2007-07-01 Thread Rev.Mrs Chantel Murphy




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



Bug#385798:

2007-07-01 Thread Rev.Mrs Chantel Murphy




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



Bug#385798: New Era Fundation

2007-07-01 Thread Rev.Mrs Chantel Murphy

New Era Foundation
Newtown Road,
Tema, Accra Ghana.
Ghana.

With apologies for interference in your privacy I am Barrister  
Mohameed Abdul a director of the above mentioned foundation. I am  
writing you in regard to a good friend of mine and founder of the New  
Era Foundation, Mr. Walt is a foreigner who was the managing director  
of an investment firm here in Ghana Unfortunately my friend Mr. Walt  
died in 2004, He established the



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



Bug#342628: Please update your Debian openoffice.org bug report

2007-07-01 Thread Andrew Buckeridge
Package: openoffice.org
Version: 2.0.4.dfsg.2-7etch1

Still have problem with twm version 1:1.0.3-2 and xserver-xorg version
1:7.2-5 in testing (Lenny).

In xterm issue: -

[EMAIL PROTECTED]:~$ twm
[1] 5545
[EMAIL PROTECTED]:~$ ooffice
[2] 5547
[EMAIL PROTECTED]:~$ I18N: Operating system doesn't support locale en_US

Reduce the window and then use scrot.
You must then use move via twm menu to fix. 
attachment: 070702080103_663x466_5497.png

Processed: tagging 428949, tagging 422387, tagging 423993, tagging 419683, tagging 423816, tagging 428946 ... ... ... ... ... ... ... ... ... ... ... ... ...

2007-07-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.10.4
 tags 428949 lenny sid
Bug#428949: ocfs2-tools: FTBFS: include/ocfs2_fs.h:538: error: expected 
expression before 'struct'
Tags were: patch
Tags added: lenny, sid

 tags 422387 lenny sid
Bug#422387: octave2.1-forge: FTBFS: epsf.tex not found, images will be ignored.
There were no tags set.
Tags added: lenny, sid

 tags 423993 lenny sid
Bug#423993: octave2.9-forge: FTBFS: epsf.tex not found
Tags were: wontfix
Tags added: lenny, sid

 tags 419683 lenny sid
Bug#419683: octaviz: FTBFS: CMake Error: VTK not found.
Tags were: confirmed
Tags added: lenny, sid

 tags 423816 lenny sid
Bug#423816: ocurl: FTBFS: versioned b-d on libcurl3-openssl-dev 
There were no tags set.
Tags added: lenny, sid

 tags 428946 lenny sid
Bug#428946: ohphone: FTBFS: /usr/share/openh323/include/ixjlid.h:277:28: error: 
linux/compiler.h: No such file or directory
There were no tags set.
Tags added: lenny, sid

 tags 399763 lenny sid
Bug#399763: ooqstart-gnome: Conflicts with openoffice.org-core
There were no tags set.
Tags added: lenny, sid

 tags 419903 etch-ignore
Bug#419903: openafs-client: aklog crashes with LWP: stack overflow in process 
IO MANAGER!
There were no tags set.
Tags added: etch-ignore

 tags 419681 lenny sid
Bug#419681: ogre: FTBFS: error: cannot allocate an object of abstract type 
'CEGUI::OgreCEGUITexture'
There were no tags set.
Tags added: lenny, sid

 tags 429002 lenny sid
Bug#429002: openam: FTBFS: /usr/share/openh323/include/ixjlid.h:277:28: error: 
linux/compiler.h: No such file or directory
Tags were: patch
Tags added: lenny, sid

 tags 429341 lenny sid
Bug#429341: Needs to use libphp-phpmailer
There were no tags set.
Tags added: lenny, sid

 tags 414715 lenny sid
Bug number 414715 not found. (Is it archived?)

 tags 422476 lenny sid
Bug#422476: openscenegraph: FTBFS: ../DataSet.cpp:33:23: error: gdal_priv.h: No 
such file or directory
There were no tags set.
Tags added: lenny, sid

 tags 429005 lenny sid
Bug#429005: packagesearch: FTBFS: needs update for newer libept-dev ( 0.5)
There were no tags set.
Tags added: lenny, sid

 tags 429978 lenny sid
Bug#429978: pam-pgsql: Please remove postgresql-dev from your build-depends as 
it doesn't exist in the archive
There were no tags set.
Tags added: lenny, sid

 tags 427705 lenny sid
Bug#427705: pango-libthai: rebuild against pango1.0-modver-1.6.0
Tags were: wontfix patch
Tags added: lenny, sid

 tags 423818 lenny sid
Bug#423818: opensp: FTBFS: install: cannot stat `./releasenotes.ps': No such 
file or directory
Tags were: unreproducible moreinfo
Tags added: lenny, sid

 tags 422397 lenny sid
Bug#422397: oregano: FTBFS: src/print.c:165: error: expected ';', ',' or ')' 
before '*' token
Tags were: patch
Tags added: lenny, sid

 tags 420342 lenny sid
Bug#420342: papaya: FTBFS: mv: cannot stat 
`debian/papaya/usr/share/papaya/manual.pdf': No such file or directory
There were no tags set.
Tags added: lenny, sid


End of message, stopping processing here.

Please contact me if you need assistance.

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


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