KS@apache.org | 2 Nov 17:23
Picon
Favicon

new Apache OpenOffice.org mail list to replace this list

Please read this note in its entirety. It contains important information related to this mailing list, its migration to the Apache Software Foundation, and the steps you must take to ensure continuous access to the list.

Background

As you may have heard, Oracle contributed the OpenOffice.org (OOo) code to Apache in June. All new projects at Apache start in the "Incubator", a special part of Apache where new projects ("Podlings") and their communities are given special attention by Apache "mentors" as they learn about Apache, ensure that the source code meets Apache's license requirements, and work toward their initial Apache release.

In parallel with the coding efforts needed before we can publish Apache OpenOffice.org 3.4.0, the Apache OpenOffice.org community, working with the Apache Infrastructure team, is migrating the many legacy OOo websites and other online services formerly hosted by Sun/Oracle onto Apache servers. This has been a huge effort and we are showing good progress in many areas. 

You can read more about the current status of the migration effort on this wiki page: 
https://cwiki.apache.org/confluence/display/OOOUSERS/OpenOffice.org+Migration+Status

Additional relevant information is published in our project blog at:  http://blogs.apache.org/OOO/

Resubscribing

Among the services hosted by Oracle on the legacy OOo servers are over 300 mailing lists, including the  mailing list you are reading now.  In order to participate in Apache OpenOffice.org through a relevant mailing list, you will need to resubscribe to a new list address, per the following instructions:


  1. Send an email to ooo-dev-subscribe <at> incubator.apache.org. This should be done from an e-mail account that you want to use to receive messages from the new list.
  2. This will generate a confirmation email which will be sent to your email address. You will need to reply to the confirmation email in order to complete your subscription to the new list.
  3. To send posts to the new list, you will mail them to the following address: ooo-dev <at> incubator.apache.org
  4. And if you ever want to unsubscribe to the new list, you can do so by sending an email to: ooo-dev-unsubscribe <at> incubator.apache.org

We invite and encourage you to follow the above steps and to participate in Apache OpenOffice.org project. If you have any questions, feel free to post as responses to this note, or send a question to ooo-dev <at> incubator.apache.org (you must be subscribed to post a question).

Notes

  1. We recommend that you do not subscribe via a legacy openoffice.org email address. It is uncertain at this point whether these addresses will be supported in the future.
  2. Archives of the legacy mailing lists are available here: http://openoffice.markmail.org/
  3. Archives of the new mailing lists and other relevant information can be found at: Apache OpenOffice.org mail list information.
  4. If you prefer to access the list via Gmane, please post a request on the new list and we will try to accommodate you.

--
The Apache OpenOffice.org (Incubating) Project Management Committee

Hirano Kazunari | 28 Sep 13:14
Picon

Invitation to connect on LinkedIn

 
 
 
 
 
From Hirano Kazunari
 
I18n/L10n Community Contributor at OpenSolaris
Japan
 
 
 

I'd like to add you to my professional network on LinkedIn.

- Hirano

 
 
 
le>
 
 
 
You are receiving Invitation to Connect emails. Unsubscribe
© 2011, LinkedIn Corporation. 2029 Stierlin Ct. Mountain View, CA 94043, USA
 
Favicon

SAL_LAYOUT_BIDI_STRONG

Hi,

What do you think of the following code?

http://hg.services.openoffice.org/OOO330/file/8601acbe0e6c/vcl/source/gdi/outdev3.cxx#l5827

   5827         if( pStr >= pEnd )
   5828             nLayoutFlags |= SAL_LAYOUT_BIDI_STRONG;

When rStr is "0" i.e. 0x0030, SAL_LAYOUT_BIDI_STRONG is being set.

I have not yet confirmed what SAL_LAYOUT_BIDI_STRONG means, but its name implies something BIDI is
enabled. Likewise, the line 5855

Best regards,
Tora

--

-- 
-----------------------------------------------------------------
To unsubscribe send email to dev-unsubscribe <at> gsl.openoffice.org
For additional commands send email to sympa <at> gsl.openoffice.org
with Subject: help

