Re: Update Turkish Translation

2008-11-11 Thread Ozgur Ugras BARAN
ons to all.. Ugras On Tue, Nov 11, 2008 at 12:41 PM, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: > On 11/11/2008 08:43, Ozgur Ugras BARAN wrote: > >> Hi Ibrahim, >> I can help on Turkish translation, if you wish.. It's been a while I >> didn't >> part

Re: Update Turkish Translation

2008-11-10 Thread Ozgur Ugras BARAN
Hi Ibrahim, I can help on Turkish translation, if you wish.. It's been a while I didn't participate lyx.. Ugras On Thu, Nov 6, 2008 at 1:07 AM, H. İbrahim Güngör < [EMAIL PROTECTED]> wrote: > On Thursday 06 November 2008 00:56:03 Pavel Sanda wrote: > > H. ??brahim Güngör wrote: > > > Many fixes

Re: 2007 LyX Meeting: Invitation

2007-06-18 Thread Ozgur Ugras BARAN
I'd love to join, but apparently it won't be possible for me. Do you plan any means of online access for hacking/ conferencing etc? regards, Ugras

Re: [patch] Bug-3183 toc does not update automatically for unnumbered entries

2007-06-14 Thread Ozgur Ugras BARAN
No, unfortunately not yet, Abdel. I guess I can get an access after the release. So, I'll be glad if you can commit. thanks, Ugras On 6/14/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Juergen Spitzmueller wrote: > Ozgur Ugras BARAN wrote: > >> Attached patch correc

[patch] Bug-3183 toc does not update automatically for unnumbered entries

2007-06-13 Thread Ozgur Ugras BARAN
Attached patch corrects the buglet mentioned in the heading. I don't know this quick hack has any consequences, so please somebody verify. here is the svn log: Fix unnumbered toc entries do not update automatically as you type. regards, Ugras --- buffer_funcs.cpp-lyx-1.5.0rc1 2007-06-11 10:45

Re: InsetListingsParams enhancement for Bo (was [patch] Bug 3639- Sorted listing params)

2007-05-30 Thread Ozgur Ugras BARAN
Otherwise, '?something ' will not match anything. I guess, a trim is already applied. I updated the code for the situations '? something' and attached the patch. However, It does not cover the situations '?some thing'. I used trim (), but since the string is already trimmed, rtrim() is actual

Re: InsetListingsParams enhancement for Bo (was [patch] Bug 3639- Sorted listing params)

