This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#MapProxy sample configuration file | |
services: | |
demo: | |
kml: | |
tms: | |
wms: | |
srs: ['EPSG:4326', 'EPSG:900913', 'EPSG:4258'] | |
image_formats: ['image/jpeg', 'image/png'] | |
md: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# -*- coding: utf-8 -*- | |
# | |
# Create QGIS for Mac OS X nightly build from github.com 'master' branch. | |
# Keep a number of dmg archives of previous builds as backups. | |
# | |
# Tested under Lion 10.7.4 and Snow Leopard 10.6.8, **run via sudo** | |
# Requires same kyngchaos.com framework setup and build environment as per |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This post is a report on my recent experiment getting EE to run well on a Nginx/PHP-FPM/PHP5.3.3+, no-Apache2 setup. I'm new to EE, but not server administration, with plenty of experience using Apache2. | |
However, after seeing the excessive RAM usage by Apache2 on my Ubuntu 10.04 LTS virtual server, (ve) @ MediaTemple.net , I wanted to look into deploying my first EE site on a more lightweight, but still robust setup, capable of scaling well. After working with EE for a bit, and finding out just how cool it is, I thought I'd share my results of trying this with Nginx 1.x. | |
The point of this post is to garner input from other EE server admins to refine these Nginx configs, with the hopeful outcome of generating, as much as possible, a 'config-and-drop-in' Nginx setup. While setting up current versions of Nginx and PHP-FPM are not within the scope of this posting... | |
[b]On Ubuntu 10.0.4[/b], you may want to check out: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# -*- coding: utf-8 -*- | |
# | |
# Build Mac OS X QGIS.app locally from github.com QGIS repository. | |
# Keep a number of dmg archives of previous builds as backups. | |
# | |
# **Run via sudo, if not installing under home directory** | |
# | |
# YOU MUST HAVE FORKED QGIS GITHUB.COM REPOSITORY AND CLONED IT TO YOUR MAC. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/app/composer/qgscomposerlabelwidget.cpp b/src/app/composer/qgscomposerlabelwidget.cpp | |
index 69a42af..ac25c87 100644 | |
--- a/src/app/composer/qgscomposerlabelwidget.cpp | |
+++ b/src/app/composer/qgscomposerlabelwidget.cpp | |
@@ -42,8 +42,10 @@ void QgsComposerLabelWidget::on_mTextEdit_textChanged() | |
if ( mComposerLabel ) | |
{ | |
mComposerLabel->beginCommand( tr( "Label text changed" ), QgsComposerMergeCommand::ComposerLabelSetText ); | |
+ mComposerLabel->blockSignals( true ); | |
mComposerLabel->setText( mTextEdit->toPlainText() ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure b/configure | |
index 6ab3a35..6d4a4ca 100755 | |
--- a/configure | |
+++ b/configure | |
@@ -28406,11 +28406,13 @@ $as_echo_n "checking whether we should include Java support... " >&6; } | |
JAVA_HOME="" | |
JAVA_INC="" | |
+mac_java_fw="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# usage: <script> "path to .app bundle" | |
# convert to absolute path (needed by 'defaults' command) | |
CMD="import os, sys; print os.path.realpath(\"$1\")" | |
# echo $CMD | |
APP=$(/usr/bin/python -c "$CMD" ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/third_party/Makefile.in b/third_party/Makefile.in | |
index ec56ad0..20cddc6 100644 | |
--- a/third_party/Makefile.in | |
+++ b/third_party/Makefile.in | |
@@ -265,15 +265,15 @@ AM_CPPFLAGS = -I$(top_srcdir)/third_party/zlib-1.2.3/contrib \ | |
-I$(top_srcdir)/third_party/googletest-r108 \ | |
-I$(top_srcdir)/third_party/googletest-r108/include | |
-lib_LTLIBRARIES = libminizip.la liburiparser.la | |
-noinst_LTLIBRARIES = libgtest.la |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/third_party/Makefile.am b/third_party/Makefile.am | |
index 571c240..5512a77 100644 | |
--- a/third_party/Makefile.am | |
+++ b/third_party/Makefile.am | |
@@ -5,15 +5,15 @@ AM_CPPFLAGS = -I$(top_srcdir)/third_party/zlib-1.2.3/contrib \ | |
-I$(top_srcdir)/third_party/googletest-r108 \ | |
-I$(top_srcdir)/third_party/googletest-r108/include | |
-lib_LTLIBRARIES = libminizip.la liburiparser.la | |
-noinst_LTLIBRARIES = libgtest.la libgtest_main.la |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure.ac b/configure.ac | |
index 67ad482..8312847 100644 | |
--- a/configure.ac | |
+++ b/configure.ac | |
@@ -325,160 +325,6 @@ fi | |
AC_SUBST([ICONV_LDFLAGS]) | |
AC_SUBST([ICONV_CFLAGS]) | |
- | |
-dnl =========================================================================== |
OlderNewer