mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
fde889b4ec
12 changed files with 44 additions and 10 deletions
|
@ -41,30 +41,37 @@ local field_map = {
|
|||
date = { name = "date", type = "text-single", label = "Birth date" };
|
||||
};
|
||||
|
||||
local title = module:get_option_string("registration_title",
|
||||
"Creating a new account");
|
||||
local instructions = module:get_option_string("registration_instructions",
|
||||
"Choose a username and password for use with this service.");
|
||||
|
||||
local registration_form = dataform_new{
|
||||
title = "Creating a new account";
|
||||
instructions = "Choose a username and password for use with this service.";
|
||||
title = title;
|
||||
instructions = instructions;
|
||||
|
||||
field_map.username;
|
||||
field_map.password;
|
||||
};
|
||||
|
||||
local registration_query = st.stanza("query", {xmlns = "jabber:iq:register"})
|
||||
:tag("instructions"):text("Choose a username and password for use with this service."):up()
|
||||
:tag("instructions"):text(instructions):up()
|
||||
:tag("username"):up()
|
||||
:tag("password"):up();
|
||||
|
||||
for _, field in ipairs(additional_fields) do
|
||||
if type(field) == "table" then
|
||||
registration_form[#registration_form + 1] = field;
|
||||
else
|
||||
elseif field_map[field] or field_map[field:sub(1, -2)] then
|
||||
if field:match("%+$") then
|
||||
field = field:sub(1, #field - 1);
|
||||
field = field:sub(1, -2);
|
||||
field_map[field].required = true;
|
||||
end
|
||||
|
||||
registration_form[#registration_form + 1] = field_map[field];
|
||||
registration_query:tag(field):up();
|
||||
else
|
||||
module:log("error", "Unknown field %q", field);
|
||||
end
|
||||
end
|
||||
registration_query:add_child(registration_form:form());
|
||||
|
|
|
@ -189,9 +189,9 @@ local function readFile(filename)
|
|||
end;
|
||||
end
|
||||
|
||||
module "erlparse"
|
||||
local _M = {};
|
||||
|
||||
function parseFile(file)
|
||||
function _M.parseFile(file)
|
||||
return readFile(file);
|
||||
end
|
||||
|
||||
|
|
|
@ -130,6 +130,9 @@ int Lseed(lua_State *L) {
|
|||
#endif
|
||||
|
||||
int luaopen_util_crand(lua_State *L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
lua_newtable(L);
|
||||
lua_pushcfunction(L, Lrandom);
|
||||
lua_setfield(L, -2, "bytes");
|
||||
|
|
|
@ -524,6 +524,9 @@ static const luaL_Reg Reg_idna[] = {
|
|||
/***************** end *****************/
|
||||
|
||||
LUALIB_API int luaopen_util_encodings(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
#ifdef USE_STRINGPREP_ICU
|
||||
init_icu();
|
||||
#endif
|
||||
|
|
|
@ -212,6 +212,9 @@ static const luaL_Reg Reg[] = {
|
|||
};
|
||||
|
||||
LUALIB_API int luaopen_util_hashes(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
lua_newtable(L);
|
||||
luaL_setfuncs(L, Reg, 0);;
|
||||
lua_pushliteral(L, "-3.14");
|
||||
|
|
|
@ -125,6 +125,9 @@ static int lc_local_addresses(lua_State* L) {
|
|||
}
|
||||
|
||||
int luaopen_util_net(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
luaL_Reg exports[] = {
|
||||
{ "local_addresses", lc_local_addresses },
|
||||
{ NULL, NULL }
|
||||
|
|
|
@ -779,6 +779,9 @@ int lc_fallocate(lua_State* L) {
|
|||
/* Register functions */
|
||||
|
||||
int luaopen_util_pposix(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
luaL_Reg exports[] = {
|
||||
{ "abort", lc_abort },
|
||||
|
||||
|
|
|
@ -197,6 +197,9 @@ int rb_gc(lua_State* L) {
|
|||
}
|
||||
|
||||
int luaopen_util_ringbuffer(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
if(luaL_newmetatable(L, "ringbuffer_mt")) {
|
||||
lua_pushcfunction(L, rb_tostring);
|
||||
lua_setfield(L, -2, "__tostring");
|
||||
|
|
|
@ -384,6 +384,9 @@ static const struct luaL_Reg lsignal_lib[] = {
|
|||
};
|
||||
|
||||
int luaopen_util_signal(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
int i = 0;
|
||||
|
||||
/* add the library */
|
||||
|
|
|
@ -21,6 +21,9 @@ static int Lpack(lua_State* L) {
|
|||
|
||||
|
||||
int luaopen_util_table(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
lua_newtable(L);
|
||||
lua_pushcfunction(L, Lcreate_table);
|
||||
lua_setfield(L, -2, "create");
|
||||
|
|
|
@ -103,6 +103,9 @@ static const luaL_Reg Reg[] = {
|
|||
};
|
||||
|
||||
LUALIB_API int luaopen_util_windows(lua_State* L) {
|
||||
#if (LUA_VERSION_NUM > 501)
|
||||
luaL_checkversion(L);
|
||||
#endif
|
||||
lua_newtable(L);
|
||||
luaL_setfuncs(L, Reg, 0);
|
||||
lua_pushliteral(L, "-3.14");
|
||||
|
|
|
@ -61,7 +61,7 @@ local function check_dependencies()
|
|||
|
||||
if not lxp then
|
||||
missingdep("luaexpat", {
|
||||
["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-expat0";
|
||||
["Debian/Ubuntu"] = "sudo apt-get install lua-expat";
|
||||
["luarocks"] = "luarocks install luaexpat";
|
||||
["Source"] = "http://matthewwild.co.uk/projects/luaexpat/";
|
||||
});
|
||||
|
@ -72,7 +72,7 @@ local function check_dependencies()
|
|||
|
||||
if not socket then
|
||||
missingdep("luasocket", {
|
||||
["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-socket2";
|
||||
["Debian/Ubuntu"] = "sudo apt-get install lua-socket";
|
||||
["luarocks"] = "luarocks install luasocket";
|
||||
["Source"] = "http://www.tecgraf.puc-rio.br/~diego/professional/luasocket/";
|
||||
});
|
||||
|
@ -83,7 +83,7 @@ local function check_dependencies()
|
|||
if not lfs then
|
||||
missingdep("luafilesystem", {
|
||||
["luarocks"] = "luarocks install luafilesystem";
|
||||
["Debian/Ubuntu"] = "sudo apt-get install liblua5.1-filesystem0";
|
||||
["Debian/Ubuntu"] = "sudo apt-get install lua-filesystem";
|
||||
["Source"] = "http://www.keplerproject.org/luafilesystem/";
|
||||
});
|
||||
fatal = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue