From c0d80a58284baa7dc4ac05b5628a43e8743ac4f0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 5 Jun 2016 22:38:44 -0700 Subject: adjust the autocomplete regex slightly to account for emoji names --- view/js/autocomplete.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 33d825b55..59a9ed355 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -183,7 +183,7 @@ function string2bb(element) { }; smilies = { - match: /(^|\s)(:[a-z]{2,})$/, + match: /(^|\s)(:[a-z_:]{2,})$/, index: 2, search: function(term, callback) { $.getJSON('/smilies/json').done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); }, template: function(item) { return item.icon + item.text; }, -- cgit v1.2.3 From 037cd74e8e02f048892208bedef0d16faef16af4 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 6 Jun 2016 19:44:22 -0700 Subject: rename admin/users to admin/accounts, provide sortable columns in account and channel summaries - issue #255 --- view/tpl/admin_accounts.tpl | 88 +++++++++++++++++++++++++++++++++++++++++++++ view/tpl/admin_channels.tpl | 2 +- view/tpl/admin_users.tpl | 88 --------------------------------------------- 3 files changed, 89 insertions(+), 89 deletions(-) create mode 100755 view/tpl/admin_accounts.tpl delete mode 100755 view/tpl/admin_users.tpl (limited to 'view') diff --git a/view/tpl/admin_accounts.tpl b/view/tpl/admin_accounts.tpl new file mode 100755 index 000000000..53f5f1aba --- /dev/null +++ b/view/tpl/admin_accounts.tpl @@ -0,0 +1,88 @@ + +
+

{{$title}} - {{$page}}

+ +
+ + +

{{$h_pending}}

+ {{if $pending}} + + + + {{foreach $th_pending as $th}}{{/foreach}} + + + + + + {{foreach $pending as $u}} + + + + + + + {{/foreach}} + +
{{$th}}
{{$u.account_created}} + + +
+ +
+ {{else}} +

{{$no_pending}}

+ {{/if}} + + +

{{$h_users}}

+ {{if $users}} + + + + {{foreach $th_users as $th}}{{/foreach}} + + + + + + {{foreach $users as $u}} + + + + + + + + + + + + {{/foreach}} + +
{{$th.0}}
{{$u.channels}}{{$u.account_created}}{{$u.account_service_class}} + +
+ +
+ {{else}} + NO USERS?!? + {{/if}} +
+
diff --git a/view/tpl/admin_channels.tpl b/view/tpl/admin_channels.tpl index 6db963304..f15742f78 100755 --- a/view/tpl/admin_channels.tpl +++ b/view/tpl/admin_channels.tpl @@ -21,7 +21,7 @@ - {{foreach $th_channels as $th}}{{/foreach}} + {{foreach $th_channels as $th}}{{/foreach}} diff --git a/view/tpl/admin_users.tpl b/view/tpl/admin_users.tpl deleted file mode 100755 index ae77ef24c..000000000 --- a/view/tpl/admin_users.tpl +++ /dev/null @@ -1,88 +0,0 @@ - -
-

{{$title}} - {{$page}}

- -
- - -

{{$h_pending}}

- {{if $pending}} -
{{$th}}{{$th.0}}
- - - {{foreach $th_pending as $th}}{{/foreach}} - - - - - - {{foreach $pending as $u}} - - - - - - - {{/foreach}} - -
{{$th}}
{{$u.account_created}} - - -
- -
- {{else}} -

{{$no_pending}}

- {{/if}} - - -

{{$h_users}}

- {{if $users}} - - - - {{foreach $th_users as $th}}{{/foreach}} - - - - - - {{foreach $users as $u}} - - - - - - - - - - - - {{/foreach}} - -
{{$th}}
{{$u.channels}}{{$u.account_created}}{{$u.account_service_class}} - -
- -
- {{else}} - NO USERS?!? - {{/if}} - - -- cgit v1.2.3