[sw-issues] [Issue 97421] Writer loops after deletin g invisible recorded changes and Undo

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





--- Additional comments from maju...@openoffice.org Fri Dec 18 07:47:59 
+ 2009 ---
hi mba,

I tested a some bigger document which contains some redlines in  and found it
spend too much time on openning file...  it's because my change in
ComparePosition() in the patch. So please give it up.

i just changed if( rStt1  rStt2 ) to if( rStt1 = rStt2 ). The
ComparePosition() is called in AppendRedline() and according result returned
from ComparePosition(), many redlines will be inserted into pRedlineTbl. Could
you please give me some suggestions about the logic to handle redlines here? I
will continue working on this issue.


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

-
To unsubscribe, e-mail: 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 95487] the CVS access for majun

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


User majun51 changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |94002
  is|  |





--- Additional comments from maju...@openoffice.org Tue Dec  1 02:55:17 
+ 2009 ---
Migration of Keys, thank you!

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

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



[www-issues] [Issue 94002] Migrate sshkeys to SVN cod e repository

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


User majun51 changed the following:

What|Old value |New value

 IssuesThisDependsOn|48259,83310,85753,87971,93|48259,83310,85753,87971,93
|109,95701,95831,96157,9632|109,95487,95701,95831,9615
|9,96386,96496,96680,96693,|7,96329,96386,96496,96680,
|96849,97113,97140,97525,97|96693,96849,97113,97140,97
|576,97986,98388,98396,9848|525,97576,97986,98388,9839
|8,98531,98613,98733,98969,|6,98488,98531,98613,98733,
|99628,99758,99969,101361,1|98969,99628,99758,99969,10
|01606,104218,104287,104688|1361,101606,104218,104287,
|,104918,105949,106096,1061|104688,104918,105949,10609
|70,106420,106460,1068 |6,106170,106420,10646





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


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



[sw-issues] [Issue 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Thu Oct 29 06:07:00 
+ 2009 ---
Created an attachment (id=65721)
patch 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: 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Thu Oct 29 06:33:31 
+ 2009 ---
hi mst,

Thanks very much to point out the question about SetValues(rPaM) in my patch.
You are right that the rPaM became something invalid after Move operation(let me
just call it misorder with start/end nContent index,but the start/end nNode
index is still correct in rPaM) 
The call SetValues(rPaM) is used to update the Range in pUndo by rPaM in time(
it should be called after inserting delete redline mainly because it changes the
order of Nodes under hidden redlining mode )

The pRedlPaM is used in the AppendRedline(...REDLINE_DELETE...) which represents
the range of delete redline, and then used in the
AppendRedline(...REDLINE_INSERT...). But before
AppendRedline(...REDLINE_INSERT...) pRedPaM was adjusted a little so it can
represents the range of insert redline:
But it only adjust the pPoint to the start of the range of insert redline(that
is to say,its pMark is still at the start of range of delete redline). 
We should adjust its pMark member to be at the end of the range of insert
redline,it's really one node offset!(i think delete redline is just followed
insert redline) 

Really, i do think the redlining code is too complicated and there are conflict
between undo and redlining...:(


so in this patch:
 - moving the SetValues much lines down and use pRedlPam as you have suggested. 

Please check and point out if anything wrong or missed, thank you very much.

-
Please do not reply to this automatically generated notification from
Issue 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 97421] Writer loops after deletin g invisible recorded changes and Undo

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





--- Additional comments from maju...@openoffice.org Fri Oct 30 02:36:12 
+ 2009 ---
hi mba,

Could you please check this patch and point out if anything wrong or missed?
Thanks very much.(It seems solve Issue 97420 too )

In this patch:
- changed a critical case in ComparePosition()
- saved nodes for the hidden redlines 

-
Please do not reply to this automatically generated notification from
Issue 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Wed Oct 28 07:35:20 
+ 2009 ---
Created an attachment (id=65689)
patch 3 for this issue


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

-
To unsubscribe, e-mail: 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Wed Oct 28 08:23:36 
+ 2009 ---
Created an attachment (id=65693)
patch 3: the former patch forgot to erase one parameter added in Ctor for 
storing the selection start/end index


