[script-issues] [Issue 116920] Sometimes RND returns 1 (one)

2011-02-13 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920


User bormant changed the following:

What|Old value |New value

  OS/Version|All   |Windows, all





--- Additional comments from borm...@openoffice.org Sun Feb 13 12:08:43 
+ 2011 ---
I can not reproduce this bug on 32-bit linux biulds of OOo (tested on Slackware-
13.1, Fedora-14, Ubuntu-10.04).
So, OS field has been changed to Windows.

I can not agree that the problem is OS, not the OOo build for Windows.

The Linux Programmers Guide says that the rand() function returns a pseudo-
random integer in the range [0, RAND_MAX]. MSDN has similar description.

Current OOo Basic RND implementation doesn't contain any differences for 
Win/Lin:

basic/source/runtime/methods.cxx

 RTLFUNC(Rnd)
 {
 (void)pBasic;
 (void)bWrite;
 
if ( rPar.Count()  2 )
StarBASIC::Error( SbERR_BAD_ARGUMENT );
else
{
double nRand = (double)rand();
nRand = ( nRand / (double)RAND_MAX );
rPar.Get(0)-PutDouble( nRand );
}
}

So, the only reason is used C/C++ compiler runtime: rand() returns [0;RAND_MAX) 
on Linux and [0;RAND_MAX] on Windows.

May be (quick and dirty)

#IFDEF (something_unique_for_this_win_compiler)
// srand() returns [0;RAND_MAX]
nRand = ( nRand / ((double)RAND_MAX + 1.));
#ELSE
// srand() returns [0;RAND_MAX)
nRand = ( nRand / (double)RAND_MAX );
#ENDIF

32766/32767 = 0,69481
32766/32768 = 0,38965
32767/32768 = 0,69482

And if we can agree with maximum RND values 0,38965 on Linux and 
0,69482 
on Windows, too more dirty:

nRand = ( nRand / ((double)RAND_MAX + 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: 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 116920] Sometimes RND returns 1 (one)

2011-02-13 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920





--- Additional comments from borm...@openoffice.org Sun Feb 13 13:58:19 
+ 2011 ---
So, for 32 bit int 

2147483646 / 2147483647 = 0,95
2147483646 / 2147483648 = 0,91
2147483647 / 2147483648 = 0,95

and 
else
{
double nRand = (double)rand();
nRand = ( nRand / (double)RAND_MAX );
rPar.Get(0)-PutDouble( nRand );
}

can be simple replaceced with 
else
rPar.Get(0)-PutDouble( (double)rand() / ((double)RAND_MAX + 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: 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 116920] Sometimes RND returns 1 (one)

2011-02-13 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920





--- Additional comments from borm...@openoffice.org Sun Feb 13 14:01:40 
+ 2011 ---
else
  rPar.Get(0)-PutDouble( (double)rand() / ((double)RAND_MAX + 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: 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 116920] Sometimes RND returns 1 (one)

2011-02-13 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920





--- Additional comments from borm...@openoffice.org Sun Feb 13 14:22:56 
+ 2011 ---
http://msdn.microsoft.com/en-us/library/398ax69y.aspx says, that MS VC 2010 
still 
use 32767 as RAND_MAX for rand().

If this is true, we get
32767/32768 = 0,69482 max with 1/32768 granularity on Windows,
2147483647/2147483648=0,95 max with 1/2147483648 granularity on Linux.

It is even slightly better than it was :-) .

So, (double)rand()/((double)RAND_MAX+1.) is good enough.

-
Please do not reply to this automatically generated notification from
Issue 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 116920] Sometimes RND returns 1 (one)

2011-02-10 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=116920
 Issue #|116920
 Summary|Sometimes RND returns 1 (one)
   Component|scripting
 Version|OOO330m20
Platform|Unknown
 URL|
  OS/Version|All
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P4
Subcomponent|code
 Assigned to|kr
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri Feb 11 07:29:22 
+ 2011 ---
Basic Rnd function SHOULD return pseudorandom value greater or equal than 0 and 
LESS 
than 1. So, 0 = Rnd  1 or [0; 1) interval.

In OpenOffice.org it returns value greater or equal than 0 and LESS OR EQUAL 
than 1.

Code:
Sub TestRnd
  tries = 1000
  s% = 0
  For i = 1 To tries
If Rnd = 1 Then s = s + 1
  Next
  MsgBox s / tries
End Sub

Expected result: 0
Result: 3,28E-05 (or near because of random values).

This randomly breaks down an algorithms believing the Rnd value strictly LESS 
than 1 
with out of bound errors.

Same behaviour in OOo 3.3.0, 3.1.1, 2.4.3.

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

-
To unsubscribe, e-mail: 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



[sc-issues] [Issue 114138] Regression: Fill or Paste too slow

2010-08-27 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114138
 Issue #|114138
 Summary|Regression: Fill or Paste too slow
   Component|Spreadsheet
 Version|OOO320m18
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|editing
 Assigned to|spreadsheet
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri Aug 27 08:40:57 
+ 2010 ---
1) Open attached test file,
2) Make sure AutoCalculate is on,
2a) Select U9:AE2016
3a) Edit - Fill - Down (Ctrl+D)

or 

2b) Select U9:AE9 and Copy (Ctrl+C) 
3b) Select U10:AE2016 and Paste (Ctrl+V)

OOo Calc 3.2.1 and Dev-330m3 freeze with Adapt row height in status bar. Be 
patient, they do this work very very very slow.

OOo Calc 3.1.1 has no 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



[sc-issues] [Issue 114138] Regression: Fill or Paste too slow

2010-08-27 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114138





--- Additional comments from borm...@openoffice.org Fri Aug 27 08:42:25 
+ 2010 ---
Created an attachment (id=71422)
Test case


-
Please do not reply to this automatically generated notification from
Issue 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 114138] Regression: Fill or Paste too slow

