[graphics-issues] [Issue 31097] Data Point Symbol size cha nges when a different symbol is choosen

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=31097


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:54:59 + 
2007 ---
Works fine for all Datapoints -> verified

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[www-issues] [Issue 22519] Handling DUPLICATE issues

2007-12-27 Thread jeevaguru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=22519


User jeevaguru changed the following:

What|Old value |New value

  Status|REOPENED  |RESOLVED

  Resolution|  |LATER





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:42:13 + 
2007 ---
Hi,

We will try to consider this request in Project Tracker if OpenOffice decides to
move to PT. Marking as RESOLVED -> LATER.


Thanks,
Jeeva
Support Operations

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:24:15 + 
2007 ---
BTW:
% cat test.sh
#!/bin/sh

X=""
if test -n "$X"; then
echo "null"
else
echo "not null"
fi
% sh test.sh
not null

for MacOSX Tiger PPC/X11 and FreeBSD6.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:18:14 + 
2007 ---
It seems ENABLE_NAS is set to YES 
 dnl ===
 dnl Check for system nas
 dnl ===
here.
So - ENABLE_NAS is always YES if $without_nas is not specified.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84897] MacOSX : NAS and GUIBASE a qua

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84897
 Issue #|84897
 Summary|MacOSX : NAS and GUIBASE aqua
   Component|porting
 Version|680m241
Platform|All
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|macport
 Reported by|maho





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:11:14 + 
2007 ---
configure accepts --enable-nas for MacOSX but nas is neglected
when GUIBASE is aqua.

>From SRC680_m241/nas/makefile.mk
.IF "$(SYSTEM_NAS)"=="YES"
@echo "Using system nas..."
.ELSE
.IF "$(GUIBASE)"=="aqua"
@echo "Nothing to build for GUIBASE $(GUIBASE)"
.ELSE
@echo "Nothing to build for OS $(OS)"
.ENDIF # "$(GUIBASE)"=="aqua"
.ENDIF

I think configure should be modified that when build for Aqua,
--enable-nas should be rejected at configure.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 07:04:47 + 
2007 ---
There seems to be two stuffs:
on MacOSX, test -n "" doesn't return 0.
ENABLE_NAS is set to YES in any case. Explicit clear is necessary.

Index: config_office/configure.in
===
RCS file: /cvs/tools/config_office/configure.in,v
retrieving revision 1.237
diff -u -r1.237 configure.in
--- config_office/configure.in  12 Dec 2007 15:36:54 -  1.237
+++ config_office/configure.in  28 Dec 2007 07:03:09 -
@@ -4129,10 +4129,11 @@
 dnl ===
 dnl Check for system nas
 dnl ===
+ENABLE_NAS=""
 AC_MSG_CHECKING([which nas to use])
-if test -n "$with_nas"; then
+if test x"$with_nas" = x""; then
 AC_MSG_RESULT([none])
-elif test -n "$without_nas"; then
+elif test x"$without_nas" = x""; then
 ENABLE_NAS=""
 elif test -n "$with_system_nas" -o -n "$with_system_libs" && \
test "$with_system_nas" != "no"; then


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 82676] Graph lines disappear when legend was changed

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82676


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 06:49:29 + 
2007 ---
No response, so i will close this issue. Feel free to reopen if its possible to
submit more information.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 06:46:11 + 
2007 ---
Created an attachment (id=50584)
config.log


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 06:45:25 + 
2007 ---
If we configure with:
 
./configure --with-lang=en-US  --enable-mozilla --with-mozilla-version=1.7.5
--enable-build-mozilla --with-jdk-home=/System/Library/\
Frameworks/JavaVM.framework/Versions/1.4.2/Home --disable-gtk
--disable-crashdump --with-gnu-cp=/sw/bin/cp --with-x --x-includes=/usr/X1\
1R6/include --x-libraries=/usr/X11R6/lib --with-vendor=OpenOffice.org Mac OS X
porting project

The result is also strange:
> checking which nas to use... internal
(This should be none)
> The variable SYSTEM_NASis set to: NO
> The variable NAS_INCLUDES  is set to: unset
> The variable ENABLE_NASis set to: YES
ENABLE_NAS should be NO.




