[graphics-issues] [Issue 47056] link to external objects

2008-05-16 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=47056





--- Additional comments from [EMAIL PROTECTED] Fri May 16 20:09:26 + 
2008 ---
This requested feature is still not supported in version 2.3.1.  I shall test
version 3.0 beta later when I have time for download and installation.

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

-
To unsubscribe, 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 47056] link to external objects

2008-05-16 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=47056





--- Additional comments from [EMAIL PROTECTED] Sat May 17 02:58:38 + 
2008 ---
2.4.0 does not support link to external objects.

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

-
To unsubscribe, 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 74071] 2.1.0 Base table alias

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





--- Additional comments from [EMAIL PROTECTED] Wed Jul 11 19:42:35 + 
2007 ---
related issues:

www.openoffice.org/issues/show_bug.cgi?id=76377
dba.openoffice.org/servlets/BrowseList?list=usersby=threadfrom=1718435
self join problem (requiring table name alias)

www.openoffice.org/issues/show_bug.cgi?id=76374
cross join of the same table
(requiring table name alias)

www.openoffice.org/issues/show_bug.cgi?id=73627
inner join and cross join of the same table
(requiring table name alias)

www.openoffice.org/issues/show_bug.cgi?id=69227
cyclic reference inside queries
dba.openoffice.org/servlets/BrowseList?list=usersby=threadfrom=1493243
dba.openoffice.org/servlets/ReadMsg?list=usersmsgNo=3911
table name alias invoked in SQL statements
problem for OO Base GUI Query
not a problem for SQL View
The revised attachment in issue 69227 has **revised away**
the problem of the table name alias for GUI Query.




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

-
To unsubscribe, 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 74071] 2.1.0 Base table alias

2007-01-31 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=74071
 Issue #|74071
 Summary|2.1.0 Base table alias
   Component|Database access
 Version|OOo 2.1
Platform|PC
 URL|
  OS/Version|Windows XP
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|none
 Assigned to|dbaneedsconfirm
 Reported by|rjahn1





--- Additional comments from [EMAIL PROTECTED] Wed Jan 31 15:22:11 -0800 
2007 ---
Table alias is not a cosmetic feature.  It is mandatory to build complex queries
when the same source table is invoked multiple times.  Without table alias,
complex queries cannot be built.

OO Base currently provides 2 types of stored queries.
* SQL View
  created through CUI (Tools – SQL)
  stored on the DB engine side
  handled by DB engine
* GUI Query
  created through GUI
  stored on the client side
  handled by Base GUI parser

GUI Query in 2.1.0 always fails when table alias is in query statement.

Example:
* Create a new database.
* Create 2 test tables, as shown in the end.
* Select GUI Query (Queries in the left pane)
* Select Create Query in SQL Window
  Note: still inside Base GUI, not handled by DB engine
* type in the contrived query statement, as shown in the end.
* Press the design mode button (switch to GUI mode)
  4 tables of alias names appear in relation window.
  No tables of the original name
  No key connection lines between any tables.
* Press the design mode button (switch to text mode)
  Table aliases disappeared in the From clause.
  Table aliases remain in other sections of the query statement.
* Press the design mode button (switch to GUI mode)
  6 tables icons appear in relation window,
  4 in alias names, 2 in the original names.
  No key connection lines exist on the table icons of the original names.
  Key connection lines appear correctly for table icons of alias names.
* Further switching between the GUI and text modes reveals no more changes.
* Save as qq test and close the GUI.
  Should see a stored GUI Query qq test.
* Double click qq test to execute.
* error message:

The data content could not be loaded.
Column not found: tm01.ID module in ...


-- SQL code to reproduce the symptom

Create Table tt part
(
 ID part  BigInt,
 source   VarChar( 100 ),
 notesVarChar( 100 ),

 Constraint pk_tt_part Primary Key ( ID part )
);

Create Table tt module
(
 ID module BigInt,
 ID part   BigInt,
 notes VarChar( 100 ),

 Constraint pk_tt_module Primary Key ( ID module ),

 Constraint fk_01_tt_module
   Foreign Key ( ID part )
   References tt part ( ID part )
   On Update Cascade
   On Delete Restrict
);

-- a trivial, contrived query for table alias
Select tm01.ID module as md01, tp01.ID part as pt01,
   tm02.ID module as md02, tp02.ID part as pt02
From   tt module as tm01, tt part as tp01,
   tt module as tm02, tt part as tp02
Where  tp01.source = 'vendor 1' and tp01.ID part = tm01.ID part and
   tp02.source = 'vendor 2' and tp02.ID part = tm02.ID part;

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