2010-08-27 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114138


User bormant changed the following:

What|Old value |New value

  CC|''|'helen_russian'





-
Please do not reply to this automatically generated notification from
Issue 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 114138] Regression: Fill or Paste too slow

2010-08-27 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=114138





--- Additional comments from borm...@openoffice.org Fri Aug 27 09:09:15 
+ 2010 ---
When AutoCalculate is off pressing F9 after Fill or Paste has the same effect --
calculations are very slow.
So, this may be LOOKUP() performance 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: 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



[l10n-issues] [Issue 113837] Oracle Report Builder men tioned as Sun

2010-08-12 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113837
 Issue #|113837
 Summary|Oracle Report Builder mentioned as Sun
   Component|l10n
 Version|OOO330m1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|sba
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Thu Aug 12 13:30:29 
+ 2010 ---
Oracle Report Builder mentioned as Sun Report Builder two times:

dbaccess/source/ui/dlg.po
#: ExtensionNotPresent.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
msgid 
To open a report you require the extension Sun™ Report Builder.\n
\n
Click 'Download...' to download and install the extension.

dbaccess/source/ui/misc.po
#: dbumiscres.src#RID_STR_EXTENSION_NOT_PRESENT.string.text
msgid The report, \$file$\, requires the extension Sun Report Builder.

-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 113837] Oracle Report Builder men tioned as Sun

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


User bormant changed the following:

What|Old value |New value

  CC|''|'coni'





-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

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


User bormant changed the following:

What|Old value |New value

  Status|CLOSED|REOPENED

  Resolution|DUPLICATE |





--- Additional comments from borm...@openoffice.org Sat Jul  3 11:12:56 
+ 2010 ---
Hm, this is another problem and I can not agree with DUPLICATE status.

Borders, Background, Font color and Highlighting ar two step icons -- click 
on icon 
shows another toolbox to clarify action with border type or color.

When one of icons shows on toolbar second action has chance and toolbox of 
second step 
appears on screen to complete action with border type or color selection.

When one of icons shows after toolbar expansion with click on arrow at right 
side second 
action HAS NO chance and toolbox of second step DOESN'T APPEAR on screen so 
user can not 
complete action with border type or color selection.

I.e. icons are available but not functioning when selected from toolbar right 
side arrow 
menu.

You can see, that i93246 is about totally different problem.
So, reopened.

-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

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





--- Additional comments from borm...@openoffice.org Sat Jul  3 11:20:48 
+ 2010 ---
Created an attachment (id=70377)
'Background' toolbox that doesn't appear after click on 'Background color' icon 
from 'Formatting' toolbar arrow menu


-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

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





--- Additional comments from borm...@openoffice.org Sat Jul  3 11:29:23 
+ 2010 ---
Created an attachment (id=70378)
Background icon in Formatting toolbar arrow menu, second step -- Background 
toolbox -- has no chance


-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

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





--- Additional comments from borm...@openoffice.org Fri Jul  2 06:30:45 
+ 2010 ---
Windows or Linux doesn't matter.

Verified on OOo 3.1.0 m19, OOo 3.2.1 m18, OOo-dev 3.3 m84

-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

2010-07-02 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112865
 Issue #|112865
 Summary|Borders, Background, Font color toolboxes doesn't appe
|ar if icon is off screen
   Component|ui
 Version|OOO320m19
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|uineedsconfirm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri Jul  2 06:27:07 
+ 2010 ---
1) Open for ex. new Calc document
2) Shrink window horisontally so Borders, Background, Font color icons on 
Formatting bar go off
3) Click arrow on right end of Formatting bar
4) Click one of Borders, Background or Font color icon

Expected behavour: Borders, Background or Font color toolbox appears
Actual behavior: Borders, Background or Font color toolbox doesn't appear

-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[sw-issues] [Issue 20041] Problem with borders of ta ble cells

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





--- Additional comments from borm...@openoffice.org Fri Jul  2 06:53:30 
+ 2010 ---
Highlighting icon of Writer's Formatting bar has same behavour.

-
Please do not reply to this automatically generated notification from
Issue 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



[ui-issues] [Issue 112865] Borders, Background, Font color toolboxes doesn't appear if icon is off screen

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





--- Additional comments from borm...@openoffice.org Fri Jul  2 06:53:43 
+ 2010 ---
Highlighting icon of Writer's Formatting bar has same behavour.

-
Please do not reply to this automatically generated notification from
Issue 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...@ui.openoffice.org
For additional commands, e-mail: issues-h...@ui.openoffice.org


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



[sw-issues] [Issue 20041] Problem with borders of ta ble cells

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





--- Additional comments from borm...@openoffice.org Fri Jul  2 06:56:12 
+ 2010 ---
Oops, sorry please, prev. comment was for another issue (i112865).

-
Please do not reply to this automatically generated notification from
Issue 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 112518] Print... dialog and Print icon set document modified status

2010-06-18 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112518
 Issue #|112518
 Summary|Print... dialog and Print icon set document modified
| status
   Component|Word processor
 Version|DEV300m83
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|printing
 Assigned to|writerneedsconfirm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri Jun 18 15:17:39 
+ 2010 ---
OOo-dev_3.3.0 DEV300m83 on WinXP

Click on Print icon of Standard toolbar
or
File-Print (before click Print or Cansel)
change modified status of Writer document regardless of the Tools-Options-
General-Printing sets document modified status option, Save button on 
standard 
toolbar goes enabled, Undo button stays disabled (can't undo).

-
Please do not reply to this automatically generated notification from
Issue 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 112468] Writer freezes on import (.doc)

2010-06-17 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=112468
 Issue #|112468
 Summary|Writer freezes on import (.doc)
   Component|Word processor
 Version|OOO320m18
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|open-import
 Assigned to|writerneedsconfirm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Thu Jun 17 10:27:08 