-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 06:40:07 + 
2007 ---
Created an attachment (id=50583)
config.log with --without-nas


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 84896] MacOSX : ENABLE_NAS and co nfigure

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84896
 Issue #|84896
 Summary|MacOSX : ENABLE_NAS and configure
   Component|porting
 Version|680m241
Platform|All
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|macport
 Reported by|maho





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 06:38:26 + 
2007 ---
MacOSX Tiger/PPC, NAS part of configure is somewhat odd:

* ./configure --with-lang=en-US  --enable-mozilla --with-mozilla-version=1.7.5
--enable-build-mozilla --with-jdk-home=/System/Library/F
rameworks/JavaVM.framework/Versions/1.4.2/Home --disable-gtk --disable-crashdump
--with-gnu-cp=/sw/bin/cp --with-x --x-includes=/usr/X11R
6/include --x-libraries=/usr/X11R6/lib --without-nas
--with-vendor=OpenOffice.org Mac OS X porting project

Then, 
configure output becomes:
> checking which nas to use... none
...
> The variable SYSTEM_NASis set to: NO
> The variable NAS_INCLUDES  is set to: unset
> The variable ENABLE_NASis set to: YES
...

ENABLE_NAS should not be set of course.

config.log is attached.
thanks

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 84405] meta issue to track issues discovered by RedFlag2000 QA

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84405


User liushibo_redflag changed the following:

What|Old value |New value

 IssuesThisDependsOn|83888,84406,84408,84409,84|83888,84406,84408,84409,84
|442,84452,84480,84510,8468|442,84452,84480,84510,8468
|6,84741,84867,84871,84872,|6,84741,84867,84871,84872,
|84894 |84894,84895





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84895] Hyperlink in outline is not work.

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84895


User liushibo_redflag changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |84405
  is|  |





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84895] Hyperlink in outline is not work.

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84895
 Issue #|84895
 Summary|Hyperlink  in outline  is not work.
   Component|Presentation
 Version|OOo 2.3.1
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|cgu
 Reported by|liushibo_redflag





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 03:47:50 + 
2007 ---
1.Create a new prentation.
2.view->Outline,Insert->hyperlink,input any hyperlink.
3.click the hyperlink,but it couldn't open the hyperlink.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[tools-issues] [Issue 84405] meta issue to track issues discovered by RedFlag2000 QA

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84405


User liushibo_redflag changed the following:

What|Old value |New value

 IssuesThisDependsOn|83888,84406,84408,84409,84|83888,84406,84408,84409,84
|442,84452,84480,84510,8468|442,84452,84480,84510,8468
|6,84741,84867,84871,84872 |6,84741,84867,84871,84872,
|  |84894





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84894] It may be work wrong that slide show from certain slide.

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84894


User liushibo_redflag changed the following:

What|Old value |New value

  CC|''|'pj'

OtherIssuesDependingOnTh|  |84405
  is|  |





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84894] It may be work wrong that slide show from certain slide.

2007-12-27 Thread liushibo_redflag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84894
 Issue #|84894
 Summary|It may be work wrong that slide show from certain slid
|e.
   Component|Presentation
 Version|OOo 2.3.1
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|cgu
 Reported by|liushibo_redflag





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 02:44:56 + 
2007 ---
step to reproduce
1.Create a new presentation,and add 5 slide,and number them.
2.Slide Show->Slide show settings,click "from" and select "slide 2",and 
click"ok".
3.Select NO 3 slide in left slides windows.
4.press "F5".

actual result
The Slide show begain from slide 3.

expected result
The slide show begain from slide 2.

PS:
Tools->Options->OpenOffice.org Impress->General,
when I cancle the "Always with current page". the fuction of "slide show from" 
is work normally. But I think that the fuction of "slide show from" couldn't 
depend on the "options".

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 54423] Disable hidden icons in th e "visible buttons" menu when the Asian or CTL support is disabled

2007-12-27 Thread tjfrazier
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54423


User tjfrazier changed the following:

What|Old value |New value

  CC|'kami_,mba,mbayer,pescetti|'kami_,mba,mbayer,pescetti
|,regina'  |,regina,tjfrazier'





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 02:40:12 + 
2007 ---
The situation with the Right-To-Left and Left-To-Right buttons is somewhat worse
than described.  With CTL enabled, these two buttons won't go away.  In short,
they never obey the check-marks in the Visible Button or Customize dialogs.

When CTL is disabled, the dialogs should show these buttons grayed out.
When CTL is enabled, it should be up to the user whether they are visible, just
like any other buttons.  /tj


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 84679] gfbfcfg (SRC680_m240) --di sable-fontconfig broken/still tries to build f ontconfig and breaks

2007-12-27 Thread khirano
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84679


User khirano changed the following:

What|Old value |New value

  CC|'cloph,es,hdu,rene,sb'|'cloph,es,hdu,khirano,rene
|  |,sb'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84893] Can't enter Name at Page S tyle Organizer

2007-12-27 Thread khirano
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84893
 Issue #|84893
 Summary|Can't enter Name at Page Style Organizer
   Component|Word processor
 Version|OOo 2.3.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|khirano





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 01:39:35 + 
2007 ---
Start Writer and go to Format --> Page --> Organizer.
You can't enter Name.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[gsl-issues] [Issue 84679] gfbfcfg (SRC680_m240) --di sable-fontconfig broken/still tries to build f ontconfig and breaks

2007-12-27 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84679





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 01:12:56 + 
2007 ---
Hi all, with
2007/12/21 14:52:00 +: fontconfig.patch updated patch version 
(text/plain),
I could build packages for MacOSX, X11 version.
I have already uploaded. See release@ ML.

Thanks!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84892] Creating an outline with b ullets doesn't work correctly

2007-12-27 Thread glcjr
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84892
 Issue #|84892
 Summary|Creating an outline with bullets doesn't work correctl
|y
   Component|Word processor
 Version|OOo 2.3.0 RC1
Platform|All
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|formatting
 Assigned to|mru
 Reported by|glcjr





--- Additional comments from [EMAIL PROTECTED] Fri Dec 28 00:21:52 + 
2007 ---
I take my notes during class on the computer. And I use tabs to indicate when 
ideas go together. And when its done, I go up to Format and click bullets and 
NUmbering in Word and click the regular outline. And a nice outline is created

Such as:

Story of Christmas 
Jesus birth
Wisemen come
Offer Presents
becomes
I. Story of Christmas
   A. Jesus birth
   B. Wisemen come
   1. Offer Presents

But that's in Word.

In Writer it comes back:

I. Story of Christmas
II. Jesus Birth
III.Wisemen come
IV. Offer gifts

Not as user friendly. So if possible it would be nice to have the Word result 
in openoffice.

Hopefully that makes sense and the formatting will remain.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84891] Image disappear after prin t and Export to RTF

2007-12-27 Thread ydu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84891





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:58:43 + 
2007 ---
Created an attachment (id=50582)
Final rtf document.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84891] Image disappear after prin t and Export to RTF

2007-12-27 Thread ydu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84891





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:57:31 + 
2007 ---
Created an attachment (id=50581)
Document to reproduce the problem


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84891] Image disappear after prin t and Export to RTF

2007-12-27 Thread ydu
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84891
 Issue #|84891
 Summary|Image disappear after print and Export to RTF
   Component|Word processor
 Version|OOo 2.3.1
Platform|All
 URL|
  OS/Version|Windows XP
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|save-export
 Assigned to|mru
 Reported by|ydu





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:56:27 + 
2007 ---
Discovered a strange problem.

I Read the testimage6.odt document and EXACTLY as described :
File - print -  - print
(I close microsoft document image writer with tiff document generated)
( DONT TOUCH the document !! )
File - save as - testimage6.rtf -  - save
File - close
File - open  
(ok image is correctly displayed so I make exactly the same operation)
File - print -  - print
(I close microsoft document image writer with tiff document generated)
( DONT TOUCH the document !! )
File - save as - testimage6.rtf -  - save
File - close
File - open - testimage6.rtf  => image disappear ??? (border are present)

