# HG changeset patch # User Kim Alvefur # Date 1450367291 -3600 # Node ID cd36e5bf00b3223f9c253426f0ed816fce9f6147 # Parent bdd3e3bfc2193b1c209449f879300b6b58870b3a Various READMEs: Update to reflect rename of mod_storage_sql2 → mod_storage_sql diff -r bdd3e3bfc219 -r cd36e5bf00b3 mod_http_muc_log/README.markdown --- 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: diff -r bdd3e3bfc219 -r cd36e5bf00b3 mod_mam/README.markdown --- 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 diff -r bdd3e3bfc219 -r cd36e5bf00b3 mod_mam_muc/README.markdown --- 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 } ``` diff -r bdd3e3bfc219 -r cd36e5bf00b3 mod_migrate/README.markdown --- 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