+ 2010 ---
OOo_3.2.1 OOO320m18, OOo-dev OOO300m81 on WinXP.pro.sp3.ru

Writer freezes when trying to import an attached .doc 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: 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 112468] Writer freezes on import (.doc)

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





--- Additional comments from borm...@openoffice.org Thu Jun 17 10:29:24 
+ 2010 ---
Created an attachment (id=70048)
sample 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...@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



[l10n-issues] [Issue 112476] TCM: Translations for Ope nOffice.org 3.3 test cases

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


User bormant changed the following:

What|Old value |New value

  CC|''|'bormant'





-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 112346] Russian (ru) Thank you pa ge

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





--- Additional comments from borm...@openoffice.org Mon Jun 14 07:13:05 
+ 2010 ---
There are no pages
http://ru.openoffice.org/download
http://ru.openoffice.org/documentation
. Should they be used anyway?

-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 112346] Russian (ru) Thank you pa ge

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





--- Additional comments from borm...@openoffice.org Mon Jun 14 08:21:28 
+ 2010 ---
Created an attachment (id=69968)
Russian Thank you page. Fixed URI-s and title.


-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 112346] Russian (ru) Thank you pa ge

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





--- Additional comments from borm...@openoffice.org Mon Jun 14 08:28:51 
+ 2010 ---
Created an attachment (id=69969)
Russian Thank you page. Fixed URI-s with about-.


-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 112346] Russian (ru) Thank you pa ge

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





--- Additional comments from borm...@openoffice.org Sun Jun 13 17:06:30 
+ 2010 ---
This is the Thank you page in Russian.

-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[l10n-issues] [Issue 112346] Russian (ru) Thank you pa ge

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





--- Additional comments from borm...@openoffice.org Sun Jun 13 17:07:40 
+ 2010 ---
Created an attachment (id=69959)
This is the Thank you page in Russian.


-
Please do not reply to this automatically generated notification from
Issue 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...@l10n.openoffice.org
For additional commands, e-mail: issues-h...@l10n.openoffice.org


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



[sc-issues] [Issue 110890] Sorting data not working

2010-04-20 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110890





--- Additional comments from borm...@openoffice.org Tue Apr 20 08:04:04 
+ 2010 ---
Test with OOO320_m14 on WinXP.sp3

For ex., pay attention to row 14, cell BJ14 contains formula ==SUM(BG2:BI16).
Sort by column C:
- row 14 goes to row 2, 
- cell BJ2 contains formula =SUM(BG#REF!:BI4) now
- if cell's formula refers to the same row only, it is ok
- if cell's formula refers to other rows AND relative range (without $ marks) 
goes out of sheet, it is break

quest88, what another behavior do you expect in this case?

-
Please do not reply to this automatically generated notification from
Issue 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 110769] Severe usability flaws in StartCenter

2010-04-12 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110769





--- Additional comments from borm...@openoffice.org Mon Apr 12 06:19:47 
+ 2010 ---
Windows XP, Classic theme

Start OOo, press left mouse button on, for ex., Drawind, move out mouse 
cursor, 
release mouse button -- Drawing stays pressed, moving mouse over it doesn'n 
restore correct state. 
Dragging another window over artifact restores image.

Please, see attachment.

-
Please do not reply to this automatically generated notification from
Issue 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 110769] Severe usability flaws in StartCenter

2010-04-12 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110769





--- Additional comments from borm...@openoffice.org Mon Apr 12 06:21:05 
+ 2010 ---
Created an attachment (id=68870)
screenshot


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

-
To unsubscribe, e-mail: 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 64190] Input field displaying ign ores non-breaking space

2010-04-01 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=64190


User bormant changed the following:

What|Old value |New value

  CC|'rainerbielefeld' |'bormant,rainerbielefeld'





-
Please do not reply to this automatically generated notification from
Issue 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



[framework-issues] [Issue 110486] Calc/Writer: data loss on import table in .html file

2010-03-30 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=110486
 Issue #|110486
 Summary|Calc/Writer: data loss on import table in .html file
   Component|framework
 Version|OOO320m14
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|ui
 Assigned to|tm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Tue Mar 30 09:09:41 
+ 2010 ---
Experiment 1:
1) start OOo
2) File - Open - test.html, HTML Document (OpenOffice.org Calc)
3) document opens in calc (be patient), 
4) navigate to F column, press Ctrl+Down arrow

As for me, column F breaks at row 10923, column A breaks at row 10924 (error).
Columns B and C are complete.

Experiment 2:
1) start OOo
2) File - Open - test.html, All files
3) document opens in writer/web (be patient),
3) navigate to F:10667 in table

As for me, table breaks in column F at row 10667, other data follow the table 
(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...@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 110486] Calc/Writer: data loss on import table in .html file

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





--- Additional comments from borm...@openoffice.org Tue Mar 30 09:10:53 
+ 2010 ---
Created an attachment (id=68632)
test 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...@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 110486] Calc/Writer: data loss on import table in .html file

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





--- Additional comments from borm...@openoffice.org Tue Mar 30 09:28:20 
+ 2010 ---
Experiment 3:
1) open test.html in browser
2) select and copy whole table
3) open Calc
4) paste (Ctrl+V)

As for me, column F breaks at row 10923, column A breaks at row 10924 (error).
Columns B and C are complete.

If Paste special (Ctrl+Shift+V) - Unformatted text on step 4 -- complete table 
goes in document (without formatting, of course).

-
Please do not reply to this automatically generated notification from
Issue 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 110486] Calc/Writer: data loss on import table from .html file

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


User bormant changed the following:

What|Old value |New value

 Summary|Calc/Writer: data loss on |Calc/Writer: data loss on 
|import table in .html file|import table from .html fi
|  |le





-
Please do not reply to this automatically generated notification from
Issue 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



