[QGIS-Developer] Why is "Execute SQL" limited to only one query at a time?

2023-02-08 Thread Vedran Stojnović via QGIS-Developer
Hi everyone,

I would like to write a feature request for executing more than one SQL
query at a time, but before I do, I would like to check why is it limited
in the first place, maybe there's a good reason why it doesn't work by
default?

So I was trying to execute few UPDATE statements through "DB Manager..." on
GPKG layer and got following message "You can only execute one statement at
a time." as result.
I also tried through "Execute SQL" dialog (available on right click in
Browser panel on GPKG layer > Execute SQL), but only first statement was
executed and all other are ignored.

--
Kind regards,
Vedran Stojnović.
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


[QGIS-Developer] Load a QgsMeshLayer within a QgsTask... different Threads?

2023-02-08 Thread Richard Duivenvoorde via QGIS-Developer

Hi,

Having to juggle with rather large/long loading netcdf files, I thought to off 
load the loading to a QgsTask, so while the netcdf was loaded user could do 
other things...

But I get "...is run from a different thread than the object  lives in ..." 
warnings.

In short:

def run(self) -> bool:
log.info(f'LOADING... {self.netcdf_file}')
try:
self.layer = QgsMeshLayer(self.netcdf_file, 
'PythonLoadedMeshLayer',  'mdal')


BUT: while it looks like all is fine, I get a Qt warning in my messages, and on 
my terminal I get:

[INFO] (Dummy-1   ) LOADING... /tmp/kees/aoi/aoi1/areaOfInterest1.nc
Warning: fileName (/home/richard/git/qgis/src/core/project/qgsproject.cpp:812) 
is run from a different thread than the object  lives in [0x5593004f1aa0 vs 
0x5592ff7e6440]
Stacktrace (piped through c++filt):
/home/richard/bin/qgis_/master/debug/bin/qgis(+0xe26a)[0x5592fe9ba26a]
/home/richard/bin/qgis_/master/debug/bin/qgis(+0xea29)[0x5592fe9baa29]
/lib/x86_64-linux-gnu/libQt5Core.so.5(+0xc3b50)[0x7fc594ec3b50]
/lib/x86_64-linux-gnu/libQt5Core.so.5(qt_message_output(QtMsgType, QMessageLogContext 
const&, QString const&)+0xd)[0x7fc594ec50fd]
/lib/x86_64-linux-gnu/libQt5Core.so.5(QDebug::~QDebug()+0x68)[0x7fc594fc6fa8]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsProject::fileName()
 const+0x267)[0x7fc592f1af2f]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsMapLayer::loadNamedProperty(QString
 const&, QgsMapLayer::PropertyType, bool&, 
QFlags)+0x752)[0x7fc592a215c0]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsMapLayer::loadNamedStyle(QString
 const&, bool&, QFlags)+0x2b1)[0x7fc592a20b8f]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsMapLayer::loadDefaultStyle(bool&)+0x2dc)[0x7fc592a1f6ec]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsMeshLayer::loadDefaultStyle(bool&)+0x685)[0x7fc5930a84bb]
/home/richard/bin/qgis_/master/debug/lib/libqgis_core.so.3.29.0(QgsMeshLayer::QgsMeshLayer(QString
 const&, QString const&, QString const&, QgsMeshLayer::LayerOptions 
const&)+0x2b9)[0x7fc5930a5ab1]
/home/richard/bin/qgis_/master/debug/share/qgis/python/qgis/_core.so(sipQgsMeshLayer::sipQgsMeshLayer(QString
 const&, QString const&, QString const&, QgsMeshLayer::LayerOptions 
const&)+0x3b)[0x7fc43040b9c7]
/home/richard/bin/qgis_/master/debug/share/qgis/python/qgis/_core.so(+0x121a0bc)[0x7fc43041a0bc]
/usr/lib/python3/dist-packages/PyQt5/sip.cpython-311-x86_64-linux-gnu.so(+0x19f60)[0x7fc4dc271f60]
/lib/x86_64-linux-gnu/libpython3.11.so.1.0(+0x1e02fe)[0x7fc47a5e02fe]
/lib/x86_64-linux-gnu/libpython3.11.so.1.0(_PyObject_MakeTpCall+0x7d)[0x7fc47a57baed]
/lib/x86_64-linux-gnu/libpython3.11.so.1.0(_PyEval_EvalFrameDefault+0x4a63)[0x7fc47a509c63]
/lib/x86_64-linux-gnu/libpython3.11.so.1.0(+0x26a6da)[0x7fc47a66a6da]
/lib/x86_64-linux-gnu/libpython3.11.so.1.0(+0x17f30c)[0x7fc47a57f30c]
/usr/lib/python3/dist-packages/PyQt5/sip.cpython-311-x86_64-linux-gnu.so(+0x1196c)[0x7fc4dc26996c]
[INFO] (MainThread) finished OK

