#QGIS IRC Log - 2009-04-20

For logs after Feb 3, 2007, all times are GMT-8. Prior logs are GMT-9.
Back to Logs
01:40:03 CIA-70: wonder * r10604 /trunk/qgis/src/ ( 2 files in 2 dirs ):
01:40:03 CIA-70: Sorting of raster color ramp items: better and faster.
01:40:03 CIA-70: ... why to use insert sort if we have quicksort for free ...? : )
01:40:03 CIA-70: ( was taking minutes for one raster layer )
03:23:33 timlinux: hi all
03:25:00 wonder_sk: hey timlinux
03:25:05 wonder_sk: how is it going?
03:38:41 timlinux: wonder_sk: hiya
03:38:52 timlinux: wonder_sk: busy busy busy as always
03:39:05 timlinux: fighting with python at the moment
03:39:22 wonder_sk: timlinux: beware of the snakes
03:39:27 timlinux: my prerelease of ubuntu 9.04 is a little wobbly on the python side
03:40:03 wonder_sk: i'm still waiting for the official 9.04 release
03:40:15 wonder_sk: is that kubuntu?
03:40:20 timlinux: this week it comes out I think
03:40:53 timlinux: well its kinda hybrid - I'm using gnome mainly at the moment - I have latest kde4 here but it still has too much stuff wrong with it
03:41:25 wonder_sk: ah
03:41:49 wonder_sk: i thouhgt in 9.04 it will be finally usable : )
03:43:13 : * wonder_sk is anxiously awaiting summer of code results later today!
03:46:08 timlinux: wonder_sk: its mostly usable and certainly getting better all the time
03:46:25 timlinux: but when I e.g. use ooO the panel disappears
03:46:33 timlinux: and various other little glitches
03:48:55 timlinux: wonder_sk: cool - do you have a gsoc proposal in for labelling?
03:49:12 wonder_sk: timlinux: yup
03:49:44 timlinux: I'll burn some incense & hold thumbs etc for you :- )
03:50:45 wonder_sk: timlinux: but i was quite surprised how many proposals came to osgeo : )
03:51:21 wonder_sk: timlinux: hehe, maybe some good old african voodoo? : )
03:51:38 timlinux: heh
03:51:51 timlinux: wonder_sk: any other qgis based proposals?
03:52:11 wonder_sk: timlinux: yes, see http://wiki.osgeo.org/index.php?title=Google_Summer_of_Code_2009_Ranking
03:52:13 sigq: Title: Google Summer of Code 2009 Ranking - OSGeo Wiki ( at wiki.osgeo.org )
03:52:32 wonder_sk: there are 2 proposals for ossim integration
03:53:06 timlinux: ah great. have you seen the vids they posted showing 3d tab in qgis?
03:53:41 wonder_sk: i've seen some links in logs, cool stuff
03:54:33 doktoreas: hello folks
03:55:16 timlinux: hi doktoreas
03:56:13 doktoreas: wow good list for SoC
03:56:29 timlinux: ya lots of interesting ideas
04:35:29 sigq: tracfeed: Ticket #1642 ( bug created ): v.to.db GRASS tool interface problem <https://trac.osgeo.org/qgis/ticket/1642>
05:07:00 doktoreas: timlinux, ping
05:07:30 doktoreas: I just enabled the plugin for the RGB component
05:07:34 doktoreas: but it ask for osgeo
05:07:43 doktoreas: python module
05:07:51 doktoreas: something comeing from osgeo4w ?
05:25:54 timlinux: doktoreas: on which platform
05:26:56 : * timlinux has to reboot - back in a few
07:03:48 sigq: tracfeed: Ticket #1643 ( bug created ): Raster: Problems displaying Int16 grayscale image <https://trac.osgeo.org/qgis/ticket/1643>
07:34:12 springmeyer: in python how can you programmatically turn off or on all layers in the legend in on fell swoop?
07:34:38 springmeyer: ( I see the 'hide_all_layers' action but how do you call that? )
07:44:07 pcav: perhaps now the Oracle driver will become more useful...
07:44:10 pcav: http://www.sun.com/third-party/global/oracle/
07:44:11 sigq: Title: Sun and Oracle ( at www.sun.com )
07:44:45 dassouki: funny how IBM backs out and oracle jumps in
07:47:38 dassouki: well i asked this question earlier, and if i can create a plugin using qgis api then be it. but any ideas on how to do so
07:47:56 dassouki: i have a point table representing centroids, a line layer representing roads, and a polygon layer representing zones. I'd like to create X number of line( s ) connecting each centroid to the nearest roads such that these connections are within the zone. The new lines will be saved to a new table that also includes the existing lines. image: http://imgur.com/1tEaP.jpg
07:48:06 jef: pcav: hm, why should it? I don't that that will change much on the oracle front. but what happend to mysql and OOo will probably be interesting.
07:48:20 jef: s/don't/don't think/
07:49:05 pcav: jef: just joking
07:49:11 pcav: worrysome though
08:35:06 jachym: timlinux: yes
09:08:22 sigq: tracfeed: Ticket #1644 ( bug created ): QgsVectorLayer/Python: Vector layer has no display name <https://trac.osgeo.org/qgis/ticket/1644>
10:37:43 rduif: hi all,
10:38:29 rduif: I'm trying to write a simple svg-output for vector maps, to be able to further editing in Inkscape
10:39:16 rduif: now I'm trying to find out how to find the color of a classified layer.
10:40:05 rduif: in Python I can get the symbol-list of a layer, but on feature-level NOT the class that current feature is in
10:40:11 rduif: anybody an idea?
10:42:24 springmeyer: given 'ql' is the qgis layer...
10:42:37 springmeyer: you can do something like...
10:42:57 springmeyer: oh, wait, feature level? ew...
10:43:44 springmeyer: depends on how the layer is classified, right?
10:43:52 springmeyer: say you have unique values classification
10:44:10 springmeyer: then there is a 'symbol' attached to the layer's renderer for each feature
10:44:19 springmeyer: rduif: that sound like what you need?
10:44:35 springmeyer: ren = ql.renderer( )
10:44:47 springmeyer: field = ren.classificationAttributes( )[0]
10:45:03 springmeyer: field_list = p.fields( )
10:45:21 springmeyer: for s in ren.symbols( ):
10:45:43 springmeyer: s.fillColor( ) ...
10:45:52 springmeyer: s.lineWidth( )
10:46:00 springmeyer: s.color( )
10:46:09 springmeyer: etc, etc, that sound close?
10:48:02 rduif: @springmeyer: yeah, I can see the different symbols, but not which one is used by current feature...
10:48:33 springmeyer: okay, sorry I've not done that then
10:49:43 springmeyer: would love to hear how its done however : )
10:51:16 rduif: I will try or ask the mailinglist
10:51:20 macho: jef: so i should use only qt4.5 to update .ts files to avoid the failure again?
10:51:50 jef: macho: which failure?
10:52:04 macho: the translation failure
10:52:37 rduif: macho: should we do translation of both trunk and stable 1.0 branch now?
10:52:45 rduif: for 1.1 I mean
10:53:04 springmeyer: rduif: just took a peak inside TopoColour
10:53:05 springmeyer: http://blog.qgis.org/node/126
10:53:06 sigq: Title: New plugin - topological colouring | Quantum GIS Blog ( at blog.qgis.org )
10:53:11 macho: rduif: hmm - i guess until freeze 1.0 will be enough
10:53:24 springmeyer: I don't see anything right off, but perhaps you might ( just in case you don't know about that plugin )
10:53:36 macho: rduif: trunk or better upcoming next release will be more interesting if there are no more string changes
10:54:11 rduif: ok, I think I will forget 1.0 then and start on trunk
10:54:20 jef: macho: the string freeze is already in effect.
10:55:11 macho: hmm - only 1 week away and missing the whole life?
10:55:13 macho: : )
10:55:35 springmeyer: does the qgis srs come bundled with the google spherical mercator proj?
10:55:50 jef: macho: tim announced it yesterday.
10:56:39 macho: jef: i'm currently trying to be up to date in my company ..
10:56:46 macho: ok .. another freeze - another mail ..
10:56:56 macho: think i gotta send it to translators tomorrow
10:57:02 macho: where is the announcement?
10:57:17 jef: macho: http://lists.osgeo.org/pipermail/qgis-developer/2009-April/006685.html
10:57:18 sigq: Title: [Qgis-developer] Bumping along the road to pan...call for translations..... ( at lists.osgeo.org )
10:57:33 macho: oh he did the call already?
10:57:45 jef: macho: and did you see http://lists.osgeo.org/pipermail/qgis-developer/2009-April/006686.html??
10:57:46 sigq: Title: [Qgis-developer] broken lupdate... ( at lists.osgeo.org )
10:58:11 macho: think i'm gonna take this mail and send it to translators ..
10:58:50 springmeyer: seems not... ( anwering my own srs Q )
10:58:51 springmeyer: >>> crs = QgsCoordinateReferenceSystem( 900913 )
10:58:51 springmeyer: >>> crs.toProj4( )
10:58:52 springmeyer: >>> crs = QgsCoordinateReferenceSystem( 3785 )
10:58:52 springmeyer: >>> crs.toProj4( )
11:03:06 rduif: springmeyer: no, I added it as a userdefined one:
11:03:07 rduif: p, li { white-space: pre-wrap; } +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs
11:03:23 rduif: +proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0 +k=1.0 +units=m +nadgrids=@null +no_defs
11:03:50 springmeyer: rduif: okay, do you know is there a way to add it programmatically?
11:04:12 springmeyer: or otherwise force the setProj4String( ) result to be valid/true?
11:04:34 rduif: springmeyer: nope sorry
11:06:52 springmeyer: okay :
11:06:53 springmeyer: : )
11:07:03 springmeyer: looks like you can override the isValid( ) check with a
11:07:10 springmeyer: custom 'QgsCoordinateReferenceSystem::mCustomSrsValidation' function
11:07:17 springmeyer: but does not seems to be exposed in python
11:12:40 springmeyer: nice!
11:12:53 springmeyer: rduif: yup works like a charm once I added manually
11:26:09 CIA-70: jef * r10605 /trunk/qgis/src/core/qgsvectorlayer.cpp: fix #1644
11:27:11 sigq: tracfeed: Changeset [10605]: fix #1644 <https://trac.osgeo.org/qgis/changeset/10605>
11:28:34 sigq: tracfeed: Ticket #1644 ( bug closed ): QgsVectorLayer/Python: Vector layer has no display name <https://trac.osgeo.org/qgis/ticket/1644#comment:1>
11:39:00 springmeyer: okay, qgis is seriously fun
11:39:19 springmeyer: quick update on the mapnik plugin, day 3
11:39:55 springmeyer: I've got mapnik rendering on top of the canvas and can now load/save mapnik xml via the plugins menu
11:40:43 springmeyer: so, as first test the world population map used on the mapnik tutorial works:
11:40:48 springmeyer: http://dbsgeo.com/tmp/load_mapnik_xml.png
11:41:40 springmeyer: and loading openstreetmap data via xml styles ( rendering dynamically ) works as well ( albeit a bit slow ):
11:41:46 springmeyer: http://dbsgeo.com/tmp/rendering_osm_via_mapnik.png
11:43:28 wildintellect: looking good
11:56:30 springmeyer: thx wildintellect
11:56:53 springmeyer: okay, here's the source for anyone really adventurous:
11:56:53 springmeyer: http://bitbucket.org/springmeyer/quantumnik/
11:56:54 sigq: Title: springmeyer / Quantumnik / overview bitbucket.org ( at bitbucket.org )
11:57:04 wildintellect: ah I was about to ask about that
11:57:22 springmeyer: if you don't want to mess with mercurial grab the 'get source' link for a zip
11:57:37 springmeyer: and then just drag into your ~/.qgis/plugins folder
11:57:48 springmeyer: but requires mapnik installed of course
11:58:03 springmeyer: source download would be: http://bitbucket.org/springmeyer/quantumnik/get/270346cbcf2f.zip
12:04:09 wonder_sk: springmeyer: really nice stuff
12:10:20 springmeyer: okay, basic instructions now added at:
12:10:21 springmeyer: http://bitbucket.org/springmeyer/quantumnik/
12:10:22 sigq: Title: springmeyer / Quantumnik / wiki / Home bitbucket.org ( at bitbucket.org )
12:46:03 cgs_bob: springmeyer: hi there! just tried your plugin and got this error on a postgis layer.
12:46:15 cgs_bob: http://rafb.net/p/t6SU9V91.html
12:46:17 sigq: Title: Nopaste - No description ( at rafb.net )
12:49:35 springmeyer: hey cgs_bob: yes that will happen unless your postgres user has no password
12:50:14 springmeyer: because the password value is not exposed in the python bindings so I can't get at it untill the next release
12:50:17 springmeyer: fyi: http://trac.osgeo.org/qgis/changeset/10581
12:50:18 sigq: Title: Changeset 10581 - Quantum GIS - Trac ( at trac.osgeo.org )
12:50:53 springmeyer: sorry about that
12:51:01 springmeyer: so shapefiles work for you?
12:51:04 cgs_bob: here's another error on a shapefile http://rafb.net/p/iatbdn86.html
12:51:05 springmeyer: so/do
12:51:05 sigq: Title: Nopaste - No description ( at rafb.net )
12:51:17 springmeyer: ah, okay
12:51:28 springmeyer: you need to build mapnik with the ogr plugin
12:51:36 cgs_bob: btw, I can do an import ogr in the python console with no probs
12:51:41 springmeyer: $ python scons/scons.py PLUGINS=all
12:52:04 cgs_bob: I'll do that...brb
12:52:16 springmeyer: thanks, I'll put that on the wiki....
13:10:46 CIA-70: robert * r10606 /docs/branches/1.0.0/polish/user_guide/title.tex: test commit
13:12:12 sigq: tracfeed: Changeset [10606]: test commit <https://trac.osgeo.org/qgis/changeset/10606>
13:16:56 springmeyer: any luck there cgs_bob?
13:18:35 cgs_bob: springmeyer: had a visitor at the did as you said, but I'm getting the same error. Do I do a "sudo python scons/scons.py install " after the command you gave me?
13:18:53 springmeyer: yes
13:19:18 springmeyer: exactly, add that 'install' argument to any scons command to make sure the files get placed
13:19:27 springmeyer: otherwise builds stay local
13:20:10 cgs_bob: well, I did that, but I'm still getting that error. is there a way to test if I have the ogr plugin for mapnik?
13:20:35 springmeyer: hmm, thats the test : )
13:20:41 springmeyer: only other one is to look in the ...
13:20:57 springmeyer: '/usr/local/lib/mapnik/input' folder
13:21:04 springmeyer: what do you have in there?
13:22:06 CIA-70: robert * r10607 /docs/branches/1.0.0/polish/user_guide/qgis_style.sty: test commit
13:22:24 sigq: tracfeed: Changeset [10607]: test commit <https://trac.osgeo.org/qgis/changeset/10607>
13:23:06 cgs_bob: I have postgis.input raster.input shape.input
13:23:24 springmeyer: okay, so ogr plugin did not get installed then
13:23:40 springmeyer: $ sudo python scons/scons.py PLUGINS=all
13:23:43 springmeyer: you did that?
13:26:15 cgs_bob: I did that. got any ideas? : )
13:26:44 springmeyer: what is the configure output if you run that again?
13:27:08 springmeyer: mapnik uses the 'gdal_config' program to find gdal/ogr so it will fail if that is not found
13:27:16 springmeyer: cgs_bob: Mapnik 0.6.0 right?
13:28:37 cgs_bob: springmeyer: this might give you a clue to my problem: http://rafb.net/p/yFj4AX85.html
13:28:39 sigq: Title: Nopaste - No description ( at rafb.net )
13:30:15 springmeyer: cgs_bob: weird: is this mapnik source from svn or the 0.6.0 release?
13:30:40 cgs_bob: maybe I should not be using mapnik from svn : )
13:30:54 springmeyer: no, thats fine as long as you've updated it?
13:30:57 springmeyer: svn up?
13:32:22 cgs_bob: just did. I only got modserver.py updated. got to check the docs to see how to compile mapnik now
13:32:39 springmeyer: odd.
13:32:44 springmeyer: okay, can you run
13:32:56 springmeyer: $ python scons/scons.py PLUGINS=all configure
13:32:57 springmeyer: ?
13:35:38 springmeyer: cgs_bob: okay, just pushed a change to support shapefiles with the native shapefile driver in mapnik
13:35:45 springmeyer: ( which you do have built )
13:36:23 springmeyer: so if the build does not properly install ogr then you have update the plugin instead
13:39:45 cgs_bob: same error. I got to go to a meeting. I'll bbiab...but I'll check out your latest change first : ) is that in the qgis plugin or in mapnik?
14:09:31 timlinux: hi all
14:09:37 timlinux: jctull: hi
14:45:29 cgs_bob: springmeyer: well, I got a bit farther. I was able to compile mapnik with all plugins ( I changed PLUGINS to INPUT_PLUGINS ). I loaded a shapefile and clicked on "Render to Mapnik" and now I see "Mapnik rendering in progress". I've been waiting over 10 minutes.
14:56:45 racicot: cgs_bob: it probably did render... I think there is a bug with the message sticking around
14:57:15 racicot: try to turn on labels for the layer you loaded... then render to mapnik and you will see the "overlay".
14:57:31 racicot: the plugin button just toggles the "overlay" on the main map
14:58:16 cgs_bob: racicot: so, how do I see the results? My vector layer is hidden and all I see is a blank screen
15:03:01 cgs_bob: racicot: when I hover over the Render to Mapnik button, the status bar still says "Mapnik rendering in progress...". I also turned on labels and hit the mapnik render button again. still don't see anything
15:03:43 racicot: well, that is a bummer :-(
15:03:49 racicot: Works for me ;- )
15:05:03 racicot: So, you 1 ) load a shapefile 2 ) turn on labels 3 ) hit the mapnik button 4 ) you get a blank screen 5 ) you click the mapnik button again and you see your layers again...
15:06:09 racicot: in the case of a simple shapefile with no labels, the mapnik overlay does not look very different, so that is why I was saying to turn on labels... in most cases you would notice a BIG difference then
15:06:36 racicot: cgs_bob: and there are no errors or anything?
15:07:54 : * springmeyer is back for a moment, scrolls...
15:08:29 springmeyer: projection problem perhaps?
15:08:55 springmeyer: maybe the default map projection differs from the actual data projection?
15:09:20 racicot: springmeyer: the xml import export works for me... cool!
15:09:31 cgs_bob: no errors. I'm sure the projection is fine. it is a geology map from the usgs
15:09:32 springmeyer: nice : )
15:09:36 racicot: the status bar status is getting stuck though...
15:09:43 cgs_bob: I'll try a different one
15:09:45 springmeyer: ya, I noticed that too
15:10:04 springmeyer: could not quite figure out the timing of when the status bar updates
15:10:11 springmeyer: and my english is wrong... : )
15:14:12 jctull_: timlinux: ping
15:17:34 timlinux: jctull: urf missed ya
15:17:56 : * timlinux reads up the buffer
15:18:05 timlinux: springmeyer: erk you got it working!! :- )
15:18:10 timlinux: springmeyer: screenies?
15:18:52 springmeyer: http://dbsgeo.com/tmp/load_mapnik_xml.png
15:19:09 springmeyer: http://dbsgeo.com/tmp/rendering_osm_via_mapnik.png
15:19:12 cgs_bob: springmeyer: I used a tiger shapefile and turned on labels. clicked on Render to mapnik...got myself a beautiful map : )
15:19:26 springmeyer: ah, fantastic
15:19:52 springmeyer: so you think it was working before but just no labels so you couldn't tell the difference?
15:20:14 timlinux: very nice
15:20:24 timlinux: did you make any more fancy looking maps?
15:20:55 timlinux: ah sorry missed the second link
15:21:05 cgs_bob: I think I didn't have enough labels. when you look at the unincorperated cities map of California with labels on, it looks very busy...until you use your plugin : )
15:21:24 timlinux: springmeyer: how's the performance?
15:21:37 timlinux: would be really nice to put it into map composer
15:21:45 springmeyer: surprisingly good ( rendering OSM on the fly )
15:22:08 timlinux: springmeyer: good enough to swap out our current renderer :- ) ?
15:22:29 springmeyer: : )
15:22:50 timlinux: those menus in the screenie - they let you save a .qgs project to mapnick xml and verca vica?
15:22:56 springmeyer: lets just keep on playing in the python world for a bit...
15:23:23 springmeyer: but ya an alt rendering could be written in C++ very easily, nearly the same syntax as python
15:23:32 doktoreas: timlinux: sorry for psoting question and run away
15:23:39 doktoreas: I was having problem with RGB plugin
15:23:41 springmeyer: trick is merging the obejct models for styles and layers, super tricky
15:23:42 doktoreas: on my ubuntu
15:23:50 doktoreas: it asks me for osgeo pacakge
15:24:00 springmeyer: ya timlinux: right now with the plugin you can go...
15:24:09 springmeyer: qgis project file - > mapnik xml
15:24:35 springmeyer: and you can load a mapnik xml ( that does not interact with qgis )
15:24:48 timlinux: doktoreas: no probs - I have extremely short term mem span - like an un-elephant
15:24:58 timlinux: springmeyer: ok gotcha
15:24:58 doktoreas: : )
15:25:11 timlinux: springmeyer: what deps does mapnick lib have?
15:25:20 doktoreas: Installing the RGB layer plugin, it says that I need a package called osgeo
15:25:43 springmeyer: timlinux: quite a few
15:25:48 springmeyer: boost and ICU are the unique ones
15:26:07 springmeyer: and cairo is used for pdf/svg/postscript formats
15:26:12 timlinux: ah
15:26:49 timlinux: pity - will probably cause a lot of resistance to add all those deps to qgis
15:27:09 timlinux: https://linfiniti.com/qgis/ <-- timlinux's feeble attempt at a windows installer
15:27:14 timlinux: for qgis
15:27:37 timlinux: guess there aren't many win users here so its probably a non event
15:28:11 timlinux: doktoreas: sorry I don't really know anything about the rgb layer plugin
15:28:19 timlinux: its a contributed plugin I think
15:28:36 doktoreas: ok thx..I'll try to contact the author
15:28:49 springmeyer: staticly linked mapnik bindaries here: http://trac.mapnik.org/wiki/WindowsInstallation
15:28:50 sigq: Title: WindowsInstallation – Mapnik Wiki & Documentation – Trac ( at trac.mapnik.org )
15:31:23 timlinux: springmeyer: sorry I didn't mean to misrepresent myself as some kind of windows guy :- )
15:32:04 timlinux: springmeyer: is your plugin in a repo somewhere?
15:32:24 springmeyer: bitbucket.org/springmeyer/quantumnik/
15:33:21 timlinux: sudo apt-get install python-mapnik <-- all I need for that?
15:33:30 springmeyer: nope
15:33:36 springmeyer: plugin requires 0.6.0 release
15:33:58 springmeyer: svn co http://svn.mapnik.org/trunk mapnik
15:33:59 sigq: Title: / - Revision 1106: /trunk ( at svn.mapnik.org )
15:34:00 springmeyer: cd mapnik
15:34:15 springmeyer: python scons/scons.py INPUT_PLUGINS=all
15:34:56 timlinux: jaunty/universe python-mapnik 0.5.1-3ubuntu2
15:35:03 timlinux: so a bit old then :-(
15:35:15 springmeyer: 0.6.0 was release 20 days ago
15:35:28 springmeyer: and just missed jauty therefore
15:35:37 springmeyer: but just got accepted into debian unstable last week
15:35:41 timlinux: yeah I think qgis probably missed it too
15:38:44 timlinux: does mapnik do labels following curves etc?
15:39:04 springmeyer: yes
15:39:18 springmeyer: and I've made that default in the plugin whenever you choose to label lines
15:39:28 timlinux: using your own logic?
15:39:32 timlinux: or a lib?
15:39:45 timlinux: how portable is your label placement stuff?
15:39:49 springmeyer: internal implementation
15:39:52 springmeyer: C++
15:40:56 cgs_bob: here is my little screenie of tiger data: http://bobdebm.googlepages.com/qgiswithmapnikplugin
15:40:57 sigq: Title: bobdebm -   ( at bobdebm.googlepages.com )
15:41:48 timlinux: cgs_bob: is that qgis top vs mapnick bottom?
15:42:05 cgs_bob: timlinux: yup
15:45:11 springmeyer: okay guys, just pushed a change to bitbucket that improves the reporting of what is happening
15:45:15 springmeyer: rendering or not, etc...
15:45:23 springmeyer: still not working quite right, but better
15:45:29 : * springmeyer has to rolll
15:45:37 springmeyer: thanks for testing cgs_bob!
15:45:54 springmeyer: I'm really sorry I told you PLUGINS not INPUT_PLUGINS :(
15:46:00 cgs_bob: see ya later springmeyer. thanks for the great addition to qgis
15:46:06 springmeyer: I think I've got to change that variable name!
15:46:32 springmeyer: you are welcome : ) lots of possibilties, just a small start
15:46:45 springmeyer: later all, cheers racicot : )
17:43:26 gsherman: http://blog.qgis.org/qgis_and_gsoc_2009
17:43:28 sigq: Title: QGIS and Google Summer of Code 2009 | Quantum GIS Blog ( at blog.qgis.org )
18:29:16 jctull: timlinux: I was afk, checked in on my iphone earlier. This client doesn't mark me away automatically
18:31:01 jctull: gsherman: you the mentor!
18:31:17 jctull: or, half of the qgis mentors...
18:31:17 gsherman: what?
18:31:20 gsherman: me?
18:31:24 gsherman: oh no!
18:31:28 jctull: absentee mentor?
18:31:44 gsherman: i was last year too, but my mentee skipped on me
18:32:07 jctull: bummer. I didn't know Martin was a student. That's great.
18:32:16 gsherman: yup
22:04:01 macho: jef: awake already?
22:05:08 wildintellect: that makes me think I should be asleep
22:06:19 macho: :D maybe
22:07:09 wildintellect: hmm, just maybe I should start coding instead
22:09:22 macho: without sleep? i guess coding will be called "producing bugs"
22:09:23 macho: :D
22:09:51 wildintellect: I actually do my best work 10pm to 2pm
22:10:06 wildintellect: and then have nightmares about bugs, wake up and fix them
22:10:23 macho: 10pm to 2pm?
22:10:28 macho: wow - long period
22:10:30 wildintellect: sorry 2am
22:10:35 macho: hehehe
22:10:46 wildintellect: ok I think your point is proven for tonight
22:10:56 macho: *strike*
22:34:41 jef: macho: why?
22:41:53 sigq: tracfeed: Ticket #1322 ( bug closed ): Appcrash on fast remove of multiple layers <https://trac.osgeo.org/qgis/ticket/1322#comment:2>
22:43:35 sigq: tracfeed: Ticket #1430 ( bug closed ): Xorg crash loading a big GRASS vector map <https://trac.osgeo.org/qgis/ticket/1430#comment:3>
23:43:07 CIA-70: timlinux * r10608 /trunk/qgis/src/ ( 7 files in 4 dirs ): Applied last minute patch for http auth support in wms ( see ticket #1603 ).
23:44:10 sigq: tracfeed: Changeset [10608]: Applied last minute patch for http auth support in wms ( see ticket #1603 ). <https://trac.osgeo.org/qgis/changeset/10608>
23:45:38 sigq: tracfeed: Ticket #1603 ( enhancement closed ): WMS Basic Authentication <https://trac.osgeo.org/qgis/ticket/1603#comment:7>