[sc-issues] [Issue 110008] Formula changes on column /cell insert

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


User bormant changed the following:

What|Old value |New value

  CC|'fst' |'bormant,fst'





--- Additional comments from borm...@openoffice.org Wed Mar 10 12:48:34 
+ 2010 ---
Reprodused on OOO320m12 and DEV300m71.

-
Please do not reply to this automatically generated notification from
Issue 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 109372] Calc loses comments after inserting rows

2010-02-17 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=109372
 Issue #|109372
 Summary|Calc loses comments after inserting rows
   Component|Spreadsheet
 Version|OOO320m12
Platform|Unknown
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P2
Subcomponent|editing
 Assigned to|spreadsheet
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Wed Feb 17 15:20:10 
+ 2010 ---
winxp.pro.ru.sp3 or linux fedora 12
OOo.3.2 OOO320m12
OOo-dev.3.3 DEV300m71

Preparation:
1) start Calc
2) menu Insert - Comment - type something
3) click on A1 cell - Ctrl+C (copy)
4) select A2:A20 - Ctrl+V (paste)
5) Ctrl+S (save)

Experiment 1, after preparation:
6) select A1
7) menu Insert - Rows
8) Ctrl+S (save)
9) menu File - Reload

Result: some comments was lost (A2, A4, A6, ... after insert).

Experiment 2, after preparation:
6) select A1:A3
7) menu Insert - Rows
8) Ctrl+S (save)
9) menu File - Reload

Result: some comments was lost (A4:A6, A10:A12, A16:18 after insert).

-
Please do not reply to this automatically generated notification from
Issue 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 107194] Regexp: Search for '\' p attern breaks replace with '$n' pattern

2009-11-25 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=107194
 Issue #|107194
 Summary|Regexp: Search for '\' pattern breaks replace with '$
|n' pattern
   Component|Word processor
 Version|OOO320m5
Platform|Unknown
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|editing
 Assigned to|writerneedsconfirm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Wed Nov 25 09:33:42 
+ 2009 ---
Regexp search pattern '\' breaks the replace pattern '$n' on the second and 
more matches in a paragraph.

Tested with: OOo-dev OOO320m5, OOo.3.1.1, OOo.2.4.3
Affected: OOo-dev OOO320m5, OOo.3.1.1, OOo.2.4.3

OS doesn't matter.

How to reproduce:

1) create new text document (Writer)

2) type in 2 paragraphs:
a word b word c word
a word b word c word

3) Ctrl+F
search for: (\[a-c])[:space:]+
replace with: $1nbsp
[ more options vv ]
[x] regular expressions
[Replace All]

4) results

expected: 
anbspword bnbspword cnbspword
anbspword bnbspword cnbspword

actual:
anbspword $1nbspword $1nbspword
anbspword $1nbspword $1nbspword

We can see that literal '$1' was used on second and subsequent matches in 
paragraph instead of actual matched content of '()' ('b' and 'c').

Result as expected when search for ([a-c])[:space:]+ (without '\' pattern).

-
Please do not reply to this automatically generated notification from
Issue 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 106495] Writer crashes on export to .doc 97/2000/XP, 95, 6.0

2009-10-30 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=106495
 Issue #|106495
 Summary|Writer crashes on export to .doc 97/2000/XP, 95, 6.0
   Component|Word processor
 Version|DEV300m63
Platform|Unknown
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|writerneedsconfirm
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri Oct 30 14:46:21 
+ 2009 ---
DEV300m63
WinXP.i386.sp3/Ubuntu 9.04

Writer crashes when Save attached document as Word .doc 97/2000/XP or 95 or 6.0.

DEV300m60 does not 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 106495] Writer crashes on export to .doc 97/2000/XP, 95, 6.0

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





--- Additional comments from borm...@openoffice.org Fri Oct 30 14:47:05 
+ 2009 ---
Created an attachment (id=65802)
test 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...@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 90025] Find and Replace: Subexpre ssion fails for some regular expressions

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





--- Additional comments from borm...@openoffice.org Wed Aug  5 18:42:32 
+ 2009 ---
\ regular expression pattern in Search for blocks $n and  patterns in 
Replace with.

For ex., try to add leading zero to #.## numbers:

1) less accurate, search: \[0-9]\.[0-9]{2}, replace: 0 or 0$0
1.11 -- 01.11, it's Ok. 

2) more accurate, search: \[0-9]\.[0-9]{2}\, replace: 0 or 0$0
1.11 -- 0 (or 0$0), WRONG CASE, replace pattern inserts literally

Calc has no this error, both patterns works as documented.

Tested on OOo-dev 3.2.0 DEV300_m53 Build:9412 on winxp.pro.sp3.

-
Please do not reply to this automatically generated notification from
Issue 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 102911] DejaVu font without kerni ng on Windows

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





--- Additional comments from borm...@openoffice.org Thu Jun 25 21:02:05 
+ 2009 ---
Windows XP Prof SP3, DejaVu Serif v2.21 (from OS), v2.29 from dejavu-fonts.org

It seems to be a Windows--DejaVu trouble. Ms word viewer can't render this case 
too, but both OOo and WV can render Times New Roman with and without kerning.

-
Please do not reply to this automatically generated notification from
Issue 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



[gsl-issues] [Issue 102911] DejaVu font without kerni ng on Windows

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





--- Additional comments from borm...@openoffice.org Thu Jun 25 21:03:23 
+ 2009 ---
Created an attachment (id=63217)
WV screenshot


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

-
To unsubscribe, e-mail: 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 102359] Warning about locked by a nother user file doesn't appear when window is minimized

2009-05-29 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102359
 Issue #|102359
 Summary|Warning about locked by another user file doesn't appe
