[tools-issues] [Issue 80144] dmake does not always choo se the shortes inference chain

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80144
 Issue #|80144
 Summary|dmake does not always choose the shortes inference cha
|in
   Component|tools
 Version|OOo 2.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|dmake
 Assigned to|vq
 Reported by|vq





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:45:30 + 
2007 ---
The following example shows the problem:

SHELL*:=/bin/sh
SHELLFLAGS*:=-ce

.REMOVE : ; @echo remove $<

%.a  : %.b
@echo b
touch $@

%.a  : %.b1
@echo b1
touch $@

%.a  :
@echo none
touch $@

%.b  :
touch $@

%.b1  :
touch $@

all : xx.a
touch all


$ rm xx.* all ; touch xx.b; touch xx.b1; ./dmake/dmake.exe -rf makefile.mk 
b1
touch xx.a
touch all

First I would argue that the %.a rule without prerequisite is the shortest
inference chain, and secondly, if dmake treats an existing prereq equal to no
prereq this is at least ambiguous. (At least the %.a  : %.b  and %.a  : %.b1
rules are equal and there should be a warning.)

-
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 77739] Content of Position and Si ze dialog box is transparent when opened

2007-07-28 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77739


User rainerbielefeld changed the following:

What|Old value |New value

  CC|''|'rainerbielefeld'

Keywords|  |needmoreinfo, oooqa

Subcomponent|viewing   |ui





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:40:19 + 
2007 ---
@hwtan 
Can you please attach a screenshot?

-
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]



[ui-issues] [Issue 79809] Icon (icns) too large in M ac beta

2007-07-28 Thread artguy10
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79809





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:38:37 + 
2007 ---
Can anyone confirm that the resized icons are acceptable? Could anyone give
input about location of the SVG files of the current icons or whether logos
modified in any way for the Mac version would be acceptable?

Should I close the issue? What needs to be done for the icns files to be
included in the next build for Mac?

-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread macias
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736


User macias changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |WORKSFORME





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:24:02 + 
2007 ---
Regina, that was it -- thank you very much!  I was searching for such option 
but in each image properties...

Thank you once again :-)

-
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 80143] More .REMOVE issues

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80143


User vq changed the following:

What|Old value |New value

Target milestone|---   |DevTools





-
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 80143] More .REMOVE issues

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80143
 Issue #|80143
 Summary|More .REMOVE issues
   Component|tools
 Version|OOo 2.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|dmake
 Assigned to|vq
 Reported by|vq





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:22:02 + 
2007 ---
The deletion of intermediate targets is only triggered for parallel builds. The
following example:

SHELL*:=/bin/sh
SHELLFLAGS*:=-ce

.REMOVE : ; @echo remove $<

%.a  : %.b
touch $@

%.b  : %.c
#%.b  :
touch $@

%.c  :
touch $@

all : xx.a
touch all

Only invokes the .REMOVE target during parallel builds, otherwise:

$ rm xx.* all ; ./dmake/dmake.exe -rf t_remove_1.mk 
touch xx.b
touch xx.a
touch all


And I find it puzzling that if the "%.b  :" rule is used instead of "%.b  : %.c"
xx.b is not treated as an intermediate target.

-
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 80142] addressbook interface in s lovenian 222 broken

2007-07-28 Thread smolejv
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80142





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:21:39 + 
2007 ---
Created an attachment (id=47174)
res file for slovenian (top) and enUS version (bottom)


-
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 80142] addressbook interface in s lovenian 222 broken

2007-07-28 Thread smolejv
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80142
 Issue #|80142
 Summary|addressbook interface in slovenian 222 broken
   Component|framework
 Version|680m222
Platform|All
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|tm
 Reported by|smolejv





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:20:12 + 
2007 ---
In the slovenian localized version of 680m222 
http://ftp.linux.cz/pub/localization/OpenOffice.org/devel/680/SRC680_m222/Build-1/OOo_2.3.0_070724_Win32Intel_install_sl.exe
the program hangs up on the following sequence:
 file / new / templates and documents
 organize
 adressbook
 administrate 
 cancel

(in localized version it reads as follows:
Datoteka / nov / predloge in dokumenti
organiziraj
adresar...
skrbništvo
prekliči

enclosed f_updt_templates.res file with (top) slovenian and(bottom) en_US trace,
that runs OK.

-
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 66751] .PHONY and %-rules do not play well together

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66751


User vq changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |47173)
Patch for dmake






--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:06:27 + 
2007 ---
Created an attachment (id=47173)
Patch for dmake


-
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 66751] .PHONY and %-rules do not play well together

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66751


User vq changed the following:

What|Old value |New value

  Issue type|DEFECT|ENHANCEMENT

 Summary|.PHONY and rules do not pl|.PHONY and %-rules do not 
|ay well together  |play well together





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:05:04 + 
2007 ---
Hmm, the following patch (not fully tested, and probably not working yet with
indirect prerequisites) would make .PHONY work with %-rules, but

   If any of the attributes .SETDIR, .EPILOG, .PROLOG, .SILENT, .USESHELL,
   .SWAP, .PRECIOUS, .LIBRARY, .NOSTATE and .IGNORE are given for a %-rule
   then when that rule is bound to a target as the result of an inference,
   the  target's set of attributes is augmented by the attributes from the
   above set that are specified in the  bound  %-rule.   Other  attributes
   specified  for %-meta rules are not inherited by the target.

the man page says this is not expected to work -> ENHANCEMENT ;)

