25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-22 16:20:52 +01:00

* src/web/ejabberd_web_admin.erl: Added links to server and

virtual host homes (thanks to Badlop)

SVN Revision: 787
This commit is contained in:
Alexey Shchepin 2007-06-22 14:04:45 +00:00
parent 81117800e8
commit 56b5d113a4
2 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-06-22 Alexey Shchepin <alexey@sevcom.net>
* src/web/ejabberd_web_admin.erl: Added links to server and
virtual host homes (thanks to Badlop)
2007-06-20 Mickael Remond <mickael.remond@process-one.net>
* src/mod_muc/mod_muc_room.erl: It is now possible to limit who is

View File

@ -189,12 +189,16 @@ make_xhtml(Els, Host, Lang) ->
[?XAE("div",
[{"id", "header"}],
[?XE("h1",
[?ACT(Base, "Administration")]
[?ACT("/admin/", "Administration")]
)]),
?XAE("div",
[{"id", "navigation"}],
[?XE("ul",
[?LI([?ACT(Base ++ "acls/", "Access Control Lists")]),
[?LI([?XAE("div",
[{"id", "navheadhost"}],
[?AC(Base, Host)]
)]),
?LI([?ACT(Base ++ "acls/", "Access Control Lists")]),
?LI([?ACT(Base ++ "access/", "Access Rules")]),
?LI([?ACT(Base ++ "users/", "Users")]),
?LI([?ACT(Base ++ "online-users/", "Online Users")]),
@ -354,6 +358,11 @@ html>body #container {
background: #332;
}
#navheadhost {
text-align: left;
border-bottom: 2px solid #d47911;
}
#lastactivity li {
font-weight: bold;
border: 1px solid #d6760e;