|ar when window is minimized
   Component|Spreadsheet
 Version|OOo 3.1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|ui
 Assigned to|spreadsheet
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Fri May 29 10:17:24 
+ 2009 ---
1) Minimize all calc windows
2) Try to open locked by another user file
3) Warning dialog window doesn't appear on screen until we restore or maximize 
calc
So, user have no visible reaction and tries to open the file again and again.

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

-
To unsubscribe, e-mail: 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 102278] Wrong placing of vertical text in combined cells in imported .doc

2009-05-27 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=102278
 Issue #|102278
 Summary|Wrong placing of vertical text in combined cells in im
|ported .doc
   Component|Spreadsheet
 Version|OOo 3.1
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|open-import
 Assigned to|spreadsheet
 Reported by|bormant





--- Additional comments from borm...@openoffice.org Wed May 27 06:27:03 
+ 2009 ---
.doc has a table with vertically combined cells. These cells contain vertical 
right aligned text.

After import text starts and aligned in top half of combined cell then goes to 
bottom half of cell. In another words combined cell behaves as two linked in 
wrong order frames.

OOo.2.4.2 works correct in this case.

-
Please do not reply to this automatically generated notification from
Issue 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 102278] Wrong placing of vertical text in combined cells in imported .doc

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





--- Additional comments from borm...@openoffice.org Wed May 27 06:28:34 
+ 2009 ---
Created an attachment (id=62558)
test file for vertical-text-in-combined-cells


-
Please do not reply to this automatically generated notification from
Issue 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 102278] Wrong placing of vertical text in combined cells in imported .doc

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





--- Additional comments from borm...@openoffice.org Wed May 27 06:29:15 
+ 2009 ---
Created an attachment (id=62559)
screenshot for vertical-text-in-combined-cells


-
Please do not reply to this automatically generated notification from
Issue 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 102278] Wrong placing of vertical text in combined cells of imported .doc

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


User bormant changed the following:

What|Old value |New value

 Summary|Wrong placing of vertical |Wrong placing of vertical 
|text in combined cells in |text in combined cells of 
|imported .doc |imported .doc





-
Please do not reply to this automatically generated notification from
Issue 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 102278] Wrong direction of vertic al text in combined cells of imported .doc

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





--- Additional comments from borm...@openoffice.org Wed May 27 07:22:59 
+ 2009 ---
Created an attachment (id=62563)
text wraps by height of top row in combined cell


-
Please do not reply to this automatically generated notification from
Issue 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 102278] Wrong placement of vertic al text in combined cells of imported .doc

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


User bormant changed the following:

What|Old value |New value

 Summary|Wrong direction of vertica|Wrong placement of vertica
|l text in combined cells o|l text in combined cells o
|f imported .doc   |f imported .doc





-
Please do not reply to this automatically generated notification from
Issue 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 101029] WW8: complex Table corrup ted during export, content placed in wrong cel ls

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


User bormant changed the following:

What|Old value |New value

  CC|'cornouws,mru,sba'|'bormant,cornouws,mru,sba'





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

-
To unsubscribe, e-mail: 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



[dba-issues] [Issue 94467] Unable to open some DBF fi les

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


User bormant changed the following:

What|Old value |New value

  CC|'mechtilde'   |'bormant,mechtilde'





--- Additional comments from borm...@openoffice.org Thu Dec 25 08:24:20 
+ 2008 ---
This is prevoyance.dbf interpretation.