2007-05-30 Thread Ozgur Ugras BARAN
On 5/30/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Bo Peng wrote: >> Sorry Bo, it is been a bit late, but I wait for all the changes for >> the source file settles. > > It can go in if you change .find() to contains(), and trim() suffix to > avoid problem with '?style ' etc (if it has not

InsetListingsParams enhancement for Bo (was [patch] Bug 3639- Sorted listing params)

2007-05-29 Thread Ozgur Ugras BARAN
Attached is a patch for a small feature that Bo asked for. It simply filters InsetListingsParams when the text in the corresponding dialog is entered as ? . Sorry Bo, it is been a bit late, but I wait for all the changes for the source file settles. cheers Ugras Index: insets/InsetListingsParam

Re: [patch] Bug 3639- Sorted listing params

2007-05-26 Thread Ozgur Ugras BARAN
Ah, yes I forgot contains.. I'll fix it. Shall I also make the conversion to docstring for every string and char* I use in parValidator::parValidator? ugras On 5/26/07, Bo Peng <[EMAIL PROTECTED]> wrote: > Indeed, I am agree with Alfredo on this issue. Therefore I have > attached another patch

Re: [patch] Bug 3639- Sorted listing params

2007-05-26 Thread Ozgur Ugras BARAN
Ah... OK, I didn't get the thing. Why don't you use string in the first place (in listings_param_table) ? > But it is more difficult to read, IMHO. Yes. You could as well use: if (listings_param_table[idx].name[0]) :D I guess, I remember this from hilarious web site "how to write an

Re: [patch] Bug 3639- Sorted listing params

2007-05-26 Thread Ozgur Ugras BARAN
variable that we compare with empty string is of type const char, not string.. A possible way of doing it would be: !string(listings_param_table[idx].name).empty() But it is more difficult to read, IMHO. Ugras Use string::empty() instead. Abdel.

Re: [patch] Bug 3639- Sorted listing params

2007-05-26 Thread Ozgur Ugras BARAN
5. I would appreciate it you can also implement ?xx ==> all parameters that contains xx. That is to say, ?placement would show floatplacement. style would show all style related parameters. You can also consider xx ==> all parameters that prefixIs(xx), and other parameters that contains(xx). I

Re: [patch] Bug 3639- Sorted listing params

2007-05-25 Thread Ozgur Ugras BARAN
On 5/25/07, Bo Peng <[EMAIL PROTECTED]> wrote: On 5/25/07, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: > Attached patch sorts listings inset params, and hence solves bug 3639. > Please somebody review and apply the patch. 1. table[idx].name is char * so != "" is

[patch] Bug 3639- Sorted listing params

2007-05-25 Thread Ozgur Ugras BARAN
Attached patch sorts listings inset params, and hence solves bug 3639. Please somebody review and apply the patch. I could also sort the listings_param_table[] entries manually, but I find this way easier (and more guaranteed). regards, ugras Index: insets/InsetListingsParams.cpp ==

Re: Beta 3 (final adjustments)

2007-05-17 Thread Ozgur Ugras BARAN
Compile and works fine here. Looks pretty solid at the first glance. Thanks Jose (and everybody) Ugras On 5/18/07, José Matos <[EMAIL PROTECTED]> wrote: On Thursday 17 May 2007 1:05:33 pm José Matos wrote: > Hi all, > I will be busy until tonight, when I intend to release beta 3. I h

Re: [CTAN Announcements] New CTAN package: glossaries

2007-05-17 Thread Ozgur Ugras BARAN
On 5/17/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > For me, another candidate for multiple glossaries implementation in lyx. > Supporting all available package will not be as easy as it was in multiple > indices.. > > I really like to hear

Re: [CTAN Announcements] New CTAN package: glossaries

2007-05-16 Thread Ozgur Ugras BARAN
For me, another candidate for multiple glossaries implementation in lyx. Supporting all available package will not be as easy as it was in multiple indices.. I really like to hear how would you rate it? Especially compared to gloss and glossary. Documentation is awful, though. For a standard use

Re: [Patch] fic TocBackend for child document (and bug 3616)

2007-05-16 Thread Ozgur Ugras BARAN
The patch works well for child documents. I should also report that, it works for algorithms list. On 5/16/07, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: No there were no assertion. Actually, assertion is triggered due to a problem introduced by two previous patches (today?) that solv

Re: [Patch] fic TocBackend for child document (and bug 3616)

2007-05-16 Thread Ozgur Ugras BARAN
No there were no assertion. Actually, assertion is triggered due to a problem introduced by two previous patches (today?) that solves LOF/LOT selection issue and solving this bug. Abdel, if you will not have time to solve this, would you revert LOT/LOF patch and apply my workaround? We are too cl

Re: [Patch] fic TocBackend for child document (and bug 3616)

2007-05-16 Thread Ozgur Ugras BARAN
when selecting LOF/ LOT for User Guide assertion triggered. Here is debug info: #0 0x40c7c327 in raise () from /lib/tls/libc.so.6 #1 0x40c7db75 in abort () from /lib/tls/libc.so.6 #2 0x085ffb47 in lyx::support::abort () at abort.cpp:25 #3 0x0807339a in boost::assertion_failed (expr=0x86b7476

Re: The documention (and new features) Was: about the listings and othe

2007-05-16 Thread Ozgur Ugras BARAN
Glossaries has. See Extended.lyx section 3.3. On 5/15/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: On Tue, 15 May 2007, José Matos wrote: > On Sunday 13 May 2007 20:26:49 [EMAIL PROTECTED] wrote: >> I would if I could - I have only used LyX once in the last year or so, >> which means I hav

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
There is no bugzilla entry. I found it from mailing list.. http://marc.info/?l=lyx-devel&m=117880601303849&w=2 On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: José Matos wrote: > > I agree. > > +1 Committed. Was there a bugzilla entry about this? I thought so, but I don't find it

Re: [patch] LOF LOT always selects the last entry.

2007-05-15 Thread Ozgur Ugras BARAN
Is there a place that I can order the book "lyx developer's handbook vol:1 :101 ways o write svn logs" :-) On 5/15/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > This small patch prevents LOF, LOT always selects the last entry. > LOT/LO

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Gosh.. this takes hours to link.. > > I have tested, but no crashes.. sorry. I will test it again tonight. Maybe my system is pickier (64bit). Anyway, seems your other (TOC backend) patch

Re: [patch] LOF LOT always selects the last entry.

