Date 2018/03/12
Author Alessandro Pasotti (@elpaso), Nyall Dawson (@nyalldawson )
Contact elpaso at itopen dot it, nyall dot dawson at gmail dotcom
maintainer @elpaso, @nyalldawson
| ../src/core/qgsmessagelog.cpp:29 : (logMessage) [3ms] 2020-12-02T17:01:38 Server[0] Profile [0] startup, Create connection registry : 0.000000 ms | |
| 17:01:38 INFO Server[290832]: Profile [0] startup, Create connection registry : 0.000000 ms | |
| ../src/core/qgsmessagelog.cpp:29 : (logMessage) [4ms] 2020-12-02T17:01:38 Server[0] Profile [0] startup, Setup task manager : 0.000000 ms | |
| 17:01:38 INFO Server[290832]: Profile [0] startup, Setup task manager : 0.000000 ms | |
| ../src/core/qgsmessagelog.cpp:29 : (logMessage) [1ms] 2020-12-02T17:01:38 Server[0] Profile [0] startup, Setup action scope registry : 0.000000 ms | |
| 17:01:38 INFO Server[290832]: Profile [0] startup, Setup action scope registry : 0.000000 ms | |
| ../src/core/qgsmessagelog.cpp:29 : (logMessage) [0ms] 2020-12-02T17:01:38 Server[0] Profile [0] startup, Setup numeric formats : 0.000000 ms | |
| 17:01:38 INFO Server[290832]: Profile [0] startup, Setup numeric formats : 0.000000 ms | |
| ../src/core/qgsmessagelog.cpp:29 : (logMessage) [0ms] 2020-12-02T17:01:38 Server[0] Profile [0] |
| #!/usr/bin/env python3 | |
| # Usage: cat nameslist.txt | ./namematic.py | |
| import fileinput | |
| import urllib3 | |
| import urllib.request | |
| def url_is_alive(url): |
| #!/bin/bash | |
| ############################################################ | |
| # This script builds Qt5, QScintilla and qwt with | |
| # sip Python bindings. | |
| # Tested and developed on xenial 64bit | |
| # All other dev packages required to build QGIS need | |
| # to be installed with apt | |
| # Qt is built in debug mode. | |
| set -e |
| #!/usr/bin/env python | |
| # Simple QGIS 3 Server wsgi test | |
| import signal | |
| import sys | |
| from cgi import escape, parse_qs | |
| from urllib.parse import quote | |
| # Python's bundled WSGI server | |
| from wsgiref.simple_server import make_server |
| #!/usr/bin/env python3 | |
| """ | |
| Create a graph of Qt connections | |
| """ | |
| import re | |
| import glob | |
| import sys | |
| import tempfile |
| # -*- coding: utf-8 -*- | |
| """ | |
| *************************************************************************** | |
| Tests for Boundless Desktop command line utilities and python modules. | |
| Tests that common GIS related python modules are available and that | |
| selected command line utilities can be invoked from the command line. | |
| --------------------- |
| # | |
| # Makefile for msp430 | |
| # | |
| # 'make' builds everything | |
| # 'make clean' deletes everything except source files and Makefile | |
| # You need to set TARGET, MCU and SOURCES for your project. | |
| # TARGET is the name of the executable file to be produced | |
| # $(TARGET).elf $(TARGET).hex and $(TARGET).txt nad $(TARGET).map are all generated. | |
| # The TXT file is used for BSL loading, the ELF can be used for JTAG use | |
| # |