[sw-issues] [Issue 115708] Master document drops ove r-sized graphics in a frame

2010-11-21 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=115708
 Issue #|115708
 Summary|Master document drops over-sized graphics in a frame 
   Component|Word processor
 Version|OOo 3.2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|writerneedsconfirm
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Mon Nov 22 00:58:41 
+ 2010 ---
As of November 21, 2010, this bug has caused a stop on some documentation from
the documentation project. I first became aware of the bug when I saw this
(edited by me) post from Jean Hollis Weber 

When I open the master document, the chapter files appear to load up
correctly. When I export to PDF, the first (automatic) step is to
repaginate, at which point a large random sample of the figures
disappear, making the resulting PDF useless. The pix are still in the
file, because they reappear after closing and reopening (or when I do
various other things), but every time I export to PDF, some disappea
again.

The same thing happens if I export to ODT, unlink the chapter files
(thus embedding them), and then work with one big ODT.

I've tried changing my memory settings in a way that solved a similar
problem previously, but it's not helping now.

Does anyone have any idea what's going on? And better still, how to fix
it? I'm using OOO3.3RC4 on Ubuntu 10.10, but the same things happens
with the OOo3.2 that comes with Ubuntu. I have not tried this on any
version of Windows.

The files are here, conveniently zipped into one file:
http://www.oooauthors.org/english/userguide3/gs3/V3_3_revisions/OOo3.3-drafts.zip/view

Or you can go to the folder and download them one at a time.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 115708] Master document drops ove r-sized graphics in a frame

2010-11-21 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=115708


User pitonyak changed the following:

What|Old value |New value

 Summary|Master document drops over|Master document drops over
|-sized graphics in a frame|-sized graphics in a frame
|  |





--- Additional comments from piton...@openoffice.org Mon Nov 22 01:18:24 
+ 2010 ---
OK, so I cannot attach the files because they are too large, sorry about that.

Many people have spent many hours tracking this issue. I determined the 
following:

Open the Master document and everything looks fine. Use Tools  Update  Update
All to perform a full update / refresh and images disappear (Many images from
Chapter 3, for example).

Removing the frames fixes the problem, but, for certain Documentation output
methods we really require the frames. The important take away is that this
appears to be related to the graphic in the frame.

Now, edit chapter 3. I noticed the following characteristics:

* All graphics are anchored as a character.

* While editing chapter 3 directly, graphics visible in the master document
provide the option to anchor the image to the frame, those that are not visible
in the master document do not include Frame as an option.

* Graphics not visible in the master document use some variation of a percentage
on the width (rather than a fixed amount) or using auto-size.

Using the following steps causes the image to become visible:

1. Use the Picture dialog (double click on the figure) and set Keep Ratio, do
not check autosize or relative. Set the size just a wee bit smaller (by say
0.05 inches)

2. Verify that the picture is in its own paragraph anchored as a character (and
it should be) and then set the paragraph style to OOoFigure, which it should
already be, but, it is not. The result of this is that the figure is centered in
the frame so that no part of the image touches the left or right edge of the
frame. For a bit, I was manually resizing the frame, but, before I knew it, My
development version of OOo was crashing, so, I stopped that.

That should do it. Refresh the Master document and the images appear. So, it
seems that this is somehow related to image size in the frame.



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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 114662] Search with attributes er ases all text

2010-09-21 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114662
 Issue #|114662
 Summary|Search with attributes erases all text
   Component|api
 Version|OOo 3.2.1
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Tue Sep 21 20:05:16 
+ 2010 ---
This bug was reported to me on the OOo mailing list.

http://www.oooforum.org/forum/viewtopic.phtml?t=106461

I created a small test case and verified this on my computer.

Consider this small program, looks innocent... Find something that matches an
attribute (no replacing). Unfortunately, if you search for the wrong attribute,
it will find everything in the document and delete it.

Sub SearchTest(oProps())
  Dim oFind
  Dim oFound
  Dim oDoc

  oDoc = ThisComponent

  oFind = oDoc.createSearchDescriptor()
  With oFind
   .SearchString  = .*
   .SearchRegularExpression = True
   .SearchAll = True
  End With
  oFind.setSearchAttributes(oProps)


  oFound = oDoc.FindAll(oFind)
  print   oFound.count   for   oProps(0).Name
End Sub

Here is how you can call the test macro Note that this is very simple.

Sub FindCharStyle
  Dim SearchProps(0) as new com.sun.star.beans.PropertyValue

  'Matches everything, and erases everything that it finds.
  searchProps(0).name = CharStyleName
  searchProps(0).value = _OOoComputerLiteral
  searchProps(0).value = xyzzy
  '??SearchTest(searchProps)

  'This finds things as expected
  searchProps(0).name = CharWeight
  searchProps(0).value = 100
  SearchTest(searchProps)

  'Fails
  searchProps(0).Name = CharFontName
  searchProps(0).Value = Times New Roman
  searchProps(0).Value = Albany
  SearchTest(searchProps)

  'Finds stuff, but erases everything that it finds.
  searchProps(0).Name = CharFontNameAsian
  searchProps(0).Value = HG Mincho Light J
  '??SearchTest(searchProps)

  'Works
  searchProps(0).Name = CharFontPitch
  searchProps(0).Value = 2
  SearchTest(searchProps)

  'Works
  searchProps(0).Name = CharNoHyphenation
  searchProps(0).Value = True
  SearchTest(searchProps)
End Sub

Searching on CharStyle name always matches, and then it erases all the text that
it finds (well, it replaces it with an empty string). The same for
CharFontNameAsian.

Searching on CharFontName simply never matches, which is also a bug.

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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 112722] Format statement problem with dd and nn

2010-06-28 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112722





--- Additional comments from piton...@openoffice.org Mon Jun 28 12:28:24 
+ 2010 ---
When run, the macro demonstrates, on at least the two test systems, that nn, by
itself, displays the two digit hour and that when used in the last format string
between two colons it displays the three digit day. 

I tested with the two digit NN and this returned the same result as nn.

You describe the values in the Help system for NN and NNN. Where in the help
system? What topic shows this? For the Basic Language and the Format statement,
none of these are documented. I do not even know where I obtained my original
list (but I can guess). 

If the help documents NN and NNN as you describe, then it is in error because NN
does not show the three digit day (at least not on my computer). NNN does appear
to display the full day (the same as ).

On a whim, I added nnn and received the full day name,  for the full day
name and a comma, and n for the full day name, a comma, and an n.

I suppose that I really should simply read the code. 

Please point me to the full list of format specifiers in the help (how do I find
them). I want to see if , @, and ! are also documented as working. 


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

-
To unsubscribe, e-mail: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 112722] Format statement problem with dd and nn

2010-06-26 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112722
 Issue #|112722
 Summary|Format statement problem with dd and nn
   Component|scripting
 Version|OOo 3.2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|kr
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Sat Jun 26 13:05:12 
+ 2010 ---
I see errors in the 64-bit Linux release with this simple macro

Sub strangeFormats
  Dim i%
  Dim d As Date
  d = now()
  Dim s$
  Dim formats
  formats = Array(q, y, yy, , _
  m, mm, mmm, , _
  d, dd, ddd, , d, dd, _
  w, ww, h, hh, n, nn, s, ss, _
  t, c, _
  d// h:nn:ss)
  For i = LBound(formats) To UBound(formats)
s = s  formats(i)   =   Format(d, formats(i))  CHR$(10)
  Next
  MsgBox s
End Sub

Individually, each format specifier works correctly. The two in question:
dd = Two digit day
nn = two digit minute

Incorrect:
d// h:nn:ss = nn produces the expected output from ddd, namely the
three letter day name (for me this was fri). 

I asked for testing on the dev mailing list and Johnny Rosenberg tested on a
32-bit standard build running on Ubuntu. He had the following to say:

**

Same happens for me, except that day name is two letters (in Swedish):

d// h:nn:ss = 26-juni-2010 9:lö:46

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

-
To unsubscribe, e-mail: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 112722] Format statement problem with dd and nn

2010-06-26 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112722





--- Additional comments from piton...@openoffice.org Sat Jun 26 13:06:29 
+ 2010 ---
I assume that this will be assigned to sb as usual... but I will not make that
call for now.

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

-
To unsubscribe, e-mail: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84159] Crash while closing the do cument: SfxItemPool cannot contain more than 2 ^16 non-poolable items

2010-06-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84159





--- Additional comments from piton...@openoffice.org Wed Jun 16 12:44:00 
+ 2010 ---
The crash occurs when the document is closed, not when it is saved... 

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84159] Crash while closing the do cument: SfxItemPool cannot contain more than 2 ^16 non-poolable items

2010-06-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84159





--- Additional comments from piton...@openoffice.org Thu Jun 17 01:10:56 
+ 2010 ---
Created an attachment (id=70043)
Using standard OOo version 3.2.1, crashes when document is 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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84159] Crash while closing the do cument: SfxItemPool cannot contain more than 2 ^16 non-poolable items

2010-06-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84159





--- Additional comments from piton...@openoffice.org Thu Jun 17 01:13:47 
+ 2010 ---
cornouws, can you try loading the latest version of AndrewMacro.odt that I
uploaded and then close the document (do not save it first). When I try using
the current 64-bit version on Fedora and the latest windows release on XP, there
is a crash on close (just load then close).

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 112431] com.sun.star.util.TextSea rch does not support documented options.

2010-06-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112431
 Issue #|112431
 Summary|com.sun.star.util.TextSearch does not support document
|ed options.
   Component|api
 Version|OOo 3.2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Wed Jun 16 02:05:12 
+ 2010 ---
Originated here:
http://www.oooforum.org/forum/viewtopic.phtml?t=101554postdays=0postorder=ascstart=0sid=245f48dd73d845f7106cd6e8339de913

