File tree Expand file tree Collapse file tree 10 files changed +69
-6
lines changed Expand file tree Collapse file tree 10 files changed +69
-6
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
# ***************************************************************************
2
3
# runtests.sh
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- #! /bin/bash
16
+
16
17
# set -x
17
18
LIST=` ls -lah | grep rwxr-xr-x | grep -v ^d | grep -v pl$ | grep -v ~ $ | grep -v .sh$ | awk ' {print $8}' | awk ' $1=$1' RS=`
18
19
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/perl
1
2
# ***************************************************************************
2
3
# test_builder.pl
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- # !/usr/bin/perl
16
+
16
17
use Cwd;
17
18
18
19
# ####################################################
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
# ***************************************************************************
2
3
# test_suite_builder.sh
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- #! /bin/bash
16
+
16
17
LIST=` ls ../../../src/core/ | grep .cpp | grep ^qgs | grep -v ~ $ | grep -v moc.cpp$ | sed ' s/.cpp//g' | awk ' $1=$1' RS= | sort`
17
18
for FILE in $LIST
18
19
do
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
# ***************************************************************************
2
3
# runtests.sh
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- #! /bin/bash
16
+
16
17
# set -x
17
18
LIST=` ls -lah | grep rwxr-xr-x | grep -v ^d | grep -v pl$ | grep -v ~ $ | grep -v .sh$ | awk ' {print $8}' | awk ' $1=$1' RS=`
18
19
Original file line number Diff line number Diff line change
1
+ # !/usr/bin/perl
1
2
# ***************************************************************************
2
3
# test_builder.pl
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- # !/usr/bin/perl
16
+
16
17
use Cwd;
17
18
18
19
# ####################################################
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
1
2
# ***************************************************************************
2
3
# test_suite_builder.sh
3
4
# --------------------------------------
12
13
# * (at your option) any later version. *
13
14
# * *
14
15
# ***************************************************************************/
15
- #! /bin/bash
16
+
16
17
LIST=` ls ../../../src/gui/ | grep .cpp | grep ^qgs | grep -v ~ $ | grep -v moc.cpp$ | sed ' s/.cpp//g' | awk ' $1=$1' RS= | sort`
17
18
for FILE in $LIST
18
19
do
Original file line number Diff line number Diff line change
1
+ #***************************************************************************
2
+ # ms_export.py
3
+ # --------------------------------------
4
+ # Date : Sun Sep 16 12:33:46 AKDT 2007
5
+ # Copyright : (C) 2007 by Gary E. Sherman
6
+ # Email : sherman at mrcc dot com
7
+ #***************************************************************************
8
+ #* *
9
+ #* This program is free software; you can redistribute it and/or modify *
10
+ #* it under the terms of the GNU General Public License as published by *
11
+ #* the Free Software Foundation; either version 2 of the License, or *
12
+ #* (at your option) any later version. *
13
+ #* *
14
+ #***************************************************************************/
1
15
# This class exports a QGIS project file to a mapserver .map file.
2
16
# All the work is done in the writeMapFile method. The msexport binary
3
17
# presents a Qt based GUI that collects the needed information for this
Original file line number Diff line number Diff line change
1
+ /* **************************************************************************
2
+ ms_main.cpp
3
+ --------------------------------------
4
+ Date : Sun Sep 16 12:33:58 AKDT 2007
5
+ Copyright : (C) 2007 by Gary E. Sherman
6
+ Email : sherman at mrcc dot com
7
+ ***************************************************************************
8
+ * *
9
+ * This program is free software; you can redistribute it and/or modify *
10
+ * it under the terms of the GNU General Public License as published by *
11
+ * the Free Software Foundation; either version 2 of the License, or *
12
+ * (at your option) any later version. *
13
+ * *
14
+ ***************************************************************************/
1
15
#include < QApplication>
2
16
#include < QTranslator>
3
17
#include < QTextCodec>
Original file line number Diff line number Diff line change
1
+ /* **************************************************************************
2
+ msexport.i
3
+ --------------------------------------
4
+ Date : Sun Sep 16 12:34:12 AKDT 2007
5
+ Copyright : (C) 2007 by Gary E. Sherman
6
+ Email : sherman at mrcc dot com
7
+ ***************************************************************************
8
+ * *
9
+ * This program is free software; you can redistribute it and/or modify *
10
+ * it under the terms of the GNU General Public License as published by *
11
+ * the Free Software Foundation; either version 2 of the License, or *
12
+ * (at your option) any later version. *
13
+ * *
14
+ ***************************************************************************/
1
15
/* IF YOU REGENERATE THE SWIG WRAPPER FROM THIS INTERFACE FILE, IT PROBABLY
2
16
* WON'T WORK SINCE THERE SEEMS TO BE A BUG IN THE INTERFACE GENERATION CODE
3
17
*/
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/python
2
+ #***************************************************************************
3
+ # test_export.py
4
+ # --------------------------------------
5
+ # Date : Sun Sep 16 12:34:29 AKDT 2007
6
+ # Copyright : (C) 2007 by Gary E. Sherman
7
+ # Email : sherman at mrcc dot com
8
+ #***************************************************************************
9
+ #* *
10
+ #* This program is free software; you can redistribute it and/or modify *
11
+ #* it under the terms of the GNU General Public License as published by *
12
+ #* the Free Software Foundation; either version 2 of the License, or *
13
+ #* (at your option) any later version. *
14
+ #* *
15
+ #***************************************************************************/
16
+
2
17
3
18
# test script to export a sample QGIS project file to mapserver
4
19
import ms_export
You can’t perform that action at this time.
0 commit comments