[sw-issues] [Issue 45211] Printing Multiple Pages messes up top margin

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45211


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |hi





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:59:16 -0800 
2005 ---
Reassigned to HI.

-
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 24255] WW8: Hebrew WordArt falls off the page on import

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=24255


User mru changed the following:

  What|Old value |New value

Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:58:57 -0800 
2005 ---
Checked integration in 680m86.

-
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 36201] [cws eforms2] D&D of a submission to the document should create a submit button

2005-03-16 Thread msc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=36201


User msc changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:58:40 -0800 
2005 ---
Hi,

verified in cws eforms4

Bye Marc

-
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 44815] exporting a numbered list to Microsoft Office format defects

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44815


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |hbrinkm

  Target milestone|---   |OOo 2.0





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:57:34 -0800 
2005 ---
MRU->HBRINKM: exporting a numbered list containing unnumbered entries to MS Word
format will make all paragraphs numbered.

-
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 45248] New - Patch For Bug#65217

2005-03-16 Thread naveen_kv
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45248
  Issue #:|45248
  Summary:|Patch For Bug#65217
Component:|Spreadsheet
  Version:|OOo 2.0
 Platform:|PC
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|PATCH
 Priority:|P3
 Subcomponent:|viewing
  Assigned to:|spreadsheet
  Reported by:|naveen_kv





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:57:08 -0800 
2005 ---
The problem was,

Description of Problem:
When you copy formatted text from another source (say, text displayed in a
browser window) and then go into Calc and select Edit | Paste Special, and
then select "Unformatted Text", once the paste operation is completed, it
does not display the text. 

Sometimes, it displays parts of the text but often it doesn't display anything.

If you flip to another application and then flip back to Calc, you see the
text, so it's "there", but it's not initially.


Steps to reproduce the problem:
1. Copy some formatted text from another source.
2. Create a new spreadsheet
3. Place your cursor into a cell
4. Select Edit | Paste Special
5. Select the "Unformatted Text" option
6. Accept the defaults in the "Text Import" dialog that's shown
7. Notice that some (most or all, most commonly) text is not visible.

Actual Results:
You can't see all of the pasted text.

Expected Results:
To see all of the pasted text.

How often does this happen? 
All the time when I do the Paste Special option as described above.


Patch To this problem:

this problem can be solved with the following patch. it also solves the problem 
of undo with paste special.

here is the patch :


--- impex.cxx.orig  2005-03-12 16:16:33.215914400 +0530
+++ impex.cxx   2005-03-12 16:19:00.531519024 +0530
@@ -1070,6 +1072,8 @@
if (!pExtOptions)
return Text2Doc( rStrm );
 
+   StartPaste();   // Undo & others are taken care, fix for #65217
+
ULONG nOldPos = rStrm.Tell();
rStrm.Seek( STREAM_SEEK_TO_END );
ScProgress aProgress( pDocSh, ScGlobal::GetRscString( STR_LOAD_DOC ), 
rStrm.Tell() - nOldPos );
@@ -1084,6 +1088,8 @@
SCCOL nStartCol = aRange.aStart.Col();
SCROW nStartRow = aRange.aStart.Row();
SCTAB nTab = aRange.aStart.Tab();
+   SCCOL nEndCol = aRange.aEnd.Col();  // fix for #65217
+   SCROW nEndRow = aRange.aEnd.Row();  // fix for #65217
 
BOOLbFixed  = pExtOptions->IsFixedLen();
const String& rSeps = pExtOptions->GetFieldSeps();
@@ -1190,6 +1196,10 @@
bOverflow = TRUE;   // beim Import 
Warnung ausgeben
break;
}
+
+   // Find the correct End Col and End Row, fix for #65217
+   if(nCol>nEndCol) nEndCol=nCol;
+   if(nRow>nEndRow) nEndRow=nRow;
}
 
ScColumn::bDoubleAlloc = bOld;
@@ -1198,6 +1208,11 @@
 delete pEnglishTransliteration;
delete pEnglishCalendar;

-
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 36608] [CWS eforms2] changing standard value of an attribute is not reflected in a bound control

2005-03-16 Thread msc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=36608


User msc changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:56:30 -0800 
2005 ---
Hi,

verified in cws eforms4

Bye Marc

-
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 40687] Table-in-table loses text on save

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=40687


User mru changed the following:

  What|Old value |New value

Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:56:23 -0800 
2005 ---
Checked integration in 680m86.

-
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 44136] Insert table hangs and then fails in displaying with a large number of columns

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44136


User mru changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:55:37 -0800 
2005 ---
Closing duplicate.

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

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


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



[sw-issues] [Issue 44136] Insert table hangs and then fails in displaying with a large number of columns

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44136


User mru changed the following:

  What|Old value |New value

Status|UNCONFIRMED   |RESOLVED

Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:53:02 -0800 
2005 ---
Same root cause as issue 44141.

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

-
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 44141] Writer stops responding when a table with large no of rows is inserted

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44141





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:53:01 -0800 
2005 ---
*** Issue 44136 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]



[marketing-issues] [Issue 43862] OOo 2.0 Branding Elements and Guidelines

2005-03-16 Thread cdriga
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43862


User cdriga changed the following:

  What|Old value |New value

Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:50:00 -0800 
2005 ---
NOTE for changes to incorporate in the inventory:

---
UPDATE SECTION C. (CD and Floppy Disk Materials):

Christian Zwahlen has created a new labels and envelopes set using the
splashscreen 2.0 theme. 
They are hosted in the CD-Art gallery:
http://marketing.openoffice.org/art/galleries/cdart/