-
To unsubscribe, 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 52244] OOo crashes which I try t o copy a group of drawing objects

2005-10-20 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52244





--- Additional comments from [EMAIL PROTECTED] Wed Oct 19 10:46:01 -0700 
2005 ---
Is it possible that issues 10245 24187 52244 are related?  They have similar
symptom description, albeit on different OS's.

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

-
To unsubscribe, 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 54926] 1.9.128 layer visibility in slide sorter and main view

2005-09-22 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=29811) PNG page 01





--- Additional comments from [EMAIL PROTECTED] Thu Sep 22 07:14:34 -0700 
2005 ---
Created an attachment (id=29811)
PNG page 01


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

-
To unsubscribe, 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 54926] 1.9.128 layer visibility in slide sorter and main view

2005-09-22 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=29812) PNG page 02





--- Additional comments from [EMAIL PROTECTED] Thu Sep 22 07:15:13 -0700 
2005 ---
Created an attachment (id=29812)
PNG page 02


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

-
To unsubscribe, 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 54926] 1.9.128 layer visibility in slide sorter and main view

2005-09-22 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=29813) PNG page 03





--- Additional comments from [EMAIL PROTECTED] Thu Sep 22 07:15:51 -0700 
2005 ---
Created an attachment (id=29813)
PNG page 03


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

-
To unsubscribe, 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 54926] 1.9.128 layer visibility in slide sorter and main view

2005-09-22 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926





--- Additional comments from [EMAIL PROTECTED] Thu Sep 22 07:29:09 -0700 
2005 ---
[EMAIL PROTECTED]: I am curious about the details of your confirmation tests. 
Can you elaborate on what platform your tests were conducted?  Is the platform a
variant of Linux or Unix running a version of Debian or related desktop
environment?  Or your previous confirmation tests were indeed conducted on the
same platform of MS Windows as indicated in the initial message?

Please check attachments 29811, 29812, 29813 (PNG images) of the export results
as reported seen on the MS Windows plasform.

Your comment also seems to imply that the display in the sorter pane and edition
pane should be identical (perhaps by specification).  Is my interpretation
correct?  I actually like it this way so that the user has an easy visual clue
of the invisible contents, in addition to the color change of the layer tab.

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

-
To unsubscribe, 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 54926] New - 1.9.128 layer visibi lity during export

2005-09-21 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926
  Issue #:|54926
  Summary:|1.9.128 layer visibility during export
Component:|Drawing
  Version:|current
 Platform:|PC
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|save-export
  Assigned to:|wg
  Reported by:|rjahn1





--- Additional comments from [EMAIL PROTECTED] Wed Sep 21 09:30:21 -0700 
2005 ---
OS: MS Windows XP, Service Pack 1
OO: 1.9.128
description: 1.9.128 layer visibility during export
attachment:  1.1.005 OO drawing

open the attachment
left click to select the layer tab annotation
right click the layer tab annotation
select modify layer in dialog
disable visible for layer annotation

results:
in left pane index pane - all contents visible (OK)
in right pane editing pane - none of text objects are displayed (OK)

export test:
keep the layer annotation invisible
file - export - PNG format
PNG options: level 9 for max. compression, enable interleave
export all pages (one by one)
The first page of PNG export still contains texts (wrong).
The other pages do not show texts (OK).

I would appreciate advice about where my mistake is.  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]



[graphics-issues] [Issue 54926] 1.9.128 layer visibility during export

2005-09-21 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=54926


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=29776) OO 1.1.5
  |  |drawing





--- Additional comments from [EMAIL PROTECTED] Wed Sep 21 09:31:51 -0700 
2005 ---
Created an attachment (id=29776)
OO 1.1.5 drawing


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28900) after OO OLE
  |  |insertion





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:16:50 -0700 
2005 ---
Created an attachment (id=28900)
after OO OLE insertion


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28901) after resizing





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:17:54 -0700 
2005 ---
Created an attachment (id=28901)
after resizing


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28902) after OO OLE
  |  |insertion





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:18:40 -0700 
2005 ---
Created an attachment (id=28902)
after OO OLE insertion


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28903) after resizing





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:19:18 -0700 
2005 ---
Created an attachment (id=28903)
after resizing


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28904) original OO
  |  |drawing





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:20:06 -0700 
2005 ---
Created an attachment (id=28904)
original OO drawing


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28905) after OO OLE
  |  |insertion





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:20:47 -0700 
2005 ---
Created an attachment (id=28905)
after OO OLE insertion


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28906) after resizing





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:21:22 -0700 
2005 ---
Created an attachment (id=28906)
after resizing


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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