Header:
[code]
  30 01 07 05 06 00 00 00  28 02 3b 00 00 00 00 00  |0...(.;.| 
  ~1 ~~~2 ~~3  4 5
0010  00 00 00 00 00 00 00 00  00 00 00 00 03 03 00 00  ||
   ~6 ~7
[/code]
1 - sugnature, 0x30 - Visual FoxPro
2 - last modification YYMMDD - 01/07/05
3 - number of records, LSB_32 - 6
4 - header size/first record offset, LSB_16 - 0x0228
5 - record size, LSB_16 - 0x3b=59
6 - flags, 0011b - 0x1 structure .cdx, 0x2 - has memo .fpt
7 - codepage mark 0x3 - 1252 -- Windows, U.S.A  West European (FP, VFP 
specific)
see also: http://www.openoffice.org/issues/show_bug.cgi?id=18728

Field descriptors:
[code]
0020  50 4b 5f 50 52 45 56 4f  59 41 00 49 01 00 00 00  |PK_PREVOYA.I|
  1 ~2 ~~3
0030  04 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
  ~4 ~5 ~7
[/code]
1 - field name - PK_PREVOYA
2 - field type - 'I' signed integer LSB_32
3 - data offset in record, LSB_32 - 0x1
4 - field size - 0x4 (fixed for 'I')
5 - precision - 0x0 (fixed for 'I')
6 - flags, 0110b - 0x2 can be Null, 0x4 has binary data
[code]
0040  46 4b 5f 43 4c 49 45 4e  54 53 00 49 05 00 00 00  |FK_CLIENTS.I|
0050  04 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
0060  46 4b 5f 45 4e 56 45 4c  4f 50 00 49 09 00 00 00  |FK_ENVELOP.I|
0070  04 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
0080  44 41 54 45 53 4f 55 53  43 00 00 54 0d 00 00 00  |DATESOUSC..T|
0090  08 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
00a0  4e 55 4d 50 4f 4c 49 43  45 00 00 43 15 00 00 00  |NUMPOLICE..C|
00b0  19 00 02 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
00c0  43 4f 4d 4d 45 4e 54 53  00 00 00 4d 2e 00 00 00  |COMMENTS...M|
00d0  04 00 02 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
00e0  4d 4f 4e 54 41 4e 54 00  00 00 00 42 32 00 00 00  |MONTANTB2...|
00f0  08 0e 06 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
[/code]
FK_CLIENTS, I, 0x5, 4, 0, null,bin
FK_ENVELOP, I, 0x9, 4, 0, null,bin
DATESOUSC, T, 0xd, 8, 0, null,bin
NUMPOLICE, C, 0x15, 0x19=25, 0, null
COMMENTS, M, 0x2e, 4, 0, null (4 ASCII digits - block number in fpt)
MONTANT, B, 0x32, 8, 0xe=14, null,bin (8 bytes in IEEE representation) (VFP 
specific)
[code]
0100  5f 4e 75 6c 6c 46 6c 61  67 73 00 30 3a 00 00 00  |_NullFlags.0:...|
0110  01 00 05 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
[/code]
_NullFlags, pseudotype '0', offset 0x3a, flags 0x1 - system column
bitmap for fields to test 'IS NULL' condition (VFP specific)
http://www.foxcentral.net/microsoft/WhatsNewInVFP9_Chapter09.htm
http://www.dfpug.de/buecher/fundamentals/Hack6/S1C2.HTM

[code]
0120  0d
[/code]
end of field descriptors marker
[code]
0121  70 67 64 61 74 61 73  2e 64 62 63 00 00 00 00 |.pgdatas.dbc|
0130  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  ||
*
0220  00 00 00 00 00 00 00 00  
[/code]
hole between field descriptors, VFP backlink info, has database (.dbc) file 
name

First record:
[code]
0228  2a 01 00 00 00 3c 01 00  00 9b 00 00 00 5e 6a 25
  ~1 ~~2 ~~~3 ~~4 
0238  00 00 00 00 00 61 32 33  20 20 20 20 20 20 20 20  
  ~5 ~
0248  20 20 20 20 20 20 20 20  20 20 20 20 20 20 00 00
  ~6 ~
0258  00 00 00 00 00 00 00 00  00 00 00
  7 ~~~8 ~9
[/code]
1 - delete flag, 2a='*' - deleted
2 - PK_PREVOYA, 0x0001=1
3 - FK_CLIENTS, 0x013с=316
4 - FK_ENVELOP, 0x009b=155
5 - DATESOUSC, has binary representation of date instead MMDD (bin flag was 
on!)
6 - NUMPOLICE, a23  
7 - COMMENTS, zeroes
8 - MONTANT, 0
9 - _NullFlags, 0 - no NULL fields in record

Second record:
[code]
0263  20 03 00 00 00  3c 01 00 00 9b 00 00 00
  ~1 ~~2  ~~3 ~~4
0270  c7 69 25 00 00 00 00 00  66 64 66 64 66 64 20 20
  ~~5  ~~~
0280  20 20 20 20 20 20 20 20  20 20 20 20 20 20 20 20

[dba-issues] [Issue 94467] Unable to open some DBF fi les (created by FoxPro)

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





--- Additional comments from borm...@openoffice.org Thu Dec 25 10:39:27 
+ 2008 ---
Some VFP specs:

Table File Structure
http://msdn.microsoft.com/en-us/library/st4a0s68(VS.71).aspx
errata: in Field Subrecords Structure table 
9 – 32 | Reserved should be 9 – 31 | Reserved

Data and field types
http://msdn.microsoft.com/en-us/library/ww305zh2(VS.71).aspx

Code Pages Supported by Visual FoxPro
http://msdn.microsoft.com/en-us/library/8t45x02s(VS.71).aspx



-
Please do not reply to this automatically generated notification from
Issue 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...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


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



[dba-issues] [Issue 94467] Unable to open some DBF fi les (created by FoxPro)

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





--- Additional comments from borm...@openoffice.org Thu Dec 25 11:43:39 
+ 2008 ---
Another good specs:
http://www.clicketyclick.dk/databases/xbase/format/


-
Please do not reply to this automatically generated notification from
Issue 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...@dba.openoffice.org
For additional commands, e-mail: issues-h...@dba.openoffice.org


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



[sc-issues] [Issue 97475] Writing/reading dbf does n ot set/respect EOF (0x1A, 1Ah)

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





--- Additional comments from borm...@openoffice.org Mon Dec 22 09:00:55 
+ 2008 ---
EOF-marker (26-dec, 0x1A) placed at logical end of file -- at offset 
(NumberOfRecords * RecordSize + HeaderSize),
where 
NumberOfRecords :: UINT32_LSB @ 0x4 offset of dbf header
HeaderSize :: UINT16_LSB @ 0x8 offset of dbf header
RecordSize :: UINT16_LSB @ 0xA offset of dbf header
LSB :: mean lost-significant byte first (intel byte order).

.dbf file can contain any garbage after this position but this in not an error.

I think, OOo should
- write this marker when saves dbf,
- saves ability to read dbfs without this marker.

-
Please do not reply to this automatically generated notification from
Issue 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 97475] Writing/reading dbf does n ot set/respect EOF (0x1A, 1Ah)

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





--- Additional comments from borm...@openoffice.org Mon Dec 22 09:08:52 
+ 2008 ---
This link
http://www.clicketyclick.dk/databases/xbase/format/dbf.html
says about logical eof-mark position (footnote 11).

-
Please do not reply to this automatically generated notification from
Issue 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 97475] Writing/reading dbf does n ot set/respect EOF (0x1A, 1Ah)

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


User bormant changed the following:

What|Old value |New value

  CC|'oj'  |'bormant,oj'





-
Please do not reply to this automatically generated notification from
Issue 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 96336] Filtering is unacceptably slow with attached file.

2008-11-20 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96336





--- Additional comments from [EMAIL PROTECTED] Thu Nov 20 14:31:23 + 
2008 ---
Problematic file has some cell styles in content.xml.

If we 
1) select all (Ctrl+A)and copy (Ctrl+C)
2) create new spreadsheet
3) press v (arrow down) on paste button, select unformatted text
4) select Separated by (*) Tab in Text import dialog, press [Ok]
5) try steps 1, 2 from initial comment
problem doesn't appear.

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

-
To unsubscribe, 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 96191] .dbf export fails on N,x,0 fields

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