---
~END of note

-
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 38991] [cws eforms2] remove useless bindings

2005-03-16 Thread msc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=38991


User msc changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:48:08 -0800 
2005 ---
Hi,

verified in cws eforms4

Bye Marc

-
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 36189] [cws eforms2] instance data is deleted when click NO in the delete messages

2005-03-16 Thread msc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=36189


User msc changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:59 -0800 
2005 ---
Hi,

verified in cws eforms4

Bye Marc

-
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 40628] Send to Master document -> Crash

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=40628


User mru changed the following:

  What|Old value |New value

Status|VERIFIED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:52 -0800 
2005 ---
Checked integration in 680m86.

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



[marketing-issues] [Issue 43677] New CD-Covers and CD-Labels for OpenOffice.org 2.0

2005-03-16 Thread cdriga
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43677





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:20 -0800 
2005 ---
The labels and envelopes submitted so far by christian_z are now uploaded in the
CD-Art gallery:
http://marketing.openoffice.org/art/galleries/cdart/



-
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 43388] typo in recovery tool

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43388


User pb changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:08 -0800 
2005 ---
reset resolution to FIXED

-
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 43388] typo in recovery tool

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43388


User pb changed the following:

  What|Old value |New value

   Assigned to|pb|ja

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:05 -0800 
2005 ---
reassign to [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 43388] typo in recovery tool

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43388


User pb changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:44:01 -0800 
2005 ---
pb -> ja: please verify, thx.


re-open issue and reassign to [EMAIL PROTECTED]

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

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


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



[sw-issues] [Issue 44141] Writer stops responding when a table with large no of rows is inserted

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44141


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |fme

  Target milestone|---   |OOo Later





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:40:42 -0800 
2005 ---
MRU->FME: Maybe this can be optimized anyway. When inserting described table,
Writer wasn't responding for minutes before I killed the task...

-
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 33163] custom shapes: toolbar entry doesn't cange after creating a shape

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=33163


User pb changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:37:07 -0800 
2005 ---
reset resolution to FIXED

-
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 33163] custom shapes: toolbar entry doesn't cange after creating a shape

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=33163


User pb changed the following:

  What|Old value |New value

   Assigned to|pb|cgu

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:37:04 -0800 
2005 ---
reassign to [EMAIL PROTECTED]

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

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


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



[graphics-issues] [Issue 33163] custom shapes: toolbar entry doesn't cange after creating a shape

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=33163


User pb changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:36:59 -0800 
2005 ---
pb -> cgu: please verify, thx.


re-open issue and reassign to [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]



[sc-issues] [Issue 45245] rename the table by double click

2005-03-16 Thread mitul
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45245





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:36:51 -0800 
2005 ---
This issue has recently been added to the assignee's list of issues and must be
processed.

-
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 44467] .otg (Draw Templates) do not appear as registered types in OO.o filepicker

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44467


User pb changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:35:30 -0800 
2005 ---
reset resolution to FIXED

-
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 44467] .otg (Draw Templates) do not appear as registered types in OO.o filepicker

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44467


User pb changed the following:

  What|Old value |New value

   Assigned to|pb|tm

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:35:23 -0800 
2005 ---
reassign to [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 44467] .otg (Draw Templates) do not appear as registered types in OO.o filepicker

2005-03-16 Thread pb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44467


User pb changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:35:19 -0800 
2005 ---
pb -> tm: please verify, thx.

re-open issue and reassign to [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]



[sc-issues] [Issue 45245] rename the table by double click

2005-03-16 Thread mitul
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45245





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:34:55 -0800 
2005 ---
double click on table shuould rename the table

-
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 45124] Pasting a table creates incorrect "table in table" situation

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45124


User mru changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:28:30 -0800 
2005 ---
Yeah, maybe a mixture of older/newer installations caused this. Looks that this
one can be closed...

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

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


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



[framework-issues] [Issue 42907] missing control properties in xml im-/export for dialogs

2005-03-16 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=42907


User jsk changed the following:

  What|Old value |New value

Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:27:11 -0800 
2005 ---
Nasty thing.
Verified

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

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


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



[sw-issues] [Issue 45237] Bullets and Numbering - Sticky selection window

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45237


User mru changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:26:26 -0800 
2005 ---
closing duplicate.

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

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


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



[framework-issues] [Issue 45247] New - Changing the Search shortcut key to CRTL+F

2005-03-16 Thread cianoz
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45247
  Issue #:|45247
  Summary:|Changing the Search shortcut key to CRTL+F
Component:|framework
  Version:|OOo 1.1.4
 Platform:|PC
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|ENHANCEMENT
 Priority:|P3
 Subcomponent:|ui
  Assigned to:|tm
  Reported by:|cianoz





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:24:52 -0800 
2005 ---
Hallo, i would suggest to change the default assignement for the Search (and
substitute) function o OOo from the CRTL+B combination to CTRL+F key, because
the most of programs on Windows use this one, and so it is normally more
immediate to use and remember.

-
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 41635] ValueSet selection keeps selection of first item

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41635





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:21:34 -0800 
2005 ---
*** Issue 45237 has been marked as a duplicate of this issue. ***

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

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


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



[sw-issues] [Issue 45237] Bullets and Numbering - Sticky selection window

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45237


User mru changed the following:

  What|Old value |New value

Status|UNCONFIRMED   |RESOLVED

Resolution|  |DUPLICATE





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:21:35 -0800 
2005 ---
Duplicate of issue 41635, should be fixed in newer 680m84 build.

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