2005-08-18 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=52817





--- Additional comments from [EMAIL PROTECTED] Thu Aug 18 13:27:58 -0700 
2005 ---
response to the message by [EMAIL PROTECTED] on 2005-08-16.

OS: MS Windows XP
OO: 1.9.122
Others: MS Office XP (to check OO implementation of MS OLE)

Resizing operation in OO:
Click the OLE object, grab any boundary, drag with mouse.
Nothing special.
Is there a different definition of RESIZING in OO?

Note:
28452 workplace.doc, a MS Word file, ONE page
28453 workplace.odt, a OO Writer file, TWO pages
contain DIFFERENT contents, despite the similar file names, due to the format
layout change.  I do not know how workplace.odt was originally created by
[EMAIL PROTECTED]  It might be created by using OO to directly open the MS
Word file, as I got similar result in the additional page breaking and other
format changes.

Attachments submitted:

28900 28454 src doc 1.png, OLE source = 28452 workplace.doc,
  as inserted into OO Impress.
  Note the truncation.
28901 28454 src doc 2.png, OLE source = 28452 workplace.doc,
  after RESIZING.
  same content, no recovery of the cropped content

28902 28454 src odt 1.png, OLE source = 28453 workplace.odt,
  as inserted into OO Impress.
28903 28454 src odt 2.png, OLE source = 28453 workplace.odt,
  after RESIZING.

I assume that 28454 src odt *.png are what [EMAIL PROTECTED]
previously tested.  The previous comment may have been derived from this limited
test coverage.

Additional tests with attachment ID 28713 in issue 53266 (an OO drawing) are
conducted.
28904 27813 oo truncate 0.png, the complete original drawing
28905 27813 oo truncate 1.png, OLE source = attachment ID 28713,
  as inserted into OO Impress.
  Note the truncation.
28906 27813 oo truncate 2.png, OLE source = attachment ID 28713,
  after RESIZING.
  same content, no recovery of the cropped content

Hope that this helps.




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

-
To unsubscribe, 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 52817] Only part of OLE Object i s visible after Insert - create from file

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





--- Additional comments from [EMAIL PROTECTED] Tue Aug 16 08:03:45 -0700 
2005 ---
OO: 1.9.122 MS OLE object insertion
purpose: amendment to the previous description of issue 52817
related: OO issue 53266

* Saving OO OLE object sources in either 1.1.4 (sxw) or 1.9.122 (odt) formats
does NOT solve the problem.

* Saving OO destination files (receiver of MS OLE objects) in either 1.1.4 (sxw)
or 1.9.122 (odt) formats does NOT solve the problem.

* In OO 1.9.122, RESIZING the OLE object window does NOT solve the problem
(verified with example files of issue 52817).  The visible contents were
RESIZED.  The truncated content was NOT recovered.

* Refer to issue 53266.  It appears to be an issue of the OO implementation of
MS OLE, not an issue of the individual applications like writer, calc, drawing,
impress, etc.

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

-
To unsubscribe, 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 53266] 1.9.122 drawing import tr uncation

2005-08-15 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266





--- Additional comments from [EMAIL PROTECTED] Mon Aug 15 07:04:07 -0700 
2005 ---

OS: MS Windows XP
OO: 1.9.122

Not sure about what additional file attachments that [EMAIL PROTECTED] needs. 
Do you need attachments different from the previous submission?  In what way? 
Please specify.

Questions:

* Has anyone verified that the OO drawing content in previously submitted OO
files was cropped and not changeable?

* I mentioned OLE object insertion, not copy-paste, in the original issue
submission.
Past comments all referred to copy-paste UI path.
Has anyone tested the OLE UI path?
In both 1.1.4 (old, still official at writing time) and 1.9.122 (future, open
ducument) formats?

* Please reopen the issue when the description is verified.
Copy-paste is not a substitute for OLE object insertion.

Details about symptom duplication, all in OO 1.9.122.

* drawing creation

new drawing
(do whatever to create a large content)
save in 1.1.4 format (sxd)
save and close file

* import to OO Writer
new text document
insert – object – OLE object – create from file – (specify the sxd drawing file)
– no link – OK
content is truncated
uncropping operation could not retrieve the content outside the border

* import to OO Presentation Impress
new presentation
(the rest operation is the same as the OO Writer)


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

-
To unsubscribe, 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 53266] New - 1.9.122 drawing impo rt truncation