-
Please do not reply to this automatically generated notification from
Issue 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Wed Oct 28 08:24:49 
+ 2009 ---
hi mst,
Sorry for not replying in time. Last two weeks i was busy on other tasks.
For you suggestion,
i)Yes, the call Show(0) does nothing but Show(1) do MoveFromSection().
ii)Yes, this function sorts whole paragraphs and according you suggestion that
just expand the PaM seems work well.
iii)OK, new members for storing the selection start/end index seems
needless.(They are needless for sort function,they may be need just when user
want to see their seletion range in UI after undo sort feature)
 
For this patch, just expand the PaM to whole seleted paragraphs rather than the
selection range.
Please check and point out if anything wrong or missed, thanks very much.

-
Please do not reply to this automatically generated notification from
Issue 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 95487] the CVS access for majun

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





--- Additional comments from maju...@openoffice.org Tue Oct 13 02:27:37 
+ 2009 ---
Hi st,
i'v already added myself an entry to the developer list at
http://wiki.services.openoffice.org/wiki/DomainDeveloper

Could you please help to install my key?

-
Please do not reply to this automatically generated notification from
Issue 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Tue Oct 13 05:45:55 
+ 2009 ---
Created an attachment (id=65328)
patch 2 for this issue


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

-
To unsubscribe, e-mail: 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Tue Oct 13 05:48:58 
+ 2009 ---
hi mst,
For this patch, 
  i) added two members to record the original char index for selection text.
  ii)adjusted code for hidden redline: if there was hide redline, show it up 
first.
so it can work for redlining under both modes(show and hide). Please have a look
at and remind me if anything missed, thanks.

By the way, i find another big problem for SortText(): Redlines in texts which
are in sorting paragraph but not in cursor selection area lose after sorting and
after undo. Redlines are DELETE type redlines will lose content under hidden
mode. It is mainly because sorting is for full paragraph, but only cursor
selecting range is saved in SwUndoRedlineSort.

-
Please do not reply to this automatically generated notification from
Issue 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Wed Sep 30 09:10:06 
+ 2009 ---
hi mst,
Thank you for checking!
sorry for the inverted patch and stupid mistakes!
i can reproduce the problem you'd pointed out. It's my fault in the patch that
it didn't take hidden redline into account. Obviously hidden redline changes 
the offsets of nodes in the sorted text too. 
Thank you very much for your suggestions, both are very reasonable, of course
the former is an easiest way.  I'll rework on this issue soon after spending our
National Day holiday. 

-
Please do not reply to this automatically generated notification from
Issue 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 97384] Deleting characters and in sert a Writer file under Record Changes mode c rashes Writer

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:12:14 
+ 2009 ---
Created an attachment (id=64331)
patch


-
Please do not reply to this automatically generated notification from
Issue 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 97384] Deleting characters and in sert a Writer file under Record Changes mode c rashes Writer

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:21:20 
+ 2009 ---
Please have a check to this patch,thanks in advance.

-
Please do not reply to this automatically generated notification from
Issue 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 97421] Writer loops after deletin g invisible recorded changes and Undo

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:23:37 
+ 2009 ---
Created an attachment (id=64332)
patch 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 97421] Writer loops after deletin g invisible recorded changes and Undo

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:24:30 
+ 2009 ---
Please have a check,thanks in advance.

-
Please do not reply to this automatically generated notification from
Issue 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:26:53 
+ 2009 ---
Created an attachment (id=64333)
patch 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 91504] Sort and Undo text with pi cture cause OOo crash

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





--- Additional comments from maju...@openoffice.org Mon Aug 24 08:27:34 
+ 2009 ---
Please have a check about this patch,thanks in advance.

-
Please do not reply to this automatically generated notification from
Issue 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 95487] the CVS access for majun

2008-10-27 Thread majun51
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=95487
 Issue #|95487
 Summary|the CVS access for majun
   Component|framework
 Version|1.0.0
Platform|All
 URL|
  OS/Version|All
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|www
 Assigned to|mba
 Reported by|majun51





--- Additional comments from [EMAIL PROTECTED] Mon Oct 27 07:44:08 + 
2008 ---
I am Majun in Beijing Redflag CH2000 Software Co., Ltd.I want to do some work 
in the OpenOffice .I will work with ama.I need the CVS access.

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

-
To unsubscribe, 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 95487] the CVS access for majun

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





--- Additional comments from [EMAIL PROTECTED] Mon Oct 27 07:46:17 + 
2008 ---
Created an attachment (id=57488)
The public key of MaJun


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

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


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