-
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 45238] open error in ie

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45238


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |tm

 Component|Word processor|framework

QA contact|[EMAIL PROTECTED] |[EMAIL PROTECTED]

  Subcomponent|viewing   |ui





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:16:13 -0800 
2005 ---
Framework 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 45238] open error in ie

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45238


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |tm

 Component|Word processor|framework

QA contact|[EMAIL PROTECTED] |[EMAIL PROTECTED]

  Subcomponent|viewing   |ui





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:16:13 -0800 
2005 ---
Framework 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]



[api-issues] [Issue 41419] Support for playing back movies in impress with RealPlayer + avmedia

2005-03-16 Thread sweetc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41419





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:15:50 -0800 
2005 ---
Hello!

I find these bug/issue trakers hard to follow but it appears that "rggammon" is
the one putting a lot of energy into this product.

I would like to thank you.  I did not know about it until it was mentioned in an
 response in the  OO mailing list.  The subject was on creating a presentation
tool for OO.  Please take a look at,
http://www.microsoft.com/office/powerpoint/producer/prodinfo/overview.mspx#EAAA
and some examples at,
http://www.microsoft.com/office/powerpoint/producer/prodinfo/demos.mspx

One of the problems I had with OO Impress, was the inablity to play animations
and movies from a slide.  Your work apprears to address that.

Three Questions
1.  Will the file work with v1.1.4 or v2.0 or both?
2.  Does the patch file come with instructions as to how to install it?
3.  Do I install the ".tar.gz" and the patch or just one or the other?

Thanks in advance for your necessary work and your response.

SC

-
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 45246] tAllControlsOnDialogs (f_basic.bas) does not work anylonger

2005-03-16 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45246


User jsk changed the following:

  What|Old value |New value

   Assigned to|tm|jsk

  Target milestone|---   |OOo 2.0.1





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:14:26 -0800 
2005 ---
setting OOo 2.01 and owner back to 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 45244] spellcheck and autospellcheck not working within my table

2005-03-16 Thread mru
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45244


User mru changed the following:

  What|Old value |New value

   Assigned to|mru   |sba





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:13:56 -0800 
2005 ---
Reassigned to SBA.

-
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 45246] New - tAllControlsOnDialogs (f_basic.bas) does not work anylonger

2005-03-16 Thread jsk
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45246
  Issue #:|45246
  Summary:|tAllControlsOnDialogs (f_basic.bas) does not work
  |anylonger
Component:|framework
  Version:|OOo 2.0
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|TASK
 Priority:|P4
 Subcomponent:|code
  Assigned to:|tm
  Reported by:|jsk





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 23:10:19 -0800 
2005 ---
Mousemovements cannot work anymore because the control is dropped to the dialog
in the instand the button on the Toolbox is clicked.

TODO: Replace mousemovements and use following steps instead:
1. click on the desired control
2. select the control (it should already be selected at this point)
3. open properties
4. set x,y coordinates and x-size, y-size
5. close properties
- next control.

-
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 45245] rename the table by double click

2005-03-16 Thread mitul
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45245


User mitul changed the following:

  What|Old value |New value

   Attachment is patch|  |Created an attachment
  |  |(id=23927) this is the
  |  |patch of  the issue..
  |  |solution





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:59:23 -0800 
2005 ---
Created an attachment (id=23927)
this is the patch of  the issue.. solution


-
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 45245] New - rename the table by double click

2005-03-16 Thread mitul
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45245
  Issue #:|45245
  Summary:|rename the table  by double click
Component:|Spreadsheet
  Version:|OOo 2.0 Beta
 Platform:|All
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|PATCH
 Priority:|P3
 Subcomponent:|viewing
  Assigned to:|mitul
  Reported by:|mitul





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:56:15 -0800 
2005 ---
this issue is related to renameing the table, usually we are renaming it by
right click on table and rename ... instead of doing this 

improve it to double click on the table , rename popup will come up..

-
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 44321] problems with zoom toolbar

2005-03-16 Thread richlv
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44321





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:54:39 -0800 
2005 ---
mhosken: hmm. at least for me in m84 it works just the same - single 
right-click 
brings up fast menu, doubleclick opens a dialog. which version did you refer 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]



[sw-issues] [Issue 43833] An image disappears when opening a MS Word file

2005-03-16 Thread fme
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43833


User fme changed the following:

  What|Old value |New value

Status|REOPENED  |STARTED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:48:56 -0800 
2005 ---
.

-
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 43833] An image disappears when opening a MS Word file

2005-03-16 Thread fme
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43833


User fme changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:48:22 -0800 
2005 ---
.

-
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 45244] spellcheck and autospellcheck not working within my table

2005-03-16 Thread wasteoftime
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45244


User wasteoftime changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23926) file with a
  |  |table that spellchecking
  |  |doesn't work in





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:47:37 -0800 
2005 ---
Created an attachment (id=23926)
file with a table that spellchecking doesn't work in


-
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 43833] An image disappears when opening a MS Word file

2005-03-16 Thread fme
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43833


User fme changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:46:01 -0800 
2005 ---
reset resolution to FIXED

-
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 43833] An image disappears when opening a MS Word file

2005-03-16 Thread fme
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43833


User fme changed the following:

  What|Old value |New value

   Assigned to|mru   |fme

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:45:58 -0800 
2005 ---
reassign to [EMAIL PROTECTED]

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

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


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



[sw-issues] [Issue 43833] An image disappears when opening a MS Word file

2005-03-16 Thread fme
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=43833


User fme changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:45:54 -0800 
2005 ---
.