2005-08-12 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266
  Issue #:|53266
  Summary:|1.9.122 drawing import truncation
Component:|Drawing
  Version:|680m122
 Platform:|PC
  URL:|
   OS/Version:|Windows XP
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|open-import
  Assigned to:|wg
  Reported by:|rjahn1





--- Additional comments from [EMAIL PROTECTED] Fri Aug 12 14:18:29 -0700 
2005 ---
OS: MS Windows XP
OO: 1.9.122

The content of OO Drawing imported into the following applications is truncated.
* OO Writer
* OO Impress
* MS Office XP Word

The test with MS Word is to check whether the problem is specific to OO Writer
and Impress or the problem is related to MS OLE implementation in OO.

Example files are attached.

Ray

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

-
To unsubscribe, 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 53266] 1.9.122 drawing import tr uncation

2005-08-12 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28713) OO 1.9.122
  |  |drawing





--- Additional comments from [EMAIL PROTECTED] Fri Aug 12 14:20:52 -0700 
2005 ---
Created an attachment (id=28713)
OO 1.9.122 drawing


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

-
To unsubscribe, 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 53266] 1.9.122 drawing import tr uncation

2005-08-12 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28714) OO 1.9.122
  |  |Impress presentation





--- Additional comments from [EMAIL PROTECTED] Fri Aug 12 14:21:56 -0700 
2005 ---
Created an attachment (id=28714)
OO 1.9.122 Impress presentation


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

-
To unsubscribe, 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 53266] 1.9.122 drawing import tr uncation

2005-08-12 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28715) OO 1.9.122
  |  |Writer





--- Additional comments from [EMAIL PROTECTED] Fri Aug 12 14:22:33 -0700 
2005 ---
Created an attachment (id=28715)
OO 1.9.122 Writer


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

-
To unsubscribe, 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 53266] 1.9.122 drawing import tr uncation

2005-08-12 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=53266


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=28716) MS Office XP
  |  |Word





--- Additional comments from [EMAIL PROTECTED] Fri Aug 12 14:23:06 -0700 
2005 ---
Created an attachment (id=28716)
MS Office XP Word


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

-
To unsubscribe, 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 24187] OO Drawing 1.1.0 crash

2005-06-08 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=24187





--- Additional comments from [EMAIL PROTECTED] Wed Jun  8 05:53:03 -0700 
2005 ---
possibly related OO issues: 10245 and 24187.

Description freeze might be more appropriate than crash.  The PC fan always
starts to run non-stop.  It is possibly an indication of perhaps infinite 
loop.

OO does recover the user file (empty).  But I do not recall seeing any report
stating the failure cause (like code segment, etc.).

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

-
To unsubscribe, 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 24187] OO Drawing 1.1.0 crash

2005-05-17 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=24187





--- Additional comments from [EMAIL PROTECTED] Tue May 17 09:44:36 -0700 
2005 ---
OO: 1.9.100, freezes the entire system, cannot do any thing
 have to power down to regain system

OS: MS Windows 2000, version 5.0, build 2195, service pack 2
PC: Dell laptop Latitude C510/C610, model PP01L
JRE: 1.4.2.07

I wonder if it is related to the same sympton reported for NIH Image due to JRE.
 Please refer to the NIH web sites:

rsb.info.nih.gov/ij
rsb.info.nih.gov/nih-image

* Is there a way to specify the JRE version (multiple installation) in
OpenOffice, if this is a worthwhile pursuit?
* Is there a way to force some debug info. dump for postmortem?

 

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

-
To unsubscribe, 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 48147] New - 1.9.95 script library name ambiguity

2005-04-25 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=48147
  Issue #:|48147
  Summary:|1.9.95 script library name ambiguity
Component:|Spreadsheet
  Version:|680m95
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|ui
  Assigned to:|spreadsheet
  Reported by:|rjahn1





--- Additional comments from [EMAIL PROTECTED] Mon Apr 25 15:45:34 -0700 
2005 ---
Bug report, per instruction of [EMAIL PROTECTED] in support group
users@openoffice.org on 2005-04-25.

The attached zip file contains two spreadsheet files: junk.sxc and junk.ods.

* use 1.9.95
* open both files
* Tools - Macros - Organize Macros
* two libaries of identical display names
  due to the suppression of file name extension

Regards

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

-
To unsubscribe, 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 48147] 1.9.95 script library name ambiguity

2005-04-25 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=48147


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=25461) OO Calc zip,
  |  |1.1.4 and 1.9.95 formats