There is one caveat with this approach, if there are more than one rule to
satisfy a prerequisite the one with the already existing prerequisite is
chosen. At that point the inference graph cannot know there will be a .PHONY
%-rule.

Example:

%.a : existing_file
   @some recipe

%.a .PHONY : %.b
   @some recipe

%.b :
   @some recipe

all : blah.a

In this case the %.a rule with the existing file is used, but this is probably
OK.

-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 06:00:08 + 
2007 ---
I see the misleading image link in "absolute.html". Due to ATTACHMENT
DESCRIPTION from 'comments from macias Sat Jul 28 20:42:13' and if the image has
been inserted with menu ' Insert > Image from file' I only see 2 possibilities:
- unsuitable settings as per regine's suspect 
- a bug in macias' OOo on the PC where the effect occurs.

-
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 80140] Multipage scan Lexmark X42 7 70

2007-07-28 Thread kami_
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80140


User kami_ changed the following:

What|Old value |New value

  CC|''|'kami_'





-
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 80140] Multipage scan Lexmark X42 7 70

2007-07-28 Thread kami_
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80140





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 04:47:48 + 
2007 ---
AFAIR OOo does not support multi page TIF files. This could be the root of your
problem. Please check the related 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 80141] crash recovery brings back outdated file & date/time problem

2007-07-28 Thread nivag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80141





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 02:30:37 + 
2007 ---
Created an attachment (id=47172)
file that was recovered (note that I had not explicitly saved it prior to the 
crash, I just had save it now so I could append it as a file)


-
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 80141] crash recovery brings back outdated file & date/time problem

2007-07-28 Thread nivag
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80141
 Issue #|80141
 Summary|crash recovery brings back outdated file & date/time p
|roblem
   Component|Word processor
 Version|680m222
Platform|PC
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|mru
 Reported by|nivag





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 02:26:21 + 
2007 ---
I had to restart my Xorg session after having an .odt file open for more 48 
hours.

I had been adding date/time fields, using the Insert ==> Fields menu about every
12 hours.  So the file should have had at least 4 pairs of date/time values.

However, when I brought up an instance of OOo (M222) I found only one date/time
pair and that were showing the values as of the time I brought the system back 
up!

So not only was I missing 3 pairs of date/time values; the pair that did show
up, definitely did not reflect the original date/time values!

-
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 45593] Measurement unit: Inch - N eeds more decimal places

2007-07-28 Thread johnwhardy
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45593





--- Additional comments from [EMAIL PROTECTED] Sun Jul 29 01:51:03 + 
2007 ---
This problem still exists in version 2.2.1. Will someone please advise if it
will be looked at and fixed? Thank you.

-
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 80140] Multipage scan Lexmark X42 7 70

2007-07-28 Thread ramboid
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80140





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 23:43:41 + 
2007 ---
I forgot to mention that multipage scanning failed in the latest version of 
OpenOffice (v2.2.1) for Windows XP.

Also Draw fails to correctly import or open a multipage TIF; just the first 
page is imported.

-
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 80140] Multipage scan Lexmark X42 7 70

2007-07-28 Thread ramboid
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80140
 Issue #|80140
 Summary|Multipage scan Lexmark X4270
   Component|Word processor
 Version|1.0.3
Platform|All
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|mru
 Reported by|ramboid





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 23:40:23 + 
2007 ---
Writer fails to import all pages of a multipage scan (Lexmark X 4270).  It 
justs imports the first page.  Microsoft Word imports all pages properly, 
pating each page into its own page.

-
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 63875] Unabilaty to save a docume nt ('unable to write')

2007-07-28 Thread tweedledee
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63875





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 22:00:00 + 
2007 ---
Regarding the comment from mba that the workaround is sufficient, I would like
to point out something from the forum threads (and my experience): this happens
on ALL operating systems.  I am running Linux (Ubuntu) and have nothing running
that could be sweeping my temporary files.  This is not just a Windows issue
that can be avoided by turning off external tools.  I've only recently started
encountering this problem, and only with very large files (the primary culprit
is a Calc file with ~150 charts and 22 very full sheets).  Based on timing, I
believe it has something to do with attempting to save the file when autosave is
still working.  Could we please have a little more feedback on when this MAJOR
issue is actually going to be addressed, since it apparently isn't going to be
in 2.3?

-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736


User regina changed the following:

What|Old value |New value

  CC|'mba,rainerbielefeld' |'mba,rainerbielefeld,regin
|  |a'





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 21:53:16 + 
2007 ---
Please tell us your settings in Tools > Options > Load/Save > General, section
"Save URLs relative to"

-
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 79651] Hebrew translations for OO 2.2 version

2007-07-28 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79651





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 21:45:07 + 
2007 ---
at least the recovery part of Issue 80083 is fixed with this GSI

-
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 80083] hebrew translation contain 2.0.3 hardcoded

2007-07-28 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80083


User rene changed the following:

What|Old value |New value

 IssuesThisDependsOn|  |79651

  Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 21:44:24 + 
2007 ---
The GSI from Issue 79651 fixes at least the recovery 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]



[l10n-issues] [Issue 79651] Hebrew translations for OO 2.2 version

2007-07-28 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79651


User rene changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |80083
  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]



[sw-issues] [Issue 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread macias
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 20:43:31 + 
2007 ---
Created an attachment (id=47171)
Test case archive


-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread macias
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 20:42:13 + 
2007 ---
> I still believe that this issue is invalid, 'comments from macias Sat Jul 28
> 09:11:53 do not match with the results of my own tests.

So it is rather WORKSFORME, not invalid. Btw. I have two computers, not only 
one, and as I said the results do not even match for me. But on the other hand 
reliable program (not buggy) is such that it works reliable on all computers, 
not only chosen, right? :-)