re-open issue and reassign to [EMAIL PROTECTED]

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

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


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



[sw-issues] [Issue 45244] New - spellcheck and autospellcheck not working within my table

2005-03-16 Thread wasteoftime
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45244
  Issue #:|45244
  Summary:|spellcheck and autospellcheck not working within my
  |table
Component:|Word processor
  Version:|OOo 2.0 Beta
 Platform:|All
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|mru
  Reported by:|wasteoftime





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:45:33 -0800 
2005 ---
I have a table in my resume which does not get checked by the spellchecker. I
tried copying the table into a new document, but it still has the problem. I
have created a very short file (which I will attach) with one row of this table
pasted in, some text before, within and after the table, to show how it is not
spellchecking within the table, but does outside. This table may have strange
formatting or something since it is from my resume which has evolved and used
different word processors (a couple of versions of ms office and openoffice) to
create it.

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

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


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



[dba-issues] [Issue 42611] Database Application Locks Up

2005-03-16 Thread vreid47362
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=42611





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:44:59 -0800 
2005 ---
I'm enclosing a sample database that caused a lockup of OpenOffice when I tried
to use the wizard to create a form.

Here's some additional information that may be related:
1.  The crash recovery tool will not send an error report after it attempts to
recover the documents from the lockup.  Instead, I get an invalid hexadecimal
memory reference error.  In addition, even though the document recovery tools
says that it has recovered the database and its form, the documents never
reappear in the database.

2.  I am also unable to get a table to bind to a form when I try to manually
create a form.

3.  I am able to recreate 1 and 2 above on both Windows XP Pro Service Pack 2
and Windows 2000 Professional Service Pack 4.


Descpription of attached files
New Database is a test database that crashed when I used the form wizard to
create a form. 



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

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


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



[dba-issues] [Issue 42611] Database Application Locks Up

2005-03-16 Thread vreid47362
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=42611


User vreid47362 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23925) Zipped
  |  |OpenOffice Database File





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 22:44:34 -0800 
2005 ---
Created an attachment (id=23925)
Zipped OpenOffice Database 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]



[lingucomponent-issues] [Issue 44437] spellcheck doesn't work

2005-03-16 Thread cleavettbrown
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44437


User cleavettbrown changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23924) .sxw file with
  |  |mispelled words
  |  |(hilighted) that
  |  |spellcheck doesn't find





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:39:14 -0800 
2005 ---
Created an attachment (id=23924)
.sxw file with mispelled words (hilighted) that spellcheck doesn't find


-
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 45035] 3 Copies of UNICOWS.DLL Present, but still not Found

2005-03-16 Thread tburcham
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45035





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:30:56 -0800 
2005 ---
 In case you wondered, the problem was that there were two DLLs missing that
UNICOWS.DLL indirectly depended on.


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

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


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



[www-issues] [Issue 11401] Public Key

2005-03-16 Thread louis
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=11401


User louis changed the following:

  What|Old value |New value

   Assigned to|ejrenaud  |support

Status|REOPENED  |NEW





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:24:10 -0800 
2005 ---
support, please ask ops to add this key.

thanks
Louis



-
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 45243] New - LOOKUP function fails on columns with empty spaces

2005-03-16 Thread gooddamon
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45243
  Issue #:|45243
  Summary:|LOOKUP function fails on columns with empty spaces
Component:|Spreadsheet
  Version:|680m84
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|spreadsheet
  Reported by:|gooddamon





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:18:46 -0800 
2005 ---
If a LOOKUP() is run on a column of data, and each of the following is true:

1. One of the cells is empty.
2. The value being looked up appears BELOW the empty cell

then OO.org produces #N/A output, instead of the correct value. This function
works perfectly in 1.1.4.

To reproduce this issue:

1. Create a column of data with a few empty cells. (Example: A1:A10)
2. Assign another cell a value from from the column BELOW an empty cell.
(Example: B3)
3. Use this syntax in a formula: =LOOKUP(B3;A1:A10)
4. The formula will return #N/A instead of the value that matches B3.

-
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 44321] problems with zoom toolbar

2005-03-16 Thread mhosken
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44321





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:07:17 -0800 
2005 ---
Also in writer clicking on the zoom factor on the status bar doesn't bring up
zoom dialog as it did in 1.1

-
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 44075] allow run-in headings

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44075


User es changed the following:

  What|Old value |New value

Status|UNCONFIRMED   |RESOLVED

Resolution|  |INVALID





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 21:05:48 -0800 
2005 ---
No answer

-
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 44896] Unable to open ODT file exported from HTML file

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44896


User es changed the following:

  What|Old value |New value

   Assigned to|es|dvo





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 20:47:09 -0800 
2005 ---
.

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



[printing-issues] NAV detected a virus in a document you authored.

2005-03-16 Thread dslsoft/dslsoft%dslsoft
Please contact your system administrator.


The infected file attachment in the scanned document was deleted.


Virus Information:
The attachment message.scr contained the virus [EMAIL PROTECTED] and was
deleted.




-
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 18499] Summarize the OOo functions that use Java in a user FAQ

2005-03-16 Thread jacqueline
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=18499





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 20:23:48 -0800 
2005 ---
I haved added to http://download.openoffice.org/2.0beta/instructions.html

In the "Review the System Requirements" section I have added:

"Java is required to use the new embedded Java technology based HSQLDB database
engine, and or make use of accessibility and assistive technologies. If you do
not require database tables or accessibility integration, then you do not need
to download and install Java."

And a separate section for Java, following the "Reveiw the System Requirements":