2007-05-15 Thread Ozgur Ugras BARAN
I guess I'll leave implementation of this to others for the moment. If nobody take care about this problem, then it would be a good point for me to learn lyx internals. thanks a lot for taking care of the patch, Abdel. Ugras On 5/15/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote:

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
Gosh.. this takes hours to link.. I have tested, but no crashes.. sorry. I will test it again tonight. regards, ugras On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > How can I enable stdlib-debug ? --enable-stdlib-debug Jürgen

[patch] LOF LOT always selects the last entry.

2007-05-15 Thread Ozgur Ugras BARAN
This small patch prevents LOF, LOT always selects the last entry. LOT/LOF still does not follow the cursor, yet, but for this, we need serious update in TocBackend. Do you think this solves bug 3183? Hopefully, last patch for toc stuff. here is svn log message: * src/frontends/qt4/TocWidget.cp

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
C, which is correct place for this IMHO. regards, Ugras On 5/15/07, Helge Hafting <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > It is strictly dialog related problem, therefore I should have put > some function in controller. The place for a flag like demotionEnabled > may

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
Umm. let me check, then. How can I enable stdlib-debug ? Ugras On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > I can't reproduce this. I even tried inline-in command from buffer. > > One point is, if you have older versions of toc s

Re: [patch] Bug 3529-TOC widget does not select the current part/section/subsection correctly

2007-05-15 Thread Ozgur Ugras BARAN
Correct bug 3529-(TOC widget does not select the current part/section/subsection correctly) by replacing blockSignal() directives for tocTV- selectionModel() with disconnect and reconnect relevant signal. Thanks Jurgen, Abdel. ugras On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Abd

Re: [patch] do not allow too much demote in TOC dialog

2007-05-15 Thread Ozgur Ugras BARAN
ll re-send the patch with your comments applied, after coding the proposed solution of Abdel. Ugras On 5/15/07, Jürgen Spitzmüller <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > strange.. nobody complained the code below.. > > + > moveInTB->setEnabled(form_->

Re: [patch] Bug 3529-TOC widget does not select the current part/section/subsection correctly

2007-05-15 Thread Ozgur Ugras BARAN
This one should be better in behaviour, but ugly as hell. Would you please test it, again? regards, Ugras On 5/15/07, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: Oh, there is another problem, now. Please do not apply patch. When you change the selection with mouse, cursor goes

Re: [patch] Bug 3529-TOC widget does not select the current part/section/subsection correctly

2007-05-14 Thread Ozgur Ugras BARAN
TED]> wrote: Ozgur Ugras BARAN wrote: > Attached patch solves TOC bug 3529 for Qt-4.3-pre. The problem was > blocked selectionchanged signal for selectionModel prevents correct > repainting. I have no idea whether this patch works for qt-4.2 or not. > Therefore, please somebody test it?

Re: [patch] Bug 3529-TOC widget does not select the current part/section/subsection correctly

2007-05-14 Thread Ozgur Ugras BARAN
I can confirm that patch also works for qt 4.2.0. On 5/14/07, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: Attached patch solves TOC bug 3529 for Qt-4.3-pre. The problem was blocked selectionchanged signal for selectionModel prevents correct repainting. I have no idea whether this patch

[patch] Bug 3529-TOC widget does not select the current part/section/subsection correctly

2007-05-14 Thread Ozgur Ugras BARAN
Attached patch solves TOC bug 3529 for Qt-4.3-pre. The problem was blocked selectionchanged signal for selectionModel prevents correct repainting. I have no idea whether this patch works for qt-4.2 or not. Therefore, please somebody test it? verify, commit, enjoy :) Abdel, I have asked permissio

Re: [patch] do not allow too much demote in TOC dialog