--- Additional comments from [EMAIL PROTECTED] Mon Apr 25 15:47:58 -0700 
2005 ---
Created an attachment (id=25461)
OO Calc zip, 1.1.4 and 1.9.95 formats


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

-
To unsubscribe, 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 47056] New - link to external objects

2005-04-08 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=47056
  Issue #:|47056
  Summary:|link to external objects
Component:|Presentation
  Version:|OOo 1.1.4
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|FEATURE
 Priority:|P3
 Subcomponent:|code
  Assigned to:|wg
  Reported by:|rjahn1





--- Additional comments from [EMAIL PROTECTED] Fri Apr  8 10:33:36 -0700 
2005 ---
Is it possible to embed a link in OO Impress files to external objects (files,
etc.)?  The purpose is to split a presentation of complex info. into 2 tiers:
the OO Impress file (the stub) and the external objects (actual details).  An
example: in meetings of a typical engineering project, the size of support info.
is usually huge, like engineering drawing files, dynamics analysis files,
microscopy image files, etc.

The link feature in MS PowerPoint is based on the file-type association built-in
in MS Windows.  I do not know enough about Macintosh and Unix/Linux.  Please
note that the link feature only works in MS PowerPoint 2000 and newer versions,
due to a previous bug in absolute/relative path specifcation.

A simple example in MS PowerPoint 2000 will be attached.

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

-
To unsubscribe, 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 47056] link to external objects

2005-04-08 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=47056


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=24850) MS PPT 2000, OO
  |  |Impress, *.png, in
  |  |directory structures





--- Additional comments from [EMAIL PROTECTED] Fri Apr  8 10:36:16 -0700 
2005 ---
Created an attachment (id=24850)
MS PPT 2000, OO Impress, *.png, in directory structures


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

-
To unsubscribe, 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 46988] range.find()

2005-04-07 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=46988





--- Additional comments from [EMAIL PROTECTED] Thu Apr  7 15:31:36 -0700 
2005 ---
correction for previous mistake in example code:

=range_find(sheet1, tst)

in worksheet content of MS spreadsheet

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

-
To unsubscribe, 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 44828] tools-detective-trace for cross-sheet formulae

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





--- Additional comments from [EMAIL PROTECTED] Thu Mar 17 09:44:28 -0800 
2005 ---
The software installation on my work PC is centrally regulated.  Not sure if
1.1.4 and 1.9.8 can co-exist.  Do not want to ask admin. to remove 1.1.4, load
1.9.8, test, remove 1.9.8, load 1.1.4.  Can you find a beta tester on MS Windows
2000?

Please clarify.  Do you mean that in 1.9.8 there is no menu command sequence
tools, detective, trace?  Or do you mean that there is no display of
arrow symbol + square block after the menu command sequence on a cell
containing references to cells in different sheets?

Would you like me to provide a simple example in 1.1.4?

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

-
To unsubscribe, 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 44828] tools-detective-trace for cross-sheet formulae

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


User rjahn1 changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=23972) trace
  |  |precedents





--- Additional comments from [EMAIL PROTECTED] Thu Mar 17 10:53:09 -0800 
2005 ---
Created an attachment (id=23972)
trace precedents


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

-
To unsubscribe, 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 44828] tools-detective-trace for cross-sheet formulae

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





--- Additional comments from [EMAIL PROTECTED] Thu Mar 17 10:59:16 -0800 
2005 ---
Seems to be miscommunication.  trace precedents, trace depedents.  The
attached file 44828.sxc was created by 1.1.4 and uses trace precedents as an
example.  It shows arrows, squares, etc.  Double click on all these relation
icons.  Then refer to the original description in this issue.  Hope that this
example helps.

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

-
To unsubscribe, 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 44828] New - tools-detective-trace for cross-sheet formulae

2005-03-11 Thread rjahn1
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=44828
  Issue #:|44828
  Summary:|tools-detective-trace for cross-sheet formulae
Component:|Spreadsheet
  Version:|OOo 1.1.4
 Platform:|All
  URL:|
   OS/Version:|All
   Status:|UNCONFIRMED
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|spreadsheet
  Reported by:|rjahn1





--- Additional comments from [EMAIL PROTECTED] Fri Mar 11 07:54:35 -0800 
2005 ---
tools  detective  trace for cross-sheet formulae

symptom:
indicates only the presence of related cells on a different sheet
does not provide the ID of the related cells on a different sheet
could not follow or toggle between related cells on different sheets

previous issue search:
description: detective trace  any word
summary: detective trace  any word
defect, spreadsheet, code
status  all, resolution  all, priority  all
platform  all, OS  all, version  all

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

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


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