"Install Java JRE (if required)
If you do not require Java or already have it installed on your system, skip to
Download OpenOffice.org 2.0 Beta section.

   1. Java (JRE/JDK) may be downloaded from www.java.com depending on your 
needs.
   2. Click on the "Java Software Download" button.
   3. For more details, see Download Instructions for Windows offline and
Windows manual installation on the Java web site. "

Please let me know what else you would like to add or change.

-
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 44729] OOo crashes when saving PowerPoint file

2005-03-16 Thread tsehungtin
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44729





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 19:59:14 -0800 
2005 ---
Concerning step 3 "Restart the computer," I chose _not_ to load OOo when the
computer starts. I unclicked the "load OOo during system start-up" option in
Tools > Options.

I think this information may help as I opened the file by clicking on the file
icon, rather than by opening the OOo program first.

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

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


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



[www-issues] Re: [Issue 45122] Unable to export .xls to .sxc

2005-03-16 Thread Steve Nye
Hi Maxweber

I worked some with this at home this evening. I was
able to create a small default spreadsheet (.ods) and 
then save it to .xls. On initially opening the save-as
screen the 'transient' I mentioned did appear, but did
not on subsequent save-as. However, without making a
change I was unable to use 'save-as' to resave the
file...it kept giving me an error saying it could not
save the file. If I made any changes at all to the
file 'save-as' would successfully save the file, even
if I was using the same file type and filename.

I am experiencing inconsistent performance with
1.9.79, sometimes a save will work, sometimes it fails
when I think it should succeed. But it appears OO has
made significant changes to the save commands and the
screens that are used for filename, path, etc, so I
may be just misunderstanding the new operation.

I would not want to send you off on a wild goose
chase, so perhaps we should close this for now and let
me work some more with 1.9.79.

Steve

--- [EMAIL PROTECTED] wrote:
> To comment on the following update, log in, then
> open the issue:
>
http://www.openoffice.org/issues/show_bug.cgi?id=45122
> 
> 
> User maxweber changed the following:
> 
>   What|Old value
> |New value
>

> CC|''   
> |'maxweber'
>

>   Keywords| 
> |oooqa
>

> 
> 
> 
> 
> --- Additional comments from
> [EMAIL PROTECTED] Wed Mar 16 03:00:55 -0800
> 2005 ---
> not reproducible with m85,
> 
> reporter, can you please attach the file in
> question,
> 
> which linux distro, which display manager are you
> using?
> 
> thanks, Max
> 
>
-
> 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
> 



__ 
Do you Yahoo!? 
Yahoo! Sports - Sign up for Fantasy Baseball. 
http://baseball.fantasysports.yahoo.com/

-
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 41414] Crash when saving new document as Master Document

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41414


User es changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 19:29:04 -0800 
2005 ---
closed

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

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


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



[sw-issues] [Issue 41414] Crash when saving new document as Master Document

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41414


User es changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |WORKSFORME





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 19:28:14 -0800 
2005 ---
.

-
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 44505] Won't open *.odt file.

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44505


User es changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 19:32:00 -0800 
2005 ---
closed

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

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


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



[sw-issues] [Issue 44505] Won't open *.odt file.

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44505


User es changed the following:

  What|Old value |New value

Status|UNCONFIRMED   |RESOLVED

Resolution|  |WONTFIX





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 19:31:31 -0800 
2005 ---
so closing

-
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 45237] Bullets and Numbering - Sticky selection window

2005-03-16 Thread kezzac
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45237


User kezzac changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23921) Shows that the
  |  |previous bullet and
  |  |numbering scheme
  |  |apparently remains
  |  |selected after a new
  |  |scheme is chosen





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:19:34 -0800 
2005 ---
Created an attachment (id=23921)
Shows that the previous bullet and numbering scheme apparently remains selected 
after a new scheme is chosen


-
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 45134] Add an open document command to the start menu

2005-03-16 Thread codger
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45134





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:14:26 -0800 
2005 ---
While it would be nice to have this option as a last-ditch fall-back position,
I'd rather not have to fall back at all.  My only reservation about voting for
this is that it might detract from what I consider the more important issue.  I
am adamant about the quickstart option both for practical and philosophical 
reasons.
Gerry

-
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 45237] New - Bullets and Numbering - Sticky selection window

2005-03-16 Thread kezzac
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45237
  Issue #:|45237
  Summary:|Bullets and Numbering - Sticky selection window
Component:|Word processor
  Version:|OOo 2.0 Beta
 Platform:|PC
  URL:|
   OS/Version:|Windows 2000
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|mru
  Reported by:|kezzac





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:17:50 -0800 
2005 ---
When the Bullets and Numbering document format window is used to choose a 
different document numbering format the previouly selected bulleting and 
numbering scheme apparently remains selected as indicated by a dark outline. 

See attached image 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]



[l10n-issues] [Issue 45241] Locale support for ka-GE

2005-03-16 Thread giasher
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45241


User giasher changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23923) ka-GE Locale
  |  |data supporting patches





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:38:17 -0800 
2005 ---
Created an attachment (id=23923)
ka-GE Locale data supporting patches


-
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 30853] Quickstart icon should include the OOo application shortcuts in the context again

2005-03-16 Thread codger
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=30853





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:33:51 -0800 
2005 ---
 > The Quickstarters primary function of course is the setting of whether  
   > part of OOo should load into memory at startup so that opening applications
  > goes faster as OOo is already part open.