> - test kit with the complete folder containing a source html document, 
>  linked images, subfolders and a document to what a link in the source
> document
>  should lead, all that zipped to a ZIP archive. 

Not a problem. See attachment.

> - a description of your file system

What do you mean by this? In general the data look as before -- opensuse 10.2, 
KDE 3.5.7, OOo 2.2.1. If you want to know about any specific rpm installed, 
library, etc. please let me know what should I look for.

Please let me know if anything else is needed -- I try to be helpful, but I am 
new to this bug tracking system so forgive me my mistakes.

ATTACHMENT DESCRIPTION:
* I created subdir ooo in my home directory,
* I copied there wally.png
* I started OOWebWriter
* I chose File -> New -> HTML doc
* I inserted an image
* I saved the doc as "absolute.html"
* I quit OOo and make archive

The archive contains:
* wally.png
* absolute.html


-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread rainerbielefeld
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736


User rainerbielefeld changed the following:

What|Old value |New value

Keywords|oooqa |needmoreinfo, oooqa

  OS/Version|All   |Linux





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 19:31:36 + 
2007 ---
I still believe that this issue is invalid, 'comments from macias Sat Jul 28
09:11:53 do not match with the results of my own tests.

@macias:
Your latest comments do not contain any proof that there might be a bug in OOo.
We need
- test kit with the complete folder containing a source html document, 
  linked images, subfolders and a document to what a link in the source document
  should lead, all that zipped to a ZIP archive. 
- a description of your file system

Any descriptions must contain complete information, not incomplete inklings 
like 
'"file://..."', that do not help at all to find out what's going wrong with
your system.





-
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 8811] Allow multiple users to edi t the same spreadsheet through workbook sharin g

2007-07-28 Thread rmcc4444
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=8811





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 19:23:23 + 
2007 ---
this is still the one major that is keeping us from migrating to openoffce.org.
 its about 5000 seats.

-
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 80087] Header formatting behaviou r inconsistent with Help

2007-07-28 Thread phb7
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80087





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 18:52:38 + 
2007 ---
Further investigation suggests that there may be a missing adjective in the
"Help" in that it may be that the option is only available to the "Default"
style within the group of *built-in* styles, but does not apply to user-created
styles?

-
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 74144] document cannot be saved i f "forbidden" characters pasted

2007-07-28 Thread hgkamath
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=74144





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 18:18:50 + 
2007 ---
Created an attachment (id=47170)
"The Comprehensive LATEX Symbol List" attaching as suggested by TL


-
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 22758] Title lines are sorted as data

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


User pagalmes changed the following:

What|Old value |New value

  CC|'swubuntu'|'pagalmes,swubuntu'

Keywords|  |usability





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 18:01:16 + 
2007 ---
duplicate with issue 54748 ?

-
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 54748] Sorting should be intellig ent about headings

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





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 18:00:54 + 
2007 ---
duplicate with issue 22758 ?

-
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 54748] Sorting should be intellig ent about headings

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


User pagalmes changed the following:

What|Old value |New value

  CC|'hin,kohei'   |'hin,kohei,pagalmes'

Keywords|  |usability





-
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 59745] Cell notes do not move whe n cells are sorted in Calc

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


User pagalmes changed the following:

What|Old value |New value

Keywords|oooqa |oooqa, usability





-
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 70873] Ability to sort subtotals

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


User pagalmes changed the following:

What|Old value |New value

  CC|''|'pagalmes'

Keywords|  |usability





-
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 80139] Avoid ERRORS in duplicate Spreadsheets and Data

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


User pagalmes changed the following:

What|Old value |New value

  CC|''|'pagalmes'





-
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 22884] Calc Sort 4 Key

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


User pagalmes changed the following:

What|Old value |New value

  CC|''|'pagalmes'

Keywords|  |usability





-
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 10933] Data sorting by using more than 3 items (columns)

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





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 17:56:03 + 
2007 ---
related to issue 22884

-
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 22419] Sort by number groups

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


User pagalmes changed the following:

What|Old value |New value

  CC|''|'pagalmes'

Keywords|  |usability

  OS/Version|Windows 2000  |All

Platform|PC|All





-
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 7277] sorting should default to s elected column

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


User pagalmes changed the following:

What|Old value |New value

Keywords|  |usability





-
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 10933] Data sorting by using more than 3 items (columns)

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


User pagalmes changed the following:

What|Old value |New value

Keywords|rfe_eval_ok   |rfe_eval_ok, usability





-
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 10933] Data sorting by using more than 3 items (columns)

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


User pagalmes changed the following:

What|Old value |New value

  CC|''|'pagalmes'

  OS/Version|Mac OS X  |All

Platform|Macintosh |All





-
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 7277] sorting should default to s elected column

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


User pagalmes changed the following:

What|Old value |New value

  CC|'1251234125,eberlein,pagal|'1251234125,eberlein,manen
|mes,pd5rm,swubuntu'   |s,pagalmes,pd5rm,swubuntu'





-
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 34213] Pasting cell references on ly

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=34213


User discoleo changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |80139
  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]



[sc-issues] [Issue 66817] HARD LINKS as References

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=66817


User discoleo changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |80139
  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]



[sc-issues] [Issue 80139] Avoid ERRORS in duplicate Spreadsheets and Data

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80139