Dmitry A. Ashkadov | 15 Apr 14:11
Picon

drawing outside

Hello!

Can I draw some parts of GUI element outside it (its window)? For 
example, how can ruler draw over document field? Is it possible?

Thanks.

--

-- 
-----------------------------------------------------------------
To unsubscribe send email to dev-unsubscribe <at> gsl.openoffice.org
For additional commands send email to sympa <at> gsl.openoffice.org
with Subject: help

eric b | 18 Jan 09:51
Picon
Favicon

Refresh issue with FixedText controls (Linux and Windows only)

Hi,

I have refresh ( flickering ?) issue with FixedText controls in  
Toolbox, but only on Windows and Linux.  On Mac OS X, things are  
perfect, no problem.

Specifications are :

Let's consider a rectangle (for instance, a button), in a toolbox  
object.
* when the mouse cursor rolls over on button, the  
VCLEVENT_TOOLBOX_HIGHLIGHT is sent when entering in the button  
rectangle.
* when the mouse cursor goes out of the area, the  
VCLEVENT_TOOLBOX_HIGHLIGHTOFF  is sent.

Receive VCLEVENT_TOOLBOX_HIGHLIGHT triggers a   aFixedText.Show()
Receive VCLEVENT_TOOLBOX_HIGHLIGHTOFF triggers all FixedText controls  
to be hidden ( e.g.  aFixedText.Hide() )

So when the mouse cursor is moved from left to right, we see the  
following events occur :

VCLEVENT_TOOLBOX_HIGHLIGHT is catched, next is  
VCLEVENT_TOOLBOX_HIGHLIGHTOFF ... VCLEVENT_TOOLBOX_HIGHLIGHT ... and  
so on, alternatively.

The result is :
no text shown ... show fixed text1  .. hide all fixed text ... show  
fixed text2 ... hide alll

The relevant code is :

IMPL_LINK( BackingWindow, DecoToolboxHdl, VclWindowEvent*, pEvent )
{
     if( pEvent && pEvent->GetId() == VCLEVENT_TOOLBOX_HIGHLIGHT )
     {
#ifdef DEBUG
         fprintf(stdout, "Toolbox nItemId = %d \n",  
maToolbox.GetHighlightItemId() );
#endif
         switch ( maToolbox.GetHighlightItemId() )
         {
             case nItemId_Calc:
                 maCalcMessageText.Show();
                 break;
             case nItemId_Draw:
                 maDrawMessageText.Show();
                 break;
             case nItemId_Impress:
                 maImpressMessageText.Show();
                 break;
             case nItemId_Info:
                 maOpenMessageText.Show();
                 break;
             case nItemId_Writer:
                 maWriterMessageText.Show();
                 break;
             case nItemId_Extensions:
             case nItemId_Reg:
             case nItemId_TplRep:
             default:
                 break;
         }
     }
     else if( pEvent && pEvent->GetId() ==  
VCLEVENT_TOOLBOX_HIGHLIGHTOFF )
     {
         maCalcMessageText.Hide();
         maDrawMessageText.Hide();
         maImpressMessageText.Hide();
         maOpenMessageText.Hide();
         maWriterMessageText.Hide();
     }
     return 0;
}

The issue :

When moving the mouse cursor fastly between two buttons, sort of  
flicker appear, probably caused by either performance issue, or  
something missing in the code. In my mind, the term flicker, happens  
to be the FixedText background who appears (just "flickering"), and  
this causes a very bad user experience : most of children, play with  
the show / hide startcenter feature naturaly ...

If this can help, at initialisation, I have used  SetPaintTransparent 
(), for every FixedText control, and tested Erase() and several other  
methods since, to make the FixedText control background transparent  
(means  : no longer displayed). Unfortunaly, nothing helped until now.