Joined testimage6.odt and testimage.rtf (final).

Yves

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84890] Can't present presantation s from OOoCon Barcelona

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84890


User mechtilde changed the following:

What|Old value |New value

Keywords|  |oooqa, regression





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84890] Can't present presantation s from OOoCon Barcelona

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84890
 Issue #|84890
 Summary|Can't present presantations from OOoCon Barcelona
   Component|Presentation
 Version|680m241
Platform|All
 URL|
  OS/Version|Linux
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|viewing
 Assigned to|cgu
 Reported by|mechtilde





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:53:25 + 
2007 ---
I tested DEBs from Sun and Pavel for 32 bit Debian.

I tested it with
http://marketing.openoffice.org/ooocon2007/programme/thursday_70.odp 

It didn't work longer than to the 4th slide. Then I saw the design view.
It works with 2.3.1 so it is a regression and P2

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 82941] Loading presentation-file extremely slow.

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82941


User mechtilde changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:46:17 + 
2007 ---
closed duplicate

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84581] [DE] Inkonsistente Überse tzung in OLE-Objekt einfügen

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84581


User mechtilde changed the following:

What|Old value |New value

 Assigned to|cgu   |jrahemipour





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:44:33 + 
2007 ---
reassign to l10n

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84819] microsoft pps audio compat ibility

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84819


User mechtilde changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:41:58 + 
2007 ---
close duplicate

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84842] burn presentation to cd to play on dvd players

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84842


User mechtilde changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:41:36 + 
2007 ---
-> closed

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84842] burn presentation to cd to play on dvd players

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84842


User mechtilde changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:41:06 + 
2007 ---
set duplicate

*** This issue has been marked as a duplicate of 84841 ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84841] burn presentation to cd to play on dvd players

2007-12-27 Thread mechtilde
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84841





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 20:41:05 + 
2007 ---
*** Issue 84842 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 11215] Lotus Wordpro Filters Need ed

2007-12-27 Thread dominik_s
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=11215


User dominik_s changed the following:

What|Old value |New value

  CC|'aziem,deepcerulean,kendy,|'aziem,deepcerulean,domini
|mba,mnicel,npower,pflin,th|k_s,kendy,mba,mnicel,npowe
|ing'  |r,pflin,thing'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84881] Save defect when placing W indows XP into hibernation

2007-12-27 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84881


User mba changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:33:47 + 
2007 ---
closing duplicate

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84881] Save defect when placing W indows XP into hibernation

2007-12-27 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84881


User mba changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:33:28 + 
2007 ---
duplicate

*** This issue has been marked as a duplicate of 73979 ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 73979] Network file handles no lo nger valid after hibernate/standby

2007-12-27 Thread mba
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=73979





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:33:27 + 
2007 ---
*** Issue 84881 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 84889] Spreadsheet as existing da tabase => group by don't work!

2007-12-27 Thread brot
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84889





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:29:09 + 
2007 ---
Created an attachment (id=50580)
Base file used to create this issue


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dba-issues] [Issue 84889] Spreadsheet as existing da tabase => group by don't work!

2007-12-27 Thread brot
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84889
 Issue #|84889
 Summary|Spreadsheet as existing database => group by don't wor
|k!
   Component|Database access
 Version|OOo 2.3.1
Platform|All
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|dbaneedsconfirm
 Reported by|brot





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:19:55 + 
2007 ---
!!!The problem also occurs in the older version 2.2 on Linux and in version 2.3
on windows XP!!!

If you create a new database and connect it to an existing spreadsheet, it's not
possible to create a query like:
***
select email, count(*) as counter from address group by email
***
The column 'counter' is always null/empty.

I will try to attach a ods-file for testing purpose!

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 59561] special chars missing on P DF export

2007-12-27 Thread oxmosys
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59561





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:14:16 + 
2007 ---
I attached a sample from a launchpad bug in Linux Ubuntu :

https://bugs.edge.launchpad.net/openoffice/+bug/177499