User discoleo changed the following:

What|Old value |New value

 IssuesThisDependsOn|8811  |8811,34213,66817





-
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 8811] Allow multiple users to edi t the same spreadsheet through workbook sharin g

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=8811


User discoleo changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |80139
  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]



[sc-issues] [Issue 80139] Avoid ERRORS in duplicate Spreadsheets and Data

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80139


User discoleo changed the following:

What|Old value |New value

 IssuesThisDependsOn|  |8811





-
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 80139] Avoid ERRORS in duplicate Spreadsheets and Data

2007-07-28 Thread discoleo
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80139
 Issue #|80139
 Summary|Avoid ERRORS in duplicate Spreadsheets and Data
   Component|Spreadsheet
 Version|OOo 2.2.1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|FEATURE
Priority|P3
Subcomponent|code
 Assigned to|spreadsheet
 Reported by|discoleo





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 17:24:38 + 
2007 ---
This issue makes it in my TOP 5 of major design flaws of existing spreadsheet
applications.


TOC
===

1. INTRO / REAL CASES
2. PROBLEM
3. SOLUTIONS
  3.1 COLLABORATIONS
  3.2 DUPLICATE DATA / DATA LINKS
  3.3 TRACK CHANGES
  3.4 VERSIONING
4. OTHER RELEVANT ISSUES


1. INTRO


*Duplicate Data* perpetuates ERRORS!

One encounters in current practice dozens of copies of the same spreadsheet
because different people need to work with it, or because one needs only a
subset of the original data (which is copied/saved into a new table/
spreadsheet). [This is NOT a duplicate of issue 8811.]

One of my first tasks - as I started work in a big department - was to oversee
the allocation of revenues to various contractors based on some specific
characteristics. The first issue I stumbled upon, was the *lack of a central
repository* where those characteristics were stored.

Instead, various departments/employees had their own copy of the spreadsheet and
everybody was updating his own copy.

BUT no one had the spreadsheet up to date. There was NO way to get a fully *up
to date* spreadsheet, and there was NO way to *track the changes*.

As a second example, I will describe now a scenario that happened while I was
doing some research. I was the only person involved in analysing the
spreadsheet. However, due to the complexity of the spreadsheet, I created
various (sub-) tables containing only relevant portions of the data.

In the case I detected one error in the data, there was NO method to correct the
error *only ONCE*, and have the correction applied in all sheets/data. The
errors were doomed to persist in the various duplicate data.


2. THE PROBLEM
==
Existing spreadsheets offer very little mechanisms to avoid problems of
duplicate data and the errors that arise because of this.

While many will argue that in such cases a database should be used, common
practice shows that most work is still done with spreadsheets, because of the
following reasons:
 a.) easy to create (actually NO effort at all)
 b.) needs NOT a rigid structure (unlike a DB), therefore
 great flexibility in the beginning, when the data may be largely unknown
 c.) you see what you do, and you already see the results
 (unlike for DBs - you need a dedicated software to compute the results)
 d.) NO special coding skills needed


3. SOLUTIONS


As mentioned, a DB might be tentative, BUT NOT in real practice. Some
spreadsheets offer some (incomplete) solutions (like Excel for issue 8811), BUT
they will all fail on a global scale.

  3.1 COLLABORATIONS
  ==
  Spreadsheets should allow collaboration between people. This is described in
greater detail in issue 8811. Features to be implemented:
 - allow simultaneous editing by different users
 - allow various locking mechanisms

  3.2 DATA LINKS
  ==
  Often, one needs only subsets of the original data to further process. One may
filter this data out and then copy/paste it to a new spreadsheet.

However, what is lacking is to paste NOT the actual data, but a link to the
original data, like a *HARD-LINK* on Unix-like OSs. This is described in greater
detail in issue 66817 (see 
http://www.openoffice.org/issues/show_bug.cgi?id=66817).

A *HARD-LINK* would implement a mechanism through which a correction done in a
copied cell is propagated back in the original cell.

Another issue in this series is issue 34213 that involves pasting references to
the original cells (see http://www.openoffice.org/issues/show_bug.cgi?id=34213).
[Though the hard-links would be more powerful.]

  3.3 TRACK CHANGES
  =
  A very useful feature for such collaborative efforts is to track the changes.
This is even more important, as numerous simultaneous changes may slow down the
computer due to the re-calculations.

Therefore, a mechanism should be in place to disable automatic recalculations
BUT to show which cells have potentially changed (and need be updated IF one
needs those values).

Some more brainstorming is here really indicated.

  3.4 VERSIONING
  ==
  Another problem of these spreadsheets arises directly due to the frequent
changes. Previous spreadsheets might well be needed (because e.g. of l

[tools-issues] [Issue 79815] configure gets bad value f or DMAKEROOT

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79815


User vq changed the following:

What|Old value |New value

  CC|'hjs' |'hjs,vq'

 Assigned to|vq|hjs





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 17:20:44 + 
2007 ---
@ause: Please verify

-
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 79815] configure gets bad value f or DMAKEROOT

2007-07-28 Thread vq
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79815


User vq changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 17:20:00 + 
2007 ---
Committed to dmake411.

The default value (/usr/local/share) (/startup is always automatically appended)
can be changed at configure time with --prefix=.. and results in:
   {prefix value)/share/startup

or with --datarootdir=.. and results in:
   {datarootdir value)/startup


-
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 80138] make use of the formula ba r to display all texts

2007-07-28 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80138


User fst changed the following:

What|Old value |New value

  Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:42:17 + 
2007 ---
closed double

-
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 45174] Editing-line should show c omplete cell-text when moving to the cell, as option