To use the com.sun.star.util.TextSearch service for a case-insensitive search,
the search options state that ALL_IGNORE_CASE is deprecated and that
TransliterationModulesNew should be used. See:
http://api.openoffice.org/docs/common/ref/com/sun/star/util/SearchFlags.html

First, note that TransliterationModules has a constant for IGNORE_CASE that
works, but, the document specifically names another set of constants.
http://api.openoffice.org/docs/common/ref/com/sun/star/i18n/TransliterationModules.html

You can see the new constants here:
http://api.openoffice.org/docs/common/ref/com/sun/star/i18n/TransliterationModulesNew.html

If I use these constants, I can use UPPERCASE_LOWERCASE or LOWERCASE_UPPERCASE
with no problem. I am not, however, able to use IGNORE_CASE while setting the
transliteration flags.

I expect the following macro to find both aaa and AAA

Sub StringTextSearch
  Dim oTextSearch   ' TextSearch service
  Dim sStrToSearch As String' String to serach
  Dim sMatchString As String' String that was found
  Dim aSearchResult '
http://api.openoffice.org/docs/common/ref/com/sun/star/util/SearchResult.html
  Dim rank As Long
  Dim iMatchStartPos As Long
  Dim iMatchLen As Long
  Dim aSrcOpt As New com.sun.star.util.SearchOptions
  Dim s$
  Dim enLocale As New com.sun.star.lang.Locale
  
  enLocale.Language = en
  enLocale.Country = US
  
  oTextSearch = CreateUnoService(com.sun.star.util.TextSearch)
  s = 

  With aSrcOpt

'http://api.openoffice.org/docs/common/ref/com/sun/star/util/SearchFlags.html
.searchFlag = com.sun.star.util.SearchFlags.REG_EXTENDED
.Locale = enLocale
'Supports ABSOLUTE, REGEXP, and APPROXIMATE
.algorithmType = com.sun.star.util.SearchAlgorithms.REGEXP
.searchString = a+

'This does not work.
.transliterateFlags = 
com.sun.star.i18n.TransliterationModulesNew.IGNORE_CASE

'This works
'.transliterateFlags =
com.sun.star.i18n.TransliterationModulesNew.UPPERCASE_LOWERCASE
  End With

  oTextSearch.setOptions(aSrcOpt)

  sStrToSearch = aaa hello AAA 
  aSearchResult = oTextSearch.searchForward(sStrToSearch, 0,Len(sStrToSearch)-1 
)
  'Print aSearchResult.subRegExpressions

  REM subRegExpressions has value zero if no match...
  Do While aSearchResult.subRegExpressions  0
'Print  + LBound(aSearchResult.startOffset) + : +
UBound(aSearchResult.startOffset)
rank = aSearchResult.subRegExpressions - 1
iMatchStartPos = aSearchResult.startOffset(rank) + 1
iMatchLen = aSearchResult.endOffset(rank) - aSearchResult.startOffset(rank)
sMatchString = Mid(sStrToSearch, iMatchStartPos, iMatchLen)
s = s  ( + LBound(aSearchResult.startOffset)  : +
UBound(aSearchResult.startOffset) ) =   sMatchString  CHR$(10)

aSearchResult = oTextSearch.searchForward(sStrToSearch,
aSearchResult.endOffset(rank)+1,Len(sStrToSearch)-1 )
  Loop
  MsgBox s
End Sub

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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 112383] CLng(HFFFFFFFF) fails on 64-bits rather than returning -1

2010-06-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112383
 Issue #|112383
 Summary|CLng(H) fails on 64-bits rather than return
|ing -1
   Component|scripting
 Version|OOo 3.2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|kr
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Mon Jun 14 13:13:01 
+ 2010 ---
The current 32-bit windows versions, and on older Linux 32-bit versions (I did
not check current Linux 32-bit versions), the following two lines both print -1.

  print H
  print CLng(H)

On the 64-bit Linux version, 

First, I see :4294967295
Followed by:Inadmissible value or data type. Overflow.

I initially posted the following probe to the dev mailing list:

I do not know when the change was made, but, CLng used to be able to convert
negative values represented as Hex, but, not in 3.20. I last tested in version
2.x. Here is my latest code to show this:


Sub ExampleCLngWithHex
  On Error Resume Next
  Dim s$, i%
  Dim v()
  v() = Array(HF, HFF, HFFF, H,_
  HF, HFF, HFFF, H,_
  HF,_
  HE,  HFE, HFFE, HFFFE,_
  HE,  HFE, HFFE, HFFFE,_
  HE)
  For i = LBound(v()) To UBound(v())
s = s  i   CLng(  v(i)  ) = 
s = s  CLng(v(i))
s = s  CHR$(10)
  Next
  MsgBox s
End Sub


This fails on CLng(H) rather than returning -1.  Add an extra F and
it quietly fails internally and returns 0. 

Serg Bormant helped me narrow the problem to the 64-bit version. Thanks Serg!

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

-
To unsubscribe, e-mail: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[script-issues] [Issue 112383] CLng(HFFFFFFFF) fails on 64-bits rather than returning -1

2010-06-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112383


User pitonyak changed the following:

What|Old value |New value

Platform|All   |Opteron/x86_64





--- Additional comments from piton...@openoffice.org Mon Jun 14 13:13:59 
+ 2010 ---
Changed the platform to show x86_64.

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

-
To unsubscribe, e-mail: issues-unsubscr...@script.openoffice.org
For additional commands, e-mail: issues-h...@script.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 111970] ConfigurationProvider no longer supports enableasync

2010-05-31 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111970
 Issue #|111970
 Summary|ConfigurationProvider no longer supports enableasync
   Component|framework
 Version|OOO300m9
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|sb
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Mon May 31 17:00:17 
+ 2010 ---
Stephan, as you requested :-)

When http://qa.openoffice.org/issues/show_bug.cgi?id=101955 was integrated into
DEV300m48, Support for enableasync was accidentally left out. 

Able to test by running the following macro line take from Andrew Pitonyak's
macro formatter.

 oConfigProvider = GetProcessServiceManager().createInstanceWithArguments(_
 com.sun.star.configuration.ConfigurationProvider,_
 Array( CreateProperty( enableasync, bEnableSync ) ) )

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

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84159] Crash while closing the do cument: SfxItemPool cannot contain more than 2 ^16 non-poolable items

2010-02-03 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84159





--- Additional comments from piton...@openoffice.org Thu Feb  4 01:03:19 
+ 2010 ---
Yeah, I have a stack of changes that I have not added because my document
crashes. I have only run across a few documents that crash because of this
issue, but, when it does, you are done making changes... :-)

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 107802] Export to PDF fails with some graphics.

2009-12-21 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107802





--- Additional comments from piton...@openoffice.org Tue Dec 22 00:04:13 
+ 2009 ---
Given the description, I see how I missed it. Good catch hdu!

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

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 107802] Export to PDF fails with some graphics.

2009-12-20 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107802
 Issue #|107802
 Summary|Export to PDF fails with some graphics.
   Component|Presentation
 Version|OOo 3.1.1
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|graphicsneedsconfirm
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Mon Dec 21 03:10:35 
+ 2009 ---
Posting for another, but the starting point was an Impress document with three
slides. Two slides export fine, one slide shows nothing in Acrobat reader. To my
knowledge, this has only been tested on Linux.

On Fedora 12 (64-bit), I generate the PDF. If I load the PDF in acrobat, I see
at least some of the shapes flash on the screen, and then they disappear. 

I will attach 1p_001.odp, the original Impress document, and the generated PDF. 

I then ran the following commands:

[a...@pitonyak g]$ pdftops 1p_001.pdf 1p_001.ps
Error (512): Unknown operator 'l324'
Error (513): Too few (1) args to 'm' operator
Error (1001): Unknown operator 'l612'
Error (1004): Too few (1) args to 'm' operator
Error (512): Unknown operator 'l324'
Error (513): Too few (1) args to 'm' operator
Error (1001): Unknown operator 'l612'
Error (1004): Too few (1) args to 'm' operator
[a...@pitonyak g]$ ps2pdf 1p_001.ps 1p_001_new.pdf
[a...@pitonyak g]$ acroread 1p_001_new.pdf 

The resulting PDF is usable. Note the errors while converting from PDF to PS.

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

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 107802] Export to PDF fails with some graphics.

2009-12-20 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107802





--- Additional comments from piton...@openoffice.org Mon Dec 21 03:12:08 
+ 2009 ---
Created an attachment (id=66740)
Impress document that generates the 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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 107802] Export to PDF fails with some graphics.

2009-12-20 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107802





--- Additional comments from piton...@openoffice.org Mon Dec 21 03:12:50 
+ 2009 ---
Created an attachment (id=66741)
Incorrectly generated PDF 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: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[graphics-issues] [Issue 107802] Export to PDF fails with some graphics.

2009-12-20 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107802





--- Additional comments from piton...@openoffice.org Mon Dec 21 03:16:37 
+ 2009 ---
I ran these tests and generated these files based on a complaint from another
user. After verifying the issue, I am filing the bug. I spent time searching for
similar reports, this is the best that I could find, but I believe them to be
different:
39292
102115



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

-
To unsubscribe, e-mail: issues-unsubscr...@graphics.openoffice.org
For additional commands, e-mail: issues-h...@graphics.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103773] Basic editor always save to a new file

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103773


User pitonyak changed the following:

What|Old value |New value

  CC|'ab'  |'ab,pitonyak'

 Version|OOo 2.4.1 |OOo 3.1





--- Additional comments from piton...@openoffice.org Tue Sep 29 22:23:58 
+ 2009 ---
I can confirm with version 3.1.0 on Fedora.

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

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 103773] Basic editor always save to a new file

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=103773


User pitonyak changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW





--- Additional comments from piton...@openoffice.org Tue Sep 29 22:38:32 
+ 2009 ---
To avoid the obvious no, I mean 3.1.1, I installed the latest from the OOo web
site and tested again. The issue is confirmed, therefore, on the 64-bit RPM 
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: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 36155] Add support for hanging pu nctuation

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=36155





--- Additional comments from piton...@openoffice.org Tue Sep 29 23:14:19 
+ 2009 ---
As of OOo 3.1.1, this is not supported. I did not even know that such an option
existed. I was not aware that this was common anywhere. A good example is
provided here:

http://en.wikipedia.org/wiki/Hanging_punctuation

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[gsl-issues] [Issue 71119] crash for creating a edita ble Qt object in KDE

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=71119





--- Additional comments from piton...@openoffice.org Tue Sep 29 23:27:05 
+ 2009 ---
My opinion is that this is likely no longer an issue. I intended to test this
problem, but the report does not provide sufficient information for me to 
attempt. 

I see no activity on the scim-qtimm project since 2005.
http://www.scim-im.org/projects/scim_qtimm

jianhuajiao, can you verify that this is still an issue. If not, please close
the issue. If this is still an issue, then please provide detailed instructions
on how to reproduce the problem.

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

-
To unsubscribe, e-mail: issues-unsubscr...@gsl.openoffice.org
For additional commands, e-mail: issues-h...@gsl.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 84048] CSV import brakes on in-te xt double-quotes.

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=84048





--- Additional comments from piton...@openoffice.org Tue Sep 29 23:47:55 
+ 2009 ---
According to the standard, 

If double-quotes are used to enclose fields, then a double-quote
appearing inside a field must be escaped by preceding it with
another double quote.

See: http://tools.ietf.org/html/rfc4180

OOo does properly support the standard and import a double quote escaped by a
double quote. I recommend that the reporter use a script or macro to transform
the input to a valid CSV file before import.

Strictly speaking, A backslash is wrong. The requester, however, is asking that
OOo be modified to support a method that used to be common. I cannot comment on
whether or not this was ever standard, just common. I would be inclined to call
this an enhancement request, not a defect report. 

Test by pasting this into a Calc document:

aaa,bbb,ccc
aaa,b\bb,ccc


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

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 89045] soffice.exe doesn't get ki lled when OO file closure or applciation termi nation

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89045





--- Additional comments from piton...@openoffice.org Tue Sep 29 23:55:19 
+ 2009 ---
 I think that more information is required. If there is an issue with starting
OOo and then existing OOo, yet a copy of OOo is still running, then it is likely
the quick starter. Chucha, please verify that this is this problem, and if so,
then please close your issue.

Note that to date, Chucha has not responded. 

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

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 88735] Calc garbling whole worksh eet when saving as XLS

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88735





--- Additional comments from piton...@openoffice.org Tue Sep 29 23:56:19 
+ 2009 ---
fireball69, please verify that this problem still exists. If yes, please attach
a sample document so that we can reproduce the problem.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 85153] Printing overlapped images produces white page

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85153





--- Additional comments from piton...@openoffice.org Wed Sep 30 00:02:04 
+ 2009 ---
Can you post a small document that demonstrates this problems?

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 89208] Increment Increase Auto fi ll error

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89208





--- Additional comments from piton...@openoffice.org Wed Sep 30 00:07:13 
+ 2009 ---
This sounds like an enhancement request, not a defect. The help discusses how to
create a single selection, not multiple selections.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[framework-issues] [Issue 92623] Automatic appending filety pe

2009-09-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=92623





--- Additional comments from piton...@openoffice.org Wed Sep 30 00:10:16 
+ 2009 ---
juice_malone, can you verify this issue? I have never had trouble with OOo not
including file extensions.

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

-
To unsubscribe, e-mail: issues-unsubscr...@framework.openoffice.org
For additional commands, e-mail: issues-h...@framework.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 84159] Crash while closing the do cument: SfxItemPool cannot contain more than 2 ^16 non-poolable items

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


User pitonyak changed the following:

What|Old value |New value

  CC|'tjfrazier'   |'pitonyak,tjfrazier'





--- Additional comments from piton...@openoffice.org Wed Sep  9 12:51:06 
+ 2009 ---
Added myself to the CC list because 104896 was marked as a duplicate of this.
Seems that this bug now causes AndrewMacro.odt to crash.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 104896] AndrewMacro.odt crashes O Oo on exit

2009-09-08 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104896
 Issue #|104896
 Summary|AndrewMacro.odt crashes OOo on exit
   Component|Word processor
 Version|OOo 3.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|writerneedsconfirm
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Tue Sep  8 14:46:15 
+ 2009 ---
If you load AndrewMacro.odt (http://www.pitonyak.org/AndrewMacro.odt), you can
inspect and edit the document with no problems. When you exit OOo, however, OOo
crashes (or freezes the closed window). This has been observed with similar
variations on Windows XP and Ubuntu. 

I will perform more tests after I upload a cpoy of the document known to cause
the problem.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 104896] AndrewMacro.odt crashes O Oo on exit

2009-09-08 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104896





--- Additional comments from piton...@openoffice.org Tue Sep  8 14:47:05 
+ 2009 ---
Created an attachment (id=64619)
AndrewMacro.odt


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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 104896] AndrewMacro.odt crashes O Oo on exit

2009-09-08 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104896





--- Additional comments from piton...@openoffice.org Tue Sep  8 16:56:42 
+ 2009 ---
Splitting the document allows both portions to be read and closed with no 
issues, 

I do remember a discussion, that I cannot find, regarding a large document that
used too many styles in a single document. This document uses the same styles
many times, as opposed to different styles.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 104896] AndrewMacro.odt crashes O Oo on exit

2009-09-08 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104896





--- Additional comments from piton...@openoffice.org Wed Sep  9 01:24:10 
+ 2009 ---
On Fedora, this triggers a sending of an email with an error description.This
does not occur from Windows.



Writer



Open, then close AndrewMacro.odt




?xml version=1.0 encoding=UTF-8?
!DOCTYPE errormail:errormail PUBLIC -//OpenOffice.org//DTD ErrorMail 1.0//EN
errormail.dtd
errormail:errormail xmlns:errormail=http://openoffice.org/2002/errormail;
usertype=
reportmail:mail xmlns:reportmail=http://openoffice.org/2002/reportmail;
version=1.1 feedback=true email=and...@pitonyak.org
reportmail:titleWrite/reportmail:title
reportmail:attachment name=description.txt media-type=text/plain
class=UserComment/
reportmail:attachment name=stack.txt media-type=text/plain class=pstack
output/
/reportmail:mail
officeinfo:officeinfo xmlns:officeinfo=http://openoffice.org/2002/officeinfo;
build=310m11(Build:9399) platform=unxlngx6.pro language=
exceptiontype=11 product=OpenOffice.org 3.1
procpath=/opt/openoffice.org3/program//
systeminfo:systeminfo xmlns:systeminfo=http://openoffice.org/2002/systeminfo;
systeminfo:System name=Linux version=#1 SMP Mon Aug 24 17:17:40 EDT 2009
build=2.6.29.6-217.2.16.fc11.x86_64 locale=en_US.UTF-8/
systeminfo:CPU type=x86_64/
/systeminfo:systeminfo
errormail:Stack type=Linux
errormail:StackInfo pos=0 ip=0x7fe7527727f7 rel=0x367f7
name=libuno_sal.so.3 path=/opt/openoffice.org/ure/lib//
errormail:StackInfo pos=1 ip=0x7fe7527733fa rel=0x373fa
name=libuno_sal.so.3 path=/opt/openoffice.org/ure/lib//
errormail:StackInfo pos=2 ip=0x3772a0eee0 rel=0xeee0
name=libpthread.so.0 path=/lib64//
errormail:StackInfo pos=3 ip=0x7fe75248a8f0 rel=0x2e98f0
name=libstdc++.so.6 path=/opt/openoffice.org/ure/lib/
ordinal=_ZTVN10__cxxabiv120__si_class_type_infoE+0x10/
/errormail:Stack
errormail:Checksums type=MD5
errormail:Checksum sum=0x4F494129CB99322C58F8C9B8E6D2EDB5 bytes=2018264
file=libuno_sal.so.3/
errormail:Checksum sum=0x4F494129CB99322C58F8C9B8E6D2EDB5 bytes=2018264
file=libuno_sal.so.3/
errormail:Checksum sum=0x8AE75A0944A3E28C36B04EE79077D15E bytes=148528
file=libpthread.so.0/
errormail:Checksum sum=0x4EF5127CE5EB5FCE780CDF1C68DBF9D5 bytes=969488
file=libstdc++.so.6/
/errormail:Checksums
/errormail:errormail


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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 104896] AndrewMacro.odt crashes O Oo on exit

2009-09-08 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=104896





--- Additional comments from piton...@openoffice.org Wed Sep  9 05:27:22 
+ 2009 ---
Interesting 

I noticed that on Windows, it seems to freeze that window. If I have another
document open, I can use that still open document to tell OOo to exit. 

I usually have my document open on Linux rather than 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: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sc-issues] [Issue 96587] Notes API does not support text formatting

2009-01-17 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96587


User pitonyak changed the following:

What|Old value |New value

  CC|'bmarcelly'   |'bmarcelly,pitonyak'





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

-
To unsubscribe, e-mail: issues-unsubscr...@sc.openoffice.org
For additional commands, e-mail: issues-h...@sc.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 98158] Can not sort cross referen ce data

2009-01-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=98158
 Issue #|98158
 Summary|Can not sort cross reference data
   Component|Word processor
 Version|OOo 3.0
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|writerneedsconfirm
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Fri Jan 16 19:21:19 
+ 2009 ---
Text in cross reference fields are not used during a sort. I first saw the
problem in a text table.

I created a text table. One column contains a reference to a section. Select the
data and sort on the column with the references. (Use Table - Sort)

Next, I added the references in the text one per line. Select the references.
Use Tools - Sort

Sort does not sort based on the reference data. I suppose that this is the same
reason that you can not search for the text contained in a field.

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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 98158] Can not sort cross referen ce data

2009-01-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=98158





--- Additional comments from piton...@openoffice.org Fri Jan 16 19:22:16 
+ 2009 ---
Created an attachment (id=59437)
Contains example data that can be sorted.


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

-
To unsubscribe, e-mail: issues-unsubscr...@sw.openoffice.org
For additional commands, e-mail: issues-h...@sw.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 97291] Incorrect graphic size and aspect ration on insert.

2008-12-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97291
 Issue #|97291
 Summary|Incorrect graphic size and aspect ration on insert.
   Component|api
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|pitonyak





--- Additional comments from piton...@openoffice.org Tue Dec 16 00:03:05 
+ 2008 ---
Insert an image into a table cell using the API. If the image size is too wide
for the table cell, then the image sizes incorrectly. This process works just
fine when using the GUI.

I saw this behavior after inserting the image into a table cell using the
following code:

  oDoc = ThisComponent
  oText = oDoc.getText()
  oTable=oDoc.getTextTables().getByName(Table1)
  oImage = oDoc.createInstance( com.sun.star.text.GraphicObject )
   
  oImage.GraphicURL = file:///andrew0/home/andy/Pelosi.jpg
   
   oImage.AnchorType = com.sun.star.text.TextContentAnchorType.AS_CHARACTER
   oCell = oTable.getCellByPosition( 0, 0 )

   oText = oCell.getText()
   oCursor = oText.createTextCursor()
   oText.insertTextContent( oCursor, oImage, False )

When the image is inserted into the table, a height and width are assigned. The
assigned height and width have the correct aspect ration.Unfortunately, the
width is wider than the table cell.

After inserting the image, look at the actual height and width from the graphic
dialog. The values are completely wrong. Of course, you can't check the actual
size of the image (see http://www.openoffice.org/issues/show_bug.cgi?id=85105).

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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 97291] Incorrect graphic size and aspect ration on insert.

2008-12-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97291





--- Additional comments from piton...@openoffice.org Tue Dec 16 00:04:21 
+ 2008 ---
Created an attachment (id=58837)
Example of the resulting problem, and contains the macro.


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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 85105] ActualSize of com.sun.star .text.TextGraphicObject

2008-12-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=85105





--- Additional comments from piton...@openoffice.org Tue Dec 16 00:05:26 
+ 2008 ---
Although issue 97291 is different, they may have related solutions:

http://www.openoffice.org/issues/show_bug.cgi?id=97291


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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[api-issues] [Issue 97291] Incorrect graphic size and aspect ration on insert.

2008-12-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=97291





--- Additional comments from piton...@openoffice.org Tue Dec 16 00:08:58 
+ 2008 ---
I should mention that this problem did NOT exist in OOo 2.4, so this error is a
 regression.

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

-
To unsubscribe, e-mail: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[sw-issues] [Issue 93226] spellchecker does not work (3.0)

2008-09-10 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=93226





--- Additional comments from [EMAIL PROTECTED] Thu Sep 11 04:22:57 + 
2008 ---
Similar to:
Issue 91739 
Issue 92681 
Issue 92771 

I used OOo 3.0 RC1

All en-US words are marked as spelled incorrectly on a Linux FC9 AMD64 system.

I installed RC1 on FC9, and I do not appear to have en_US available for spell
check...

I did a test. First, I looked in
/opt/openoffice.org3/share/uno_packages/cache/uno_packages/za2jX9_/dict-en.oxt
for files containing en_US. I found two files

th_en_US_v2.dat
th_en_US_v2.idx

Next, I looked at a dev build in
/opt/ooo-dev3/share/uno_packages/cache/uno_packages/Bo3dC6_/dict-en.oxt. I found
a few more files.

en_US.aff
en_US.dic
README_en_US.txt
th_en_US_v2.dat
th_en_US_v2.idx

If I copy the missing files, then everything works. The file description.xml
differed. I looked at the differences and noticed:

[EMAIL PROTECTED] opt]# diff ./openoffice.org3/.../description.xml
./ooo-dev3/.../description.xml
4c4
 identifier value=org.openoffice.en.hunspell.dictionaries /
---
 identifier value=org.openoffice.en.hunspell.dictionary /
6c6
 name lang=enEnglish spelling and hyphenation dictionaries and
thesaurus/name
---
 name lang=enSpelling and hyphenation dictionary for English/name

Interesting. Now that I think about it, during the install using rpm -i *.rpm,
it stated that hunspell was already installed, but it did not generate an error.

Copying the missing files caused things to work. 

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

-
To unsubscribe, 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 91739] Spell check marks correct words as wrong and misspelled words as correct

2008-09-10 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91739





--- Additional comments from [EMAIL PROTECTED] Thu Sep 11 04:26:25 + 
2008 ---
See http://qa.openoffice.org/issues/show_bug.cgi?id=93738 for a possible
workaround for advanced users (if you do not mind installing a development
version and manually copying files around).

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

-
To unsubscribe, 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 87362] Regexp find/replace with f ormat and undo

2008-07-02 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87362





--- Additional comments from [EMAIL PROTECTED] Wed Jul  2 23:58:31 + 
2008 ---
Thanks for your fast reply...

Can you either set this to worksforme, or shall I do this?

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

-
To unsubscribe, 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 87362] Regexp find/replace with f ormat and undo

2008-07-01 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=87362


User pitonyak changed the following:

What|Old value |New value

  CC|''|'pitonyak'





--- Additional comments from [EMAIL PROTECTED] Wed Jul  2 04:49:18 + 
2008 ---
I should say that the description and and the attachment are excellent examples
of how a bug report should be! 

I tried to verify this bug using development release m22 on 64-bit Fedora 9
Linux. I am using the 32-bit release, which I only mention in case there is a
64-bit development release.

I am not able to reproduce this bug. 

csernica, can you recheck this with the latest development release of OOo?

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

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


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



[sw-issues] [Issue 91060] Applied Numbering style ch anges after save.

2008-06-25 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91060
 Issue #|91060
 Summary|Applied Numbering style changes after save.
   Component|Word processor
 Version|OOo 3.0 Beta
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Jun 25 14:48:56 + 
2008 ---
I use a custom numbering style to number headings.

I save the document.

Load the document.

Apply my heading style, and the custom numbering style, and the numbering starts
at 1. 

This acts like it restarts numbering each time...

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

-
To unsubscribe, 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 91060] Applied Numbering style ch anges after save.

2008-06-25 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91060





--- Additional comments from [EMAIL PROTECTED] Wed Jun 25 14:50:09 + 
2008 ---
Created an attachment (id=54735)
Demonstrates bad numbering


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

-
To unsubscribe, 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 91060] Applied Numbering style ch anges after save.

2008-06-25 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=91060





--- Additional comments from [EMAIL PROTECTED] Wed Jun 25 14:51:10 + 
2008 ---
Side note, I saw this issue with development build 20 and 21. The problem does
not exist in 2.4 or any production release.

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

-
To unsubscribe, 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 89527] Current Document not showi ng up in Library during macro assigment

2008-06-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89527





--- Additional comments from [EMAIL PROTECTED] Sun Jun 15 23:03:18 + 
2008 ---
This problem still exists in the m19 development build.

The issue with a Calc function, however, is 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]



[sc-issues] [Issue 89604] autocorrection can't be un done

2008-06-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89604





--- Additional comments from [EMAIL PROTECTED] Sat Jun 14 12:00:04 + 
2008 ---
Off hand, I think that it is working as it should. Based on your feedback, I
performed a few experiments.

I found a word that would change with auto-correct. 

1. Type word in the cell. 
2. Type a space.
3. Auto-correct changes the word
4. Use Ctrl+Z to change the word back.

The example above worked because there was a space after the word. Now, lets try
another one.

1. Pre F2 to enter edit mode.
2. Enter the word
3. Use Shift+Home to select the word
4. Press Tab to leave the cell

no time, wife handing me a baby...

Note that on the auto-correct menu, you can suspend any of the replacement
options (such as table lookup).

OOo does have a smart tag feature, I tested it in version 2.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 89527] Current Document not showi ng up in Library during macro assigment

2008-06-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89527





--- Additional comments from [EMAIL PROTECTED] Sun Jun 15 01:54:26 + 
2008 ---
I suspect that this bug is related to the fact that a macro in a Calc document
is not visible as a Calc function.

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

-
To unsubscribe, 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 89527] Current Document not showi ng up in Library during macro assigment

2008-06-13 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89527


User pitonyak changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Keywords|  |oooqa





--- Additional comments from [EMAIL PROTECTED] Sat Jun 14 01:59:41 + 
2008 ---
Only  My Macros and OpenOffice.org macros are available in the list.

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

-
To unsubscribe, 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 89604] autocorrection can't be un done

2008-06-13 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89604





--- Additional comments from [EMAIL PROTECTED] Sat Jun 14 02:05:54 + 
2008 ---
Please provide an example of how to cause something to auto-correct. I tried to
verify this bug, but since I do not know how to trigger auto-correction...


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

-
To unsubscribe, 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 73968] Opening a password protect ed file looses focus after loading

2008-06-03 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=73968


User pitonyak changed the following:

What|Old value |New value

  CC|'jwt' |'jwt,pitonyak'





--- Additional comments from [EMAIL PROTECTED] Wed Jun  4 03:35:48 + 
2008 ---
I see this with 3.0 Beta on 64-bit Fedora 9. I am not using a 64-bit build, just
the standard 32-bit.

Adding myself to the CC list.

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

-
To unsubscribe, 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 89169] Glitch in Word Count

2008-06-01 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89169


User pitonyak changed the following:

What|Old value |New value

  CC|'aziem'   |'aziem,pitonyak'





--- Additional comments from [EMAIL PROTECTED] Mon Jun  2 03:01:41 + 
2008 ---
I see the same problem using the OOo 3.0 Beta while running on Fedora 9, 64-bit.
Also prepare to report the problem. I see that the document statistics are also
completely wrong. 

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

-
To unsubscribe, 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 90123] Copy paste does not copy p age break

2008-05-29 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=90123
 Issue #|90123
 Summary|Copy paste does not copy page break
   Component|Word processor
 Version|OOo 3.0 Beta
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Thu May 29 19:31:55 + 
2008 ---
1. Create a Write document.
2. Insert a page break, and change the page style.
3. Select text that includes the page break.
4. Copy to the clip board.
5. Paste the text somewhere.

The text is copied, but not the page break.

This is a regression

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

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


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



[sw-issues] [Issue 89859] Incorrect heading order in Navigator

2008-05-23 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89859
 Issue #|89859
 Summary|Incorrect heading order in Navigator
   Component|Word processor
 Version|OOo 3.0 Beta
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Fri May 23 14:00:32 + 
2008 ---
Document uses styles Heading 1 through Heading 4.

Heading 3 is in a table.
Heading 4 is in a table in a table.

Navigator shows all headings, but Heading 4 styles are displayed before
everything else. For example, text in the document in the following order:

Heading 1 one
Heading 2 two
Heading 3 three
Heading 4 four

Displays in the Navigator in the following order:

Heading 4 four
Heading 1 one
Heading 2 two
Heading 3 three

I first saw this in OOo 3.0 beta.
I tested the document in OOo 2.4, and the problem is there as well. In other
words, this is NOT a regression.

Document started as an RTF report generated by Enterprise Architect.
Opened document in Word.
Saved document as a .DOC from word.
Imported document into OOo.

I know that it is more than this, because a document created directly in the
stated format is fine.

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

-
To unsubscribe, 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 89859] Incorrect heading order in Navigator

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





--- Additional comments from [EMAIL PROTECTED] Fri May 23 14:01:32 + 
2008 ---
Created an attachment (id=53885)
Demonstrates the heading problem


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

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


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



[sw-issues] [Issue 89557] RTF incorrect import, adds underline

2008-05-16 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89557
 Issue #|89557
 Summary|RTF incorrect import, adds underline
   Component|Word processor
 Version|OOo 3.0 Beta
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Fri May 16 12:25:24 + 
2008 ---
I have an RTF document that incorrectly adds underlines to most of the text when
it is opened in OOo. This same document is the same document used in bug 89525.
I will attach here as well. 

This is NOT a regression because it has the problem in a previous version of 
OOo.

http://www.openoffice.org/issues/show_bug.cgi?id=89525

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

-
To unsubscribe, 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 89557] RTF incorrect import, adds underline

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





--- Additional comments from [EMAIL PROTECTED] Fri May 16 12:26:12 + 
2008 ---
Created an attachment (id=53712)
Text is incorrectly underlined (it should not be).


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

-
To unsubscribe, 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 89525] RTF: inserting RTF file cr ashes OOo

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





--- Additional comments from [EMAIL PROTECTED] Fri May 16 12:27:37 + 
2008 ---
I created bug 89557 to deal with the underline 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 89525] Import RTF crashes OOo

2008-05-15 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=89525
 Issue #|89525
 Summary|Import RTF crashes OOo
   Component|Word processor
 Version|OOo 3.0 Beta
Platform|All
 URL|
  OS/Version|Windows XP
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Thu May 15 19:10:54 + 
2008 ---
I created one RTF document using Enterprise Architect.
I can open the RTF document in OOo, but there are issues with respect to too
many underlines.
If I import the document, however, OOo crashes.

I tested with OOo 2.4.0, and this also crashes 2.4.0. In other words, this is
NOT a regression 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 89525] Import RTF crashes OOo

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





--- Additional comments from [EMAIL PROTECTED] Thu May 15 19:11:53 + 
2008 ---
Created an attachment (id=53676)
Import this file into a new Write documen to crash OOo


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

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


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



[sw-issues] [Issue 89525] Import RTF crashes OOo

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





--- Additional comments from [EMAIL PROTECTED] Thu May 15 19:19:22 + 
2008 ---
Similar issue: 53543
I am able to open and/or insert the RTF file attached to issue 53543 with no
problems.

Perhaps this is the same bug as issue: 83162 
I am able to open the attached RTF files on issue 83162, but I am not able to
insert these files into an existing (empty) OOo 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]



[api-issues] [Issue 76752] Bug with polylineshape wit h OOo2.2 under linux

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


User pitonyak changed the following:

What|Old value |New value

  CC|''|'pitonyak'





--- Additional comments from [EMAIL PROTECTED] Sun Nov  4 20:13:42 + 
2007 ---
First of all, you do not declare your variables. OK, it works fine, but it
really bothers me...

Does this version work for you?

Sub LigneBrisee_new()
Dim monDocument As Object, maPage As Object
Dim maForme As Object
Dim lesPoints(4) As New com.sun.star.awt.Point  
monDocument = thisComponent
monTexte = monDocument.Text
monCurseur = monTexte.createTextCursor  
maPage = monDocument.DrawPage
maForme = 
monDocument.createInstance(com.sun.star.drawing.PolyLineShape)
maForme.AnchorType = com.sun.star.text.TextContentAnchorType.AT_PAGE
maForme.HoriOrientRelation = com.sun.star.text.RelOrientation.FRAME
maForme.VertOrientRelation = com.sun.star.text.RelOrientation.FRAME
lesPoints(0).X =  2100 : lesPoints(0).Y =  2100
lesPoints(1).X =  4500 : lesPoints(1).Y =  4000
lesPoints(2).X = 2200  : lesPoints(2).Y = 3000
lesPoints(3).X = 2500  : lesPoints(3).Y = 4000
lesPoints(4).X = 4000  : lesPoints(4).Y =  4000

monTexte.insertTextContent(monCurseur, maForme, false)

maForme.LineWidth = 80
maForme.PolyPolygon = Array(lesPoints())


Print maForme.VertOrientPosition
'   maForme.VertOrientRelation = 0 'relative to page area
'   maForme.HoriOrientRelation = 0 'relative to page area


Print maForme.HoriOrientPosition
maForme2 = 
monDocument.createInstance(com.sun.star.drawing.PolyLineShape)
maForme2.AnchorType = com.sun.star.text.TextContentAnchorType.AT_PAGE
maForme2.HoriOrientRelation = com.sun.star.text.RelOrientation.FRAME
maForme2.VertOrientRelation = com.sun.star.text.RelOrientation.FRAME
lesPoints(0).X =  2000 : lesPoints(0).Y =  2000
lesPoints(1).X =  3000 : lesPoints(1).Y =  2500
lesPoints(2).X = 2500  : lesPoints(2).Y = 3000
lesPoints(3).X = 3000  : lesPoints(3).Y = 6000
lesPoints(4).X = 4000  : lesPoints(4).Y =  4000
monTexte.insertTextContent(monCurseur, maForme2, false)
maForme2.LineWidth = 60
maForme2.PolyPolygon = Array(lesPoints())
Print maForme2.VertOrientPosition
'   maForme2.VertOrientRelation = 0 'relative to page area
'   maForme2.HoriOrientRelation = 0 'relative to page area
Print maForme2.HoriOrientPosition   
End Sub


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

-
To unsubscribe, 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 49133] Possibility to put macros in *.odb file

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


User pitonyak changed the following:

What|Old value |New value

  CC|'ms2,pagalmes,pmike,wurzel|'ms2,pagalmes,pitonyak,pmi
|' |ke,wurzel'





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

-
To unsubscribe, 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 41131] Reference names in fields should be able to be edited

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


User pitonyak changed the following:

What|Old value |New value

  CC|''|'pitonyak'





--- Additional comments from [EMAIL PROTECTED] Thu Jul 19 20:06:42 + 
2007 ---

1. In a new Writer document Use Insert  Fields  Other to open the Fields 
dialog. 

2. Select the Variables tab.

3. Select the Number range type.

4. Select Table - the name changes to Table in the lower left corner.

5. In the value field, enter Table + 1 (without the double quotes).

6. Click Insert to insert the value 1.

7. Click Insert again to inset the value 2.

Now, create a your own variable.

8. In the name field, enter Equation.

9. In the value field, enter Equation + 1 (without the double quotes).

10. click insert to insert the value 1.

11. Click Insert again to inset the value 2.

12. click on the References tab.

13. Under type, click on Table.

I see the value 1 and the value 12.

Initially, I considered this a bug until I realized that all text to the left of
the inserted field is considered its name. The text is included even if that
text includes other fields. This is the name that is inserted.

I never saw this with respect to tables because I always start a table caption
on its own paragraph and precede it with the text Table .

I thought there was a problem because I label equations using (EQUATION + 1).
The name, therefore, is (. This would be worse if I attempted to place the
equation number to the right of an equation. 

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

-
To unsubscribe, 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 79515] Export to DOC has extreme issues with graphics in frames.

2007-07-11 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=79515
 Issue #|79515
 Summary|Export to DOC has extreme issues with graphics in fram
|es.
   Component|Word processor
 Version|OOo 2.2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Thu Jul 12 01:27:09 + 
2007 ---
The OOo Authors site asks the authors to create captions for figures using the
normal OOo format. This format results in a figure inside of a frame with a
caption underneath it.

If I export this OOo document to a WORD DOC format, the graphics are all over
the document and the result is obscured text and a document that is very
difficult to read.