I understand that, and it works even better in OOo 2.0b.  My point is that given
that functionality, it is my observation that including the shortcuts to open
programs and documents doesn't use up any extra memory.  That being so:

1) I continue to use the emasculated Quickstart because it does start the
program and open documents much faster.
2) It seems that having the shortcuts in the Quickstart icon context menu to
"Open Document" and "Open Program" uses no additional memory.
3) The user has the option to use the Quicktart icon or not both at installation
and at any time afterward.  It's not forced on anyone.
4) There is only an upside, no downside that I can see to restoring lost
fuctionality.

-
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 45240] Table formatting change when saved

2005-03-16 Thread cdn_hammer
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45240


User cdn_hammer changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23922) file with
  |  |changes to the table
  |  |column sizes after a save





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:21:39 -0800 
2005 ---
Created an attachment (id=23922)
file with changes to the table column sizes after a save


-
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 45078] Incorrect behaviour of Quickstarter

2005-03-16 Thread asrail
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45078





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:35:55 -0800 
2005 ---
The problem is just we are not able to use it.

I think that the option should not be take off, because otherwise the user would
have to repair the setup to use the QuickStart.

The wrong thing here is the place of the question about to use or not it,
because it looks like you can choose between to install or not it, instead of
you  choose between to use it or not.

QuickStart is not a component, it's, actually, only a icon. You open OOo with a
option of not to open a window, and it put an icon in the tray area on windows.

-
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 45241] New - Locale support for ka-GE

2005-03-16 Thread giasher
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45241
  Issue #:|45241
  Summary:|Locale support for ka-GE
Component:|l10n
  Version:|OOo 2.0 Beta
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|PATCH
 Priority:|P3
 Subcomponent:|code
  Assigned to:|er
  Reported by:|giasher





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:37:05 -0800 
2005 ---
Patches for Georgian Locale data (ka_GE.xml) supporting.  ZIP file contains:
1. i18pool/source/localedata/localedata.cxx & localedata.cxx.diff
2. i18pool/source/localedata/data/makefile.mk & makefile.mk.diff
3. i18pool/source/localedata/data/localedata_eur.map & localedata_eur.map

-
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 45240] New - Table formatting change when saved

2005-03-16 Thread cdn_hammer
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45240
  Issue #:|45240
  Summary:|Table formatting change when saved
Component:|Word processor
  Version:|OOo 2.0 Beta
 Platform:|PC
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P2
 Subcomponent:|save-export
  Assigned to:|mru
  Reported by:|cdn_hammer





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:20:20 -0800 
2005 ---
When creating a fairly involved table, without any nested tables, I have found
that the table widths changed size, making this build impossible to use with 
tables.

I was using tables with columns of a vareity of widths, and have had trouble
resizing columns with the mouse (as has already been reported issue 33810),
please inform me as to how I can send you the file in question for your 
examination.

Thanks.

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

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


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



[sw-issues] [Issue 45126] Cut and paste not working

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45126


User es changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:35:03 -0800 
2005 ---
wrong installation:it happens!

-
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 45206] Edit.Repeat on Alt-Enter in section inserts broken graphic

2005-03-16 Thread es
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45206





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:33:32 -0800 
2005 ---
Hey, cool that you found it!
Works also without *protected* section

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

2005-03-16 Thread asrail
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=13418


User asrail changed the following:

  What|Old value |New value

CC|''|'asrail'

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:27:36 -0800 
2005 ---
I'll track it and tell, or open it again, if the behaviour changes 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]



[sw-issues] [Issue 45238] New - open error in ie

2005-03-16 Thread ov10fac
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45238
  Issue #:|45238
  Summary:|open error in ie
Component:|Word processor
  Version:|OOo 2.0 Beta
 Platform:|All
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|viewing
  Assigned to:|mru
  Reported by:|ov10fac





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:51:44 -0800 
2005 ---
When attempting to open a .doc file in ie, OpenOffice throws an error and 
generates a HTML 403 error.

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

2005-03-16 Thread asrail
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=13418


User asrail changed the following:

  What|Old value |New value

Status|NEW   |RESOLVED

Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:26:37 -0800 
2005 ---
LOL...

Sorry for laughing.


In a recent developer build it's off by default.

When doing a custom install you can choose if you'll use it or not.
So both of your problems are solved. You'll see it when OOo 2.0 comes an oficial
version. Actually it's a beta version.

-
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 44977] Storing of a document created from template in alien format.

2005-03-16 Thread timmoty
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44977





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:45:13 -0800 
2005 ---
mav,

I have encounter this issue, and it'quite annoying.
I understand that you've fixed it, but how can we fixed it, is there a guide
somewhere or a patch? Or should we wait for the next 680mxx?

Thanks and regards,

Timmoty

-
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 45242] New - Help ID: 26220 missing

2005-03-16 Thread lduperval
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45242
  Issue #:|45242
  Summary:|Help ID: 26220 missing
Component:|framework
  Version:|680m84
 Platform:|All
  URL:|
   OS/Version:|Linux
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|ui
  Assigned to:|tm
  Reported by:|lduperval





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 18:40:24 -0800 
2005 ---
When I do a "Paste special" the help window comes up but when I click on it I 
get:

Could not find Help page.
Unfortunately the Help page you selected was not found. The following data could
be helpful in locating the error:
Help ID: 26220
We apologize for any inconvenience.
Click  Back to return to the previous 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]



[sw-issues] [Issue 1598] Zoom should also allow facing page view and/or multiview