The bug has been tested with this document on Linux Ubuntu Gutsy 7.10 and
Windows XP SP2

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 59561] special chars missing on P DF export

2007-12-27 Thread oxmosys
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59561





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 19:12:18 + 
2007 ---
Created an attachment (id=50579)
Document file that doesn't render correctly when exported to PDF


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 63848] views.xcu permanently writ ten when dragging stylist

2007-12-27 Thread andreschnabel
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63848


User andreschnabel changed the following:

What|Old value |New value

  CC|'ace_dent,atlanx,kpalagin,|'ace_dent,andreschnabel,at
|mba,pl,takeda64'  |lanx,kpalagin,mba,pl,taked
|  |a64'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84888] faulty expression in a lin ked table when the source table is in a hidden section

2007-12-27 Thread eberlein
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84888





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 18:24:18 + 
2007 ---
Created an attachment (id=50578)
two tables in two sections


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84888] faulty expression in a lin ked table when the source table is in a hidden section

2007-12-27 Thread eberlein
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84888
 Issue #|84888
 Summary|faulty expression in a linked table when the source ta
|ble is in a hidden section
   Component|Word processor
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|eberlein





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 18:23:20 + 
2007 ---
see the attachment:
The expression in Table2.C2 should show the result like Table2.A2, even if
Section1 was set invisible.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84886] FIXME: Capitalise Macro Bu ggy Next To Paragraph End, Probably UNO Proble m

2007-12-27 Thread gnor
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84886


User gnor changed the following:

What|Old value |New value

Subcomponent|open-import   |formatting





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84887] FIXME: Auto-Switching to O OoWriter/Web on Loading HTML Documents

2007-12-27 Thread gnor
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84887
 Issue #|84887
 Summary|FIXME: Auto-Switching to OOoWriter/Web on Loading HTML
| Documents
   Component|Word processor
 Version|OOo 2.3.0 RC1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|mru
 Reported by|gnor





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 18:08:10 + 
2007 ---
Dear Madam or Sir!

I just upgraded from OOo 2.2 to 2.3.

To my utter surprise OOoWriter/Web refused to show the HTML source option
and the toolbar icon, resp., after opening a HTML document formerly created
and edited with 2.2.

Digging in the help revealed that I had to save the document explicitly as
HTML to enable OOoWriter/Web mode via «Save As …».

The associations in the option «Load/Store» weren't messed up.

It should be no problem for OOo to examine the «magic number» of a file in
addition to its extension, so it can switch between normal OOoWriter/ODF
and OOoWriter/Web sans this kludge via «Save As …» in HTML-Format.

Please revise your code where this auto-detection has been disabled between
2.2 and 2.3.

Switching to source view is crucial for OOoWriter/Web, since it enables you
to fine-tune some effects not easily achieved in WYSIWYG.

Strangely it hath somehow fixed, but that might be because I opened the
files from the tray icon instead of using the «Open with …» function of
Explorer. Alternate shells use Explorer for this, too!

I have some PDFs with ordinary looking names that can only opened from
within Adobe Reader without provoking a «File not found» dialog.

Cygwin bash hath problems with the same files, too when running updatedb.

Fortunately these files are quite rare.

But you should look at the file names Explorer hands over to OOo. I have
some rare cases where short mangled 8.3 names were handed over to other
programs, including the program path under NT4, W2k, and XP.

Kind regards

Norbert Grün ([EMAIL PROTECTED])

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84886] FIXME: Capitalise Macro Bu ggy Next To Paragraph End, Probably UNO Proble m

2007-12-27 Thread gnor
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84886
 Issue #|84886
 Summary|FIXME: Capitalise Macro Buggy Next To Paragraph End, P
|robably UNO Problem
   Component|Word processor
 Version|OOo 2.3.0 RC1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|mru
 Reported by|gnor





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 18:05:26 + 
2007 ---
Dear Madam or Sir!

The «Capitalise» macro you secretly provide has a boundary problem.

When the word to be changed in case is next to the paragraph end mark,
including whitespace, either selected manually or automagically, which
works since 2.2, a line break is inserted after the paragraph's end and the
following paragraph changed to the standard template.