2007-05-14 Thread Ozgur Ugras BARAN
On 5/14/07, Andre Poenitz <[EMAIL PROTECTED]> wrote: On Mon, May 14, 2007 at 08:19:59PM +0200, Ozgur Ugras BARAN wrote: > +bool const ControlToc::allowDemoteCurrentItem(size_t type) const > +{ > + return ((kernel().buffer().params().tocdepth - (*getCurrentTocItem(type))

Re: [patch] do not allow too much demote in TOC dialog

2007-05-14 Thread Ozgur Ugras BARAN
have another idea? Ugras On 5/14/07, Edwin Leuven <[EMAIL PROTECTED]> wrote: shouldn't the proper "enabled" flag be set in the kernel (bufferview.cpp?) instead of putting this in the controller? Ozgur Ugras BARAN wrote: > When demote button is pressed too many times, T

[patch] do not allow too much demote in TOC dialog

2007-05-14 Thread Ozgur Ugras BARAN
When demote button is pressed too many times, TOC item dissapears from the toc dialog, since it is no longer numbered. Hence, promoting back to the original state from TOC dialog is not possible. Attached patch is a way of correcting this behaviour. It simply prevents demoting the item more than d

Request for svn commit ights

2007-05-14 Thread Ozgur Ugras BARAN
Dear JMarc I am in Lyx development for nine -ten months and wish to continue for developing/ debugging for Lyx. I believe, I understood the development practices of lyx community well and I wish to gain svn commit access in order not to disturb other developers to commit in my place and also my p

Re: [patch] Bug 3377

2007-05-14 Thread Ozgur Ugras BARAN
Don't worry about it. I will apply it later, if I can get svn access. Ugras On 5/14/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Abdelrazak Younes wrote: > Ozgur Ugras BARAN wrote: >> Thanks, sir. But I have one more patch. I had a look at the usage of >> the b

Re: [patch] Bug 3377

2007-05-13 Thread Ozgur Ugras BARAN
Thanks, Uwe. On 5/12/07, Uwe Stöhr <[EMAIL PROTECTED]> wrote: > PS. I guess it is safe to close the bug 3377. Done. regards uwe

Re: [patch] Bug 3377

2007-05-11 Thread Ozgur Ugras BARAN
compliments, sir :) Ugras PS. I guess it is safe to close the bug 3377. I couldn't find a bugzilla entry for QExternal bug. On 5/11/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Attached trivial patch solves Bug 3377 (In insert graphic window: > canc

[patch] Bug 3377

2007-05-11 Thread Ozgur Ugras BARAN
Attached trivial patch solves Bug 3377 (In insert graphic window: canceling open dialog erases entry in text box). This bug is not Mac specific, but exist in Linux. (should exist in other OSes). Please may somebody apply the patch? regards, ugras --- QGraphicsDialog.cpp (revision 18067) +++ QGr

Re: [better patch] bugs 3528 and 3534

2007-05-11 Thread Ozgur Ugras BARAN
Abdel, I am afraid your patch introduces a couple of problems: In toc combo number of entries is multiplied when update button is pressed. (typeCO has entries tables/figure/TOC/tables/figure/TOC/. depending on how many times you pressed the button.) eventually, when older TOC is chosen f

Re: [better patch] bugs 3528 and 3534

2007-05-10 Thread Ozgur Ugras BARAN
st it and inform you today. Maybe we need that labyrinth at the end.. :-) Ugras On 5/10/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Attached patch solves two TOC dialog bugs 3528 and 3534. Can smb > review (Abdel?, Juergen?, John?) and commit it (Jose?)

Re: [patch] bugs 3528 and 3534

2007-05-10 Thread Ozgur Ugras BARAN
On 5/10/07, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > This bug exists before the patch. lof and lot has never been updated > correctly. Yes, I noticed that afterwards, sorry for accusing you :-) I did not felt accused, sir.. :-) The problem is

Re: [patch] bugs 3528 and 3534

2007-05-10 Thread Ozgur Ugras BARAN
, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Attached patch solves two TOC dialog bugs 3528 and 3534. Can smb > review (Abdel?, Juergen?, John?) and commit it (Jose?) I need an explanation (which will go in the svn log). Abdel.

TOC dialog: Possible bug in qt 4.2 or am I missing something awfully?

2007-05-10 Thread Ozgur Ugras BARAN
I am trying to solve bug 3529 and things seems to be weird. I check if the modelItem for the TOC entry is passed correctly. For kernel/model to view side everything seems OK. Apparently the problem is in paint mechanism of treeView. I did every possible trick to make the treeview repaint correctly

[patch] bugs 3528 and 3534

2007-05-08 Thread Ozgur Ugras BARAN
Attached patch solves two TOC dialog bugs 3528 and 3534. Can smb review (Abdel?, Juergen?, John?) and commit it (Jose?) ugras Index: frontends/qt4/TocWidget.cpp === --- frontends/qt4/TocWidget.cpp (revision 18237) +++ frontends/qt4/T

Re: Towards 1.5.0?

2007-05-04 Thread Ozgur Ugras BARAN
ah, also I can help reviewing/maintaining the code for inset part (and QT part if nobody volunteers). On 5/4/07, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: Listings is a really good package. I agree about not to insert new features at this point but I will be sorry to postpone this f

Re: Towards 1.5.0?

