Re: [Qgis-developer] Semester Project

2013-02-26 Thread Alex Mandel
On 02/25/2013 01:22 PM, Petr Cincibus wrote: I'm Student of Czech Technical University in Prague. My semestr project is to help in development of open source project. Assignment of my task can be even so easy as fixing of bug which will affect code in one line. It is important to incorporated

[Qgis-developer] 10th QGIS hackfest will be in Brighton (autumn 2013)

2013-02-26 Thread Otto Dassau
Dear QGIS Community, as you probably know, the FOSS4G conference 2013 will take place in Nottingham from 17th - 21st September and we are happy that we are able to combine it with the 10th QGIS hackfest. Saber Razmjooei and Peter Wells from Lutra Consulting offered to host the hackfest in

Re: [Qgis-developer] new splash screen for upcoming 2.0 ?

2013-02-26 Thread Salvatore Larosa
Hi Anita, 2013/2/26 Anita Graser anitagra...@gmx.at Hi, I agree with Larry's assessment that the color feels out of touch with modern style unfortunately. On the other hand, I really like the squared corners as I've already written in an answer to http://hub.qgis.org/issues/7211. Ok, I

Re: [Qgis-developer] contributing diffs

2013-02-26 Thread Paolo Cavallini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Il 21/02/2013 11:17, Paolo Corti ha scritto: Sorry, here it is: https://github.com/GeoNode/geonode/blob/dev/docs/developers/document-issue-solve-and-merge.txt Hi all. I think this is a very good workflow, that cuold make QGIS releases smoother and

Re: [Qgis-developer] oracle performances

2013-02-26 Thread Giovanni Manghi
Hi Jurgen On Mon, 25. Feb 2013 at 17:01:37 +, Giovanni Manghi wrote: I found the overall performances very slow if compared to PostGIS, but I'm not really sure it was qgis fault. Are you using integer primary keys? I'm waiting for the cisco vpn client for win64, then I'll do more

[Qgis-developer] URL Rewriting and qgis-web-client

2013-02-26 Thread Emilio Loi
Hi everybody, I hope you can help me. I'm trying to enable URL Rewriting in Qgis-web-client as described at point 5 of the configuration guide (https://github.com/qgis/qgis-web-client) I'm using this rule: RewriteRule wms/([^/]+)$

Re: [Qgis-developer] URL Rewriting and qgis-web-client

2013-02-26 Thread Andreas Neumann
Hi, You always have to specify a project path and project name with QGIS web client. Regardless whether you use URL rewriting or not. The client does not work without project path and name. So a correct URL to start the client would be:

Re: [Qgis-developer] URL Rewriting and qgis-web-client

2013-02-26 Thread Emilio Loi
Thanks for your answer. First, I'd corrected serverAndCGI value. Without any redirect rule all works perfectly. Currently I have only one RedirectRule that redirects any */wms/project*request to *qgis_mapserv.fcgi* script), Directory /var/www/qgis-web-client/site/ Options Indexes

Re: [Qgis-developer] URL Rewriting and qgis-web-client

2013-02-26 Thread Andreas Neumann
Hi, If you do the redirects, I recommend to always do two redirects: * one for the WMS * one for the HTML/JSS/CSS files Here is what I use (modified to hide my paths): #Rewrite Rules for QGIS webclient # Map /wms to qgis_mapserv.fcgi RewriteEngine On RewriteLog

Re: [Qgis-developer] oracle performances

2013-02-26 Thread Giovanni Manghi
Hi Jurgen, Are you using integer primary keys? right now I have difficulties accessing the VPN but at least they gave me the structure of one of the tables I tested CREATE TABLE QGIS_TEST.SEDI_ELETTORALI (OBJECTID NUMBER(38,0) NOT NULL ENABLE, NOME_SEDE VARCHAR2(50 BYTE),

Re: [Qgis-developer] oracle performances

2013-02-26 Thread Jürgen E . Fischer
Hi Giovanni, On Tue, 26. Feb 2013 at 17:54:13 +, Giovanni Manghi wrote: Are you using integer primary keys? right now I have difficulties accessing the VPN but at least they gave me the structure of one of the tables I tested CREATE TABLE QGIS_TEST.SEDI_ELETTORALI ( OBJECTID

Re: [Qgis-developer] Composer item's IDs

2013-02-26 Thread Olivier Dalang
Hi ! So here's a pull request about that : https://github.com/qgis/Quantum-GIS/pull/443 This contains only the UUID part, so there's no API change (and no modification on the QgsComposerItem::id() vs QgsComposerMap::id() problem). Regards, Olivier 2013/2/21 Marco Hugentobler

Re: [Qgis-developer] URL Rewriting and qgis-web-client

2013-02-26 Thread Emilio Loi
Ok, now I have one rule for wms RewriteRule ^wms/([^/]+)$ /cgi-bin/qgis_mapserv.fcgi?map=/path-to-projects/$1.qgs [QSA,PT,L] (it works, you can see it in action here http://vega.faunalia.it/wms/candela?REQUEST=GetCapabilities) one to have a short url with the project name RewriteRule

[Qgis-developer] non integer ID and python

2013-02-26 Thread Denis Rouzaud
Hi all, I have a small problem in my quickfinder plugin (finds a feature by its id). For postgis layers, I have no problem to find a feature using its id. But, I can't achieve this with shapefiles for example. I understand this as the IDs of shapefiles are store in strings. Apparently, in

Re: [Qgis-developer] non integer ID and python

2013-02-26 Thread Jürgen E . Fischer
Hi Denis, On Wed, 27. Feb 2013 at 07:27:49 +0100, Denis Rouzaud wrote: I have a small problem in my quickfinder plugin (finds a feature by its id). I don't know that plugin. What does it actually do? For postgis layers, I have no problem to find a feature using its id. But, I can't