My work around (for documents not prepared as official OOo documentation) is to
NOT use the OOo captioning capabilities because afterwards, the document can
only be used as an OOo document (or exported as PDF); it seems that export to
HTML also fails for this (but you would need to ask the head of the OOo Authors
site, Jean Weber, about that. I store the figure anchored as a character and I
manually enter the caption. I tie the two together with a paragraph style
designed specifically for the purpose.

You can test any document from the OOo authors site.
http://www.oooauthors.org/
I think that we only post PDF documents to the final documentation site.

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

-
To unsubscribe, 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 79515] Export to DOC has extreme issues with graphics in frames.

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





--- Additional comments from [EMAIL PROTECTED] Thu Jul 12 01:30:55 + 
2007 ---
Side note:
Might be interesting to test with the latest development build since there may
be some relation to 43447, 72915, and 75464.

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

-
To unsubscribe, 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 79174] Simplify macro recording a nd use

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





--- Additional comments from [EMAIL PROTECTED] Tue Jul  3 20:29:59 + 
2007 ---
My opinion is that the macro recorder should be redesigned to 

* Use API objects when possible.

* Be more tolerant of dialogs (ie, recognized that a dialog was opened and that
choices were made).

Consider the following list of bugs related to the current macro recorder:

18927   Macrorecorder dont recognize bookmarks.
18162   macro recorder not recordering all mouse clicks in scalc
17497   Macro recorder does not recognize mouse click to shift focus
65268   Macro recorder don't remember text attributes in search/repl
20046   [Meta] Macro Recorder Meta Bug
66183   macro recorder does not record new-file actions
25098   macro recorder doesn´t record
18339   Macro recorder ignores column select
18035   macro recorder in scalc not recording all border selections
51329   Macro recorder does not record non-breaking space
57004   macro recorder does not work in embedded Base forms
17747   Macro recorder does not record graphics layer

The following menu options might help:

Run the last saved macro.
Run the last run macro.
Run a macro saved in a file (like a saved text file).

Just some thoughts.

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

-
To unsubscribe, 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 76449] CurrentSelection (writer) returns wrong values

2007-04-18 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76449





--- Additional comments from [EMAIL PROTECTED] Wed Apr 18 23:41:11 + 
2007 ---
The reason that you see the empty selection is because you did start to make a
selection. Consider the following:

Nothing selected:
Empty selection representing the current cursor position

Select a single area:
One selection

Now, how do you select multiple areas? it causes you to enter a multi-selection
mode. The method usually is done as follows:
1. Select initial area any way you desire.
2. Hold down the control key and place the cursor at a specific point
3. Hold down the left mouse button (you just set the cursor)
4. Now drag the mouse and release (you just set the cursor again)

and you have three selections. On a whim, Hold down the control key and use the
cursor keys to move the cursor. You still have three selections but they all
contain text.

If you stop at step three and then use the keyboard to move the mouse, then you
do not start the third selection.

My guess is that this behavior represents how the controller works internally. 

mroe, I had to read your message a few times to understand what you were 
saying...

I never have selections.getCount() return zero.
I do not always have an empty selection.

I think that what you really want to say is that you should never return an
empty selection. Be careful, because that empty selection may have something of
interest attached to it such as an image. I did test and try to select some
text, a graphic, and some text, but the act of selecting the graphic
unselected the text. The returned object was then the graphic and NOT a
selections object.

That said, I rarely care about the empty selection...



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

-
To unsubscribe, 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 76449] CurrentSelection (writer) returns wrong values

2007-04-17 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76449





--- Additional comments from [EMAIL PROTECTED] Tue Apr 17 22:08:52 + 
2007 ---
It has been this way since version 1.0. What you do not see is that the empty
selection is really the empty cursor selection. Although you may argue that this
is a bug, it is possible that existing code relies on the empty selection as the
cursor position. Consider the following, which provides a little text around the
empty selection.

Sub Testselect
 Dim oDoc As Object
 Dim oSelection As Object
 Dim i As Integer
 Dim s As String
 Dim oText
 Dim oSel
 Dim oCurs

 oDoc = ThisComponent
 oSelection = ThisComponent.CurrentSelection
 s = 
 If oSelection.hasElements() Then
   For i = 0 To oSelection.getCount() - 1
 If i  0 Then s = s  chr( 13 )
 oSel = oSelection.getByIndex( i )
 s = s  Format( i, 00 )  (: )  oSel.getString()
 oText = oSel.getText()
 If oText.compareRegionStarts(oSel.getStart(), oSel.getEnd()) = 0 Then
   oCurs = oText.createTextCursorByRange(oSel)
   oCurs.goLeft(2, False)
   oCurs.goRight(4, True)
   s = s  EMPTY :   oCurs.getString()
 End If
   Next i
   MsgBox( s )
 Else
   REM You will probably NEVER get here
   MsgBox( no selection )
 End If
End Sub

In Summary, yes, the behavior is exactly as you state (you should have read my
book or my free macro guide, which discusses this), but, is it a bug? I would
say no, but I am not in the position to say so.

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

-
To unsubscribe, 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 76084] Remove a shape from macro crashes OOo drawing document.

2007-04-04 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76084
 Issue #|76084
 Summary|Remove a shape from macro crashes OOo drawing document
|.
   Component|Drawing
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|wg
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Apr  4 13:43:57 + 
2007 ---
I was asked how to remove a shape from a drawing document. The following macro,
attempts to remove the selected shape, but it crashes instead. 

Using a drawing, select a single shape and run this macro.


Sub Main

   Dim oShapeName as String
   Dim oDoc As Object

   oDoc = ThisComponent

   oDocCtrl = oDoc.getCurrentController()

   ' See what is currently selected.
   oSelection = oDocCtrl.getSelection()
   If IsEmpty( oSelection ) Then
   MsgBox( Zum Löschen muss eine Grafik makiert sein )
   Exit Sub
   EndIf
   If oSelection.getCount()  1 Then
   MsgBox( Bitte nur eine Grafik zum löschen auswählen )
   Exit Sub
   EndIf

   oOrigShape = oSelection.getByIndex( 0 )
   oShapeName = oOrigShape.getName()

   'print oShapeName

   REM I expected that either of these next two statements
   REM would remove the shape from the document.
   oOrigShape.Dispose()  REM Crash
   oOrigShape.getParent().Remove(oOrigShape)  REM CRASH
End Sub

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

-
To unsubscribe, 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 76030] Export saves the entire pa ge

2007-04-02 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76030
 Issue #|76030
 Summary|Export saves the entire page
   Component|Drawing
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|wg
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Mon Apr  2 17:08:45 + 
2007 ---
Again problems with image export...

This is new to 2.2, it worked fine with 2.0 and 2.1.

Create an image. 
drag the margins to include only the area of interest.
Export to PNG or JPG (the two formats that I checked).

I am formatted for a page size of 8.5 x 11, so the exported image is of this
size rather than the size specified by the margins.

It might be argued that this is the same as issue 66044, which is specific to
SVG export. My guess is that the problem IS the same, but this issue was present
in 2.02, and this behavior with PNG and JPG is new to version 2.2 (unless it
happens to be related to the files that I will attach).
http://qa.openoffice.org/issues/show_bug.cgi?id=66044 

Less related to issue 46394, which simply has the wrong size.

The enhancement listed in issue 62446 would likely fix this as well (export and
ignore extra white space).

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

-
To unsubscribe, 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 76030] Export saves the entire pa ge

2007-04-02 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76030


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |44167)
This document expor
|  |ts incorrectly.






--- Additional comments from [EMAIL PROTECTED] Mon Apr  2 17:10:13 + 
2007 ---
Created an attachment (id=44167)
This document exports incorrectly.


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

-
To unsubscribe, 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 76030] Export saves the entire pa ge

2007-04-02 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76030


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |44168)
Exported image that
|  | is bad






--- Additional comments from [EMAIL PROTECTED] Mon Apr  2 17:12:11 + 
2007 ---
Created an attachment (id=44168)
Exported image that is bad


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

-
To unsubscribe, 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 76030] Export saves the entire pa ge

2007-04-02 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=76030


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |44169)
Setting the page si
|  |ze to User allows for prop
|  |er export.






--- Additional comments from [EMAIL PROTECTED] Mon Apr  2 17:13:02 + 
2007 ---
Created an attachment (id=44169)
Setting the page size to User allows for proper export.


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

-
To unsubscribe, 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 74585] collect images of OOo memb ers to create poster

2007-02-19 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=74585


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |43186)
Andrew Pitonyak, Co
|  |lumbus, Ohio, USA






--- Additional comments from [EMAIL PROTECTED] Tue Feb 20 06:16:02 + 
2007 ---
Created an attachment (id=43186)
Andrew Pitonyak, Columbus, Ohio, USA


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

-
To unsubscribe, 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 74478] Drag and drop editing of t ext is broken.

2007-02-17 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=74478





--- Additional comments from [EMAIL PROTECTED] Sun Feb 18 01:51:24 + 
2007 ---
I assume that this is NOT a standard OOo relesae, but rather, it is a release
built and maintained by the edgy people. I used to use OOo as distributed by
FC6 on AMD64, but it had numerous problems. They ALL went away after I removed
the 64 bit FC6 version, made certain I had 32 bit Java installed, and then
installed the standard OOo release version 2.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]



[api-issues] [Issue 72380] Adding a number format cha nges the format case.

2006-12-07 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72380
 Issue #|72380
 Summary|Adding a number format changes the format case.
   Component|api
 Version|OOo 2.0.4
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|jsc
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Thu Dec  7 22:12:11 -0800 
2006 ---
I noticed thisproblem when I added a number format containing the text Red to
a Calc document. When I searched for the number format, I could not find it. So,
I tried to add the format a second time and this causes my macro to crash
because it already exists. OpenOffice continues to run, but there are two 
problems:

1. The macro fails.
2. It is not possible to find the key that was added.

If the key is converted to upper case, the search should NOT be case sensitive.

Although I have only tested this macro with a Calc document, the document type
should NOT matter.

Sub DoTheCrash()
  Dim s1$ : s1 = #,##0.00_);[RED](#,##0.00)
  Dim s2$ : s2 = #,##0.00_);[Red](#,##0.000)
  Print Add style 1 =   FormatStyleCrash(s1, ThisComponent)
  Print Check style 1 =   FormatStyleCrash(s1, ThisComponent)
  Print Add style 2 =   FormatStyleCrash(s2, ThisComponent)
  Print Check style 2 =   FormatStyleCrash(s2, ThisComponent)
End Sub

Function FormatStyleCrash(sFormat, oDoc)
  Dim aLocale As New com.sun.star.lang.Locale
  Dim oFormats As Object
  Dim formatNum As Integer

  oFormats = oDoc.getNumberFormats()
  formatNum = oFormats.queryKey(sFormat, aLocale, True)
  'MsgBox Current Format number is  formatNum
  'If the number format does not exist then add it
  If (formatNum = -1) Then
'Print Ready to add format   sFormat
formatNum = oFormats.addNew(sFormat, aLocale)
If (formatNum = -1) Then formatNum = 0
'MsgBox new Format number is   formatNum
  End If
  FormatStyleCrash = formatNum 
End Function

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

-
To unsubscribe, 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 72077] Document causes OOo to loc k when viewing page

2006-11-28 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72077
 Issue #|72077
 Summary|Document causes OOo to lock when viewing page
   Component|Word processor
 Version|OOo 2.1
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|code
 Assigned to|mru
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Tue Nov 28 11:01:55 -0800 
2006 ---
I have a document that causes OOo to lock in version 2.04 and 2.1 on both Linux
and Windows. (I will create an attachment)

On Windows and Linux, I cause OOo to lock using Tools | Update | Update All.
On Windows and Linux, I cause OOo to lock by exporting to a PDF.

After loading the file into Windows, I realized that even attempting to view
page 23, which has the sections Create the DEALER table and Create the ITEM
table, causes OOo to hang.

If you expand the document and look at the XML, you can fix the problem by
removing the following XML.

   text:p text:style-name=OOoFiguredraw:frame draw:style-name=fr5
draw:name=Frame11 text:anchor-type=as-char svg:width=5in 
draw:z-index=26
 draw:text-box fo:min-height=1.7201in
  text:p text:style-name=OOoFigureCaptiondraw:frame
draw:style-name=fr6 draw:name=graphics11 text:anchor-type=paragraph
svg:x=0in svg:width=5in style:rel-width=100% svg:height=1.7098in
style:rel-height=scale draw:z-index=27draw:image
xlink:href=Pictures/1200025700E2AE506504.gif xlink:type=simple
xlink:show=embed xlink:actuate=onLoad/
   /draw:frameFigure text:sequence text:ref-name=refFigure0
text:name=Figure text:formula=ooow:Figure+1
style:num-format=11/text:sequence: Copy DEALER table to the ITEM
table./text:p
 /draw:text-box
/draw:frame/text:p

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

-
To unsubscribe, 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 72077] Document causes OOo to loc k when viewing page

2006-11-28 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72077


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |40976)
This is the BAD doc
|  |ument. Do not open unless 
|  |you have saved all of your
|  | documents. Enabling Macro
|  |s makes no difference.






--- Additional comments from [EMAIL PROTECTED] Tue Nov 28 11:03:39 -0800 
2006 ---
Created an attachment (id=40976)
This is the BAD document. Do not open unless you have saved all of your 
documents. Enabling Macros makes no difference.


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

-
To unsubscribe, 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 72077] Document causes OOo to loc k when viewing page

2006-11-28 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72077


User pitonyak changed the following:

What|Old value |New value

 Attachment data|  |Created an attachment (id=
|  |40977)
This is a good copy
|  | of the document after I r
|  |emoved the offending XML.






--- Additional comments from [EMAIL PROTECTED] Tue Nov 28 11:05:25 -0800 
2006 ---
Created an attachment (id=40977)
This is a good copy of the document after I removed the offending XML.


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

-
To unsubscribe, 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 68515] Calc - Subtotals can't be automated with the macro

2006-08-23 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68515





--- Additional comments from [EMAIL PROTECTED] Wed Aug 23 20:56:57 -0700 
2006 ---
So what you really want, is that the dispatch will accept arguments containing
all of the information required to create the subtotal without opening a dialog
or requiring any sort of user interaction.

Realize that at the moment, the macro recorder noticed that you opened the
dialog, but it does not record what you do in the dialog.

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

-
To unsubscribe, 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 55949] TimeStamp fields are not c onsistent in fractional seconds.

2006-08-22 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55949





--- Additional comments from [EMAIL PROTECTED] Tue Aug 22 13:18:13 -0700 
2006 ---
I downloaded a development build of 2.0.4 under windows.

resultSet.getString() correctly returns hundredths of a second.
ERROR: resultSet.getTimeStamp() return an incorrect hundredths of a second.
ERROR: rowSet.getString() does NOT return hundredths of a second.
ERROR: rowSet.getTimeStamp() return an incorrect hundredths of a second.

So, the only way to get the correct value is to use a result set and use
getString().

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

-
To unsubscribe, 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 55949] TimeStamp fields are not c onsistent in fractional seconds.

2006-08-21 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55949





--- Additional comments from [EMAIL PROTECTED] Mon Aug 21 22:27:19 -0700 
2006 ---
I tested 2.0.3 on Linux FC4.

For a time stamp:
resultSet.getString() does return hundredths of a second.
ERROR: resultSet.getTimeStamp() does NOT return hundredths of a second.
ERROR: rowSet.getString() does return hundredths of a second.
ERROR: rowSet.getTimeStamp() does NOT return hundredths of a second.

Would you like me to install a development build on a windows computer and check
it? This is not fixed in 2.0.3.


getTimeStamp(1) does not return fractional seconds and getString(1) does.

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

-
To unsubscribe, 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 68311] Words added to Standard li brary show as mispelled.

2006-08-09 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68311
 Issue #|68311
 Summary|Words added to Standard library show as mispelled.
   Component|lingucomponent
 Version|OOo 2.0.3
Platform|All
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|spell checking
 Assigned to|[EMAIL PROTECTED]
 Reported by|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Aug  9 21:03:12 -0700 
2006 ---
I am adding this based on the following post:

http://www.oooforum.org/forum/viewtopic.phtml?t=41105

Language is Spanish.
Auto spell check is on. 
Add words to the STANDARD dictionary.

The manual spell check now skips them correctly but the auto spell check still
underlines them with the red line.

The red line doesn't actually activate the special right-click menu for
corrections. If I right-click on top of the red-underlined word I'll get the
standard right-click menu (formatting options). That suggests the auto spell
checker now knows the word is correct, but it still underlines it in red.




Comment by Andrew Pitonyak:
I verified that this works correctly in US English. I will have the original
reporter add more comments.

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

-
To unsubscribe, 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 68311] Words added to Standard li brary show as mispelled.

2006-08-09 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68311





--- Additional comments from [EMAIL PROTECTED] Wed Aug  9 21:43:18 -0700 
2006 ---
May be related to http://qa.openoffice.org/issues/show_bug.cgi?id=58874 in some 
way.

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

-
To unsubscribe, 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 63614] New - IIF is fragile in St arBasic

2006-03-25 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=63614
  Issue #:|63614
  Summary:|IIF is fragile in StarBasic
Component:|framework
  Version:|OOo 2.0.2
 Platform:|All
  URL:|http://www.oooforum.org/forum/viewtopic.phtml?t=33910
   OS/Version:|All
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|scripting
  Assigned to:|npower
  Reported by:|pitonyak





--- Additional comments from [EMAIL PROTECTED] Sat Mar 25 05:14:52 -0800 
2006 ---
I have had macros that use IIF that will suddenly fail for no particular reason.
Recently, I ran accross a great example of this. 

The macro is shown here:
http://www.oooforum.org/forum/viewtopic.phtml?t=33910

Create a new module and add the macro (which I will append at the bottom of this
post).
The macro works just fine. Now, add a simple comment near the top. Change the
top comment from one line to two

REM making the use of calc function library within OOBasic easier
REM Does this mess things up?

Now, run the macro again and it will fail just before the IIF statement. Now,
change the IIF statement from

   tempVec2 = DimArray( IIf( nCols = 0, 0, nCols - 1 ) )

to

If nCols = 0 Then
  tempVec2 = DimArray( 0 )
Else
  tempVec2 = DimArray( nCols - 1 )
End If


Now, the macro will work.

REM  *  BASIC  *
Option Explicit

REM making the use of calc function library within OOBasic easier

Sub testCalcFunctions

  Dim a(1), b(1)
  a(0) = 1 : a(1) = 2
  b(0) = 3 : b(1) = 4
 
  MsgBox Dot product is   fnCalcFunction( SUMPRODUCT, Array( a(), b() ) )

  Dim x As Integer
  x = 5
  MsgBox Factorial of   x   is   fnCalcFunction( FACT, Array( x ) )
 
  Dim tempArray(1,1) As Variant
  tempArray(0,0) = 0 : tempArray(0,1) = 1
  tempArray(1,0) = 2 : tempArray(1,1) = 3

  Dim funcResult() As Variant
  funcResult() = fnCalcFunction( TRANSPOSE, Array( tempArray() ) )
  MsgBox Transpose of  chr(13)  _
 tempArray(0,0)  ,   tempArray(0,1)  chr(13)  _
 tempArray(1,0)  ,   tempArray(1,1)  chr(13)  _
 is  chr(13)  _
 funcResult(0,0)  ,   funcResult(0,1)  chr(13)  _
 funcResult(1,0)  ,   funcResult(1,1)

  MsgBox Determinate is   fnCalcFunction( MDETERM, Array( tempArray() ) )
 
End Sub