Otherwise «Capitalise» works as expected.

The version I use is BeanShell, you should check the Python version as
well.

BTW: Which version should be preferred? Both cause swapping on my 448MB AMD
K6-II/500.

I think the problem is in the UNO interface, because the automagic
selection didn't work prior to 2.2, probably UNO's «xTextRange.getString()»
couldn't return a string of zero size which the code relies on.

So it may be worth checking the UNO interface as well.

As I suggested already otherwise, advertise «Capitalise» in the help and by
assigning it globally to OOo in OOoWriter, this option is surprisingly not
available in the other OOo modules, to «S-f3» in Emacsese, «Shift+F3» in
Windowsese, as it was DOS-Word 4.0 and 5.0 with the same functionality.

Kind regards

Norbert Grün ([EMAIL PROTECTED])

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84868] new OpenGL transitions are distorted, stutter, or freeze

2007-12-27 Thread hub
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84868





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 17:20:13 + 
2007 ---
if 3D hardware is not supported, it should definitely work in some way or the
other. Software GL should be enough, and if not, then the user should at least
be informed with some sort of reasonable fallback.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84885] exported PDF is much bigge r than the one created by PDFCreator.

2007-12-27 Thread loogn
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84885
 Issue #|84885
 Summary|exported PDF is much bigger than the one created by PD
|FCreator.
   Component|Word processor
 Version|OOo 2.3.0 RC1
Platform|Sun
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|printing
 Assigned to|mru
 Reported by|loogn





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 17:10:29 + 
2007 ---
I tested a three-page text file in OOo Writer.
(1) "File" --> "Export as PDF" --> 40kb
(2) "File" --> "print" --> "PDFCreator" --> 20kb.

I also tested other bigger size text file. The result is the .pdf created by OOo
writer is more or less twice as large as the one by PDFCreator.

I also compared it with "cutepdf". The same result.

So I am thinking maybe there is some improvement for OOo "Export as pdf" 
component.

Thanks. Happy New Year.

Sincerely Yours,
  Zuliang Jiang

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 84884] Calc: DAYS() not ODFF comp liant

2007-12-27 Thread drking
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84884
 Issue #|84884
 Summary|Calc: DAYS() not ODFF compliant
   Component|Spreadsheet
 Version|OOo 2.3.1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|programming
 Assigned to|spreadsheet
 Reported by|drking





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 16:52:06 + 
2007 ---
@ er

OOo Calc Help:
DAYS(Date_2;Date_1)   Date_1 is the start date, Date_2 is the end date. 

ODFF (15Nov07):
Syntax: DAYS( DateParam StartDate ; DateParam EndDate )

So Calc has the parameters round the wrong way - but this does not appear on 
the Calc/ODFF Implementation/Schedule at
http://wiki.services.openoffice.org/wiki/Calc/ODFF_Implementation/Schedule

I've classed this a defect as it will become one when Calc claims to be ODFF 
compliant in OOo3.0. Don't know what can be done, as many existing spreadsheets 
will use DAYS already.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 53221] RTF: Mail merge fields not imported

2007-12-27 Thread nrocha
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53221





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 16:41:16 + 
2007 ---
Are RTF MailMerge fields already supported in OpenOffice? If not, is there an
estimated date to this issue?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 56622] Hungarian community transl ation conflicts with SUN provided one

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=56622


User ihi changed the following:

What|Old value |New value

Target milestone|OOo 2.4   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 16:30:34 + 
2007 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[framework-issues] [Issue 84830] Check for Update failure

2007-12-27 Thread of
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84830


User of changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 16:27:35 + 
2007 ---
I can't reproduce

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sc-issues] [Issue 51202] Support for mice (mouse) w ith tilt wheel

2007-12-27 Thread foxcole
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51202





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 16:10:33 + 
2007 ---
Even more prevalent than tilt wheels are touchpads with horizontal scrolling...
found on laptops of all kinds and on peripheral touchpad devices. Horizontal
scrolling with the touchpad is very ergonomic. I spend nearly all my time in
OpenOffice, so horizontal scrolling support becomes a health issue.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[installation-issues] [Issue 76466] Pixmaps and gnome desktop integration doesnot fit together

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76466