Is there something missing, or is the current solution plain wrong  
(please tell me why), or is there a better implementation on Mac OS X  
than elsewhere ? (double buffering or something issue on Linux, or  
missing Invalidate somewhere or ... ? ). Other possibility : did I  
implement the algo ( Show() / Hide() ) at too hight level, causing  
performance issues ? But then, why Mac OS X fine in this case ?

The current workaround I had in mind was to use a timer:  enter in a  
rectangle triggers a timer (e.g 200 ms or a same magnitude value) .  
The first time we roll over a button, the Timer starts. If ever other  
VCL events are detected, until the timeout is reached, no way to  
hide / show again (using Timer::bIsActive() information ). This  
means, there will be always a delay before a string appears, starting  
the second time we roll over a button with the mouse cursor.  But I  
consider this solution as a workaround, and I ask here for something  
better.

I'm not a native speaker, and my english is not precise, so feel free  
to ask for further information.

Thanks in advance for any help !
Eric Bachard

--

-- 
qɔᴉɹə
Education Project:
http://wiki.services.openoffice.org/wiki/Education_Project
Projet OOo4Kids : http://wiki.ooo4kids.org/index.php/Main_Page
L'association EducOOo : http://www.educoo.org
Blog : http://eric.bachard.org/news

Thorsten Behrens | 25 Oct 11:34
Favicon

Resignation from co-lead

Dear gsl hackers, project leads of OOo -

it is with mixed emotions, that I hereby resign from my role as a gsl
co-lead, in which I served since 2007. My hopes that Oracle would
join TDF have sadly not come to pass.

As I believe in change, I will focus my energies on LibreOffice,
going forward.

At the same time, I would like to personally say thank you to all of
the great people, that I was lucky enough to meet in my nine years
with OOo - I learned a lot from you, and many of you tried hard to
change the project from the inside.

I propose Herbert Duerr as my successor - Herbert works on OOo even
longer than I do, and continues to do miracles to the font and layout
engines.

Best regards,

-- Thorsten
Carsten Driesner | 13 Sep 17:53
Picon
Favicon

Re: [framework-dev] MacOsX & LayoutManager & macro

On 13.09.2010 17:01, Laurent Godard wrote:

 >Hi all
 >
 >i have a macro running and i want to deactivate OOo while it is running,
 >so that the user can't activate any menu nor click inside the sheet
 >
 >under windows & linux, it works using
 >thisComponent.CurrentController.Frame.ContainerWindow.Enable = False
 >
 >But under macosX, the main menus (File, Edit, ...) are still active
 >
 >I tried adding
 >oLayout = ThisComponent.CurrentController.getFrame.LayoutManager
 >oLayout.HideElement("private:resource/menubar/menubar/")
 >and it works under linux and  windows, the main menus disappear
 >
 >But no success under MacOsX i think due to menus detached of the OOo
 >document window
 >
 >is there any trick to lock OOo main menu under macOsX ?
 >(the best would be cross-plateform compatible ;) )

Hi Laurent,

I am not very familiar with the MacOS implementation of VCL. Contrary to 
the other platforms VCL uses a system-menu on Mac (normally a self-drawn 
menu is used). May be this is the root cause of the difficulties you 
currently see. Unfortunately Philipp, who knows VCL and the Mac 
specialties much better, is in vacation. I don't know any way to 
circumvent this "special" implementation detail. May be Philipp can help 
you when he is back from vacation.

Regards,
Carsten
Philipp Lohmann | 23 Aug 10:44
Picon
Favicon

Re: MODERATE for features <at> gsl.openoffice.org

  Hi,

yes we do. OpenOffice.org is an OpenSource project. Changes have to fit 
into the overall project of course, but besides that every contribution 
is welcome.

For discussions please use the dev <at> gsl.openoffice.org mailinglist (now 
on CC).

Kind regards, pl

Subject:
open office questions
From:
John Rescigno <rescigno <at> tbaytel.net>
Date:
Fri, 20 Aug 2010 12:36:12 -0400

To:
features <at> gsl.openoffice.org

Just curious about doing future projects