My Questions:
- should I NOT do this?
- or is the loading/construction of a QgsMeshLayer having pointers to places it 
should not?

(mmm loading a QgsVectorLayer (shape via ogr) also results in about the same 
warnings...
so next question: is there another way to load these large netcdf's without 
blocking QGIS ?)

Thanks for any info.

Regards,

Richard Duivenvoorde
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


[QGIS-Developer] 3.28 speedup

2023-02-08 Thread Jésahel Benoist via QGIS-Developer
Hi,

Just a quick message to say thank you to all developpers as I have noticed
a good speedup with the latest 3.28 update. I retreive the QGIS like it was
with 3.16 and it's great 

Good job 

Jésahel
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] QGIS Plugin crash

2023-02-08 Thread Richard Duivenvoorde via QGIS-Developer

If you search for "SIGPAC downloader" in the Plugin manager,

You see in the right panel: 'More info" with (if all is ok) links to the
- Plugin Homepage
- bug tracker of the plugin
- public code repository

If I do that, I see that

https://github.com/geomatico/qgis-sigpac/ is the code repo AND the homepage
https://github.com/geomatico/qgis-sigpac/issues is the bug tracker

So please create an issue there, or try to contact the plugin authors there
(if you click the authors, they have public x...@geomati.co mail addresses)

Regards,

Richard Duivenvoorde

On 11/23/22 11:52, Jose Antonio Fernandez Martin via QGIS-Developer wrote:

Hello everyone,

my name is Jose and I have just suscribed to this mailing list. Apologies if my 
English is not very accurate, as I don't practice it very often here in Spain 
:-)

My organization is having problems when using QGIS 3.14.15 with the "SIGPAC 
downloader" plugin. And I haven't found any bug tracker for that specific plugin so 
according to the QGIS Plugin page I should report the problem on this list. Upgrading to 
QGIS 3.22 doesn't solve the problem.

The first issue comes when the plugin is installed. An error says "The plugin 
'sigpac_downloader' could not be loaded because an error ocurred when calling the 
classFactory method" (translated from my spanish version of QGIS)

The full error trace is provided in the attached document 
"SIGPACDownloader_install.txt"

However there is apparently one workaround to that issue, you just have to select 
"reinstall" plugin and it finishes ok. After re-entering QGIS, the plugin is loaded and 
the menu entry appears in the "plugins" menu entry.

But the real problem comes when trying to use the plugin: The SIGPAC Downloader window opens and 
says you have to accept the Terms Of Use. When clicking on the proper button, a new window opens 
with blank content (nothing is loaded) and after a few seconds the QGIS "Unexpected 
Error" window appears suggesting to report the crash and quit the program. The crash report is 
enclosed in this email as "stack.txt"

Some relevant information about our QGIS settings: An HTTP Proxy is used for 
web connections, so the server, port, username and password are set in order to 
access the plugin repository.

Looking forward to read from you.

Kid regards,

Jose.


___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread Delaz J via QGIS-Developer

Hi,

Probably related to 
https://github.com/readthedocs/sphinx_rtd_theme/issues/1420


Need to check what version we are running...

Harrissou

Le 08/02/2023 à 10:12, Johannes Kröger (WhereGroup) via QGIS-Developer a 
écrit :
Broken for me as well, I tested 3.28 and master in different browsers. 
They show


Uncaught ReferenceError: jQuery is not defined
    at search.html?q=qgisinterface_keywords=yes=default:2239:7
Uncaught ReferenceError: jQuery is not defined
    at search.html?q=qgisinterface_keywords=yes=default:2244:5

and an unrelated 404 for /_static/qgis.ico/ in the console.

Cheers, Hannes

Am 08.02.23 um 09:53 schrieb matteo via QGIS-Developer:

Hi Richard,

3.28 is working fine for me here. I don't see any JQuery related 
error in the debugging console.


Where are you seeing this error?

Cheers

Matteo



On 2/8/23 09:46, Richard Duivenvoorde wrote:

Now 3.28 is also 'affected' ?

In dev console I see:
Uncaught ReferenceError: jQuery is not defined

is some jquery cdn failing?

Regards,

Richard Duivenvoorde


On 2023-02-08 09:12, matteo via QGIS-Developer wrote:

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 
 



Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it
was working. Has something changed in the last weeks?

Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer 
> a écrit :


    Hi Richard,

    I can confirm: searching in master will stay there forever 
without

    finding anything.

    Cheers

    Matteo

    On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api 