2007-07-28 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45174





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:41:42 + 
2007 ---
*** Issue 80138 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]



[sc-issues] [Issue 80138] make use of the formula ba r to display all texts

2007-07-28 Thread fst
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80138


User fst changed the following:

What|Old value |New value

  Status|UNCONFIRMED   |RESOLVED

  Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:41:42 + 
2007 ---
double to Issue 45174

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

-
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 75130] API and Implementation of Smart Tags - Part 2

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


User andreschnabel changed the following:

What|Old value |New value

  CC|'fl,mmp'  |'andreschnabel,fl,mmp'





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:37:00 + 
2007 ---
for translation purposes I'd be happy to have two things:

1st - a smart tags extension, so I can see the strings in the UI
2nd - correct number of the folow-up issue about UI strings (issue 79163 is
about REport Builder, not Smart Tags)

-
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]



[lingucomponent-issues] [Issue 70621] Slovenian dictionaries und er GNU LGPL

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=70621


User pjanik changed the following:

What|Old value |New value

  Status|NEW   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:16:24 + 
2007 ---
Added in dictionariesfor23v01.

Please verify there.


-
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 80086] to-be-SRC680_m223: vcl hea ders moving: finish aqua, bring back lost chan ges

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80086





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 15:13:44 + 
2007 ---
This is no longer P1 now, but it would be nice to clear this directly in m223.


-
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 80133] Formula in Writer

2007-07-28 Thread regina
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80133


User regina changed the following:

What|Old value |New value

  CC|''|'regina'

Keywords|  |needmoreinfo, oooqa





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 14:40:21 + 
2007 ---
Your description is not clear to me.

Which version of Word? Which tool to write the formula in Word?

Are OOo and Word on the same computer? If not, are you sure the needed fonts are
installed?

What are your settings in Tools > Options > Load/Save > Microsoft Office?

-
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 65773] Calc to support spreadshee ts up to 1 million rows by 16,000 columns

2007-07-28 Thread kpalagin
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=65773


User kpalagin changed the following:

What|Old value |New value

  CC|'er'  |'er,kpalagin'





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 14:37:37 + 
2007 ---
This seems to be dup of http://qa.openoffice.org/issues/show_bug.cgi?id=30215.
Before I close this one let's see if developers think different.
In the mean time I suggest transferring votes to 30215.

-
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 80138] make use of the formula ba r to display all texts

2007-07-28 Thread chdd2k6
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80138
 Issue #|80138
 Summary|make use of the formula bar to display all texts
   Component|Spreadsheet
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|editing
 Assigned to|spreadsheet
 Reported by|chdd2k6





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 14:34:48 + 
2007 ---
I think it would be helpful to make the formula bar display all the texts in a
cell when that cell is clicked particularly in the situation below:

It is useful to allow the texts that are longer than the screen width to be
displayed _fully_ in the formula bar once the cell is clicked. To do so,
automatic line breaks should be inserted in the formula bar.

-
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 80057] system vigra

2007-07-28 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80057


User rene changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 14:15:05 + 
2007 ---
yes.

-
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 79847] Customize toolbar dialog h as no descriptions

2007-07-28 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79847


User cmc changed the following:

What|Old value |New value

 Assigned to|cmc   |cd





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 14:00:19 + 
2007 ---
want to verify this in cmcfixes37, installsets at
http://ooo.services.openoffice.org/pub/OpenOffice.org/cws/upload/cmcfixes37/

If you want alternatively extract the patch and run it through in a separate
workspace then go ahead and I'll back it out of this workspace.

-
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 78807] to autodetect JAVA_HOME ru n a java test program for java.home property

2007-07-28 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78807


User cmc changed the following:

What|Old value |New value

  CC|'fridrich_strba'  |'fridrich_strba,pjanik'

 Assigned to|cmc   |rene





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:59:01 + 
2007 ---
cmc->rene/pjanik: able to verify this for me ?

-
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]



[util-issues] [Issue 80016] is there a need for db_jav a.jar anymore

2007-07-28 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80016


User cmc changed the following:

What|Old value |New value

 Assigned to|cmc   |pjanik





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:58:20 + 
2007 ---
cmc->pjanik: able to verify this for me ?

-
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 80057] system vigra

2007-07-28 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80057


User cmc changed the following:

What|Old value |New value

 Assigned to|cmc   |rene





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:57:42 + 
2007 ---
cmc->rene: can you verify this task for me ?

-
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 80136] Provide "page preview" and "print" buttons in print dialog

2007-07-28 Thread raindrops
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80136





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:37:24 + 
2007 ---
P.S. The current [OK] button should be renamed [Print], because it results in
launch of a print job.

To sum up, the new buttons would be-

[Preview] [Save] [Print] [Cancel]

-
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-07-28 Thread larsnooden
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78176


User larsnooden changed the following:

What|Old value |New value

 Assigned to|larsnooden|petr_dudacek

  Status|STARTED   |NEW





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:28:17 + 
2007 ---
The PO files are now uploaded, thanks to Magnus and in spite of the summer
holidays.  


-
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-07-28 Thread larsnooden
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=78176





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 13:24:11 + 
2007 ---
Created an attachment (id=47169)
Round 2 corrected


-
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 80117] Problems on Calc and print preview with borders applied to empty cells

2007-07-28 Thread flaime
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80117


User flaime changed the following:

What|Old value |New value

   Component|*Testproduct  |Spreadsheet

  QA contact|[EMAIL PROTECTED]   |[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]



[framework-issues] [Issue 80123] OOo hangs during the first start after installation

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80123





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 12:38:41 + 
2007 ---
Ok, I have identified possible source: one cws from this list:

pj83
configure21
updchk07 + update URL

I do build with these for obvious reasons. I removed them all and it works OK.

I have added update related cwses and patches in to see what happens because 
other two cwses are quite 
simple.


-
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 79651] Hebrew translations for OO 2.2 version

2007-07-28 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79651


User rene changed the following:

What|Old value |New value

  CC|'ayaniger,ihi,yba'|'ayaniger,ihi,rene,yba'





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 12:36:44 + 
2007 ---
yifat: does this GSI also fix Issue 80083?

-
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 80130] to-be-SRC680_m223: final R PM packages: failed dependencies on gnome libs

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80130


User pjanik changed the following:

What|Old value |New value

 Assigned to|rt|obr

Priority|P1|P2





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 12:29:31 + 
2007 ---
OK, I mixed several things together and did two mistakes when checking for 
stuff.

The problem is rev. 1.17, setup_native/scripts/install_script.sh, cws native84.

Oliver: what was the purpose of 1.17 revision? What is the meaning of 
fake-db*rpm?

If this install script is to be used, do you have to copy this RPM backage from 
setup_native's output tree 
to the /tmp directory?

His only purpose is to have this:

Provides: libgnomevfs-2.so.0
Provides: libgconf-2.so.4
and /bin/sh?

For now, I'll use revision 1.16.


-
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 59583] Feature Request: OOo shoul d tell by which user a document is opened with writeaccess

2007-07-28 Thread piopaw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59583





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 12:24:51 + 
2007 ---
"I know what is meant with the original issue: we need some kind of groupware
functionality. But why do we need to know what kind of software blocks a
document? That's what I would call a kind of spyware functionality. In general
nobody needs to know what software I use, even not my college."

Maybe it's because of my English... 
I don't want to know what kind of software blocks a document. I just want OOo to
recognize that document is open by another user, even if he uses M$, and OOo
should mark document as blocked in the way that also M$ can recognize.

-
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 80137] Crash when try to "Accept and Reject Changes"

2007-07-28 Thread alex060826
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80137
 Issue #|80137
 Summary|Crash when try to "Accept and Reject Changes"
   Component|Word processor
 Version|OOo 2.2
Platform|PC
 URL|
  OS/Version|Linux
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|editing
 Assigned to|mru
 Reported by|alex060826





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 11:16:14 + 
2007 ---
When I try to 
Edit->Changes->Accept and Reject 
The OOWriter crash.

OS: Fedore7
HW: Acer TM3012

Log is here:

---start copy and paste here---
(I)x.org loaded video driver of...
(II) Loading /usr/lib/xorg/modules/drivers//intel_drv.so
(III)  Desktop is: GNOME
(IV)   libgcj version is: libgcj-4.1.2-12-i386
(V)kernel is: Linux 2.6.22.1-33.fc7 #1 SMP Mon Jul 23 17:33:07 EDT 2007 i686
i686 i386
(VI)   OpenOffice.org core rpm version is: openoffice.org-core-2.2.0-14.11-i386
(VII)depth of root window:24 planes
(VIII) accessibility is: true
(VIV)  fedora release is: Fedora release 7 (Moonshine)
...start free space details ...
Filesystem   1K-blocks  Used Available Use% Mounted on
/dev/sda8 66852088  62924468476860 100% /home
/dev/sda7 15872604  14403480649812  96% /
...end free space details ...
...start sestatus details ...
SELinux status: disabled
...end sestatus details ...
...start stackreport details ...
0x0562a6df: 0x001b6374: /usr/lib/openoffice.org/program/libuno_sal.so.3 + 
0x206df
0x0562afea: 0x001b6374: /usr/lib/openoffice.org/program/libuno_sal.so.3 + 
0x20fea
0x00110420: 0x:  + 0x420 (__kernel_sigreturn + 0x0)
0x06c3ae84: 0x0038cb50: /usr/lib/openoffice.org/program/libsvt680li.so + 
0x158e84
0x06c35ab5: 0x0038cb50: /usr/lib/openoffice.org/program/libsvt680li.so + 
0x153ab5
0x0012f8a9: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e8a9
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&) + 0x23)
0x0012f935: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e935
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&) + 0x37)
0x0012f815: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e815
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&) + 0x111)
0x0012f8bf: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e8bf
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&) + 0x39)
0x0012f935: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e935
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&) + 0x37)
0x0012f815: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1e815
(DocumentFocusListener::attachRecursive(com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&,
com::sun::star::uno::Reference
const&) + 0x111)
0x0013001c: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1f01c
0x0013014f: 0x00041090: /usr/lib/openoffice.org/program/libvclplug_gtk680li.so +
0x1f14f (WindowEventHandler(void*, VclSimpleEvent const*) + 0x6d)
0x05c148e6: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 0xa88e6
(VclEventListeners::Call(VclSimpleEvent*) const + 0x3c)
0x05c0d8fe: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 0xa18fe
(Application::ImplCallEventListeners(VclSimpleEvent*) + 0x32)
0x05d7f9ae: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so +
0x2139ae (Window::CallEventListeners(unsigned long, void*) + 0x6a)
0x05d7fb6a: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so +
0x213b6a (Window::ImplCallEventListeners(unsigned long, void*) + 0x20)
0x05d816aa: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so +
0x2156aa (Window::PreNotify(NotifyEvent&) + 0xe8)
0x05d89bc4: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 
0x21dbc4
0x05d803d0: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 
0x2143d0
0x05d8062a: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so +
0x21462a (Window::GrabFocus() + 0x10)
0x05d89e80: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 
0x21de80
0x05d89e9f: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 
0x21de9f
0x05d8d380: 0x002f60dc: /usr/lib/openoffice.org/program/libvcl680li.so + 
0x221380
0x001e35ad: 0x000697d0: /usr/lib/openoffice.org/program/libvclplug_gen680li.so +
0x465ad (SalDisplay::DispatchInternalEvent

[installation-issues] [Issue 80130] to-be-SRC680_m223: final R PM packages: failed dependencies on gnome libs

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80130





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 11:14:59 + 
2007 ---
When I remove this package, the script fails because of missing /bin/sh (it is 
installing into new 
directory):


# Installation of the found packages   #


Path to the database:/disk2/pavel/m223/.RPM_DATABASE
Path to the packages:RPMS
Path to the installation:/disk2/pavel/m223

Installing the RPMs
error: Failed dependencies:
/bin/sh is needed by openoffice.org-core10-2.3.0-9185

Installation done ...

Ups. Do you know what changed/what has to be changed?


-
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 80130] to-be-SRC680_m223: final R PM packages: failed dependencies on gnome libs

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80130





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 11:12:49 + 
2007 ---
1. I'm using QA install script for installation.