User ihi changed the following:

What|Old value |New value

Target milestone|OOo 2.4   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:58:52 + 
2007 ---
retarget to OOo 3.0

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 84798] GSI file for OOo 2.4 Khmer language km_KH

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84798





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:43:50 + 
2007 ---
*** Issue 83188 has been marked as a duplicate of this issue. ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 83188] Update Translations for Kh mer

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83188


User ihi changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:43:51 + 
2007 ---
.

*** This issue has been marked as a duplicate of 84798 ***

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 83123] [SV] Translations for OO.o 2.4

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83123


User ihi changed the following:

What|Old value |New value

 Assigned to|ihi   |vg





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:40:52 + 
2007 ---
-> vg

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 76534] OOoBase Database creation wizard translation error (Traditional Chinese)

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76534


User ihi changed the following:

What|Old value |New value

 Assigned to|ihi   |vg





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:39:30 + 
2007 ---
vg, please add this issue to cws localisation27

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 78176] SV: Files for translation update of OOo 2.3

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78176


User ihi changed the following:

What|Old value |New value

 Assigned to|ihi   |vg





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:36:35 + 
2007 ---
vg, please add this issue to the cws localisation27

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 56622] Hungarian community transl ation conflicts with SUN provided one

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=56622





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:34:16 + 
2007 ---
Due to lack of time I retarget this issue to OOo 3.0 The current main issue is
how to deal with windows native resources which does not allow more then one
instance of a language. The language in windows native resources is handled by
numeric ids and not like in our other resource types by iso codes.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 83738] [DE] UI translation in Too ls - Options - Online Updates incomplete

2007-12-27 Thread ihi
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83738


User ihi changed the following:

What|Old value |New value

 Assigned to|ihi   |vg





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:30:45 + 
2007 ---
vg, please check

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 82166] TwinViewOrientation Clone stopped working in OOo 2.2.1->2.3

2007-12-27 Thread pantse
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82166


User pantse changed the following:

What|Old value |New value

 URL|  |http://akusti.vtt.fi/pic/I
|  |mpressIssue.png

 Version|OOo 2.3   |OOo 2.3.1





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:17:05 + 
2007 ---
I tried OOo 2.3.1. - it is still broken. I had to go back to 2.2.1. which is the
latest version where full screen viewing works correctly in Impress. All the
other software and their "full screen presentation modes" work well with my
computer too.

Apparently the viewing component was modified in OOo 2.3-> so that that it reads
the screen resolution some other way than in versions 2.2.1 and before - it
cannot find the resolution which goes to the external monitor. It scales the
presentation to the full screen resolution, but shows only the part of the
presentation, which goes out... why is that so? I'll attach a link to the screen
capture, where I've just pressed  in Impress...


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84883] Importing a Word document makes appear arrays

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84883





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:02:43 + 
2007 ---
Note that this is an old document. It looks like the array is some old content
that is not displayed anymore in Word but is still visible under OOo.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84883] Importing a Word document makes appear arrays

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84883





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:01:11 + 
2007 ---
Created an attachment (id=50577)
under OOo


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84883] Importing a Word document makes appear arrays

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84883





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 15:00:52 + 
2007 ---
Created an attachment (id=50576)
under Excel


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84883] Importing a Word document makes appear arrays

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84883





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 14:57:51 + 
2007 ---
Created an attachment (id=50575)
the example document


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84883] Importing a Word document makes appear arrays

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84883
 Issue #|84883
 Summary|Importing a Word document makes appear arrays
   Component|Word processor
 Version|OOo 2.3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|mru
 Reported by|pagalmes





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 14:56:54 + 
2007 ---
Check the screenshots and open the sample document.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 76622] Draw OLE object not insert ed in Word

2007-12-27 Thread pagalmes
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76622





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 14:51:24 + 
2007 ---
Any news ?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84569] create resolution dependen t images for charts for the slideshow

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84569


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 14:37:25 + 
2007 ---
Waiting for issue 84570. But the current implementation looks realy better than 
the old one -> verified

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84882] Problem with opening anoth er version