REM The following are trivially simple examples of user defined functions
REM which can be used as formulas in a spreadsheet cell.

Function fnAbs( a )
  fnAbs() = fnCalcFunction( ABS, Array( a ) )
End Function

Function fnTranspose( a() )
  fnTranspose() = fnCalcFunction( TRANSPOSE, Array( a() ) )
End Function

Function fnDot( a(), b() )
  fnDot() = fnCalcFunction( SUMPRODUCT, Array( a(), b() ) )
End Function
 
REM ##
REM ##
REM ##
REM
REM The below functions provide the basic utilities for conveniently
REM using calc functions (including array functions) within OOBasic.
REM
REM ##
REM ##
REM ##

Function fnCalcFunction( sFunc As String, args() ) As Variant

  REM this function is just a utility function for making the
  REM FunctionAccess service easier to use. 
 
  REM first, if any of the argumenst are arrays, convert them to
  REM vectors of vectors
  Dim i As Integer
  For i = LBound( args() ) To UBound( args() )
If IsArray( args( i ) ) Then
  args( i ) = fnBasicArrayToFuncArray( args( i ) )
End If
  Next

  Dim myFuncAccess As Variant, myFuncResult As Variant
  myFuncAccess = createUNOService( com.sun.star.sheet.FunctionAccess )
  myFuncResult = myFuncAccess.callFunction( sFunc, args() )
 
  REM now restore any of the array arguments back to normal arrays
  For i = LBound( args() ) To UBound( args() )
If IsArray( args( i ) ) Then _
  args( i ) = fnFuncArrayToBasicArray( args(i) )
  Next
 
  REM and if the result is an array, convert it from a vector of
  REM vectors to a normal array
  If IsArray( myFuncResult ) Then _
 myFuncResult = fnFuncArrayToBasicArray( myFuncResult() )
 
  fnCalcFunction() = myFuncResult
 
End Function

REM ##
REM ##
REM ##

Function fnBasicArrayToFuncArray( a() ) As Variant
 
  REM this function expects to receive a normal OOBasic array such as
  REM one would create with Dim a(3) or Dim a(2,3

[dba-issues] [Issue 55949] TimeStamp fields are not consistent in fractional seconds.

2006-02-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55949


User pitonyak changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=34148) Test result
  |  |document





--- Additional comments from [EMAIL PROTECTED] Tue Feb 14 07:36:57 -0800 
2006 ---
Created an attachment (id=34148)
Test result document


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

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


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



[dba-issues] [Issue 55949] TimeStamp fields are not consistent in fractional seconds.

2006-02-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55949


User pitonyak changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=34149) I updated the
  |  |macro to be more
  |  |descriptive in the
  |  |results.





--- Additional comments from [EMAIL PROTECTED] Tue Feb 14 07:37:35 -0800 
2006 ---
Created an attachment (id=34149)
I updated the macro to be more descriptive in the results.


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

-
To unsubscribe, 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 55949] TimeStamp fields are not consistent in fractional seconds.

2006-02-14 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=55949


User pitonyak changed the following:

  What|Old value |New value

Status|RESOLVED  |REOPENED

Resolution|WORKSFORME|





--- Additional comments from [EMAIL PROTECTED] Tue Feb 14 07:36:03 -0800 
2006 ---
I see some issues as working, but not all of them the results for m156 are
the same as for m155. Here is a summary of the results:

Time fields never contain fractional seconds. Is this an error?

TimeStamp fields never contain a fractional value from a RowSet. From a
ResultSet, however, the fractional value is returned by getString(), but NOT by
getTimeStamp(). Clearly this is an error.

One error was fixed, you can now update a time stamp that contains fractional
values.



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

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


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



[dba-issues] [Issue 59048] Can not delete Base docum ent

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





--- Additional comments from [EMAIL PROTECTED] Tue Dec 13 06:48:22 -0800 
2005 ---
You are correct, with build 145 this now works for me as well. I think that it
did NOT work with the previous build.

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

-
To unsubscribe, 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 59048] Can not delete Base docum ent

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





--- Additional comments from [EMAIL PROTECTED] Tue Dec 13 14:16:06 -0800 
2005 ---
Yes, I think that we can. If I notice the problem on a later version or a
different Base document, I will reproduce and reopen. I noticed the problem and
ignored it because Frank S indicated that it was fixed and should be fixed in
2.01 final release. 

I was contacted by four people who said that they had a problem so I verified
that it existed in 2.01 RC 2 and I reproduced. so I opened the issue.
Ironically, none of the people that said that it was such a critical problem
took the time to come and post a note here as I requested.

Either way, my last test demonstrated that it seems to work now so I am happy.

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

-
To unsubscribe, 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 59222] New - Non-zero LineDistanc e not saved in a Write Table

2005-12-11 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59222
  Issue #:|59222
  Summary:|Non-zero LineDistance not saved in a Write Table
Component:|api
  Version:|OOo 2.0
 Platform:|All
  URL:|
   OS/Version:|Linux
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|sw
  Reported by:|pitonyak





--- Additional comments from [EMAIL PROTECTED] Sun Dec 11 20:25:13 -0800 
2005 ---
Create a Write document.
Create a Text Table.
Place the cursor in the text table.
Run the following macro



Sub tbl_border_onerow 'blue
   Dim oSels,oTables,oCells
   Dim oVC
   oSels = ThisComponent.getCurrentController().getSelection()
   oVC = ThisComponent.getCurrentController().getViewCursor()   
   'oVC.cell.BottomBorder = MakeCellBorderLine( RGB(0,0,255), 150, 150, 100)   
 
   Dim oBorderLine
   oBorderLine = oVC.cell.BottomBorder
   With oBorderLine
  .Color = RGB(0,0,255)
  .InnerLineWidth = 150
  .OuterLineWidth = 150
  .LineDistance = 100
   End With
   oVC.cell.BottomBorder = oBorderLine
End sub


You now have a double blue line as the bottom line in the cell with the cursor.
Now, save the document, close the document, and open the document. The double
line is gone (there is no line). 

If you change the LineDistance from 100 to 0, then I observe no problems.

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

-
To unsubscribe, 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 59033] New - PageStyleName is rea d-only

2005-12-07 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59033
  Issue #:|59033
  Summary:|PageStyleName is read-only
Component:|api
  Version:|OOo 2.0.1
 Platform:|All
  URL:|
   OS/Version:|Windows, all
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|code
  Assigned to:|sw
  Reported by:|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Dec  7 09:02:45 -0800 
2005 ---
According to the Developer's Guide (see
http://api.openoffice.org/docs/DevelopersGuide/Text/Text.xhtml), I can set the
PageStyleName. I quote:

The PageStyle is set at the current text cursor position. Set the property
PageStyleName to change the page style, and use the property PageDescName to
insert a new page, changing the page style.

If you attempt to set the PageStyleName, however, you are told that it is a
read-only attribute.

Tested using 2.01 release candidate 2 on Windows.

Sub SetStyle
  Dim oCurs
  Dim oVC
  oVC = ThisComponent.getCurrentController().getViewCursor()
  oCurs = oVC.getText().createTextCursorByRange(oVC)
  
  oVC.gotoEnd(False)
  oVC.PageStyleName = First Page
  oVC.gotoRange(oCurs, False)
  'Inspect(ocurs)
End Sub

I am able to use page description name, but this causes a page break, which is
not what I desire. Perhaps the problem is the documentation, but then I am not
certain how to set a page style.

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

-
To unsubscribe, 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 59048] New - Can not delete Base document

2005-12-07 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59048
  Issue #:|59048
  Summary:|Can not delete Base document
Component:|Database access
  Version:|OOo 2.0.1
 Platform:|All
  URL:|
   OS/Version:|Windows, all
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|none
  Assigned to:|dbaneedsconfirm
  Reported by:|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Dec  7 12:20:17 -0800 
2005 ---
Create or open a Base document. Access a table or something. Close the Base
document. You can NOT delete the Base document unless you exit OOo AND the quick
starter. I thought that Frank S said that this should be fixed for the 2.01
release. As of 2.01 RC2, it has not been.

This is not a problem on Linux. windows holds the file open because there is
still something left 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]



[dba-issues] [Issue 59052] New - unable to establish multiple relationships between two tables.

2005-12-07 Thread pitonyak
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=59052
  Issue #:|59052
  Summary:|unable to establish multiple relationships between
  |two tables.
Component:|Database access
  Version:|OOo 2.0.1
 Platform:|All
  URL:|
   OS/Version:|Windows, all
   Status:|NEW
Status whiteboard:|
 Keywords:|
   Resolution:|
   Issue type:|DEFECT
 Priority:|P3
 Subcomponent:|none
  Assigned to:|dbaneedsconfirm
  Reported by:|pitonyak





--- Additional comments from [EMAIL PROTECTED] Wed Dec  7 12:58:09 -0800 
2005 ---
Perhaps this should be an RFE rather than a defect, but...

I found this while trying to answer a question on the oooforum. Consider a
simple table with transactions

TRANS: 
ID is an integer

Now, consider a table that relates two transactions together

CHARGE: 
ID is an integer
TRANS1
TRANS2

There should be a 1-to-n relationship from TRANS1 to TRANS.ID and from TRANS2 to
TRANS.ID.

The GUI will not allow you to create this relationship, but it can be done if
you directly modify database\script.

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

-
To unsubscribe, 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 59052] unable to establish multi ple relationships between two tables.

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


User pitonyak changed the following:

  What|Old value |New value

   Attachment data|  |Created an attachment
  |  |(id=32191) You can not
  |  |establish a second
  |  |relathipship with this
  |  |file.





--- Additional comments from [EMAIL PROTECTED] Wed Dec  7 12:59:12 -0800 
2005 ---
Created an attachment (id=32191)
You can not establish a second relathipship with this 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]



  1   2   >