2005-03-16 Thread techgurufloyd
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=1598





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 17:04:57 -0800 
2005 ---
You say that there should be a blank before the first page to keep odd numbered
pages on the right:
+-+
| |
| Pg1 |
| |
+-+
+-+ +-+
| | | |
| Pg2 | | Pg3 |
| | | |
+-+ +-+

I partially agree. This should happen, except for when there is an additional
'title' page. I'd want there to be an option to disable the 'blank' for a
specific document:
+-+ +-+
| | | |
|Title| | Pg1 |
| | | |
+-+ +-+
+-+ +-+
| | | |
| Pg2 | | Pg3 |
| | | |
+-+ +-+
Or, else there needs to be some help tip or something that suggests that the
user add an additional blank page (that can be disabled from printing. I hope
there's a way to do that.) between the title page and page 1 for a more
intuitive layout.

-
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 42733] UI should not use term "CTL"

2005-03-16 Thread javiersola
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=42733





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 16:43:26 -0800 
2005 ---
uhmmm,

The fact that the help names exclusivelly some languages as supported is
dangerous, as it will be obsolete very quickly.. As a matter of fact it is
already obsolete, OOo supports Khmer, Tamil and Kannada, and will soon support
other indic languages.

Conceptually it would be better for the users to have separate boxes for
"right-2-left" and for "indic and S.E. Asian", because they will directly
identify with one of them. Putting them together is making the UI follow the
technology below, instead of the grouping in which the users would easily fit
themselves.

-
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 44486] libsts is not PIC

2005-03-16 Thread fa
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44486





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 16:43:23 -0800 
2005 ---
PIC = Position Independent Code

Means the library can be loaded at any address in memory, rather than at a 
fixed address, which is what 
happens when you don't use -fPIC/-fpic.  Not having libraries PIC is a security 
risk (more for things like 
apache/bind/etc than OOo, but still important).

-
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 14596] Dictionary words Correction suggestions

2005-03-16 Thread asrail
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=14596


User asrail changed the following:

  What|Old value |New value

Status|RESOLVED  |CLOSED





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 16:06:49 -0800 
2005 ---
.

-
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 45236] New - accents leave mark when deleting a line

2005-03-16 Thread imi84
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45236
  Issue #:|45236
  Summary:|accents leave mark when deleting a line
Component:|Word processor
  Version:|OOo 1.1
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|ENHANCEMENT
 Priority:|P3
 Subcomponent:|formatting
  Assigned to:|mru
  Reported by:|imi84





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 16:04:49 -0800 
2005 ---
Check this screenshot:
http://people.inf.elte.hu/pentek_i/doksik/Linux/bugs/OOo/bug2.png
There was a line break at the place where now the cursor lies, then I hit
delete, the accents left a mark. They hide when the whole screen is repainted
(e.g. minimize/restore)

-
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 45020] Error Loading Basic

2005-03-16 Thread beekers
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45020


User beekers changed the following:

  What|Old value |New value

Status|RESOLVED  |UNCONFIRMED

Resolution|DUPLICATE |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:44:51 -0800 
2005 ---
I am sorry if I don't understand everything that is being talked about?  All I 
know is that I get a general Error input and output when closing a file in 
text.  So far it has not interfeared with the print mode, so I don't know.  
Thank you all for your help.  I realize it is hard to discuss something of 
this nature to someone who doesn't really understand,  THANKS ANYWAY: Beekers

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

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


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



[dba-issues] [Issue 41239] OOo defeated by dropped JDBC connection

2005-03-16 Thread techgurufloyd
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=41239





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:27:39 -0800 
2005 ---
I have the same problem:
Remote MySQL database (v 4.0.22-standard)
connected via MySQL/JDBC (using latest version v3.1.7) component in Base
Problem exhibited in both 1.9.79 and 1.9.84
MySQL server is on a shared linux host
OOo is installed on WinXP pro sp2

If I wait for very long the error occurs.
I've tried enabling the connection pooling, and the connection seems to 'keep
alive' for the duration of the pool, but after that time, I get the error
mentioned by osavill when I try to save any changes.

When querying for active users in the database (via the MySQL administrator app)
I can see a connection from the user I'm using to connect to the database from
within Base. The user has a status of "sleep", with how long the user has been
in that status. Because of this I think that the connection is still around.
Maybe OOo is 'forgetting' the connection? Does it ignore the connection once it
has left the 'pool'? If we start connecting several times, we will be leaving a
host of open connections that will either just sit there or be terminated by
MySQL after whatever duration the database has set for sleeping connections.

-
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 45035] 3 Copies of UNICOWS.DLL Present, but still not Found

2005-03-16 Thread tburcham
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45035





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:24:43 -0800 
2005 ---
This should help out a lot:

 I wrote a test program which loads (and unloads) DLLs. It had no trouble
loading five of the six DLLs when testing it, but it couldn't load UNICOWS.DLL.
It returned 0 instead of a handle. "GetLastError" returned 0 also. This means
the problem has nothing to do with openoffice. Perhaps it has something to do
with its properties. Here are some from "Dependency Walker":

File Ver:   1.0.4018.0
Subsystem:  Win32 Console
Debug:  Yes
Image Ver:  6.0
OS Ver: 6.0
Subsystem Ver   4.0

Most DLLs show "Win32 GUI" for Subsystem, and "no" for debug.


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

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


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



[dba-issues] [Issue 45235] New - query wizard sets query name to an error

2005-03-16 Thread pescetti
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=45235
  Issue #:|45235
  Summary:|query wizard sets query name to an error