--- Additional comments from [EMAIL PROTECTED] Fri Nov 14 11:22:09 + 
2008 ---
Hmm, if you use A1 fld,n,8,2 (-.99..9.99) and 
- A2 9.99 you doesn't get error, field in .dbf will be fld,N,8,2
- A2 99.99 you doesn't get error, field in .dbf will be fld,N,9,2
i.e. field capacity silently adjusted for data size.

If you use A1 fld,n,?,0 or fld,n,?,1 field capacity doesn't silently 
adjusted for data size and you get error.

Is this behavior by design or as happened?

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

-
To unsubscribe, 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 96169] .dbf remains locked if exp ort encounters exception

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 09:33:04 + 
2008 ---
Created an attachment (id=57961)
Simplest test file


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

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


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



[sc-issues] [Issue 96169] .dbf remains locked if exp ort encounters exception

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 09:43:10 + 
2008 ---
test.ods consist of A1 with field description fld,c,1 and A2 with 
data test. A2 doesn't meet field restriction (1 symbol length). Encoding 
doesn't matter.
.dbf file stays opened and locked after error on step 2.

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

-
To unsubscribe, 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 96169] .dbf remains locked if exp ort encounters exception

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 10:57:47 + 
2008 ---
In linux this error exists too but we doesn't get error message on step 3. 
Although lsof says that .dbf file hasn't been closed after step 2:
# lsof | grep test.dbf
soffice.bin ... 40uW ... test.dbf (deleted)


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

-
To unsubscribe, 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 96191] .dbf export fails on N,x,0 fields

2008-11-13 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=96191
 Issue #|96191
 Summary|.dbf export fails on N,x,0 fields
   Component|Spreadsheet
 Version|OOo 3.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|save-export
 Assigned to|spreadsheet
 Reported by|bormant





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 16:37:14 + 
2008 ---
1. Download and open attached tst.ods OR create new spreadsheet and set
A1 to fld,n,4,0, A2 to 99, A3 to -99 without quotes.

2. Select from menu File / Save as ..., select file name tst, file type dBASE 
(.dbf) press Save button, accept warning about format (if occured), accept 
encoding (doesn't matter). Ok.

3. Set A2 to , A3 to -999 (without quotes) both or any and repeat step 
2. Message box Error saving the document tst: Connection to the file could not 
be established. appears. 
NOTE: After this tst.dbf locked, it's another bug, so change name of dbf when 
save as .dbf on every another try.

Expected behavior: in step 3 file saved without error.

Explanation:
.dbf field of type N,x,0 can contain numbers from -9((x-1) times) to 9(x 
times). For ex. N,4,0 can contain numbers from range -999... In other 
words, dbf integer numeric field with length x can contain integer numbers of  
length is x, where lenghth is:
- number of significant digits for positive numbers
- number of significant digits minus 1 for negative numbers.
OOo mistakenly believed that .dbf field of type N,x,0 can contain (x-2) 
significant digits regardless to number sign.

So, for .dbf field fld,N,len,0 range of acceptable value is 
 min = - 10^(len - 1) + 1
 max = 10^(len) - 1

For ex. 
fld1,N,5,0: 
 min = -10^(5-1)+1 = -10^4+1 = -1+1 = -
 max = 10^(5)-1 = 10^5-1 = 10-1 = 9

ps. Sorry for my poor English.

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

-
To unsubscribe, 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 96191] .dbf export fails on N,x,0 fields

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 16:41:12 + 
2008 ---
Created an attachment (id=57977)
test file


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

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


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



[sc-issues] [Issue 96191] .dbf export fails on N,x,0 fields

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





--- Additional comments from [EMAIL PROTECTED] Thu Nov 13 16:43:21 + 
2008 ---
OOo 2.4.2 has the same behavior.

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

-
To unsubscribe, 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 96191] .dbf export fails on N,x,0 fields

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





--- Additional comments from [EMAIL PROTECTED] Fri Nov 14 06:12:05 + 
2008 ---
This is similar to i94644 but not the same.
This is about field,N,x,_0_. 
For field,N,len,dec need to reduce the length of an integer part of a further 1 
(for decimal separator).

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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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





--- Additional comments from [EMAIL PROTECTED] Wed Jun  4 16:35:04 + 
2008 ---
@er: Yes, I did. lcl_MayBeDBase() says true on i9851 and i4991 dbfs.

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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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





--- Additional comments from [EMAIL PROTECTED] Tue May  6 10:17:46 + 
2008 ---
oj, this encodind applays not only for 0x30 marked dbfs, so the condition is 
not only 

case VisualFoxPro:

but

static const char dbf_markers[] = \x8B\xCB\x03\x30\x43\x63\x83\xF5\xFB;
/* valid codepaged markers are with \x8B\xCB exception */
static const char *dbf_markers_cp = dbf_markers+2;

if ( strchr(dbf_markers_cp, m_aHeader.db_frei[17]) 
 !m_aHeader.db_frei[18]  !m_aHeader.db_frei[19])
{
...

Condition  !m_aHeader.db_frei[18]  !m_aHeader.db_frei[19] is from 
microsoft cpzero program, shipped with foxpro since 2.6 or earlier and prevent 
corruption future dbf extension that may it's own point of view on reserved 
fields.

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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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





--- Additional comments from [EMAIL PROTECTED] Tue May  6 11:06:23 + 
2008 ---
yes, of course, you are right. It must be m_aHeader.db_type. Copy/Paste is 
wrong method of software developing :-)

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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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





