changeset 1976:cd36e5bf00b3

Various READMEs: Update to reflect rename of mod_storage_sql2 → mod_storage_sql
author Kim Alvefur <zash@zash.se>
date Thu, 17 Dec 2015 16:48:11 +0100
parents bdd3e3bfc219
children cc29ec49776d
files mod_http_muc_log/README.markdown mod_mam/README.markdown mod_mam_muc/README.markdown mod_migrate/README.markdown
diffstat 4 files changed, 8 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/mod_http_muc_log/README.markdown	Thu Dec 17 16:22:33 2015 +0100
+++ b/mod_http_muc_log/README.markdown	Thu Dec 17 16:48:11 2015 +0100
@@ -31,7 +31,7 @@
             .....
         }
         storage = {
-            muc_log = "sql2"; -- for example
+            muc_log = "sql"; -- for example
         }
 
 The web interface would then be reachable at the address:
--- a/mod_mam/README.markdown	Thu Dec 17 16:22:33 2015 +0100
+++ b/mod_mam/README.markdown	Thu Dec 17 16:48:11 2015 +0100
@@ -41,11 +41,11 @@
 documentation](https://prosody.im/doc/storage) for information on how to
 configure storage.
 
-For example, to use mod\_storage\_sql2[^2]:
+For example, to use mod\_storage\_sql:
 
 ``` {.lua}
 storage = {
-  archive2 = "sql2";
+  archive2 = "sql";
 }
 ```
 
@@ -85,14 +85,12 @@
 
   ------- ---------------
   trunk   Works
-  0.10    Works [^3]
+  0.10    Works [^2]
   0.9     Unsupported
   0.8     Does not work
   ------- ---------------
 
 [^1]: Might be changed to "mam" at some point
 
-[^2]: mod\_storage\_sql2 will replace mod\_storage\_sql at some point
-
-[^3]: requires a storage driver with archive support, eg
-    mod\_storage\_sql2 in 0.10
+[^2]: requires a storage driver with archive support, eg
+    mod\_storage\_sql in 0.10
--- a/mod_mam_muc/README.markdown	Thu Dec 17 16:22:33 2015 +0100
+++ b/mod_mam_muc/README.markdown	Thu Dec 17 16:48:11 2015 +0100
@@ -25,9 +25,7 @@
   "mam_muc",
 }
 storage = {
-  -- This makes mod_mam_muc use the sql2 storage backend (others will use internal)
-    -- which at the time of this writing is the only one supporting stanza archives
-    muc_log = "sql2";
+    muc_log = "sql"; -- Requires 0.10 or later
 }
 ```
 
--- a/mod_migrate/README.markdown	Thu Dec 17 16:22:33 2015 +0100
+++ b/mod_migrate/README.markdown	Thu Dec 17 16:48:11 2015 +0100
@@ -37,7 +37,7 @@
 ========
 
     for store in accounts roster private blocklist vcard archive2-archive; do
-      prosodyctl migrate example.com $store sql2
+      prosodyctl migrate example.com $store sql
     done
 
 Compatibility