(DOCS

    build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html
    
 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html
    
 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org
    
 > List info:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

 > Unsubscribe:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

    ___
    QGIS-Developer mailing list
    QGIS-Developer@lists.osgeo.org 

    List info: 
https://lists.osgeo.org/mailman/listinfo/qgis-developer


    Unsubscribe: 
https://lists.osgeo.org/mailman/listinfo/qgis-developer




___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer



___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


[QGIS-Developer] ImportError: QgsCodeEditorPython

2023-02-08 Thread Paul Gathogo via QGIS-Developer
Hello Devs,

I've built and packaged QGIS ltr-3.22 in windows, however, when I run it
after installation, I get the following error message on start-up. This
error also appears when you try to import the QgsCodeEditorPython class
straight from the command line python console (from *qgis.gui import
QgsCodeEditorPython*)

I noticed something suspicious: the GUI interface file (Program Files\QGIS
Firenze (3.22.0) for STDM\apps\qgis\python\qgis\_gui *pyi*) does not define
the class QgsCodeEditorPython.

An error occurred during execution of following code:
import console

Traceback (most recent call last):
  File "", line 1, in
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\qgis\utils.py",
line 888, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\console\__init__.py",
line 24, in
from .console import show_console  # NOQA
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\qgis\utils.py",
line 888, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\console\console.py",
line 31, in
from .console_sci import ShellScintilla
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\qgis\utils.py",
line 888, in _import
mod = _builtin_import(name, globals, locals, fromlist, level)
  File "C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\console\console_sci.py",
line 26, in
from qgis.gui import (
ImportError: cannot import name 'QgsCodeEditorPython' from 'qgis.gui'
(C:\PROGRA~1/QGISFI~1.0)F/apps/qgis/./python\qgis\gui\__init__.py)

Regards,

Paul
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread WhereGroup
Broken for me as well, I tested 3.28 and master in different browsers. 
They show


Uncaught ReferenceError: jQuery is not defined
    at search.html?q=qgisinterface_keywords=yes=default:2239:7
Uncaught ReferenceError: jQuery is not defined
    at search.html?q=qgisinterface_keywords=yes=default:2244:5

and an unrelated 404 for /_static/qgis.ico/ in the console.

Cheers, Hannes

Am 08.02.23 um 09:53 schrieb matteo via QGIS-Developer:

Hi Richard,

3.28 is working fine for me here. I don't see any JQuery related error 
in the debugging console.


Where are you seeing this error?

Cheers

Matteo



On 2/8/23 09:46, Richard Duivenvoorde wrote:

Now 3.28 is also 'affected' ?

In dev console I see:
Uncaught ReferenceError: jQuery is not defined

is some jquery cdn failing?

Regards,

Richard Duivenvoorde


On 2023-02-08 09:12, matteo via QGIS-Developer wrote:

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 
 



Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it
was working. Has something changed in the last weeks?

Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer 
> a écrit :


    Hi Richard,

    I can confirm: searching in master will stay there forever without
    finding anything.

    Cheers

    Matteo

    On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api (DOCS
    build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html
    
 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html
    
 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org
    
 > List info:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer

 > Unsubscribe:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer

    ___
    QGIS-Developer mailing list
    QGIS-Developer@lists.osgeo.org 


    List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer

    Unsubscribe: 
https://lists.osgeo.org/mailman/listinfo/qgis-developer




___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


--
Johannes Kröger / GIS-Entwickler/-Berater

**
FOSSGIS Konferenz
15.-18. März 2023 in Berlin
https://fossgis-konferenz.de/2023/

WhereGroup-Beiträge auf der FOSSGIS
https://wheregroup.com/unternehmen/aktuelles/
**

WhereGroup GmbH
Grevenweg 89
20537 Hamburg
Germany

Tel: +49 (0)228 / 90 90 38 - 36
Fax: +49 (0)228 / 90 90 38 - 11

johannes.kroe...@wheregroup.com
www.wheregroup.com
Geschäftsführer:
Olaf Knopp, Peter Stamm
Amtsgericht Bonn, HRB 9885
---

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread matteo via QGIS-Developer

Hi Richard,

3.28 is working fine for me here. I don't see any JQuery related error 
in the debugging console.


Where are you seeing this error?

Cheers

Matteo



On 2/8/23 09:46, Richard Duivenvoorde wrote:

Now 3.28 is also 'affected' ?

In dev console I see:
Uncaught ReferenceError: jQuery is not defined

is some jquery cdn failing?

Regards,

Richard Duivenvoorde


On 2023-02-08 09:12, matteo via QGIS-Developer wrote:

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 


Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it
was working. Has something changed in the last weeks?

Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer 
> a écrit :


    Hi Richard,

    I can confirm: searching in master will stay there forever without
    finding anything.

    Cheers

    Matteo

    On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api (DOCS
    build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html
    
 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html
    
 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org
    
 > List info:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
 > Unsubscribe:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
    ___
    QGIS-Developer mailing list
    QGIS-Developer@lists.osgeo.org 


    List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
    Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
    


___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread Richard Duivenvoorde via QGIS-Developer

3.18 still working, having jquery,js in it's _static dir (well, at THIS 
moment...):

https://qgis.org/pyqgis/3.18/_static/jquery.js

Failing ones miss it

https://qgis.org/pyqgis/3.22/_static/jquery.js

Is there some security issue with a certain version which isn't available 
anymore

(all just guessing here)

Richard

On 2/8/23 09:46, Richard Duivenvoorde via QGIS-Developer wrote:

Now 3.28 is also 'affected' ?

In dev console I see:
Uncaught ReferenceError: jQuery is not defined

is some jquery cdn failing?

Regards,

Richard Duivenvoorde


On 2023-02-08 09:12, matteo via QGIS-Developer wrote:

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 


Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it
was working. Has something changed in the last weeks?

Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer mailto:qgis-developer@lists.osgeo.org>> a écrit :

    Hi Richard,

    I can confirm: searching in master will stay there forever without
    finding anything.

    Cheers

    Matteo

    On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api (DOCS
    build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html
    
 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html
    
 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org
    
 > List info:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
 > Unsubscribe:
    https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
    ___
    QGIS-Developer mailing list
    QGIS-Developer@lists.osgeo.org 
    List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
    
    Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
    


___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread Richard Duivenvoorde via QGIS-Developer

Now 3.28 is also 'affected' ?

In dev console I see:
Uncaught ReferenceError: jQuery is not defined

is some jquery cdn failing?

Regards,

Richard Duivenvoorde


On 2023-02-08 09:12, matteo via QGIS-Developer wrote:

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 



Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it
was working. Has something changed in the last weeks?

Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer 
> a écrit :


Hi Richard,

I can confirm: searching in master will stay there forever without
finding anything.

Cheers

Matteo

On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api (DOCS
build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html

 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html

 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org

 > List info:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

 > Unsubscribe:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org 


List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Unsubscribe: 
https://lists.osgeo.org/mailman/listinfo/qgis-developer




___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread matteo via QGIS-Developer

Hi Denis,


Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de 


Matteo, shall we try to revert?


not sure about that. I was searching in the docs till yesterday and it 
was working. Has something changed in the last weeks?


Cheers

Matteo



Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer 
mailto:qgis-developer@lists.osgeo.org>> 
a écrit :


Hi Richard,

I can confirm: searching in master will stay there forever without
finding anything.

Cheers

Matteo

On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
 > Hi,
 >
 > Am I right to conclude something is wrong with PyQGIS api (DOCS
build)
 > for master?
 >
 > https://qgis.org/pyqgis/master/search.html

 > isn't working (missing jQuery?)
 > while
 > https://qgis.org/pyqgis/3.28/search.html

 > is working (with me)?
 >
 > Others can confirm?
 >
 > Regards,
 >
 > Richard Duivenvoorde
 > ___
 > QGIS-Developer mailing list
 > QGIS-Developer@lists.osgeo.org

 > List info:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

 > Unsubscribe:
https://lists.osgeo.org/mailman/listinfo/qgis-developer

___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org 
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer

Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer



___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [QGIS-Developer] Pyqgis master api search broken?

2023-02-08 Thread Denis Rouzaud via QGIS-Developer
Hi,

Is this related to this?
https://github.com/qgis/pyqgis/commit/465d91a265e4f1828f0da623d32f8ac7a1de

Matteo, shall we try to revert?

Cheers,
Denis


Le mer. 8 févr. 2023 à 08:58, matteo via QGIS-Developer <
qgis-developer@lists.osgeo.org> a écrit :

> Hi Richard,
>
> I can confirm: searching in master will stay there forever without
> finding anything.
>
> Cheers
>
> Matteo
>
> On 2/8/23 08:52, Richard Duivenvoorde via QGIS-Developer wrote:
> > Hi,
> >
> > Am I right to conclude something is wrong with PyQGIS api (DOCS build)
> > for master?
> >
> > https://qgis.org/pyqgis/master/search.html
> > isn't working (missing jQuery?)
> > while
> > https://qgis.org/pyqgis/3.28/search.html
> > is working (with me)?
> >
> > Others can confirm?
> >
> > Regards,
> >
> > Richard Duivenvoorde
> > ___
> > QGIS-Developer mailing list
> > QGIS-Developer@lists.osgeo.org
> > List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> > Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> ___
> QGIS-Developer mailing list
> QGIS-Developer@lists.osgeo.org
> List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
> Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer
>
___
QGIS-Developer mailing list
QGIS-Developer@lists.osgeo.org
List info: https://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-developer