2007-12-27 Thread pilgrim615
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84882
 Issue #|84882
 Summary|Problem with opening another version
   Component|Drawing
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|cgu
 Reported by|pilgrim615





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 14:09:18 + 
2007 ---
We have recently received a version of open office. It works fine. The other 
day I received a newsletter from a friend who did it in Microsoft Publich (I 
don't know whether it's 2003 or 2007). We were uanble to open it. It says it's 
from another version. Do you guys have an update from the newere versions?

Thanks,
 Steve Huffman

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 84818] [VI] [2.4] GUI and Help tr anslation

2007-12-27 Thread gh
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84818





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 12:37:17 + 
2007 ---
gsicheck is now available as download for MAC intel on
http://ooo.services.openoffice.org/gsicheck/


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84881] Save defect when placing W indows XP into hibernation

2007-12-27 Thread ssuk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84881
 Issue #|84881
 Summary|Save defect when placing Windows XP into hibernation
   Component|Word processor
 Version|OOo 2.3.1
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|mru
 Reported by|ssuk





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 12:12:11 + 
2007 ---
When a computer is put into hibernation mode (sleep) with OpenOffice.org Writer
running (still in task bar), when brought out of hibernation the save functions
of OpenOffice.org Writer cease to work, displaying the error; "Error saving the
document : Error writing file". The application has to be closed and
opened again to fix the problem.

The problem occurs when the computer enters and leaves hibernation with an
unsaved document and tries to save the file without making changes, when the
computer enters and leaves hibernation with an unsaved document and tries to
save the file with making changes, when the computer enters and leaves
hibernation with a saved document, makes changes and tries to save the document.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 45576] [IT]: Ambiguous use of wor d "Modelli" for "Styles and formatting" in ita lian translation

2007-12-27 Thread vg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45576


User vg changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 11:42:32 + 
2007 ---
fixed in the CWS localisation27

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 83860] resizing charts in impress distorts fonts

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83860


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 11:40:29 + 
2007 ---
looks fine -> verified

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 84818] [VI] [2.4] GUI and Help tr anslation

2007-12-27 Thread vg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84818





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 11:37:39 + 
2007 ---
@clytie: please do not revive this issue, fix erroneous strings in next 
update...

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 51672] view objects post animatio n

2007-12-27 Thread gsasha
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51672





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 10:55:26 + 
2007 ---
Strange this issue has been in the UNCONFIRMED state for so long.
It would make Impress a killer tool for animations.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 51672] view objects post animatio n

2007-12-27 Thread gsasha
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=51672


User gsasha changed the following:

What|Old value |New value

  CC|''|'gsasha'





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 10:54:07 + 
2007 ---
Strange that this issue sits inactive for such a long time.
It would make Impress a killer tool for animated presentations.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[l10n-issues] [Issue 83095] [ES] Translation for 2.4

2007-12-27 Thread vg
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=83095


User vg changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 10:51:32 + 
2007 ---
fixed in the CWS localisation27

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[sw-issues] [Issue 84880] StarOffice: SunSearchToolb ar ignores some charcters in writer

2007-12-27 Thread norbert2
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84880
 Issue #|84880
 Summary|StarOffice: SunSearchToolbar ignores some charcters in
| writer
   Component|Word processor
 Version|OOo 2.3.1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|norbert2





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 10:21:15 + 
2007 ---
Hi,

- open a (blank) writer document

- enter the following content into the document:

"
105
1,05
"

- search for "1,.-+05" within the document using the SunSearchToolbar (Google
Toolbar).


The search string matches both strings within the document. The characters ,.-+
seem to be ignored.


Found on StarOffice 8 Product Update 9 Linux.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84323] correct stretched charts i n impress

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84323


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 09:56:25 + 
2007 ---
seen ok in cws chart 15 -> verified

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[graphics-issues] [Issue 84520] Chart with own data and ex port to Excel

2007-12-27 Thread kla
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84520


User kla changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Thu Dec 27 08:18:22 + 
2007 ---
closed as duplicate

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]