diff --git a/apps/uppercase_in b/apps/uppercase_in
new file mode 100644
index 0000000000..6161529447
--- /dev/null
+++ b/apps/uppercase_in
@@ -0,0 +1,9 @@
+
+
+
+
+
+ in
+
+
+
diff --git a/apps/uppercase_out b/apps/uppercase_out
new file mode 100644
index 0000000000..96f8f51abc
--- /dev/null
+++ b/apps/uppercase_out
@@ -0,0 +1,15 @@
+
+
+
+
+
+ 5000000
+
+
+
+
+
+ out
+
+
+
diff --git a/html/inc/util_ops.inc b/html/inc/util_ops.inc
index 5972e7744e..9b2dc00aff 100644
--- a/html/inc/util_ops.inc
+++ b/html/inc/util_ops.inc
@@ -83,7 +83,7 @@ function print_text_field($text,$name,$value) {
}
function row($x, $y) {
- echo "
$x | \n$y | \n
\n";
+ echo "$x | \n$y | \n
\n";
}
function c_row2($color, $x, $y) {
diff --git a/tools/backend_lib.h b/tools/backend_lib.h
index 8e55325631..7add38dfb3 100644
--- a/tools/backend_lib.h
+++ b/tools/backend_lib.h
@@ -26,8 +26,8 @@
// default job parameters
//
-#define DEFAULT_MIN_QUORUM 2
-#define DEFAULT_TARGET_NRESULTS 2
+#define DEFAULT_MIN_QUORUM 1
+#define DEFAULT_TARGET_NRESULTS 1
#define DEFAULT_MAX_ERROR_RESULTS 3
#define DEFAULT_MAX_TOTAL_RESULTS 10
#define DEFAULT_MAX_SUCCESS_RESULTS 6
diff --git a/tools/make_project b/tools/make_project
index 5545427c68..c7d579d0b8 100755
--- a/tools/make_project
+++ b/tools/make_project
@@ -468,19 +468,12 @@ html_ops_url = options.html_ops_url
content = '''Steps to complete installation:
-- Change Apache configuration (as root):
-
- If you are using Apache 2.4, edit the %(httpd_conf_template_filename)s
- (see file for specific instructions).
-
- cat %(httpd_conf_template_filename)s >> /etc/apache/httpd.conf
-
- (path to httpd.conf varies; try /etc/httpd/ or /etc/apache2)
-
- Then restart the web server:
-
- /usr/sbin/apache2ctl restart
- (or /usr/sbin/apachectl restart)
+- Update Apache configuration (as root):
+ (make sure you have apache2 2.4 or later)
+ install config file:
+ cp %(httpd_conf_template_filename)s /etc/apache2/sites-enabled
+ restart apache:
+ apache2ctl restart
- Add to crontab (as %(USER)s)