Component:|Database access
  Version:|680m79
 Platform:|PC
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|none
  Assigned to:|msc
  Reported by:|pescetti





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:23:46 -0800 
2005 ---
OOo 1.9.79 Italian. The Query Wizard produces a query with an erroneus name
(name is set to "No database installed" - "Non e' stato installato alcun 
database").

Steps to reproduce (modeled after QA Test Case 110011):
1. Create a new database and a table named Table1 with fields "Name" and
"Lastname"; add a Primary key when requested.
2. Insert data: "1, Fred, Flintstone", "2, Barney, Rubble".
3. click "Query" icon in Database pane 
4. click "Use Wizard to Create Query" 
5. select "Table1" in Tables combobox 
6. move all of fields from "Available table" to "Fields in the Query" 
7. click "Next" 
8. select Table1.ID in "Sort by" 
9. click "Next" 
10. enter some conditions combination with actual data in Table1 [like Name is 
Fred]
11. click "Finish"

The resulting query is named "Non e' stato installato nessun database", meaning
"No database installed".

[Reported by Italian QA testers: Mirto Silvio Busico, Piero Savaresi, Giovanni
Molteni]

-
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 44890] Import text file will not unlock file until spreadsheet is closed

2005-03-16 Thread haxwell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44890


User haxwell changed the following:

  What|Old value |New value

CC|''|'haxwell'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

Issue type|DEFECT|ENHANCEMENT

  Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:14:24 -0800 
2005 ---
Confirmed. This does happen, but I think its more of an enhancement request than
a bug. Lots of applications lock the file they are loaded with.

Confirming and changing ISSUE TYPE to Enhancement.

-
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 44883] Selecting Tools - Options - Java crashes program

2005-03-16 Thread haxwell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44883


User haxwell changed the following:

  What|Old value |New value

CC|''|'haxwell'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

  Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:11:29 -0800 
2005 ---
Confirming the initial issue of Tools/Options/Java freezing. Mine did not
completely freeze, but it did stop responding for a few seconds when I went to
that tab. 

If the reason is that it has to look something up in the system, perhaps a small
dialog saying "Analyzing Java Runtime Environments" or something would alleviate
any user concern.

Using OOo 1.9.84.

-
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 30853] Quickstart icon should include the OOo application shortcuts in the context again

2005-03-16 Thread kearsleymak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=30853





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:10:21 -0800 
2005 ---
When I said Open File facility of course I mean't the Open or New based on
Template that could be done from the Quickstarter before when OOo wasn't open -
didn't go into enough detail on that.

-
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 30853] Quickstart icon should include the OOo application shortcuts in the context again

2005-03-16 Thread kearsleymak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=30853





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:06:53 -0800 
2005 ---
I think that there needs to be a restoration of the Open File facility that is
available in OOo 1.0.x and 1.1.x, I don't see the point of having the
application links in the Quickstarter Menu as these could be added to a folder
on the Task Bar in Windows or KDE\Gnome relatively easily - indeed there could
be perhaps an option for this in setup, an option to hide the Quickstarter icon
would be nice or the configuration options for it could be in the main folder in
Program Files rather than an icon appearing at all.

The Quickstarters primary function of course is the setting of whether part of
OOo should load into memory at startup so that opening applications goes faster
as OOo is already part open.

-
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 44870] OO doesn't understand Unicode file names when invoked from explorer

2005-03-16 Thread haxwell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44870


User haxwell changed the following:

  What|Old value |New value

CC|''|'haxwell'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

  Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 15:02:28 -0800 
2005 ---
Confirmed. If I rename a file to have the char Î (Alt+1258) in it, OOo errors
out when I try to open it.

You can enter the char Î (Alt+1258) by holding the Alt key and typing 1 2 5 8 
on
your keypad.

-
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 44857] Ctrl++ does not respond when assigned to Insert/Cells as a hotkey

2005-03-16 Thread haxwell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44857


User haxwell changed the following:

  What|Old value |New value

CC|''|'haxwell'

Ever confirmed|  |1

Status|UNCONFIRMED   |NEW

  Keywords|  |oooqa

   Summary|Ctrl++|Ctrl++ does not respond
  |  |when assigned to
  |  |Insert/Cells as a hotkey





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 14:56:20 -0800 
2005 ---
Confirmed.

In Calc, 

1. Go to Tools > Customize > Keyboard.
2. Under Category, choose Insert. Under Function choose Cells.
3. In the Shortcut Keys listbox, scroll till you see Ctrl++. Select it.
4. Click the Modify button. Click OK.

Clicking Ctrl++ does nothing. But if you look under the Insert menu, you see
that Insert > Cells has Ctrl++ assigned to it as a hotkey.

Using OOo 1.9.84 on Win 2000 SP4.

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

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


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



[www-issues] [Issue 11401] Public Key

2005-03-16 Thread ejrenaud
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=11401


User ejrenaud changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|FIXED |





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 14:51:40 -0800 
2005 ---
Need a new public key to use (switching computers/fried the old).  Same access
to the www files.

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

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


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



[www-issues] [Issue 11401] Public Key

2005-03-16 Thread ejrenaud
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=11401


User ejrenaud changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23920) Public key file





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 14:49:17 -0800 
2005 ---
Created an attachment (id=23920)
Public key 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]



[sc-issues] [Issue 44835] irregular results when opening previously saved files that use set print ranges

2005-03-16 Thread haxwell
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44835


User haxwell changed the following:

  What|Old value |New value

CC|''|'haxwell'

  Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Wed Mar 16 14:47:08 -0800 
2005 ---
lora13, can you download the 2.0 Beta version of OOo and see if you still have
the same problems 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]



  1   2   3   4   5   6   7   8   >