--- Additional comments from [EMAIL PROTECTED] Mon May  5 16:53:34 + 
2008 ---
Solution for this is not complex.
1) modify lcl_MayBeDBase( ) in sc/source/ui/unoobj/scdetect.cxx to accept 
foxpro dbfs as valid dbf-tables without penalty to severity of checking;
2) modify corresponding part of dbase driver (DTable.hxx, DTable.cxx) in 
connectivity/source/drivers/dbase to acts hand-by-hand.
After patch we checks:
1) marker (1 byte at offset 0) corresponding to dbase driver source to 
guarantee that driver can read this type of dbf (NEW);
2) 0x0d after n-th field description (MODIFIED);
3) value of data offset (or header size, that is the same) (2 bytes at offset 
8) checked more strictly (MODIFIED).
It doesn't break current functionality.

Test sequence:
1) start scalc;
2) from main menu select File/Open... or press Ctrl+O;
3) in files of type dropdown select dBASE (*.dbf);
4) navigate to test_h.dbf from attachment's test_h.dbf or exam.dbf and press 
Open button;
5a) without patch you'll see ASCII filter parameters dialog (wrong behaviour);
5b) with patch you'll see dBASE encoding dialog (right behaviour).

Import of exam.dbf will fail according to another bug 
http://qa.openoffice.org/issues/show_bug.cgi?id=87325, it's another problem and 
has another resolution.

ps. Sorry for my English, I'm not a native speaker.

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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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





--- Additional comments from [EMAIL PROTECTED] Mon May  5 16:57:08 + 
2008 ---
Created an attachment (id=53391)
patch + test dbfs


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

-
To unsubscribe, 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 88577] Cannot open certain DBF (w ith offset)

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


User bormant changed the following:

What|Old value |New value

  CC|'kpalagin,oj' |'bormant,kpalagin,oj'





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

-
To unsubscribe, 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 18728] Import DBF files - supress Character set selection dialog at each access . This makes batch/frequent use easier. Perhap s we should store the last used code page.

2008-04-22 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=18728





--- Additional comments from [EMAIL PROTECTED] Tue Apr 22 08:54:43 + 
2008 ---
 Certain DBF files (with markers 0x8B and 0xCB) provides its encoding.
Correct is 
Certain DBF files (*except* with markers 0x8B and 0xCB) provides its encoding.


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

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


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



[gsl-issues] [Issue 84571] Slackware doinst.sh: proce ss \n

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





--- Additional comments from [EMAIL PROTECTED] Tue Jan 29 14:26:30 + 
2008 ---
obr, is this works on tcsh? How about to use different $ECHOCMD on shells?

ECHOCMD=echo
if [ `echo -e \n`==\n ] ; then ECHOCMD=echo -e; fi
...
$ECHOCMD some\nstrings\nwith\newlines


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

-
To unsubscribe, 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 82952] CSV import is wrong on CR (0x13) value

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





--- Additional comments from [EMAIL PROTECTED] Wed Nov 21 12:52:32 + 
2007 ---
1) 0x13 alone never meant newline on any system. How about Commodore 
machines, Apple II family and Mac OS up to version 9? 
http://en.wikipedia.org/wiki/Line_feed
2) 0x10 or 0x13 are never used as newline. CR=13(dec)=0D(hex), LF=10(dec)=0A
(hex). Win/dos newline style is CR LF pair, *nix style is single LF -- both are 
mentioned in RFC 4180 (http://tools.ietf.org/html/rfc4180) as valid line 
separators.
3) Single CR is not mentioned in RFC 4180 as valid line separator. I don't know 
how many single CR separator files come from anywhere.

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

-
To unsubscribe, 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 82952] CSV import is wrong on CR (0x13) value

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





--- Additional comments from [EMAIL PROTECTED] Wed Nov 21 14:06:15 + 
2007 ---
Yes, RFC 4180 tells about CR LF sequence, not CR/LF alternative.
However, CSV file is a *text* file above all and community uses historical 
LF/CRLF/CR newlines in text files. So, usually we don't know system, received 
file come from.
May be we need option (enhancement), that control import of single-cr -- use it 
as newline char (as now) or use it as line-break (as Ctrl+Enter in Calc and 
Shift+Enter in Writer).

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

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


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



[framework-issues] [Issue 77452] Missing Replace() function in OOo.basic

2007-05-17 Thread bormant
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=77452
 Issue #|77452
 Summary|Missing Replace() function in OOo.basic
   Component|framework
 Version|OOo 2.2
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|scripting
 Assigned to|npower
 Reported by|bormant





--- Additional comments from [EMAIL PROTECTED] Thu May 17 08:55:08 + 
2007 ---
Cann't find Replace() function in OOo.basic 

Quote from VBA reference:

Replace Function

Description
Returns a string in which a specified substring has been replaced with another 
substring a specified number of times.

Syntax
Replace(expression, find, replace[, start[, count[, compare]]])

The Replace function syntax has these named arguments:

expression Required. String expression containing substring to replace. 
find Required. Substring being searched for. 

replace Required. Replacement substring. 
start Optional. Position within expression where substring search is to begin. 
If omitted, 1 is assumed. 

count Optional. Number of substring substitutions to perform. If omitted, the 
default value is –1, which means make all possible substitutions. 

compare Optional. Numeric value indicating the kind of comparison to use when 
evaluating substrings. See Settings section for values. 

Settings

The compare argument can have the following values:

vbUseCompareOption –1 Performs a comparison using the setting of the Option 
Compare statement. 

vbBinaryCompare 0 Performs a binary comparison. 

vbTextCompare 1 Performs a textual comparison. 

vbDatabaseCompare 2 Microsoft Access only. Performs a comparison based on 
information in your database. 

Return Values

Replace returns the following values:

expression is zero-length Zero-length string () 

expression is Null An error. 

find is zero-length Copy of expression. 

replace is zero-length Copy of expression with all occurences of find removed. 

start  Len(expression) Zero-length string. 

count is 0 Copy of expression. 

Remarks
The return value of the Replace function is a string, with substitutions made, 
that begins at the position specified by start and and concludes at the end of 
the expression string. It is not a copy of the original string from start to 
finish.

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

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


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