2007-05-04 Thread Ozgur Ugras BARAN
Listings is a really good package. I agree about not to insert new features at this point but I will be sorry to postpone this feature for more than a year. My suggestion is to put this feature in lyx 1.5.0, but not put it in any user visible place. Doing, we keep backward compatibility between 1.

Re: Nomencl version

2007-04-25 Thread Ozgur Ugras BARAN
In practice there is no single difference. All packages accept math symbols and sort them in an identical way. That is why we can replace them easily. Ugras On 4/25/07, Jean-Marc Lasgouttes <[EMAIL PROTECTED]> wrote: >>>>> "Ozgur" == Ozgur Ugras BARAN <[EMA

Re: Nomencl version

2007-04-25 Thread Ozgur Ugras BARAN
umm.. Really, what is the difference?? :-) On 4/25/07, Jean-Marc Lasgouttes <[EMAIL PROTECTED]> wrote: >>>>> "Ozgur" == Ozgur Ugras BARAN <[EMAIL PROTECTED]> writes: Ozgur> This is in my TODO list. I have already finished the multiple Ozgur> indice

Re: Nomencl version

2007-04-25 Thread Ozgur Ugras BARAN
On 4/25/07, Jean-Marc Lasgouttes <[EMAIL PROTECTED]> wrote: >>>>> "Ozgur" == Ozgur Ugras BARAN <[EMAIL PROTECTED]> writes: Ozgur> Terminology fits good, but Jean-Marc has a point. The title of Ozgur> the glossary is Nomenclature by default and it wi

Nomencl version

2007-04-24 Thread Ozgur Ugras BARAN
plement it. glossary.sty is not common, either. It has never been default in my distros. Ugras On 4/24/07, Jean-Marc Lasgouttes < [EMAIL PROTECTED]> wrote: >>>>> "Ozgur" == Ozgur Ugras BARAN < [EMAIL PROTECTED]> writes: Ozgur> Well, good point :-) You are right

Re: Nomencl version

2007-04-24 Thread Ozgur Ugras BARAN
you don't ask for gloss, since it requires bibtex instead of makeindex). Ugras On 4/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: On Tue, 24 Apr 2007, Michael Gerz wrote: > Ozgur Ugras BARAN schrieb: >> Notation Entry/ Notation List in user visible places, IMHO. P

[patch] for a small issue in nomencl dialog

2007-04-24 Thread Ozgur Ugras BARAN
attached fix corrects the tab orders in QNomencl.ui for lyx-1.5-beta-2 *** QNomenclUi.orig.ui 2007-04-24 17:41:45.0 +0300 --- QNomenclUi.ui 2007-04-24 17:39:11.0 +0300 *** *** 116,121 --- 116,122 symbolED + descriptionTE prefixED okPB

Re: Nomencl version

2007-04-24 Thread Ozgur Ugras BARAN
t;>>> "Ozgur" == Ozgur Ugras BARAN <[EMAIL PROTECTED]> writes: Ozgur> I like the doc version which omits the oldnomencl stuff. But I Ozgur> observed one single problem: You are invoking makeindex for Ozgur> nomencl after checking the the files with extensi

Re: Nomencl version

2007-04-24 Thread Ozgur Ugras BARAN
On 4/22/07, Georg Baum <[EMAIL PROTECTED] > wrote: Am Freitag, 20. April 2007 11:59 schrieb Ozgur Ugras BARAN: > If you have a solution, go ahead, since I haven't got one but got an idea > only :). I just try to act responsible :) Good guy :-) Here are my solutions: config

Re: Nomencl version

2007-04-20 Thread Ozgur Ugras BARAN
If you have a solution, go ahead, since I haven't got one but got an idea only :). I just try to act responsible :) I can still give you a hand, if you wish.. On 4/20/07, Georg Baum <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Hi all, > > If I can find a compu

Nomencl version

2007-04-19 Thread Ozgur Ugras BARAN
Hi all, If I can find a computer this weekend and if nobody is already caring about nomencl.sty version mess, I'll try to find a solution. Maybe you may wish to postpone Beta-2 until I submit the patch. Indeed, releasing beta with this bug will end up with thousands of complaints. For me, it is

Re: About glossary support

2007-04-15 Thread Ozgur Ugras BARAN
PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Hi Jean-Marc and Hi everybody.. > > Well, I am almost back. In less than a month I will be back for coding.. > (Waiting for you all to finish debugging for lyx-1.5 so I can enjoy > developing new features.. ;-) ). I look forward to your c

Re: About glossary support