Does Open Office let people volunteer their time to improve the services of the programs etc?
such as contribute to designing or programming etc?

Thank you
jr

-- 

<http://www.oracle.com/>
Philipp Lohmann | Software engineer

Oracle Open Office Development

ORACLE Deutschland B.V. & Co. KG | Nagelsweg 55 | 20097 Hamburg

ORACLE Deutschland B.V. & Co. KG
Hauptverwaltung: Riesstr. 25, D-80992 München
Registergericht: Amtsgericht München, HRA 95603

Komplementärin: ORACLE Deutschland Verwaltung B.V.
Rijnzathe 6, 3454PV De Meern, Niederlande
Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697
Geschäftsführer: Jürgen Kunz, Marcel van de Molen, Alexander van der Ven

<http://www.oracle.com/commitment>

	

Oracle is committed to developing practices and products that help 
protect the environment
Rene Engelhard | 17 Aug 14:22
Picon
Favicon

[paivakil <at> gmail.com: Bug#591615: openoffice.org: Malayalam Rendering Issues]

[ please keep 591615-forwarded <at> bugs.debian.org in Cc ]

Hi,

----- Forwarded message from "Mahesh T. Pai" <paivakil <at> gmail.com> -----

Subject: Bug#591615: openoffice.org: Malayalam Rendering Issues
Reply-To: "Mahesh T. Pai" <paivakil <at> gmail.com>, 591615 <at> bugs.debian.org
From: "Mahesh T. Pai" <paivakil <at> gmail.com>
To: Debian Bug Tracking System <submit <at> bugs.debian.org>
X-Mailer: reportbug 4.12.4
Date: Wed, 04 Aug 2010 13:31:04 +0530

Package: openoffice.org
Version: 1:3.2.1-5
Severity: normal

There is a problem rendering some glyphs  of Malayalam language.

Glyph reordering and substitution  with some (not all) glyphs is 
not happening.

This is a fresh install of 32 bit OO.o; I used to have a 64 bit
OO.o till 10 days back, this problem was not there. I am nut
sure if some thing has changed in 10 days. 

I assume ttf-malayalam-fonts are installed. 

I am attaching a sample html file, and the difference
would be  apparent if the text is viewd in both iceweasel 
or iceape (prefered - not sure how it renders in other
browsers - certainly will not render properly in text only
browsers) and any of OO.o components. 

See the screenshot attached. On left is the html rendered in
iceape - correct rendering; and right side is the rendering 
in OO.o word. (wrong rendering). 

The problem is existing in at least spreadsheet too.

Have not checked other components. 

Problem seems to be with icu or whatever equivalent of pango used by
OO.o for text rendering / layout. 

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

Kernel: Linux 2.6.32-5-686 (SMP w/1 CPU core)
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages openoffice.org depends on:
ii  liblucene2-java              2.9.2+ds1-1 Full-text search engine library fo
ii  openoffice.org-base          1:3.2.1-5   office productivity suite -- datab
ii  openoffice.org-calc          1:3.2.1-5   office productivity suite -- sprea
ii  openoffice.org-core          1:3.2.1-5   office productivity suite -- arch-
ii  openoffice.org-draw          1:3.2.1-5   office productivity suite -- drawi
ii  openoffice.org-filter-mobile 1:3.2.1-4   office productivity suite -- mobil
ii  openoffice.org-impress       1:3.2.1-5   office productivity suite -- prese
ii  openoffice.org-java-common   1:3.2.1-5   office productivity suite -- arch-
ii  openoffice.org-math          1:3.2.1-5   office productivity suite -- equat
ii  openoffice.org-officebean    1:3.2.1-5   office productivity suite -- Java 
ii  openoffice.org-report-builde 1:3.2.1-5   OpenOffice.org extension for build
ii  openoffice.org-writer        1:3.2.1-5   office productivity suite -- word 
ii  ttf-dejavu                   2.31-1      Metapackage to pull in ttf-dejavu-
ii  ttf-sil-gentium-basic        1.1-2       smart Unicode font families (Basic

Versions of packages openoffice.org recommends:
ii  openoffice.org-filter- 1:3.2.1-5         office productivity suite -- legac
ii  ttf-liberation         1.05.2.20091019-4 Fonts with the same metrics as Tim

Versions of packages openoffice.org suggests:
ii  cups-bsd                    1.4.4-2      Common UNIX Printing System(tm) - 
ii  default-jre [java5-runtime] 1.6-38       Standard Java or Java compatible R
ii  gcj-4.4-jre [java5-runtime] 4.4.4-6      Java runtime environment using GIJ
ii  gcj-jre [java5-runtime]     4:4.4.4-2    Java runtime environment using GIJ
ii  gstreamer0.10-ffmpeg        0.10.11-1    FFmpeg plugin for GStreamer
ii  gstreamer0.10-plugins-bad   0.10.19-2+b2 GStreamer plugins from the "bad" s
ii  gstreamer0.10-plugins-base  0.10.30-1    GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good  0.10.24-1    GStreamer plugins from the "good" 
ii  gstreamer0.10-plugins-ugly  0.10.15-1    GStreamer plugins from the "ugly" 
ii  hunspell-en-us [hunspell-di 20070829-4   English_american dictionary for hu
ii  iceape-browser              2.0.6-1      Iceape Navigator (Internet browser
ii  icedove                     3.1-1        mail/news client with RSS and inte
ii  iceweasel                   3.6.7-1      Web browser based on Firefox
pn  imagemagick | graphicsmagic <none>       (no description available)
ii  libgl1-mesa-glx [libgl1]    7.7.1-4      A free implementation of the OpenG
ii  libldap-2.4-2               2.4.23-2     OpenLDAP libraries
ii  libpaper-utils              1.1.24       library for handling paper charact
ii  libsane                     1.0.21-3     API library for scanners
ii  libxrender1                 1:0.9.6-1    X Rendering Extension client libra
ii  menu                        2.1.43       generates programs menu for all me
pn  myspell-dictionary          <none>       (no description available)
pn  openclipart-openoffice.org  <none>       (no description available)
ii  openjdk-6-jre [java5-runtim 6b18-1.8-4   OpenJDK Java runtime, using Hotspo
pn  openoffice.org-gnome | open <none>       (no description available)
ii  openoffice.org-help-en-us [ 1:3.2.1-4    office productivity suite -- Engli
ii  openoffice.org-hyphenation- 2.5-1        US English hyphenation patterns fo
pn  openoffice.org-l10n-3.2     <none>       (no description available)
ii  openoffice.org-thesaurus-en 1:3.2.1-2    English Thesaurus for OpenOffice.o
ii  pstoedit                    3.50-3       PostScript and PDF files to editab
pn  unixodbc                    <none>       (no description available)

Versions of packages openoffice.org-core depends on:
ii  fontconfig           2.8.0-2.1           generic font configuration library
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libcairo2            1.8.10-4            The Cairo 2D vector graphics libra
ii  libcurl3-gnutls      7.21.0-1            Multi-protocol file transfer libra
ii  libdb4.8             4.8.30-1            Berkeley v4.8 Database Libraries [
ii  libexpat1            2.0.1-7             XML parsing C library - runtime li
ii  libfreetype6         2.4.0-2             FreeType 2 font engine, shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libglib2.0-0         2.25.11-3           The GLib library of C routines
ii  libgraphite3         1:2.3.1-0.2         SILGraphite - a "smart font" rende
ii  libgstreamer-plugins 0.10.30-1           GStreamer libraries from the "base
ii  libgstreamer0.10-0   0.10.30-1           Core GStreamer libraries and eleme
ii  libgtk2.0-0          2.21.5-1            The GTK+ graphical user interface 
ii  libhunspell-1.2-0    1.2.11-1            spell checker and morphological an
ii  libhyphen0           2.5-1               ALTLinux hyphenation library - sha
ii  libice6              2:1.0.6-1           X11 Inter-Client Exchange library
ii  libicu44             4.4.1-5             International Components for Unico
ii  libjpeg62            6b1-1               The Independent JPEG Group's JPEG 
ii  libmythes-1.2-0      2:1.2.1-1           simple thesaurus library
ii  libneon27-gnutls     0.29.3-2            An HTTP and WebDAV client library 
ii  libnspr4-0d          4.8.4-2             NetScape Portable Runtime Library
ii  libnss3-1d           3.12.6-3            Network Security Service libraries
ii  librdf0              1.0.10-2            Redland Resource Description Frame
ii  libsm6               2:1.1.1-1           X11 Session Management library
ii  libssl0.9.8          0.9.8o-1            SSL shared libraries
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  libx11-6             2:1.3.3-3           X11 client-side library
ii  libxaw7              2:1.0.7-1           X11 Athena Widget library
ii  libxext6             2:1.1.2-1           X11 miscellaneous extension librar
ii  libxinerama1         2:1.1-3             X11 Xinerama extension library
ii  libxml2              2.7.7.dfsg-4        GNOME XML library
ii  libxrandr2           2:1.3.0-3           X11 RandR extension library
ii  libxrender1          1:0.9.6-1           X Rendering Extension client libra
ii  libxslt1.1           1.1.26-5            XSLT 1.0 processing library - runt
ii  libxt6               1:1.0.7-1           X11 toolkit intrinsics library
ii  openoffice.org-commo 1:3.2.1-5           office productivity suite -- arch-
ii  ttf-opensymbol       1:3.2.1-4           OpenSymbol TrueType font
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ
ii  zlib1g               1:1.2.3.4.dfsg-3    compression library - runtime

Versions of packages openoffice.org-writer depends on:
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libicu44             4.4.1-5             International Components for Unico
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  libwpd8c2a           0.8.14-1            Library for handling WordPerfect d
ii  libwps-0.1-1         0.1.2-1             Works text file format import filt
ii  openoffice.org-base- 1:3.2.1-5           office productivity suite -- share
ii  openoffice.org-core  1:3.2.1-5           office productivity suite -- arch-
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ
ii  zlib1g               1:1.2.3.4.dfsg-3    compression library - runtime

Versions of packages openoffice.org-calc depends on:
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  lp-solve             5.5.0.13-7          Solve (mixed integer) linear progr
ii  openoffice.org-base- 1:3.2.1-5           office productivity suite -- share
ii  openoffice.org-core  1:3.2.1-5           office productivity suite -- arch-
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ

Versions of packages openoffice.org-base depends on:
ii  default-jre [java5-r 1.6-38              Standard Java or Java compatible R
ii  gcj-4.4-jre [java5-r 4.4.4-6             Java runtime environment using GIJ
ii  gcj-jre [java5-runti 4:4.4.4-2           Java runtime environment using GIJ
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libhsqldb-java       1.8.0.10-9          Java SQL database engine
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  openjdk-6-jre [java5 6b18-1.8-4          OpenJDK Java runtime, using Hotspo
ii  openoffice.org-base- 1:3.2.1-5           office productivity suite -- share
ii  openoffice.org-core  1:3.2.1-5           office productivity suite -- arch-
ii  openoffice.org-java- 1:3.2.1-5           office productivity suite -- arch-
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ

Versions of packages openoffice.org-impress depends on:
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  openoffice.org-core  1:3.2.1-5           office productivity suite -- arch-
ii  openoffice.org-draw  1:3.2.1-5           office productivity suite -- drawi
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ

Versions of packages openoffice.org-math depends on:
ii  libc6                2.11.2-2            Embedded GNU C Library: Shared lib
ii  libgcc1              1:4.4.4-7           GCC support library
ii  libstdc++6           4.4.4-7             The GNU Standard C++ Library v3
ii  libstlport4.6ldbl    4.6.2-7             STLport C++ class library
ii  openoffice.org-core  1:3.2.1-5           office productivity suite -- arch-
ii  ure                  1.6.1+OOo3.2.1-4+b1 OpenOffice.org UNO runtime environ

-- no debconf information

[...]
----- End forwarded message -----

Do you have any idea here? Further informations/observations of him:
- works with amd64, i386 fails
- version built against ICU 4.2 seems to work, the one with ICU 4.4 not.

Grüße/Regards,

René
--

-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  rene <at> debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70
Con Hennessy | 16 Jul 10:42
Favicon

unsub


Philipp Lohmann | 7 Jul 13:06
Picon

Re: Moderated message to gsl mailing list

  Hi,

I don't remember that mail coming through, perhaps it got rejected 
accidentally, sorry. I'll forward this to
the list as well as to Herbert Dürr, who can probably shed some light on 
this problem.

Kind regards, pl

On 7/7/10 12:20 PM, Ramón García Fernández wrote:
> Hello, I have sent a message to the gsl mailing list which has been rejected. Why? I think there has been a misunderstanding.
>
>
> This was the message. I sent it to the GSL mailing list after consulting in the Openoffice IRC channel. I was
told there that the GSL mailing list was the best place for discussing this issue. I am not currently
subscribed. I could subscribe if necessary, but I would rather not subscribe.
>
> ------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>
> Hello,
>
> We are having issues while checking document compatibility with Microsoft Word. A document that we are
testing uses the font Myriad Pro Light. The font is installed in the machine, but avaiable under
Openoffice under Myriad Pro, variety Light. The imported document is not displayed correctly, because
the font is replaced by Times New Roman.
>
> We would prefer if the font subsystem were able to display correctly Myriad Pro Light, even if it is offered
as Myriad Pro/Light in the application.
>
> Would that be posible?
>
> This is a Windows XP System.
>
> Aviso legal – Comisión Nacional del Mercado de Valores
>
> Este mensaje y, en su caso, los ficheros que lleve incorporados, está dirigido exclusivamente a su
destinatario y es de carácter confidencial. Si fuere recibido por error o se tuviere conocimiento del
mismo sin ser su destinatario, rogamos nos lo comunique por la misma vía o telefónicamente (91 585 15 00)
y proceda a su destrucción, debiendo abstenerse de utilizar, transmitir, divulgar o  reproducir la
información contenida en el mismo. La CNMV se reserva las acciones legales que procedan contra todo
tercero que acceda de forma ilegítima al contenido de cualquier mensaje externo procedente de la entidad
>
> Para información y consultas visite nuestra web: http://www.cnmv.es
>
>
> Disclaimer - Comisión Nacional del Mercado de Valores
>
> This message, its content and any file attached thereto is for the intended recipient only and is
confidential. If you have received this e-mail in error or had access to it, you should note that the
information in it is private and any use thereof is unauthorised. In such an event please notify us by
e-mail or by telephone (+ 34 91 585 15 00). Any reproduction of this e-mail by whatsoever means and any
transmission or dissemination thereof to other persons is prohibited. The Comisión Nacional del
Mercado de Valores reserves the right to take legal action against any persons unlawfully gaining access
to the content of any external message it has emitted
>
> For additional information, please visit our website: http://www.cnmv.es

-- 

<http://www.oracle.com/>
Philipp Lohmann | Software engineer

Oracle Open Office Development

ORACLE Deutschland B.V. & Co. KG | Nagelsweg 55 | 20097 Hamburg

ORACLE Deutschland B.V. & Co. KG
Hauptverwaltung: Riesstr. 25, D-80992 München
Registergericht: Amtsgericht München, HRA 95603

Komplementärin: ORACLE Deutschland Verwaltung B.V.
Rijnzathe 6, 3454PV De Meern, Niederlande
Handelsregister der Handelskammer Midden-Niederlande, Nr. 30143697
Geschäftsführer: Jürgen Kunz, Marcel van de Molen, Alexander van der Ven

<http://www.oracle.com/commitment>

	

Oracle is committed to developing practices and products that help 
protect the environment

Gmane