From nick.treleaven at xxxxx Thu Oct 1 12:30:21 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Thu, 1 Oct 2009 13:30:21 +0100 Subject: [Geany] VBScript keywords - Re: Patch for setting default scripting language in ASP In-Reply-To: References: <20090924191556.2f3df0a7.enrico.troeger@uvena.de> <20090927115442.a190ddd9.nick.treleaven@btinternet.com> <20090927151437.e6b9608b.nick.treleaven@btinternet.com> <20090927171553.7a2b6f35.nick.treleaven@btinternet.com> <20090930145650.43ea7f98.nick.treleaven@btinternet.com> Message-ID: <20091001133021.76c0473b.nick.treleaven@btinternet.com> On Thu, 01 Oct 2009 01:21:03 +1000 Ross McKay wrote: > >The attached patch seems to fix that, but I'm not > >sure if the change affects other colouring too. > > The one you picked was embedded VBScript (? maybe > blocks?) not ASP VBScript which is the next block; see attached patch. Committed: Use jscript_keyword for SCE_HB[A]_WORD markup styles. Regards, Nick From Dominik.Stadler at xxxxx Thu Oct 1 20:51:54 2009 From: Dominik.Stadler at xxxxx (Dominik Stadler) Date: Thu, 01 Oct 2009 22:51:54 +0200 Subject: [Geany] Geany not getting focus on kubuntu Message-ID: <20091001205154.313470@gmx.net> Hi, I usually have a copy of Geany running all the time with some often used files opened and just open new files with the one instance whenever I want to edit them. Currently the instance of Geany that is already running does not get moved to the foreground on my KDE system when I try to open a new file for editing from some other application, e.g. file browser, commandline, browser, ... I.e. I already have Geany running, when I type "geany /tmp/test.txt", the new file is opened in the Geany window, but Geany remains in the background and is not brought to the foreground. I rather would like to have the behavior like Firefox, where I get the browser window moved to the foreground whenever a new URL is opened from the commandline or some other application. Is there a way to achieve this? Would it require code-changes? if yes, any hint where to go looking? Or should I go looking somewhere else (general issue of Gnome apps on KDE?) for a solution? Geany is version 0.16 on Kubuntu Jaunty (upgraded to KDE 4.3.1) Thanks.... Dominik. -- Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3.5 - sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser From elextr at xxxxx Thu Oct 1 23:45:09 2009 From: elextr at xxxxx (Lex Trotman) Date: Fri, 2 Oct 2009 09:45:09 +1000 Subject: [Geany] Geany not getting focus on kubuntu In-Reply-To: <20091001205154.313470@gmx.net> References: <20091001205154.313470@gmx.net> Message-ID: <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> 2009/10/2 Dominik Stadler : > Hi, > > I usually have a copy of Geany running all the time with some often used files opened and just open new files with the one instance whenever I want to edit them. > > Currently the instance of Geany that is already running does not get moved to the foreground on my KDE system when I try to open a new file for editing from some other application, e.g. file browser, commandline, browser, ... > > I.e. I already have Geany running, when I type "geany /tmp/test.txt", the new file is opened in the Geany window, but Geany remains in the background and is not brought to the foreground. I rather would like to have the behavior like Firefox, where I get the browser window moved to the foreground whenever a new URL is opened from the commandline or some other application. > > Is there a way to achieve this? Would it require code-changes? if yes, any hint where to go looking? Or should I go looking somewhere else (general issue of Gnome apps on KDE?) for a solution? Well Geany calls the appropriate function to make the window visible (gtk_window_present) but this is just a *request* to the window manager. If its not being honoured you need to look if there is a setting in KDEs window manager that tells it to ignore the request. I don't use KDE so I can't suggest where to look. Cheers Lex > > Geany is version 0.16 on Kubuntu Jaunty (upgraded to KDE 4.3.1) > > Thanks.... Dominik. > -- > Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3.5 - > sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From rhkramer at xxxxx Fri Oct 2 01:09:45 2009 From: rhkramer at xxxxx (Randy Kramer) Date: Thu, 1 Oct 2009 21:09:45 -0400 Subject: [Geany] Geany not getting focus on kubuntu In-Reply-To: <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> References: <20091001205154.313470@gmx.net> <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> Message-ID: <200910012109.45930.rhkramer@gmail.com> On Thursday 01 October 2009 07:45:09 pm Lex Trotman wrote: > 2009/10/2 Dominik Stadler : > > I rather would like to have the behavior like Firefox, > > where I get the browser window moved to the foreground whenever a > > new URL is opened from the commandline or some other application. > Well Geany calls the appropriate function to make the window visible > (gtk_window_present) but this is just a *request* to the window > manager. If its not being honoured you need to look if there is a > setting in KDEs window manager that tells it to ignore the request. > I don't use KDE so I can't suggest where to look. I think this is just the opposite of the problem I finally solved for myself on Debian / KDE 3.5 with kmail and konqueror. I think what you want to do is try experimenting by setting Focus Stealing Prevention for geany to Low (assuming it is currently set to a default setting of normal) (or lower than its current setting, if it is set to low already). I recently did just the opposite for konqueror--I raised it from Normal to High so that konqueror would not come to the foreground when I clicked on a new link in kmail. Rather than try to repeat the instructions here, go take a look at http://twiki.org/cgi-bin/view/Wikilearn/SetFocusStealingPreventionPerWindowKDE3dot5 What you want to do is do what I did for konqueror for geany, only set it to a lower setting. Hmm, that's a long URL--I should probably change the page name to make a shorter URL--it might get split in this email. Let me know how you make out, and if you can add or fix something on that page feel free--it's a wiki, after all. Randy Kramer From gurubuster at xxxxx Thu Oct 1 13:58:41 2009 From: gurubuster at xxxxx (Juergen Potzkoten) Date: Thu, 1 Oct 2009 15:58:41 +0200 Subject: [Geany] Geany on OS X, extension "RANDR" and symlink error? In-Reply-To: References: <20090930122543.6ae71c9a.nick.treleaven@btinternet.com> <4AC38128.3070903@campnavajo.com> Message-ID: Success! first of all I'd like to thank you Nick & Jason for the hints! Building Geany natively under OSX with GTK+ (without X11) sounded fine to me..so I started again from scratch and deleted my previous attempts & macports. Here's what I did: - installed GTK+ from http://www.gtk-osx.org/ - downloaded the latest Geany SVN Version again - ran ./autogen.sh in Terminal again and got the following error: .... checking pkg-config is at least version 0.9.0... yes checking for GTK... configure: error: Package requirements (gtk+-2.0 >= 2.8.0) were not met: No package 'gtk+-2.0' found ... - fired up Finder to search for gtk, found it under /gtk - added the path in Terminal by typing: export PKG_CONFIG_PATH=/gtk/inst/lib/pkgconfig/ - checked it with: pkg-config --modversion gtk+-2.0 Output: 2.16.2 -so there we are! -then I ran configure, make and sudo make install again -->Success! Geany executable is under /usr/local/bin/geany and runs fine now! Maybe this little "Howto" can push the other OS X users (are there any? ;) ) into the right direction... Thanks again and have a nice day! Oliver > > On Wed, Sep 30, 2009 at 6:02 PM, Jason Oster wrote: > >> On 09/30/2009 04:25 AM, Nick Treleaven wrote: >> >>> Hi, >>> >>> On Mon, 28 Sep 2009 21:07:58 +0200 >>> Juergen Potzkoten wrote: >>> >>> - Is the Xlib: ... error the critical error? If yes, how can I fix it? >>>> >>>> ...Google tells me that this error is not critical, but I get no Geany >>>> Program Window at all, so I can't really believe that this behaviour >>>> should >>>> be ignored...so far I found no solution for the RANDR error, I updated >>>> X11 >>>> core files, but the error keeps poping up...*sigh* >>>> >>> >>> First, I don't really know anything about OSX, so any input from >>> someone with it would be helpful. >>> >>> RANDR seems to me to be referring to libXrandr.so[.VERSION] (or >>> similar), which is a shared library that my Fedora Linux GTK library is >>> linked to. So I guess that the GTK library you downloaded(?) depends on >>> an X library file that isn't on your system. >>> >>> To confirm this, if you have ldd, you can run: >>> ldd /usr/lib/libgtk-x11-2.0.so.0 >>> >>> Where that path is the path to the GTK shared library. Paste the output >>> here. On my system I get: >>> ... >>> libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0x00a11000) >>> ... >>> >>> If I'm right, you would either need to download the Xrandr >>> module or download/build a GTK library that doesn't depend on it (not >>> sure if the latter is possible for X backend). >>> >>> It could be that your X library is too old, and that's why the module >>> is missing. >>> >>> Regards, >>> Nick >>> _______________________________________________ >>> Geany mailing list >>> Geany at uvena.de >>> http://lists.uvena.de/cgi-bin/mailman/listinfo/geany >>> >> >> When I built Geany on OS X last year, I was using the then-beta version of >> http://www.gtk-osx.org/ which provides native GTK+. (No need for X11, >> etc.) So then again, I don't have any experience building Geany for OSX/X11. >> >> This might be something to consider trying. >> >> _______________________________________________ >> Geany mailing list >> Geany at uvena.de >> http://lists.uvena.de/cgi-bin/mailman/listinfo/geany >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From siefer at xxxxx Fri Oct 2 09:06:34 2009 From: siefer at xxxxx (Christoph Siefer) Date: Fri, 02 Oct 2009 11:06:34 +0200 Subject: [Geany] [SPAM] Re: Geany not getting focus on kubuntu In-Reply-To: <200910012109.45930.rhkramer@gmail.com> References: <20091001205154.313470@gmx.net> <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> <200910012109.45930.rhkramer@gmail.com> Message-ID: <4AC5C29A.2090408@sym.net> Randy Kramer wrote: > On Thursday 01 October 2009 07:45:09 pm Lex Trotman wrote: >... > http://twiki.org/cgi-bin/view/Wikilearn/SetFocusStealingPreventionPerWindowKDE3dot5 Funny, but the behaviour on my Gnome 2.26.1 with Geany 16 (for Geany I prefer to skip the "0." ;)) is exactly as described by Dominik. Any hints where to setup window props in Gnome? > Hmm, that's a long URL--I should probably change the page name to make a > shorter URL--it might get split in this email. embrace the url like . Greetz, Christopher -- ----------------------------------------------------------- www.odalis.net: integrated KMS/CMS/DMS/Data-Warehouse sym.net martin butz & christoph siefer gbr Hansaring 78 50670 koeln 049.(0)221.3762590 email: siefer at sym.net net: http://www.sym.net From elextr at xxxxx Fri Oct 2 11:36:07 2009 From: elextr at xxxxx (Lex Trotman) Date: Fri, 2 Oct 2009 21:36:07 +1000 Subject: [Geany] [SPAM] Re: Geany not getting focus on kubuntu In-Reply-To: <4AC5C29A.2090408@sym.net> References: <20091001205154.313470@gmx.net> <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> <200910012109.45930.rhkramer@gmail.com> <4AC5C29A.2090408@sym.net> Message-ID: <54962b890910020436h3e7e1866s10f8378ef6bab399@mail.gmail.com> 2009/10/2 Christoph Siefer : > Randy Kramer wrote: >> >> On Thursday 01 October 2009 07:45:09 pm Lex Trotman wrote: >> ... >> >> http://twiki.org/cgi-bin/view/Wikilearn/SetFocusStealingPreventionPerWindowKDE3dot5 > > Funny, but the behaviour on my Gnome 2.26.1 with Geany 16 (for Geany I > prefer to skip the "0." ;)) is exactly as described by Dominik. Any hints > where to setup window props in Gnome? My Gnome does pop Geany to the front when I open another file in Geany. Looking in Gnome configuration I can't see any setting for why it works. But at least you know it can be done :-) Cheers Lex PS There is a metacity (the WM for Gnome) setting called raise on click that notes that if its off it will ignore raise requests from programs. You could check that this is set. > >> Hmm, that's a long URL--I should probably change the page name to make a >> shorter URL--it might get split in this email. > > embrace the url like . > > Greetz, > > Christopher > -- > ----------------------------------------------------------- > ? www.odalis.net: ? ?integrated KMS/CMS/DMS/Data-Warehouse > > ? sym.net ? ? ? ? ? ?martin butz & christoph siefer ? ?gbr > ? Hansaring 78 ? ? ? 50670 koeln ? ? ? ?049.(0)221.3762590 > ? email: siefer at sym.net ? ? ? ? ? ?net: http://www.sym.net > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From rhkramer at xxxxx Fri Oct 2 12:39:35 2009 From: rhkramer at xxxxx (Randy Kramer) Date: Fri, 2 Oct 2009 08:39:35 -0400 Subject: [Geany] [SPAM] Re: Geany not getting focus on kubuntu In-Reply-To: <4AC5C29A.2090408@sym.net> References: <20091001205154.313470@gmx.net> <200910012109.45930.rhkramer@gmail.com> <4AC5C29A.2090408@sym.net> Message-ID: <200910020839.35657.rhkramer@gmail.com> On Friday 02 October 2009 05:06:34 am Christoph Siefer wrote: > Randy Kramer wrote: > > http://twiki.org/cgi-bin/view/Wikilearn/SetFocusStealingPreventionP > >erWindowKDE3dot5 > > Funny, but the behaviour on my Gnome 2.26.1 with Geany 16 (for Geany > I prefer to skip the "0." ;)) is exactly as described by Dominik. Any > hints where to setup window props in Gnome? Christoph, I don't use Gnome, but the first thing I'd try is googling for: [Gnome "Focus Stealing Prevention"] (without the square brackets) If you find a solution, please consider adding a note to that WikiLearn page listed previously (and below). > > Hmm, that's a long URL--I should probably change the page name to > > make a shorter URL--it might get split in this email. > > embrace the url like . Hmm, thanks--I'll have to remember that (at first I thought you were giving me some meta-physical type new age advice--like, I don't know--"embrace change", or "carpe diem", or something like that, but now I understand ;-) The URL didn't break up for me, so I don't know if this helps anyone (maybe the URL isn't *too* long), but I'm trying your suggestion here just in hopes it does help. Ohh, wait, it did break up when I wrote this reply--maybe I will be able to tell. Anyway: Good luck, Randy Kramer From siefer at xxxxx Fri Oct 2 14:08:30 2009 From: siefer at xxxxx (Christoph Siefer) Date: Fri, 02 Oct 2009 16:08:30 +0200 Subject: [Geany] [SPAM] Re: Geany not getting focus on kubuntu In-Reply-To: <54962b890910020436h3e7e1866s10f8378ef6bab399@mail.gmail.com> References: <20091001205154.313470@gmx.net> <54962b890910011645q19c0c57n401d5407d60913df@mail.gmail.com> <200910012109.45930.rhkramer@gmail.com> <4AC5C29A.2090408@sym.net> <54962b890910020436h3e7e1866s10f8378ef6bab399@mail.gmail.com> Message-ID: <4AC6095E.6080209@sym.net> Lex Trotman wrote: ... > PS There is a metacity (the WM for Gnome) setting called raise on > click that notes that if its off it will ignore raise requests from > programs. You could check that this is set. Can't see any preference for that in metacity. Thanks anyway, have to google it. google is going to eat us all. cheers Christopher -- ----------------------------------------------------------- www.odalis.net: integrated KMS/CMS/DMS/Data-Warehouse sym.net martin butz & christoph siefer gbr Hansaring 78 50670 koeln 049.(0)221.3762590 email: siefer at sym.net net: http://www.sym.net From jason.oster at xxxxx Fri Oct 2 14:33:16 2009 From: jason.oster at xxxxx (Jason Oster) Date: Fri, 02 Oct 2009 07:33:16 -0700 Subject: [Geany] Geany on OS X, extension "RANDR" and symlink error? In-Reply-To: References: <20090930122543.6ae71c9a.nick.treleaven@btinternet.com> <4AC38128.3070903@campnavajo.com> Message-ID: <4AC60F2C.6070100@campnavajo.com> On 10/01/2009 06:58 AM, Juergen Potzkoten wrote: > Success! > > first of all I'd like to thank you Nick & Jason for the hints! > Building Geany natively under OSX with GTK+ (without X11) sounded fine > to me..so I started again from scratch and deleted my previous attempts > & macports. > > Here's what I did: > > - installed GTK+ from http://www.gtk-osx.org/ > - downloaded the latest Geany SVN Version again > - ran ./autogen.sh in Terminal again and got the following error: > > .... > checking pkg-config is at least version 0.9.0... yes > checking for GTK... configure: error: Package requirements > (gtk+-2.0 >= 2.8.0) were not met: > > No package 'gtk+-2.0' found > ... > > - fired up Finder to search for gtk, found it under /gtk > - added the path in Terminal by typing: > export PKG_CONFIG_PATH=/gtk/inst/lib/pkgconfig/ > - checked it with: pkg-config --modversion gtk+-2.0 > Output: 2.16.2 > > -so there we are! > -then I ran configure, make and sudo make install again > > -->Success! Geany executable is under /usr/local/bin/geany and runs fine > now! > > Maybe this little "Howto" can push the other OS X users (are there any? > ;) ) into the right direction... > > Thanks again and have a nice day! > Oliver Glad you got it working! I'm not sure if gtk-osx still uses jhbuild shell (it probably does for building it and dependencies) but it at least provides a full environment to build GTK+ apps on OS X. There were also some related packages from the same group (Imendio) to build OS X application packages, a more OS X-alike GTK+ theme, and an integration package to use the OS X menu bar and Dock. It was enough to get the look-and-feel just about right, but again I don't know how much progress has been made on those side-projects. Happy hacking! :) -------------- next part -------------- A non-text attachment was scrubbed... Name: jason_oster.vcf Type: text/x-vcard Size: 303 bytes Desc: not available URL: From gurubuster at xxxxx Fri Oct 2 15:51:48 2009 From: gurubuster at xxxxx (Juergen Potzkoten) Date: Fri, 2 Oct 2009 17:51:48 +0200 Subject: [Geany] Geany on OS X, extension "RANDR" and symlink error? In-Reply-To: <4AC60F2C.6070100@campnavajo.com> References: <20090930122543.6ae71c9a.nick.treleaven@btinternet.com> <4AC38128.3070903@campnavajo.com> <4AC60F2C.6070100@campnavajo.com> Message-ID: Actually jhbuild shell doesn't seem to be necessary anymore to build Geany under OSX....from http://www.gtk-osx.org/ you can download a nice and convenient .dmg file that seems to install all the necessary framework files...in my first tries I fiddled around with jhbuild but it's not required for building Geany these days, as far as I can tell. Maybe I'll take a deeper look at the other integration packages (osx theme sounds interesting...) in the near future but now I have some Python coding to do...which was the reason for installing Geany in the first place ;) (before the whole trouble started *g). Oh, and what about creating a nice Geany .dmg package for the OSX community? ;-) ...maybe there are some other users interested..so we could combine efforts.. May the Source Be With You! :) Oliver On Fri, Oct 2, 2009 at 4:33 PM, Jason Oster wrote: > On 10/01/2009 06:58 AM, Juergen Potzkoten wrote: > >> Success! >> >> first of all I'd like to thank you Nick & Jason for the hints! >> Building Geany natively under OSX with GTK+ (without X11) sounded fine >> to me..so I started again from scratch and deleted my previous attempts >> & macports. >> >> Here's what I did: >> >> - installed GTK+ from http://www.gtk-osx.org/ >> - downloaded the latest Geany SVN Version again >> - ran ./autogen.sh in Terminal again and got the following error: >> >> .... >> checking pkg-config is at least version 0.9.0... yes >> checking for GTK... configure: error: Package requirements >> (gtk+-2.0 >= 2.8.0) were not met: >> >> No package 'gtk+-2.0' found >> ... >> >> - fired up Finder to search for gtk, found it under /gtk >> - added the path in Terminal by typing: >> export PKG_CONFIG_PATH=/gtk/inst/lib/pkgconfig/ >> - checked it with: pkg-config --modversion gtk+-2.0 >> Output: 2.16.2 >> >> -so there we are! >> -then I ran configure, make and sudo make install again >> >> -->Success! Geany executable is under /usr/local/bin/geany and runs fine >> now! >> >> Maybe this little "Howto" can push the other OS X users (are there any? >> ;) ) into the right direction... >> >> Thanks again and have a nice day! >> Oliver >> > > Glad you got it working! I'm not sure if gtk-osx still uses jhbuild shell > (it probably does for building it and dependencies) but it at least provides > a full environment to build GTK+ apps on OS X. There were also some related > packages from the same group (Imendio) to build OS X application packages, a > more OS X-alike GTK+ theme, and an integration package to use the OS X menu > bar and Dock. > > It was enough to get the look-and-feel just about right, but again I don't > know how much progress has been made on those side-projects. > > Happy hacking! :) > > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From enrico.troeger at xxxxx Sat Oct 3 08:41:45 2009 From: enrico.troeger at xxxxx (Enrico =?UTF-8?B?VHLDtmdlcg==?=) Date: Sat, 3 Oct 2009 10:41:45 +0200 Subject: [Geany] Geany on OS X, extension "RANDR" and symlink error? In-Reply-To: References: <20090930122543.6ae71c9a.nick.treleaven@btinternet.com> <4AC38128.3070903@campnavajo.com> <4AC60F2C.6070100@campnavajo.com> Message-ID: <20091003104145.efe10572.enrico.troeger@uvena.de> On Fri, 2 Oct 2009 17:51:48 +0200, Juergen wrote: >Actually jhbuild shell doesn't seem to be necessary anymore to build >Geany under OSX....from http://www.gtk-osx.org/ you can download a >nice and convenient .dmg file that seems to install all the necessary >framework files...in my first tries I fiddled around with jhbuild but >it's not required for building Geany these days, as far as I can tell. >Maybe I'll take a deeper look at the other integration packages (osx >theme sounds interesting...) in the near future but now I have some >Python coding to do...which was the reason for installing Geany in the >first place ;) (before the whole trouble started *g). > >Oh, and what about creating a nice Geany .dmg package for the OSX >community? ;-) ...maybe there are some other users interested..so we >could combine efforts.. That'd be cool. If you got anything working, just tell us so we can link it on http://www.geany.org/Download/ThirdPartyPackages. Regards, Enrico P.S.: Juergen, could you use the same email address to send to this list as this which is subscribed to the list? Currently, you are using another one to send and so every of your mails are blocked by the mailing list software and I need to manually accept them. Thanks. -- Get my GPG key from http://www.uvena.de/pub.asc -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available URL: From Dominik.Stadler at xxxxx Sat Oct 3 18:25:27 2009 From: Dominik.Stadler at xxxxx (Dominik Stadler) Date: Sat, 03 Oct 2009 20:25:27 +0200 Subject: [Geany] [SPAM] Re: Geany not getting focus on kubuntu In-Reply-To: <200910020839.35657.rhkramer@gmail.com> References: <20091001205154.313470@gmx.net> <200910012109.45930.rhkramer@gmail.com> <4AC5C29A.2090408@sym.net> <200910020839.35657.rhkramer@gmail.com> Message-ID: <20091003182527.315370@gmx.net> Hi all, The solution provided in the URL below on twiki.org actually solves the problem for me as well. Setting the Focus Stealing Prevents to "None" for Geany specifically had exactly the desired effect, i.e. it now is brought to the foreground if I open some textfile in file explorer or on the commandline! Thanks to Randy for suggesting this! Dominik -------- Original-Nachricht -------- > Datum: Fri, 2 Oct 2009 08:39:35 -0400 > Von: Randy Kramer > An: Geany general discussion list > Betreff: Re: [Geany] [SPAM] Re: Geany not getting focus on kubuntu > On Friday 02 October 2009 05:06:34 am Christoph Siefer wrote: > > Randy Kramer wrote: > > > http://twiki.org/cgi-bin/view/Wikilearn/SetFocusStealingPreventionP > > >erWindowKDE3dot5 > > > > Funny, but the behaviour on my Gnome 2.26.1 with Geany 16 (for Geany > > I prefer to skip the "0." ;)) is exactly as described by Dominik. Any > > hints where to setup window props in Gnome? > > Christoph, > > I don't use Gnome, but the first thing I'd try is googling for: > > [Gnome "Focus Stealing Prevention"] (without the square brackets) > > If you find a solution, please consider adding a note to that WikiLearn > page listed previously (and below). > > > > Hmm, that's a long URL--I should probably change the page name to > > > make a shorter URL--it might get split in this email. > > > > embrace the url like . > > Hmm, thanks--I'll have to remember that (at first I thought you were > giving me some meta-physical type new age advice--like, I don't > know--"embrace change", or "carpe diem", or something like that, but > now I understand ;-) > > The URL didn't break up for me, so I don't know if this helps anyone > (maybe the URL isn't *too* long), but I'm trying your suggestion here > just in hopes it does help. Ohh, wait, it did break up when I wrote > this reply--maybe I will be able to tell. Anyway: > > > > Good luck, > Randy Kramer > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany -- GRATIS f?r alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01 From viniciusandre at xxxxx Tue Oct 6 01:07:43 2009 From: viniciusandre at xxxxx (Vinicius Massuchetto) Date: Mon, 5 Oct 2009 22:07:43 -0300 Subject: [Geany] Add functions to dropdown auto-completion list Message-ID: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> Hi! I don't know if there's a documentation about it, or even if this was already discussed around here. I use to develop a lot with Wordpress, and I would like to add its functions to Geany dropdown auto-completion list. How can I do it? Thanks! -- Vin?cius Massuchetto http://vinicius.soylocoporti.org.br From elextr at xxxxx Tue Oct 6 02:14:40 2009 From: elextr at xxxxx (Lex Trotman) Date: Tue, 6 Oct 2009 13:14:40 +1100 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> Message-ID: <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> Hi, What language do you use to edit Wordpress? The manual explains how to add global tags files (which are used for autocompletions) for existing languages. Cheers Lex 2009/10/6 Vinicius Massuchetto : > Hi! > > I don't know if there's a documentation about it, or even if this was > already discussed around here. > > I use to develop a lot with Wordpress, and I would like to add its > functions to Geany dropdown auto-completion list. How can I do it? > > Thanks! > -- > Vin?cius Massuchetto > http://vinicius.soylocoporti.org.br > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From frank at xxxxx Tue Oct 6 07:40:31 2009 From: frank at xxxxx (Frank Lanitz) Date: Tue, 6 Oct 2009 09:40:31 +0200 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> Message-ID: <20091006094031.e348e364.frank@frank.uvena.de> Hi, On Tue, 6 Oct 2009 13:14:40 +1100 Lex Trotman wrote: > What language do you use to edit Wordpress? I assume PHP. > The manual explains how to add global tags files (which are used for > autocompletions) for existing languages. Yes, Please check http://www.geany.org/manual/current/index.html#global-tags for a start. Regards, Frank -- Frank Lanitz From elextr at xxxxx Tue Oct 6 09:13:43 2009 From: elextr at xxxxx (Lex Trotman) Date: Tue, 6 Oct 2009 20:13:43 +1100 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <20091006094031.e348e364.frank@frank.uvena.de> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> Message-ID: <54962b890910060213n52b66cb8o2add30ad730d0daa@mail.gmail.com> 2009/10/6 Frank Lanitz : > Hi, > > On Tue, 6 Oct 2009 13:14:40 +1100 > Lex Trotman wrote: > >> What language do you use to edit Wordpress? > > I assume PHP. Note to self, RTFE, I was thinking about writing posts (XML, HTML, ?ML) not Wordpress itself :-) sorry. But the answer is the same. Cheers Lex > >> The manual explains how to add global tags files (which are used for >> autocompletions) for existing languages. > > Yes, Please check > http://www.geany.org/manual/current/index.html#global-tags for a start. > > Regards, > Frank > -- > Frank Lanitz > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From viniciusandre at xxxxx Tue Oct 6 11:00:05 2009 From: viniciusandre at xxxxx (Vinicius Massuchetto) Date: Tue, 6 Oct 2009 08:00:05 -0300 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <20091006094031.e348e364.frank@frank.uvena.de> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> Message-ID: <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> On Tue, Oct 6, 2009 at 4:40 AM, Frank Lanitz wrote: > On Tue, 6 Oct 2009 13:14:40 +1100 [...] >> The manual explains how to add global tags files (which are used for >> autocompletions) for existing languages. > > Yes, Please check > http://www.geany.org/manual/current/index.html#global-tags for a start. Thanks! I'll take a close look on that. -- Vinicius Massuchetto http://vinicius.soylocoporti.org.br From viniciusandre at xxxxx Tue Oct 6 11:41:34 2009 From: viniciusandre at xxxxx (Vinicius Massuchetto) Date: Tue, 6 Oct 2009 08:41:34 -0300 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> Message-ID: <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> On Tue, Oct 6, 2009 at 8:00 AM, Vinicius Massuchetto wrote: > On Tue, Oct 6, 2009 at 4:40 AM, Frank Lanitz wrote: >> On Tue, 6 Oct 2009 13:14:40 +1100 > > [...] > >>> The manual explains how to add global tags files (which are used for >>> autocompletions) for existing languages. >> >> Yes, Please check >> http://www.geany.org/manual/current/index.html#global-tags for a start. > > Thanks! I'll take a close look on that. Wonderful! I've just created a tags file from the PHP sources. That's why I use Geany. So, there is any way of detecting the parameters to be shown on the parameters dialog when opening brackets? Thanks again, guys. -- Vin?cius Massuchetto http://vinicius.soylocoporti.org.br From h2oz7v+mailinglists at xxxxx Tue Oct 6 15:50:04 2009 From: h2oz7v+mailinglists at xxxxx (h2oz7v) Date: Tue, 6 Oct 2009 16:50:04 +0100 Subject: [Geany] geanydoc Message-ID: I've just discovered how useful the geanydoc plugin can be and want to adopt it for use with Java. Strangely, I can't find any Java API search engines (that actually work) or anything comparable to pydoc. Can anyone suggest anything? In the meantime, I'm using Google to do it: > firefox " http://www.google.co.uk/search?hl=en&source=hp&q=site:http://java.sun.cominurl:"javase/6/docs/api" %w&btnI=I'm+Feeling+Lucky" which, largely, works rather well. You could also use: > firefox " http://www.google.co.uk/search?hl=en&source=hp&q=site:http://java.sun.cominurl:"javase/6/docs/api" intitle:%w&btnI=I'm+Feeling+Lucky" to be more specific if necessary (and get rid of I'm feeling lucky for getting results) -------------- next part -------------- An HTML attachment was scrubbed... URL: From unname1 at xxxxx Fri Oct 9 11:58:06 2009 From: unname1 at xxxxx (lkltp ltppr) Date: Fri, 9 Oct 2009 13:58:06 +0200 Subject: [Geany] Install problem with PlatGTK.cxx Message-ID: Hi, I tried to compile geany under my Red Hat Entreprise 5 with personnal prefix and I have an error during the first compilation. See bellow the configure and make outputs : *>* ./configure --prefix=/home/user/tools/geany/x86_64p checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking for style of include used by make... GNU checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking dependency style of gcc... gcc3 checking how to run the C preprocessor... gcc -E checking for grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... (cached) yes checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking for a BSD-compatible install... /usr/bin/install -c checking whether ln -s works... yes checking whether NLS is requested... yes checking for intltool-update... /home/user/tools/geany/x86_64p/bin/intltool-update checking for intltool-merge... /home/user/tools/geany/x86_64p/bin/intltool-merge checking for intltool-extract... /home/user/tools/geany/x86_64p/bin/intltool-extract checking for xgettext... /usr/bin/xgettext checking for msgmerge... /usr/bin/msgmerge checking for msgfmt... /usr/bin/msgfmt checking for gmsgfmt... /usr/bin/msgfmt checking for perl... /usr/bin/perl checking for perl >= 5.8.1... 5.8.8 checking for XML::Parser... ok checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking how to recognize dependent libraries... pass_all checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... gfortran checking whether we are using the GNU Fortran 77 compiler... yes checking whether gfortran accepts -g... yes checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no configure: creating libtool appending configuration tag "CXX" to libtool checking for ld used by g++... /usr/bin/ld -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so (cached) (cached) checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for gfortran option to produce PIC... -fPIC checking if gfortran PIC flag -fPIC works... yes checking if gfortran static flag -static works... yes checking if gfortran supports -c -o file.o... yes checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so (cached) (cached) checking how to hardcode library paths into programs... immediate checking fcntl.h usability... yes checking fcntl.h presence... yes checking for fcntl.h... yes checking fnmatch.h usability... yes checking fnmatch.h presence... yes checking for fnmatch.h... yes checking glob.h usability... yes checking glob.h presence... yes checking for glob.h... yes checking regex.h usability... yes checking regex.h presence... yes checking for regex.h... yes checking for stdlib.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for off_t... yes checking for size_t... yes checking whether struct tm is in sys/time.h or time.h... time.h checking for gethostname... yes checking for ftruncate... yes checking for fgetpos... yes checking for mkstemp... yes checking for regcomp... yes checking for strerror... yes checking for strstr... yes checking whether binary relocation support should be enabled... no checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for GTK... yes checking for GIO... no checking for library containing connect... none required checking whether the force is with you... no checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... yes checking libintl.h presence... yes checking for libintl.h... yes checking for ngettext in libc... yes checking for dgettext in libc... yes checking for bind_textdomain_codeset... yes checking for msgfmt... (cached) /usr/bin/msgfmt checking for dcgettext... yes checking if msgfmt accepts -c... yes checking for gmsgfmt... (cached) /usr/bin/msgfmt checking for xgettext... (cached) /usr/bin/xgettext checking for catalogs to be installed... be bg ca cs de el en_GB es fi fr hu it ja ko nl pl pt_BR ro ru sv tr uk vi zh_CN zh_TW configure: creating ./config.status config.status: creating Makefile config.status: creating icons/Makefile config.status: creating icons/16x16/Makefile config.status: creating tagmanager/Makefile config.status: creating tagmanager/include/Makefile config.status: creating scintilla/Makefile config.status: creating scintilla/include/Makefile config.status: creating src/Makefile config.status: creating plugins/Makefile config.status: creating po/Makefile.in config.status: creating doc/Makefile config.status: creating doc/geany.1 config.status: creating geany.spec config.status: creating geany.pc config.status: creating doc/Doxyfile config.status: creating config.h config.status: config.h is unchanged config.status: executing depfiles commands config.status: executing default-1 commands config.status: executing po/stamp-it commands ---------------------------------------- Install Geany in : /home/user/tools/geany/x86_64p Using GTK version : 2.10.4 Build with GTK printing support : yes Build with plugin support : yes Use virtual terminal support : yes Use (UNIX domain) socket support : yes Configuration is done OK. *>* make make all-recursive make[1]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17 ? Making all in tagmanager make[2]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? Making all in include make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager/include ? make[3]: Rien ? faire pour ? all ?. make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager/include ? make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? make[3]: Rien ? faire pour ? all-am ?. make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? make[2]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? Making all in scintilla make[2]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? Making all in include make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla/include ? make[3]: Rien ? faire pour ? all ?. make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla/include ? make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? g++ -DHAVE_CONFIG_H -I. -I.. -I.. -I./include -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/cairo -DNDEBUG -DGTK -DGTK2 -DSCI_LEXER -DG_THREADS_IMPL_NONE -g -O2 -MT PlatGTK.o -MD -MP -MF .deps/PlatGTK.Tpo -c -o PlatGTK.o PlatGTK.cxx Converter.h: In member function ?size_t Converter::Convert(char**, size_t*, char**, size_t*) const?: Converter.h:81: erreur: no matching function for call to ?iconv_adaptor(size_t (&)(_GIConv*, gchar**, gsize*, gchar**, gsize*), _GIConv* const&, char**&, size_t*&, char**&, size_t*&)? make[3]: *** [PlatGTK.o] Erreur 1 make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? make[2]: *** [all-recursive] Erreur 1 make[2]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? make[1]: *** [all-recursive] Erreur 1 make[1]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17 ? make: *** [all] Erreur 2 What is the problem ? I could not fix it. Thanks. Sigmun -------------- next part -------------- An HTML attachment was scrubbed... URL: From daspostloch at xxxxx Fri Oct 9 14:35:11 2009 From: daspostloch at xxxxx (daspostloch at googlemail.com) Date: Fri, 9 Oct 2009 16:35:11 +0200 Subject: [Geany] File-type dependent "auto-complete all words"? Message-ID: Hi, would it be possible to make the "auto-complete all words" a file-type specific preference in the filetypes.* config files? For cpp, I just love that feature; but in Latex files, it gets a bit in the way. Cheers, Matt From elextr at xxxxx Sat Oct 10 03:00:56 2009 From: elextr at xxxxx (Lex Trotman) Date: Sat, 10 Oct 2009 14:00:56 +1100 Subject: [Geany] Install problem with PlatGTK.cxx In-Reply-To: References: Message-ID: <54962b890910092000n697c4f2bq98dab399d67dee36@mail.gmail.com> Hi, This error is in the Scintilla editing component used by Geany (http://www.scintilla.org). I have created Scintilla bug report 2876053 there with an analysis of the problem. I think it may be specific to your version of g++ so please post the version of g++ you are using (output of g++ --version) to the Scintilla bug 2876053 or to the Scintilla mailing list referencing that bug number (and copy us here). Cheers Lex 2009/10/9 lkltp ltppr : > Hi, > I tried to compile geany under my Red Hat Entreprise 5 with personnal prefix > and I have an error during the first compilation. See bellow the configure > and make outputs : > >> ./configure --prefix=/home/user/tools/geany/x86_64p > checking for a BSD-compatible install... /usr/bin/install -c > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... /bin/mkdir -p > checking for gawk... gawk > checking whether make sets $(MAKE)... yes > checking for style of include used by make... GNU > checking for gcc... gcc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether gcc accepts -g... yes > checking for gcc option to accept ISO C89... none needed > checking dependency style of gcc... gcc3 > checking how to run the C preprocessor... gcc -E > checking for grep that handles long lines and -e... /bin/grep > checking for egrep... /bin/grep -E > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... yes > checking for unistd.h... yes > checking minix/config.h usability... no > checking minix/config.h presence... no > checking for minix/config.h... no > checking whether it is safe to define __EXTENSIONS__... yes > checking for minix/config.h... (cached) no > checking whether it is safe to define __EXTENSIONS__... (cached) yes > checking for minix/config.h... (cached) no > checking whether it is safe to define __EXTENSIONS__... (cached) yes > checking for gcc... (cached) gcc > checking whether we are using the GNU C compiler... (cached) yes > checking whether gcc accepts -g... (cached) yes > checking for gcc option to accept ISO C89... (cached) none needed > checking dependency style of gcc... (cached) gcc3 > checking for g++... g++ > checking whether we are using the GNU C++ compiler... yes > checking whether g++ accepts -g... yes > checking dependency style of g++... gcc3 > checking for a BSD-compatible install... /usr/bin/install -c > checking whether ln -s works... yes > checking whether NLS is requested... yes > checking for intltool-update... > /home/user/tools/geany/x86_64p/bin/intltool-update > checking for intltool-merge... > /home/user/tools/geany/x86_64p/bin/intltool-merge > checking for intltool-extract... > /home/user/tools/geany/x86_64p/bin/intltool-extract > checking for xgettext... /usr/bin/xgettext > checking for msgmerge... /usr/bin/msgmerge > checking for msgfmt... /usr/bin/msgfmt > checking for gmsgfmt... /usr/bin/msgfmt > checking for perl... /usr/bin/perl > checking for perl >= 5.8.1... 5.8.8 > checking for XML::Parser... ok > checking build system type... x86_64-unknown-linux-gnu > checking host system type... x86_64-unknown-linux-gnu > checking for a sed that does not truncate output... /bin/sed > checking for ld used by gcc... /usr/bin/ld > checking if the linker (/usr/bin/ld) is GNU ld... yes > checking for /usr/bin/ld option to reload object files... -r > checking for BSD-compatible nm... /usr/bin/nm -B > checking how to recognize dependent libraries... pass_all > checking dlfcn.h usability... yes > checking dlfcn.h presence... yes > checking for dlfcn.h... yes > checking how to run the C++ preprocessor... g++ -E > checking for g77... no > checking for xlf... no > checking for f77... no > checking for frt... no > checking for pgf77... no > checking for cf77... no > checking for fort77... no > checking for fl32... no > checking for af77... no > checking for xlf90... no > checking for f90... no > checking for pgf90... no > checking for pghpf... no > checking for epcf90... no > checking for gfortran... gfortran > checking whether we are using the GNU Fortran 77 compiler... yes > checking whether gfortran accepts -g... yes > checking the maximum length of command line arguments... 98304 > checking command to parse /usr/bin/nm -B output from gcc object... ok > checking for objdir... .libs > checking for ar... ar > checking for ranlib... ranlib > checking for strip... strip > checking if gcc supports -fno-rtti -fno-exceptions... no > checking for gcc option to produce PIC... -fPIC > checking if gcc PIC flag -fPIC works... yes > checking if gcc static flag -static works... yes > checking if gcc supports -c -o file.o... yes > checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared > libraries... yes > checking whether -lc should be explicitly linked in... no > checking dynamic linker characteristics... GNU/Linux ld.so > checking how to hardcode library paths into programs... immediate > checking whether stripping libraries is possible... yes > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > configure: creating libtool > appending configuration tag "CXX" to libtool > checking for ld used by g++... /usr/bin/ld -m elf_x86_64 > checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes > checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared > libraries... yes > checking for g++ option to produce PIC... -fPIC > checking if g++ PIC flag -fPIC works... yes > checking if g++ static flag -static works... yes > checking if g++ supports -c -o file.o... yes > checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared > libraries... yes > checking dynamic linker characteristics... GNU/Linux ld.so > (cached) (cached) checking how to hardcode library paths into programs... > immediate > appending configuration tag "F77" to libtool > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... no > checking for gfortran option to produce PIC... -fPIC > checking if gfortran PIC flag -fPIC works... yes > checking if gfortran static flag -static works... yes > checking if gfortran supports -c -o file.o... yes > checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports > shared libraries... yes > checking dynamic linker characteristics... GNU/Linux ld.so > (cached) (cached) checking how to hardcode library paths into programs... > immediate > checking fcntl.h usability... yes > checking fcntl.h presence... yes > checking for fcntl.h... yes > checking fnmatch.h usability... yes > checking fnmatch.h presence... yes > checking for fnmatch.h... yes > checking glob.h usability... yes > checking glob.h presence... yes > checking for glob.h... yes > checking regex.h usability... yes > checking regex.h presence... yes > checking for regex.h... yes > checking for stdlib.h... (cached) yes > checking sys/time.h usability... yes > checking sys/time.h presence... yes > checking for sys/time.h... yes > checking for off_t... yes > checking for size_t... yes > checking whether struct tm is in sys/time.h or time.h... time.h > checking for gethostname... yes > checking for ftruncate... yes > checking for fgetpos... yes > checking for mkstemp... yes > checking for regcomp... yes > checking for strerror... yes > checking for strstr... yes > checking whether binary relocation support should be enabled... no > checking for pkg-config... /usr/bin/pkg-config > checking pkg-config is at least version 0.9.0... yes > checking for GTK... yes > checking for GIO... no > checking for library containing connect... none required > checking whether the force is with you... no > checking locale.h usability... yes > checking locale.h presence... yes > checking for locale.h... yes > checking for LC_MESSAGES... yes > checking libintl.h usability... yes > checking libintl.h presence... yes > checking for libintl.h... yes > checking for ngettext in libc... yes > checking for dgettext in libc... yes > checking for bind_textdomain_codeset... yes > checking for msgfmt... (cached) /usr/bin/msgfmt > checking for dcgettext... yes > checking if msgfmt accepts -c... yes > checking for gmsgfmt... (cached) /usr/bin/msgfmt > checking for xgettext... (cached) /usr/bin/xgettext > checking for catalogs to be installed...? be bg ca cs de el en_GB es fi fr > hu it ja ko nl pl pt_BR ro ru sv tr uk vi zh_CN zh_TW > configure: creating ./config.status > config.status: creating Makefile > config.status: creating icons/Makefile > config.status: creating icons/16x16/Makefile > config.status: creating tagmanager/Makefile > config.status: creating tagmanager/include/Makefile > config.status: creating scintilla/Makefile > config.status: creating scintilla/include/Makefile > config.status: creating src/Makefile > config.status: creating plugins/Makefile > config.status: creating po/Makefile.in > config.status: creating doc/Makefile > config.status: creating doc/geany.1 > config.status: creating geany.spec > config.status: creating geany.pc > config.status: creating doc/Doxyfile > config.status: creating config.h > config.status: config.h is unchanged > config.status: executing depfiles commands > config.status: executing default-1 commands > config.status: executing po/stamp-it commands > ---------------------------------------- > Install Geany in?????????????????? : /home/user/tools/geany/x86_64p > Using GTK version????????????????? : 2.10.4 > Build with GTK printing support??? : yes > Build with plugin support????????? : yes > Use virtual terminal support?????? : yes > Use (UNIX domain) socket support?? : yes > > Configuration is done OK. > >> make > make? all-recursive > make[1]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17 ? > Making all in tagmanager > make[2]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager > ? > Making all in include > make[3]: entrant dans le r?pertoire ? > /stck3/user/tmp/geany-0.17/tagmanager/include ? > make[3]: Rien ? faire pour ? all ?. > make[3]: quittant le r?pertoire ? > /stck3/user/tmp/geany-0.17/tagmanager/include ? > make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager > ? > make[3]: Rien ? faire pour ? all-am ?. > make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? > make[2]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/tagmanager ? > Making all in scintilla > make[2]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? > Making all in include > make[3]: entrant dans le r?pertoire ? > /stck3/user/tmp/geany-0.17/scintilla/include ? > make[3]: Rien ? faire pour ? all ?. > make[3]: quittant le r?pertoire ? > /stck3/user/tmp/geany-0.17/scintilla/include ? > make[3]: entrant dans le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? > g++ -DHAVE_CONFIG_H -I. -I.. -I.. -I./include -I/usr/include/gtk-2.0 > -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 > -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 > -I/usr/include/libpng12 -I/usr/include/cairo???? -DNDEBUG -DGTK -DGTK2 > -DSCI_LEXER -DG_THREADS_IMPL_NONE -g -O2 -MT PlatGTK.o -MD -MP -MF > .deps/PlatGTK.Tpo -c -o PlatGTK.o PlatGTK.cxx > Converter.h: In member function ?size_t Converter::Convert(char**, size_t*, > char**, size_t*) const?: > Converter.h:81: erreur: no matching function for call to > ?iconv_adaptor(size_t (&)(_GIConv*, gchar**, gsize*, gchar**, gsize*), > _GIConv* const&, char**&, size_t*&, char**&, size_t*&)? > make[3]: *** [PlatGTK.o] Erreur 1 > make[3]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? > make[2]: *** [all-recursive] Erreur 1 > make[2]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17/scintilla ? > make[1]: *** [all-recursive] Erreur 1 > make[1]: quittant le r?pertoire ? /stck3/user/tmp/geany-0.17 ? > make: *** [all] Erreur 2 > > What is the problem ? I could not fix it. > > Thanks. > Sigmun > > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > > From enrico.troeger at xxxxx Sun Oct 11 10:18:14 2009 From: enrico.troeger at xxxxx (Enrico =?UTF-8?B?VHLDtmdlcg==?=) Date: Sun, 11 Oct 2009 12:18:14 +0200 Subject: [Geany] File-type dependent "auto-complete all words"? In-Reply-To: References: Message-ID: <20091011121814.6ad77707.enrico.troeger@uvena.de> On Fri, 9 Oct 2009 16:35:11 +0200, daspostloch at googlemail.com wrote: >Hi, > >would it be possible to make the "auto-complete all words" >a file-type specific preference in the filetypes.* config files? Technically of course. But I wonder if it is really necessary. It just makes things more complicated and stuff. Though I don't have a strong opinion on that, just in doubt whether it's worth the efforts. Regards, Enrico -- Get my GPG key from http://www.uvena.de/pub.asc -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 198 bytes Desc: not available URL: From russelldickenson at xxxxx Sun Oct 11 23:29:24 2009 From: russelldickenson at xxxxx (Russell Dickenson) Date: Mon, 12 Oct 2009 09:29:24 +1000 Subject: [Geany] Geany's support for PowerShell? Message-ID: For reasons mainly related to administration and support of the VMware ESX platform, I write PowerShell scripts (where PowerShell is Microsoft's latest take on a scripting language). I know that as at a release or two ago, Scintilla added support for PowerShell, with the SciTE release which matched that release also supporting PowerShell - i.e. syntax highlighting etc. I wonder if adding support for PowerShell is planned for Geany? Regards, Russell Dickenson Australia From nick.treleaven at xxxxx Mon Oct 12 14:00:53 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Mon, 12 Oct 2009 15:00:53 +0100 Subject: [Geany] Geany's support for PowerShell? In-Reply-To: References: Message-ID: <20091012150053.299ad237.nick.treleaven@btinternet.com> On Mon, 12 Oct 2009 09:29:24 +1000 Russell Dickenson wrote: > For reasons mainly related to administration and support of the VMware > ESX platform, I write PowerShell scripts (where PowerShell is > Microsoft's latest take on a scripting language). I know that as at a > release or two ago, Scintilla added support for PowerShell, with the > SciTE release which matched that release also supporting PowerShell - > i.e. syntax highlighting etc. I wonder if adding support for > PowerShell is planned for Geany? I don't think it's planned, but we would likely accept a patch to do it. If anyone's interested, see the HACKING file in SVN. Regards, Nick From russelldickenson at xxxxx Mon Oct 12 21:10:35 2009 From: russelldickenson at xxxxx (Russell Dickenson) Date: Tue, 13 Oct 2009 07:10:35 +1000 Subject: [Geany] Geany's support for PowerShell? In-Reply-To: <20091012150053.299ad237.nick.treleaven@btinternet.com> References: <20091012150053.299ad237.nick.treleaven@btinternet.com> Message-ID: On Tue, Oct 13, 2009 at 12:00 AM, Nick Treleaven wrote: > On Mon, 12 Oct 2009 09:29:24 +1000 > Russell Dickenson wrote: > >> For reasons mainly related to administration and support of the VMware >> ESX platform, I write PowerShell scripts (where PowerShell is >> Microsoft's latest take on a scripting language). ?I know that as at a >> release or two ago, Scintilla added support for PowerShell, with the >> SciTE release which matched that release also supporting PowerShell - >> i.e. syntax highlighting etc. ?I wonder if adding support for >> PowerShell is planned for Geany? > > I don't think it's planned, but we would likely accept a patch to do > it. If anyone's interested, see the HACKING file in SVN. > > Regards, > Nick Nick, Thanks for your reply. I'd be most if happy if someone added support but unfortunately it can't be me as I'm not a programmer. Thanks to all those who develop Geany. I really appreciate projects like Geany which not only produce an excellent application but are also very open to community feedback and contributions, but also have excellent documentation. Regards, Russell Dickenson Australia From nick.treleaven at xxxxx Fri Oct 16 16:53:34 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Fri, 16 Oct 2009 17:53:34 +0100 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> Message-ID: <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> On Tue, 6 Oct 2009 08:41:34 -0300 Vinicius Massuchetto wrote: > Wonderful! I've just created a tags file from the PHP sources. That's > why I use Geany. > > So, there is any way of detecting the parameters to be shown on the > parameters dialog when opening brackets? I don't think the PHP parser supports calltips (yet). Regards, Nick From viniciusandre at xxxxx Sat Oct 17 03:51:15 2009 From: viniciusandre at xxxxx (Vinicius Massuchetto) Date: Sat, 17 Oct 2009 00:51:15 -0300 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> Message-ID: <4ede8f490910162051g627a8d77v74310a2a3b39339d@mail.gmail.com> On Fri, Oct 16, 2009 at 1:53 PM, Nick Treleaven wrote: > On Tue, 6 Oct 2009 08:41:34 -0300 > Vinicius Massuchetto wrote: > >> Wonderful! I've just created a tags file from the PHP sources. That's >> why I use Geany. >> >> So, there is any way of detecting the parameters to be shown on the >> parameters dialog when opening brackets? > > I don't think the PHP parser supports calltips (yet). No, it doesn't. How people did it with the default PHP functions? -- Vin?cius Massuchetto http://vinicius.soylocoporti.org.br From elextr at xxxxx Sat Oct 17 06:37:17 2009 From: elextr at xxxxx (Lex Trotman) Date: Sat, 17 Oct 2009 17:37:17 +1100 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <4ede8f490910162051g627a8d77v74310a2a3b39339d@mail.gmail.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> <4ede8f490910162051g627a8d77v74310a2a3b39339d@mail.gmail.com> Message-ID: <54962b890910162337l4624cb2cqaaf1d0b66415fa4e@mail.gmail.com> 2009/10/17 Vinicius Massuchetto : > On Fri, Oct 16, 2009 at 1:53 PM, Nick Treleaven > wrote: >> On Tue, 6 Oct 2009 08:41:34 -0300 >> Vinicius Massuchetto wrote: >> >>> Wonderful! I've just created a tags file from the PHP sources. That's >>> why I use Geany. >>> >>> So, there is any way of detecting the parameters to be shown on the >>> parameters dialog when opening brackets? >> >> I don't think the PHP parser supports calltips (yet). > > No, it doesn't. > How people did it with the default PHP functions? See scripts/create_php_tags.php in the Geany source distribution. Cheers Lex > -- > Vin?cius Massuchetto > http://vinicius.soylocoporti.org.br > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From enrico.troeger at xxxxx Sun Oct 18 20:32:39 2009 From: enrico.troeger at xxxxx (Enrico =?UTF-8?B?VHLDtmdlcg==?=) Date: Sun, 18 Oct 2009 22:32:39 +0200 Subject: [Geany] Add functions to dropdown auto-completion list In-Reply-To: <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> References: <4ede8f490910051807k5ff594e8v4107d741620acdfa@mail.gmail.com> <54962b890910051914g694cb86er20b8bdf857914044@mail.gmail.com> <20091006094031.e348e364.frank@frank.uvena.de> <4ede8f490910060400w254d6d31gd6fc207796148f7e@mail.gmail.com> <4ede8f490910060441l470a61d5m1242defc67030754@mail.gmail.com> <20091016175334.6ba17f3c.nick.treleaven@btinternet.com> Message-ID: <20091018223239.86c69eac.enrico.troeger@uvena.de> On Fri, 16 Oct 2009 17:53:34 +0100, Nick wrote: >On Tue, 6 Oct 2009 08:41:34 -0300 >Vinicius Massuchetto wrote: > >> Wonderful! I've just created a tags file from the PHP sources. That's >> why I use Geany. >> >> So, there is any way of detecting the parameters to be shown on the >> parameters dialog when opening brackets? > >I don't think the PHP parser supports calltips (yet). Last week, I think it was Thursday or Friday, a guy appeared in #geany (IRC) and requested a similar feature. After some talk about the current limitations of the regex-based PHP parser, he was keen to start working on a more sophisticated parser. Let's see what happens. Regards, Enrico -- Get my GPG key from http://www.uvena.de/pub.asc -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 198 bytes Desc: not available URL: From wsfpga at xxxxx Wed Oct 21 19:01:02 2009 From: wsfpga at xxxxx (Walter Daniel Gallegos) Date: Wed, 21 Oct 2009 17:01:02 -0200 Subject: [Geany] Layout swapping Message-ID: <4ADF5A6E.9010308@adinet.com.uy> Hi, all If possible swap the working area -where editable texts are displayed- with navigator or system area - where documents names, tags, folders, etc are displayed ? I place this question because in all my tools I set the left area as working area and one or more right areas as system area. Before any " why? ". My primary focus is my working area; so I like my working area before of system area. I'm working by many years with Oberon systems and this the default areas layout. -- Walter D. Gallegos | wsfpga at adinet.com.uy Tel +598 26 23 44 60 Cel +598 99 18 58 88 W Software & FPGA Services From elextr at xxxxx Wed Oct 21 23:07:07 2009 From: elextr at xxxxx (Lex Trotman) Date: Thu, 22 Oct 2009 10:07:07 +1100 Subject: [Geany] Layout swapping In-Reply-To: <4ADF5A6E.9010308@adinet.com.uy> References: <4ADF5A6E.9010308@adinet.com.uy> Message-ID: <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> Hi, Unfortunately it is not possible to change the arrangement of the main workspace as it is defined using the Glade user Interface designer which only allows fixed arrangements. Cheers Lex 2009/10/22 Walter Daniel Gallegos : > Hi, all > > If possible swap the working area -where editable texts are displayed- with > navigator or system area - where documents names, tags, folders, etc are > displayed ? > > I place this question because in all my tools I set the left area as working > area and one or more right areas as system area. > > Before any " why? ". My primary focus is my working area; so I like my > working area before of system area. I'm working by many years with Oberon > systems and this the default areas layout. > > -- > Walter D. Gallegos | wsfpga at adinet.com.uy > ?Tel +598 26 23 44 60 > ?Cel +598 99 18 58 88 > > W Software & FPGA Services > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > From nick.treleaven at xxxxx Thu Oct 22 11:10:14 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Thu, 22 Oct 2009 12:10:14 +0100 Subject: [Geany] Layout swapping In-Reply-To: <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> References: <4ADF5A6E.9010308@adinet.com.uy> <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> Message-ID: <20091022121014.1dadccf9.nick.treleaven@btinternet.com> On Thu, 22 Oct 2009 10:07:07 +1100 Lex Trotman wrote: > Unfortunately it is not possible to change the arrangement of the main > workspace as it is defined using the Glade user Interface designer > which only allows fixed arrangements. We could add a pref to switch the panes around at runtime though. > 2009/10/22 Walter Daniel Gallegos : > > Hi, all > > > > If possible swap the working area -where editable texts are displayed- with > > navigator or system area - where documents names, tags, folders, etc are > > displayed ? Regards, Nick From wsfpga at xxxxx Thu Oct 22 11:31:41 2009 From: wsfpga at xxxxx (Walter Daniel Gallegos) Date: Thu, 22 Oct 2009 09:31:41 -0200 Subject: [Geany] Layout swapping In-Reply-To: <20091022121014.1dadccf9.nick.treleaven@btinternet.com> References: <4ADF5A6E.9010308@adinet.com.uy> <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> <20091022121014.1dadccf9.nick.treleaven@btinternet.com> Message-ID: <4AE0429D.6010108@adinet.com.uy> Nick Treleaven escribi?: > On Thu, 22 Oct 2009 10:07:07 +1100 > Lex Trotman wrote: > >> Unfortunately it is not possible to change the arrangement of the main >> workspace as it is defined using the Glade user Interface designer >> which only allows fixed arrangements. > > We could add a pref to switch the panes around at runtime though. If this switch don't add an unnecessary complexity to the IDE, is a good solution. > >> 2009/10/22 Walter Daniel Gallegos : >>> Hi, all >>> >>> If possible swap the working area -where editable texts are displayed- with >>> navigator or system area - where documents names, tags, folders, etc are >>> displayed ? > > Regards, > Nick > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > > -- Walter D. Gallegos | wsfpga at adinet.com.uy Tel +598 26 23 44 60 Cel +598 99 18 58 88 W Software & FPGA Services From nick.treleaven at xxxxx Fri Oct 23 16:24:09 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Fri, 23 Oct 2009 17:24:09 +0100 Subject: [Geany] Layout swapping In-Reply-To: <4AE0429D.6010108@adinet.com.uy> References: <4ADF5A6E.9010308@adinet.com.uy> <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> <20091022121014.1dadccf9.nick.treleaven@btinternet.com> <4AE0429D.6010108@adinet.com.uy> Message-ID: <20091023172409.770db313.nick.treleaven@btinternet.com> On Thu, 22 Oct 2009 09:31:41 -0200 Walter Daniel Gallegos wrote: > > We could add a pref to switch the panes around at runtime though. > > If this switch don't add an unnecessary complexity to the IDE, is a good > solution. Added sidebar position interface pref in SVN. > >> 2009/10/22 Walter Daniel Gallegos : > >>> Hi, all > >>> > >>> If possible swap the working area -where editable texts are displayed- with > >>> navigator or system area - where documents names, tags, folders, etc are > >>> displayed ? Regards, Nick From wsfpga at xxxxx Mon Oct 26 17:43:22 2009 From: wsfpga at xxxxx (Walter Daniel Gallegos) Date: Mon, 26 Oct 2009 15:43:22 -0200 Subject: [Geany] Layout swapping In-Reply-To: <20091023172409.770db313.nick.treleaven@btinternet.com> References: <4ADF5A6E.9010308@adinet.com.uy> <54962b890910211607u2b7563ear808940d1360e222a@mail.gmail.com> <20091022121014.1dadccf9.nick.treleaven@btinternet.com> <4AE0429D.6010108@adinet.com.uy> <20091023172409.770db313.nick.treleaven@btinternet.com> Message-ID: <4AE5DFBA.50904@adinet.com.uy> Thank you, I rebuild Geany from SVN into Ubuntu 9.04, now with panels as I like ! Nick Treleaven escribi?: > On Thu, 22 Oct 2009 09:31:41 -0200 > Walter Daniel Gallegos wrote: > >>> We could add a pref to switch the panes around at runtime though. >> If this switch don't add an unnecessary complexity to the IDE, is a good >> solution. > > Added sidebar position interface pref in SVN. > >>>> 2009/10/22 Walter Daniel Gallegos : >>>>> Hi, all >>>>> >>>>> If possible swap the working area -where editable texts are displayed- with >>>>> navigator or system area - where documents names, tags, folders, etc are >>>>> displayed ? > > Regards, > Nick > _______________________________________________ > Geany mailing list > Geany at uvena.de > http://lists.uvena.de/cgi-bin/mailman/listinfo/geany > > -- Walter D. Gallegos | wsfpga at adinet.com.uy Tel +598 26 23 44 60 Cel +598 99 18 58 88 W Software & FPGA Services From hyperair at xxxxx Wed Oct 28 00:10:00 2009 From: hyperair at xxxxx (Chow Loong Jin) Date: Wed, 28 Oct 2009 08:10:00 +0800 Subject: [Geany] Geany Plugins 0.18 released! Message-ID: <4AE78BD8.608@gmail.com> Hi all, We're happy to announce a new release of Geany Plugins, 0.18. Below is a shortlog of all the changes since 0.17.1:- eht16 (16): Attempt to fix crashes when quitting Geany from the system tray icon. ChangeLog updated :-) Fix wrong indentation level Avoid using GHashTable functions from newer GLib versions to fix compilation with GLib 2.8. Fix version number We need the dot for proper building (e.g. on Windows). Merge changes from trunk Merge changes from trunk: Allow setting a custom dictionary directory without reloading the plugin. Add an option to the preference dialog to select a custom directory to look for additional dictionary files. Minor fixes. Remove unused code. Use single header includes. Update NEWS Fix wrong cast for Geany 0.18 Add readme file for Windows mentioning the included binaries Update outdated information Update outdated information Install README.windows Beautify the filename Update for 0.18, install plugin dependencies as well frlan (13): Backport bugfix for geanyLaTeX toolbar to 0.17.1 tree Update some of the documentation files to avoid empty files. Closes #2823235 Backport some of updated translation to 0.17.1 branch Create branch for 0.18 tree Update of version strings and set minimum depedency for Geany to 0.18 Update of documentation Update missed css file Update geanyvc to current devel version for 0.18 release Update NEWS file a bit GeanyVC: Fix a tooltip Set binary flag for geanyLaTeX's documentation PDF GeanyLaTeX: Also replace capital German Umlauts. Update/Backport of translations for 0.18 release hyperair (14): Correct typo: COMMON_LIBS => COMMONLIBS Move ttyhelper to $libexecdir/geany-plugins/geanygdb Tag geany-plugins-0.17.1 release Bump version in configure.ac Bump version in configure.ac Bump versions in wscript and .nsi Create tag geany-plugins-0.17.1 Port build system updates from trunk Turn on automake silent rules if supported Correct typo geadydoc => geanydoc Include waf files into the tarball Add README for autotools Correct typo and spelling errors in README Add missing files to POTFILES.in ntrel (4): Create 0.17.1 bugfix branch copied from the 0.17 release. Fixes from trunk. Add NEWS from trunk. Minor reformatting. yurand (2): Added geanyprj and geanydoc plugins Don't use gettext for empty string -- Kind regards, Chow Loong Jin -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 261 bytes Desc: OpenPGP digital signature URL: From nick.treleaven at xxxxx Fri Oct 30 12:39:45 2009 From: nick.treleaven at xxxxx (Nick Treleaven) Date: Fri, 30 Oct 2009 12:39:45 +0000 Subject: [Geany] Geany Plugins 0.18 released! In-Reply-To: <4AE78BD8.608@gmail.com> References: <4AE78BD8.608@gmail.com> Message-ID: <20091030123945.f1a94094.nick.treleaven@btinternet.com> On Wed, 28 Oct 2009 08:10:00 +0800 Chow Loong Jin wrote: > We're happy to announce a new release of Geany Plugins, 0.18. Below is a > shortlog of all the changes since 0.17.1:- Thanks Chow. Here is a quick summary of the changes: General: * Added new plugins GeanyDoc and GeanyPrj. * Minor fixes. Spell Check: * Allow setting custom dictionary directories if Enchant >= 1.5.0 is used. GeanyVC: * Update to most recent version including an entry to editor menu and a check/uncheck all function on commit dialog. Internationalisation: * New translations: ca, ja, pt_BR. * Updated translations: de, es, pt_BR, pt, tr. Regards, Nick