2007-04-13 Thread Ozgur Ugras BARAN
Hi Jean-Marc and Hi everybody.. Well, I am almost back. In less than a month I will be back for coding.. (Waiting for you all to finish debugging for lyx-1.5 so I can enjoy developing new features.. ;-) ). Now, about glossaries: First of all, nomencl can be used as glossary, although it is inte

Re: Optional LatexParam in layouts

2006-12-01 Thread Ozgur Ugras BARAN
On 12/1/06, Georg Baum <[EMAIL PROTECTED]> wrote: Gregor Gorjanc wrote: > OK, but what is the meaning of optional arguments if user can not set > them. Did I miss something? Yes. The user can set them. Plase have a look at the term "optional argument" in any LaTeX book. What you want is not a s

Re: [patch] TOC dialog slider

2006-11-29 Thread Ozgur Ugras BARAN
I had a chance to have a look at the bug in Toc dialog. I guess I found the source of the error. When the updateGui is called, the function ControlToc::getCurrentTocItem() is called. In this routine, item is turned by kernel().buffer().tocBackend().item(type,ParConstIterator it); and ParConstI

Re: [patch] \clearpage and \cleardoublepage support

2006-11-27 Thread Ozgur Ugras BARAN
It is attached.. I have simplified by removing \clearpage stuff, since you have done it nicely. I hope I did not forget any files for the patch, which is a possibility since my working version is a mess. :-) \linebreak code is functional, but should be hidden in GUI. The reason is I had no time t

Re: [patch] \clearpage and \cleardoublepage support

2006-11-27 Thread Ozgur Ugras BARAN
Sorry for not writing earlier, but I was incredibly busy. I'll try to write for all the conversation: Herbert, I did not create the confusion on the insetpagebreak and /newpage. It was already there. I wanted to implement /pagebreak, but in order not to deepen confusion between versions, I decide

Re: [patch] \clearpage and \cleardoublepage support

2006-11-23 Thread Ozgur Ugras BARAN
The code is extremely simple and easy to maintain, therefore, one developer should be enough. Considering that I won't be available for a couple of months, this one person cannot be me. If you wish, you can add these features without ui entry, so, they are accepted in lyx-1.5.0 file format and wo

Re: [patch] TOC dialog slider

2006-11-22 Thread Ozgur Ugras BARAN
Abdel, IMO, the last patch makes the TOC slider very useful. Otherwise, TOC collapses everytime you change the section, which is very annoying. On 11/22/06, Bo Peng <[EMAIL PROTECTED]> wrote: > Sorry Ugras, but I don't have much time today to test your patch. I > suggest that you send again the

[patch] \clearpage \cleardoublepage and \linebreak..

2006-11-22 Thread Ozgur Ugras BARAN
title should read I am a half-hero now :) What is missing is: linebreak code is working but there is no ui entry. therefore I skip some parts of the code: - there is no separate draw() function for linebreak, but it uses the code from the newline. if you have any idea how to implement it, pleas

Re: [patch] \clearpage and \cleardoublepage support

2006-11-22 Thread Ozgur Ugras BARAN
) should write tex2lyx code for version 254, and my code will reduce the work that should be done, I guess. I'll correct label and resend the patch. Documentation should follow. Ugras On 11/21/06, Georg Baum <[EMAIL PROTECTED]> wrote: Am Dienstag, 21. November 2006 15:57 schrieb Ozgur

[patch] detached math dialog fix

2006-11-18 Thread Ozgur Ugras BARAN
when iconpalette detached from the math dialog, the iconpalette widget width may become too large to fit to the screen. when detached resized to a too small size, icons overlap. attached patch solves these problems. I'll be glad if somebody reviews and commits the patch. Ugras p.s. Abdel, hav

Re: [patch] TOC dialog slider

2006-11-18 Thread Ozgur Ugras BARAN
On 11/17/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > attached patch implement slider in TOC dialog. > > I have implemented a getDepth function to get the model indices. In my > opinion, somebody should derive a new qvariant class for tocModelItem

Re: [patch] TOC dialog

