Quote:
Originally Posted by XiZa
Well,
You could add json commands like {command:'removeMessage': 112} and things like that to remove messages. But that would mean you would have to keep a log of removed messages.. and edited messages.. in separate tables since if you just send the last x messages you wouldn't know if they were deleted or edited.
Or perhaps just an extra column in the message table status: active, deleted, edited (perhaps a date value)
And if the user wants to ignore someone, then you can indeed respond with a full reload or just use client side javascript to remove the entries by that user if you kept that information available.
<tr id="message_y" class="user_x">
|
The javascript would also be intensive too with that method and not very brain savy to implement, especially as I don't know anything about Json
Quote:
Originally Posted by XiZa
Also, when someone isn't online and you try to PM them, it states "that user doesn't exist". Think it would be better if you would say "the user isn't online".
Anyway, you have seen the popup dialog screenshot, will you be fixing that?
|
You can send a PM to a user who isn't online. There is nothing to avoid it in my code.
Perhaps you are not using the right syntax.
Quote:
Originally Posted by XiZa
I also attached a pic about the spacing issue, small issue but would be better if fixed  No space between date and "To/from" and after the name. Maybe if you used it would work better.
|
It works as implemented.
I still don't see what is the issue.
Quote:
Originally Posted by XiZa
Also, a spelling error in the help: "usergroupds "
|
Added to the bug list thanks.
Quote:
Originally Posted by XiZa
Edit: I would also love the ability to remove certain icons, like the button that empties the chat input field. And the ability to change the icon images.
|
I won't add options for each buttons. Having an option for each buttons tends to be a bit too much don't you think ? You can remove them by editing the mgc_cb_evo_editor template.
About icon images, you can do you own by changing the one in the misc/mgc_cb_evo directory located in the images directory of your style.
Quote:
Originally Posted by XiZa
One more question, I just noticed a different initial state (chat log) from two accounts. Is this a setting somewhere or a bug? If I go in safari to the archives I see all of it, but if I use my other user account in firefox, it only shows my posts I just made.
(Note that i am just testing this currently with only two users, offline)
|
What do you mean by different initial state ?
Perhaps they don't have the same rights for the commands used ?
Quote:
Originally Posted by XiZa
Also, the command syntax could possibly be made better?
Does vbulletin allow usernames that are numbers only? If not you could check if integer, its uid otherwise username.
Another error in the help:
/pm uname "userid"
should be "username"
I just checked and it doesn't appear that vbulletin blocks integer names..
Better syntax could be:
/ignore username
/unignore username
/ignore userid uid
/unignore userid uid
So only use a parameter (uid) to the more advanced option which I doubt many people will use anyway.
Don't require " " around the username unless there are spaces in the username. (then you could show an error mesage before sending the command to the server)
|
I won't change the commands syntax sorry.
However I plan on doing an autocompletion system so this will help.