2. this package was built also in m222, but was not included into my install 
sets. I do not know why. It is 
now. What has been changed?


-
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 80130] to-be-SRC680_m223: final R PM packages: failed dependencies on gnome libs

2007-07-28 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80130





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 10:55:05 + 
2007 ---
On that system:

[EMAIL PROTECTED]:~> rpm -q --whatprovides libgnomevfs-2.so.0
gnome-vfs2-2.2.5-99
[EMAIL PROTECTED]:~> rpm -q --whatprovides libgconf-2.so.4
gconf2-2.2.1-85
[EMAIL PROTECTED]:~> 

This system is dedicated to builds, no changes in software etc. m222 worked, 
m223 does not.


-
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 59583] Feature Request: OOo shoul d tell by which user a document is opened with writeaccess

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





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 10:39:14 + 
2007 ---
I know what is meant with the original issue: we need some kind of groupware
functionality. But why do we need to know what kind of software blocks a
document? That's what I would call a kind of spyware functionality. In general
nobody needs to know what software I use, even not my college.

-
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 77736] allow user use relative fi lenames -- do not force/correct filenames

2007-07-28 Thread macias
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77736


User macias changed the following:

What|Old value |New value

  Status|CLOSED|UNCONFIRMED

  Resolution|INVALID   |





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 09:11:53 + 
2007 ---
Thanks for the answer, I did a small test, create new html document, just 
insert some image (.png), save, view source (still in OOWebWriter) --> 
src="file://..."). So it is not relative for sure.

And then, just to ensure for 200% :-) I did the same test on the other 
computer. And... src="relative_path".

The problem is OOo is behaving unstable when you consider the computers differ 
in hardware, but not in software:
a) both OpenSUSE 10.2
b) both KDE 3.5.7
c) both OOo 2.2.1 (build 2.2.0.2, rpm version 2.2-11)

All of those were installed from the same source -- opensuse repositories.

My only wild guess is there is some switch from older version of OOo which 
forces currently version of OOo not to use relative path. However I didn't find 
any such option.

Till now I didn't find any way to catch that problem on both computers -- 
all .gif files, .png. .jpg are saved with absolute path on one computer, and 
with relative path on the other.

If there are more details needed please let me know -- I will be glad to help 
solving 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 80136] Provide "page preview" and "print" buttons in print dialog

2007-07-28 Thread raindrops
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80136
 Issue #|80136
 Summary|Provide "page preview" and "print" buttons in print di
|alog
   Component|Word processor
 Version|OOo 2.2.1 RC3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|mru
 Reported by|raindrops





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 09:09:51 + 
2007 ---
This is about dialog box that pops up with CTRL+P (or the File > Print... menu).

It offers only two possible actions: Either press [OK] button to start printing
straightaway; or [Cancel] to cancel all changes. 

But it does not allow two other important options:

1. Save all settings and exit (without needing to print anything)

2. Check how the current setting will affect the printed pages. In other words,
give a direct link with "page preview". When he closes the "Page preview"
window, the control should come back to the "Print..." window.

This will allow the user to check the effect of his settings iteratively; so
that he will take a print only when he is fully satisfied.

BTW why call it "page preview"? It should be called "print preview"; because
this view ACTUALLY shows how the **PRINT** looks.

-
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 80130] to-be-SRC680_m223: final R PM packages: failed dependencies on gnome libs

2007-07-28 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80130


User cloph changed the following:

What|Old value |New value

Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 09:00:44 + 
2007 ---
Not a newly introduced thing. Been there for more than two years, so not a
blocker for m223 - but the copyright info in the packagelist.txt is still
2006 - so you might want to fix that as a masterfix.

The requirements are added in inc_openoffice/unix/packagelist.txt via
inc_openoffice/unix/find-requires-gnome.sh (that only echoes the two required 
libs)

The command you used is not suitable to check availablility in rpm based 
systems.