2006-11-17 Thread Ozgur Ugras BARAN
On 11/17/06, Jean-Marc Lasgouttes <[EMAIL PROTECTED]> wrote: >>>>> "Ozgur" == Ozgur Ugras BARAN <[EMAIL PROTECTED]> writes: Ozgur> In short, there is something weird in cursor control for table Ozgur> floats. (other floats does not have the same proble

Re: [patch] TOC dialog slider

2006-11-17 Thread Ozgur Ugras BARAN
On 11/17/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > attached patch implement slider in TOC dialog. > > I have implemented a getDepth function to get the model indices. In my > opinion, somebody should derive a new qvariant class for tocModelItem

[patch] TOC dialog

2006-11-17 Thread Ozgur Ugras BARAN
On 11/16/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Following patch corrects some misbehavior in TOC dialog: > > - When clicking on Toc insets, dialog switches to correct list. > - cursor goes to correct entry when clicked.. > - some other f

[patch] TOC dialog slider

2006-11-17 Thread Ozgur Ugras BARAN
attached patch implement slider in TOC dialog. I have implemented a getDepth function to get the model indices. In my opinion, somebody should derive a new qvariant class for tocModelItem which saves the string data and depth information. that will save the depth calculation. I'll be glad somebo

Re: Two questions about TOC bugs

2006-11-17 Thread Ozgur Ugras BARAN
> > I'll do it then. I don't know a one-liner, therefore, the code I'll > write may be a bit brutal.. > > you are warned, sir!! Looks like you already are in your military shoes ;-) Have fun, SIR I WILL SIR!! ;-) Abdel.

Re: Two questions about TOC bugs

2006-11-16 Thread Ozgur Ugras BARAN
On 11/16/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > I have two questions on the bug entries in file status15: > > * The items in the treeview are editable > Do You mean they shouldn't be editable? Yes, I think that's what he means

Re: [patch] TOC dialog

2006-11-16 Thread Ozgur Ugras BARAN
Thanks, Abdel.. Ugras On 11/16/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > Following patch corrects some misbehavior in TOC dialog: > > - When clicking on Toc insets, dialog switches to correct list. > - cursor goes to correct entry when clicke

Two questions about TOC bugs

2006-11-16 Thread Ozgur Ugras BARAN
I have two questions on the bug entries in file status15: * The items in the treeview are editable Do You mean they shouldn't be editable? Or when they edited the actual entry in the document should be altered simultaneously? * In the TOC dialog, the slider for altering the display level is non

Looking for developers who can give support for Multiple indices

2006-11-15 Thread Ozgur Ugras BARAN
weeks ago. I can clean my working code and resend the patch. Ugras -- Forwarded message -- From: José Matos <[EMAIL PROTECTED]> Date: Nov 15, 2006 2:29 PM Subject: Re: Preparing for alpha release To: lyx-devel@lists.lyx.org On Monday 13 November 2006 3:18 pm, Ozgur Ugras

[patch] TOC dialog

2006-11-15 Thread Ozgur Ugras BARAN
Following patch corrects some misbehavior in TOC dialog: - When clicking on Toc insets, dialog switches to correct list. - cursor goes to correct entry when clicked.. - some other fixes.. There is one strange problem, though. After clicking table toc entries, cursor goes to correct table, but th

Re: Preparing for alpha release

2006-11-13 Thread Ozgur Ugras BARAN
As nobody had reviewed the multi-index patch, I guess we will postpone it for 1.6 series, won't we? Ugras On 11/13/06, José Matos <[EMAIL PROTECTED]> wrote: Hi all, I am thinking about starting the procedures leading to the alpha release. I would like to ask now "what do you think it

[patch] TOC switching

2006-11-10 Thread Ozgur Ugras BARAN
following trivial looking patch corrects switching between different TOC types. please somebody commits, if there is no problem. Ugras --- frontends/qt4/QTocDialog.C (revision 15836) +++ frontends/qt4/QTocDialog.C (working copy) @@ -104,6 +104,7 @@ void QTocDialog::on_typeCO_activated(int v

Re: [PATCH] bug 2975

2006-11-09 Thread Ozgur Ugras BARAN
No problem Ugras. Post your patch to the list and we'll manage. Not sure this is a thing to say but have a nice journey ;-) Abdel. Thanks.. I will send postcards :-) Ugras

Re: [PATCH] bug 2975

2006-11-09 Thread Ozgur Ugras BARAN
On 11/9/06, Abdelrazak Younes <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > On 11/9/06, Georg Baum > What I understand is map::operator[] returns mapped_type&, (for this > case a const_iterator&). When you use operator = you try to > copy-construct with anoth

Re: [PATCH] bug 2975

2006-11-09 Thread Ozgur Ugras BARAN
On 11/9/06, Georg Baum <[EMAIL PROTECTED]> wrote: Ozgur Ugras BARAN wrote: > This patch solves the crash while calling Qt4-TOC dialog in Linux /gcc-4.1 Are you sure? I have tested here and it works now.. The old code is perfectly valid for a std::map: if the element does not ex

[PATCH] bug 2975

2006-11-09 Thread Ozgur Ugras BARAN
This patch solves the crash while calling Qt4-TOC dialog in Linux /gcc-4.1 Can somebody commit it? Index: frontends/qt4/TocModel.C === --- frontends/qt4/TocModel.C (revision 15811) +++ frontends/qt4/TocModel.C (working copy) @@ -96,7

updated documentation for glossaries

2006-11-08 Thread Ozgur Ugras BARAN
attached is the updated documentation. Added howto change nomlabelwidth. ugras Index: src/insets/insetnomencl.h === --- src/insets/insetnomencl.h (revision 15801) +++ src/insets/insetnomencl.h (working copy) @@ -53,8 +53,7 @@ void

[patch]docbook glossaries export

2006-11-08 Thread Ozgur Ugras BARAN
Attached is patch for docbook glossaries export. Missing features are: - glossary entries in insets does not appear in glossary. I couldn't find a "chic" way to include those.. (the current one is not so chic anyway.. ) Any ideas?? - prefix is not working, therefore, you cannot change the sorting

Multiple index support

2006-11-06 Thread Ozgur Ugras BARAN
Dear all, Attached contains the diff and new files for the multiple index support. - supports makeidx, index, splitidx styles Glitches, TODOs - no multind support, yet. (maybe never) - when the multiple index support is switched off, all index entries is merged to one, which can be easily chan

Re: [patch] new InsetCommandParams

2006-11-06 Thread Ozgur Ugras BARAN
On 11/4/06, Georg Baum <[EMAIL PROTECTED]> wrote: Am Freitag, 3. November 2006 12:23 schrieb Ozgur Ugras BARAN: > Georg, I have updated your patch as you can see in the attachments. I > find this way easier. I think you will find it easier to review, too. > > The draft docu

Re: [patch] new InsetCommandParams

2006-11-03 Thread Ozgur Ugras BARAN
On 11/2/06, José Matos <[EMAIL PROTECTED]> wrote: On Thursday 02 November 2006 12:15 pm, Georg Baum wrote: > Ozgur Ugras BARAN wrote: > > > > Oh, this is bad news, since I have almost completed the multiple indices > > stuff.. Do you have the code? :-) Yes I do

Re: [patch] new InsetCommandParams

2006-11-03 Thread Ozgur Ugras BARAN
Georg, I have updated your patch as you can see in the attachments. I find this way easier. I think you will find it easier to review, too. The draft documentations is also attached. I have written it considering the new User Guide (UserGuideNV.lyx). Consider this as the section 5.8. And, don't

Re: [patch] new InsetCommandParams

2006-11-02 Thread Ozgur Ugras BARAN
On 11/2/06, Georg Baum <[EMAIL PROTECTED]> wrote: Am Mittwoch, 1. November 2006 15:38 schrieb Ozgur Ugras BARAN: > By the way, I haven't seen nomencl commit in svn. Is something > missing, or do you need new diff? Shortly after you went on holiday a freeze was announced, an

Re: [patch] new InsetCommandParams

2006-10-20 Thread Ozgur Ugras BARAN
Stupid me, I forgot the file... :) Here it is. On 10/20/06, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: Here is the updated nomencl files. I will be away for the next week for holidays. Everybody enjoy Denmark.. Ugras nom.tgz Description: GNU Zip compressed data

Re: [patch] new InsetCommandParams

2006-10-20 Thread Ozgur Ugras BARAN
Here is the updated nomencl files. I will be away for the next week for holidays. Everybody enjoy Denmark.. Ugras

Re: [patch] new InsetCommandParams

2006-10-20 Thread Ozgur Ugras BARAN
OK.. here we go.. The diff is against rev 15393. I made a couple of updates after your commit. ugras On 10/20/06, Georg Baum <[EMAIL PROTECTED]> wrote: Am Freitag, 20. Oktober 2006 10:39 schrieben Sie: > Sure.. Is there something similar that I can put instead of > > lyx::from_utf8(Glib::locale

Re: [patch] new InsetCommandParams

2006-10-19 Thread Ozgur Ugras BARAN
this diff removes most of the get/set command function calls from the lyx code. I didn't touch cite stuff, as we decided. On 10/19/06, Ozgur Ugras BARAN <[EMAIL PROTECTED]> wrote: By the way, I am starting to cleanup of get/set options/contents stuff from Lyx code (excluding cite re

  1   2   >