This is an automated email from the git hooks/post-receive script.

sebastic-guest pushed a commit to branch experimental
in repository spatialite.

commit 7ab8240debf8f700a27d37175c0df3ca789f9951
Author: Bas Couwenberg <sebas...@xs4all.nl>
Date:   Sat May 31 02:04:11 2014 +0200

    Add patch to fix 'successfully' typo.
---
 debian/changelog                         |   1 +
 debian/patches/13-succesfully-typo.patch | 105 +++++++++++++++++++++++++++++++
 debian/patches/series                    |   1 +
 3 files changed, 107 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index b5b9020..d2e0bba 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,7 @@ spatialite (4.2.0~rc1-1) UNRELEASED; urgency=low
   * Update copyright file.
   * Add patch to fix check_multithread build failure by linking libpthread.
   * Drop --enable-libxml2, libxml2 support is enabled by default now.
+  * Add patch to fix 'successfully' typo.
 
  -- Bas Couwenberg <sebas...@xs4all.nl>  Sun, 01 Jun 2014 14:15:51 +0200
 
diff --git a/debian/patches/13-succesfully-typo.patch 
b/debian/patches/13-succesfully-typo.patch
new file mode 100644
index 0000000..8730961
--- /dev/null
+++ b/debian/patches/13-succesfully-typo.patch
@@ -0,0 +1,105 @@
+Description: Fix 'succesfully' typo, replace with 'successfully'.
+Author: Bas Couwenberg <sebas...@xs4all.nl>
+
+--- a/spatialite-sql-latest.html
++++ b/spatialite-sql-latest.html
+@@ -2548,7 +2548,7 @@ the return type is Integer, with a retur
+                               <ul>
+                                       <li><b>f_table_name</b> and 
<b>f_geometry_column</b> must identify an existing Vector Layer.</li>
+                                       <li><b>style</b> is expected to be an 
XmlBLOB containing a valid SLD/SE Style of the Vector type.<br>
+-                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have succesfully passed a formal XML Schema Validation.</li>
++                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have successfully passed a formal XML Schema Validation.</li>
+                                       <li>The same Vector Layer could 
eventually support more than a single Style; in this case 
+                                       the optional argument <b>style_id</b> 
can be explicitly set in order to identify an individual Style.<br>
+                                       If no <b>style_id</b> argument is 
specified then a new Styled Layer will be created, and the <b>style_id</b> 
value will be automatically set so to ensure univocity.</li>
+@@ -2564,7 +2564,7 @@ the return type is Integer, with a retur
+                               <ul>
+                                       <li><b>coverage_name</b> must identify 
an existing Raster Layer.</li>
+                                       <li><b>style</b> is expected to be an 
XmlBLOB containing a valid SLD/SE Style of the Raster type.<br>
+-                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have succesfully passed a formal XML Schema Validation.</li>
++                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have successfully passed a formal XML Schema Validation.</li>
+                                       <li>The same Raster Layer could 
eventually support more than a single Style; in this case 
+                                       the optional argument <b>style_id</b> 
can be explicitly set in order to identify an individual Style.<br>
+                                       If no <b>style_id</b> argument is 
specified then a new Styled Layer will be created, and the <b>style_id</b> 
value will be automatically set so to ensure univocity.</li>
+@@ -2608,7 +2608,7 @@ the return type is Integer, with a retur
+                               <ul>
+                                       <li><b>group_name</b> must identify an 
existing Styled Group.</li>
+                                       <li><b>style</b> is expected to be an 
XmlBLOB containing a valid SLD Style.<br>
+-                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have succesfully passed a formal XML Schema Validation.</li>
++                                      If <b>CreatedStylingTables()</b> was 
invoked without specifying the <i>relaxed</i> option this XmlBLOB is expected 
to have successfully passed a formal XML Schema Validation.</li>
+                                       <li>The same Styled Group could 
eventually support more than a single Style; in this case 
+                                       the optional argument <b>style_id</b> 
can be explicitly set in order to identify an individual Style.<br>
+                                       If no <b>style_id</b> argument is 
specified then a new Style will be created, and the <b>style_id</b> value will 
be automatically set so to ensure univocity.</li>
+--- a/src/gaiageo/gg_xml.c
++++ b/src/gaiageo/gg_xml.c
+@@ -2942,7 +2942,7 @@ gaiaIsCompressedXmlBlob (const unsigned
+ GAIAGEO_DECLARE int
+ gaiaIsSchemaValidatedXmlBlob (const unsigned char *blob, int blob_size)
+ {
+-/* Checks if a valid XmlBLOB buffer has succesfully passed a formal Schema 
validation or not */
++/* Checks if a valid XmlBLOB buffer has successfully passed a formal Schema 
validation or not */
+     int validated = 0;
+     unsigned char flag;
+ 
+--- a/src/headers/spatialite/gaiaaux.h
++++ b/src/headers/spatialite/gaiaaux.h
+@@ -285,7 +285,7 @@ extern "C"
+  \param sqlite handle of the current DB connection
+  \param sqllog_pk the Primary Key identifying the corresponding Log event.
+  \n expected to be exactely the same returned by the most recent call to 
gaiaInsertIntoSqlLog()
+- \param success expected to be TRUE if the SQL statement was succesfully 
executed.
++ \param success expected to be TRUE if the SQL statement was successfully 
executed.
+  \param errMsg expected to be the error message returned by SQLite on 
failure, NULL on success.
+ 
+  \sa gaiaInsertIntoSqlLog
+--- a/src/headers/spatialite/gg_xml.h
++++ b/src/headers/spatialite/gg_xml.h
+@@ -133,7 +133,7 @@ extern "C"
+  \param xml_len lenght of the XML document (in bytes).
+  \param compressed if TRUE the returned XmlBLOB will be zip-compressed.
+  \param schemaURI if not NULL the XML document will be assumed to be valid
+-  only if it succesfully passes a formal Schema valitadion.
++  only if it successfully passes a formal Schema valitadion.
+  \param result on completion will containt a pointer to XmlBLOB:
+  NULL on failure.
+  \param size on completion this variable will contain the XmlBLOB's size (in 
bytes)
+@@ -342,7 +342,7 @@ extern "C"
+                                                int *out_size);
+ 
+ /**
+- Checks if a valid XmlBLOB buffer has succesfully passed a formal Schema 
validation or not
++ Checks if a valid XmlBLOB buffer has successfully passed a formal Schema 
validation or not
+ 
+  \param blob pointer to the XmlBLOB buffer.
+  \param size XmlBLOB's size (in bytes).
+--- a/src/shapefiles/validator.c
++++ b/src/shapefiles/validator.c
+@@ -2300,7 +2300,7 @@ sanitize_geometry_column_common (const v
+     else if (report->n_repaired > 0)
+       {
+         fprintf (out,
+-                 "\t\t\t<tr><td colspan=\"2\" class=\"ok\">This layer has 
been succesfully repaired and is now completely valid;<br>");
++                 "\t\t\t<tr><td colspan=\"2\" class=\"ok\">This layer has 
been successfully repaired and is now completely valid;<br>");
+         fprintf (out,
+                  "doesn't require any further corrective 
action.</td></tr>\n");
+       }
+@@ -2632,7 +2632,7 @@ sanitize_all_geometry_columns_common (co
+               else if (n_discarded == 0 && n_failures == 0)
+                 {
+                     p_msg =
+-                        "NONE: this layer has been succesfully sanitized and 
is now fully valid";
++                        "NONE: this layer has been successfully sanitized and 
is now fully valid";
+                     cls_msg = "ok";
+                 }
+               else if (n_discarded == 0 && n_failures > 0)
+--- a/src/spatialite/spatialite.c
++++ b/src/spatialite/spatialite.c
+@@ -26943,7 +26943,7 @@ fnct_XB_Create (sqlite3_context * contex
+ /
+ / - the XMLdocument should be "well formed"
+ / - if *compressed* is TRUE (default) the XmlBlob would be zipped
+-/ - if *SchemaURI* in not NULL then only XMLdocuments succesfully
++/ - if *SchemaURI* in not NULL then only XMLdocuments successfully
+ /   passing a formal Schema Validation will be accepted as valid
+ / - if *InternalSchamaURI* is defined (any numeric value) then an
+ /   attempt will be made in order to identify a SchemaURI defined
diff --git a/debian/patches/series b/debian/patches/series
index 88c11b2..f5bad46 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -3,3 +3,4 @@
 10-automake-subdir-objects.patch
 11-link-libxml2.patch
 12-link-pthread.patch
+13-succesfully-typo.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-grass/spatialite.git

_______________________________________________
Pkg-grass-devel mailing list
Pkg-grass-devel@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

Reply via email to