The provides/depends on are abstract, rpm only provides a file if you either
list it in your specfile or if you let rpm autogenerate the dependency/provides
information while building the package (apparently this was not the case for
your gnomevfs/gconf packages).

So to check whether your system "provides" the lib, you should use

$ rpm -q --whatprovides libgnomevfs-2.so.0
$ rpm -q --whatprovides libgconf-2.so.4

To query, what libs/other stuff your installed packages provide (in sense of
dependency information), use
$ rpm -q --provides 

-
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 80135] Allow users to search the text inside the notes

2007-07-28 Thread raindrops
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80135
 Issue #|80135
 Summary|Allow users to search the text inside the notes
   Component|Word processor
 Version|OOo 2.2.1 RC3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|ENHANCEMENT
Priority|P3
Subcomponent|editing
 Assigned to|mru
 Reported by|raindrops





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 08:49:14 + 
2007 ---
An important use of notes is to attach our comments without altering the
original article. 

Thus the contents of the notes are as important as the original text.
Therefore the user should be able to search text inside notes also.

But Writer does not allow this: Text inside notes is skipped during search.
The only way to search for a note is to go through all notes one by one!

Allow user to search for any text inside notes.

-
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]



[script-issues] [Issue 80134] Basic ConvertToURL incorre ct if network node contains underscore charact er

2007-07-28 Thread bmarcelly
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80134





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 08:31:21 + 
2007 ---
Created an attachment (id=47168)
Demo of the bug


-
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]



[script-issues] [Issue 80134] Basic ConvertToURL incorre ct if network node contains underscore charact er

2007-07-28 Thread bmarcelly
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80134
 Issue #|80134
 Summary|Basic ConvertToURL incorrect if network node contains 
|underscore character
   Component|scripting
 Version|OOo 2.2
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|kr
 Reported by|bmarcelly





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 08:27:05 + 
2007 ---
Tested on Win XP, not tested with other OS.

print ConvertToURL("\\JohnPC\aFolder\hisDoc.odt")
will display : file://JohnPC/aFolder/hisDoc.odt
This is correct. I can load the document.

print ConvertToURL("\\John_PC\aFolder\hisDoc.odt")
will display : file:John_PC/aFolder/hisDoc.odt
This is incorrect, impossible to load the document.

Problem exists since OOo 1.1 but I have seen a similar bug (not Basic) reported 
in 
another Issue and recently corrected. I can't remember that 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]



[framework-issues] [Issue 59583] Feature Request: OOo shoul d tell by which user a document is opened with writeaccess

2007-07-28 Thread piopaw
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59583





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 08:23:22 + 
2007 ---
""This feature should be compatible with M$. I mean that OOo should tell if the
document is open in M$ and vice-versa." And why not KOffice and so on? And what
is this information good for? Sounds like spyware for."

Not a spyware but groupware. We had to make regression in deployment for 700
users because lack of this functionality.
Let me describe it: 
Deployment was for 700 workstations. 120 are LTSP, 360 are Windows Terminal
Services and the rest are desktops and notebooks with Windows XP.
All users are using file server based on linux with samba.
For many of them the basic function is editing one document by many users i.e.
spreadsheet. Of course they are not doing it at the same time but one by one.

The unresolvable problem is that when someone has opened the file for editing
and forgot to close it, other users couldn't make any changes and they don't
know who (of possible i.e. 25 people) has locked the file. 
Even worse: if the file was opened by samba user, LTSP user didn't know that the
file is opened until he tried to save it!!!

I think for those reasons, lack of this function is a serious limitation for big
deployments and in consequence for making OOo more popular.

-
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 80133] Formula in Writer

2007-07-28 Thread jitin_21
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80133





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 07:46:23 + 
2007 ---
Created an attachment (id=47167)
Image of formula showing differnce in MSO


-
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 80133] Formula in Writer

2007-07-28 Thread jitin_21
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80133





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 07:43:41 + 
2007 ---
Created an attachment (id=47166)
File having formula, created in MSo


-
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 80133] Formula in Writer

2007-07-28 Thread jitin_21
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80133
 Issue #|80133
 Summary|Formula in Writer
   Component|Word processor
 Version|OOo 2.2.1 RC3
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|viewing
 Assigned to|mru
 Reported by|jitin_21





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 07:41:21 + 
2007 ---
When i insert a formula from Insert - Object - Formula it gets inserted but 
when i open this file in MSO it looks different and if i open an existing file 
of MSO in OOo sometimes these formula gets disappear.

-
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 61644] Provide printable summary of notes in the document/printpreview

2007-07-28 Thread raindrops
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=61644





--- Additional comments from [EMAIL PROTECTED] Sat Jul 28 07:38:16 + 
2007 ---
Thanks. 

I checked the URL and wiki page, and found that some items are still missing:

The Wiki page mentions "printing" only in passing, as "further thoughts".
However, it does not describe how the printing (or page preview) should be
implemented.

I am rephrasing my suggestion, so that it can be easily added to the wiki page
(or passed on to the developers who are working on this feature):

* Introduce a pane/view that lists all notes contained in the document in one
place. This list must have "author name", "insertion date" and "note" columns.
One suggestion is to add it to the bottom of the frame, just like how the
"gallery" pane attaches itself to the top of the frame.

* The notes should be displayed in page preview. The page preview should reflect
the selected print options. (currently it does not show notes at all). 

For example, if the "notes at the end" option is selected, the page preview
should show extra pages containing notes. If the "notes only" option is
selected, it should show only the notes; but NOT the original text.

-
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]