PDA

View Full Version : New Posting Features - Quick Nick & Quote in QR


akanevsky
06-04-2009, 10:00 PM
I no longer support my hacks. Please feel free to update them and release new versions elsewhere as long as I get the credit for the original modification.

/*=============================================*\
|| Quick Nick & Quote in QR
||
|| Author : Anton Kanevsky
|| Works on : vBulletin 3.5.x - 3.8.x
|| Released : Jun 05, 2009
||
|| Time required to install: 1 minute
|| Difficulty: easy
\*=============================================*/

DESCRIPTION

This product gives you an opportunity to quickly insert a post owner's nickname or a quote of some on-screen selection into your quick reply. Works properly in Opera, Internet Explorer and Mozilla, both in WYSIWYG and regular editor, and under Windows 9x, ME and XP platforms.

STATISTICS

File Uploads: 1
File Changes: 1
Products to Install: 1


FEATURES

[list] Insert Name Link in Posts (in Dropdown)
Insert Quote of Selection Button in Posts (next to the Quote Button)
Auto-Detection of Quote Format (between 3.5.x & 3.8.x)


VERSION HISTORY

1.1.0
[+] Eliminated template edits.
[+] The hack is now compatible with vBulletin 3.5.x - 3.8.x.
[+] Added support for the new quote format first introduced in vBulletin 3.6.x.

1.0.2
[F] Fixed the empty-textarea-newline bug.

1.0.1
[F] Added compatibility with older browsers and platforms.
[+] One less file edit (but one more template edit ;)

1.0.0
First Release

The installation manual is contained within the attached file.

IF YOU LIKE MY HACK, PLEASE CLICK INSTALL (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=215418)

akanevsky
06-05-2009, 03:39 PM
First Post Reserved.

CrazyProgrammer
06-05-2009, 04:21 PM
Thanks GJ Trying it out now

Almotmaiz.Net
06-06-2009, 04:21 AM
Thanks
Installed:D

TheInsaneManiac
06-11-2009, 12:50 PM
Excuse me for not fully understanding this, but I don't. It looks like all it does is add the users name in bold, however the built in quote feature of VBulletin already will quote the users name for you.

akanevsky
06-11-2009, 06:35 PM
Excuse me for not fully understanding this, but I don't. It looks like all it does is add the users name in bold, however the built in quote feature of VBulletin already will quote the users name for you.

This is all a question of usability and preference. Some people - like myself, for example - like to quote parts of posts right in the quick reply, as opposed to quoting whole posts in the advanced editor. Sometimes they also want to write address someone quickly in the quick reply without quoting anything and without having to type the username manually, hence there is another link just for that. Of course, there are a lot of people who do not think that this is useful, but I am not making anyone install this hack. :)

nohuhu
06-23-2009, 12:14 PM
Psionic Vision,

there's something i cannot understand in readme for this mod. it says, in file /clientscript/vbulletin_textedit.js find "// vB_Text_Editor methods" and append some text after this line. but in my 3.8.2 the vbulletin_textedit.js is "compressed", there are no comments in there. where do i insert your additional text? ain't it possible not to change vanilla vbulletin_textedit.js but add your script as separate file instead?

akanevsky
06-23-2009, 08:10 PM
You can always download the uncompressed vBulletin from the vBulletin client area.

nohuhu
06-24-2009, 06:29 AM
Psionic Vision,

that's what i did exactly. but you see, "compressed" javascript means it has no comments, no extra whitespace except bare minimum, it's stripped of all unnecessary characters to save bandwidth. effectively it's one line of code and the only comment box it has is its header stating it's vBulletin 3.8.2, copyrights blah-blah-blah. so where do i insert your code?

akanevsky
06-24-2009, 02:08 PM
You have to download the uncompressed version first, so that you can edit the files.

nohuhu
06-24-2009, 02:38 PM
Psionic Vision,

ok, now i got it. sorry for me being stupid. :)

nohuhu
06-24-2009, 06:13 PM
Psionic Vision,

got it working. have an issue though: when editor is set to wysiwyg mode, using either "insert name" or "quick quote" functions produces an extra line break before inserted text. i took a look at your code and this behaviour seems to be expected as you check length of existing editor contents before inserting your own but somehow it doesn't work as expected with wysiwyg mode. in simple editor mode it works ok and only inserts extra line break when there is already some content in editor field. can you check this please?

also i have a feature request of a sorts: can you make your script to set focus on editor field after inserting either quote or username? that would be logical i think, usually i want to start writing my message immediately after quoting or addressing someone. i tried to append "this.focus()" call after "this.set_editor_contents()" but somehow it doesn't work. sorry i'm no javascript expert...

akanevsky
06-24-2009, 07:21 PM
got it working. have an issue though: when editor is set to wysiwyg mode, using either "insert name" or "quick quote" functions produces an extra line break before inserted text. i took a look at your code and this behaviour seems to be expected as you check length of existing editor contents before inserting your own but somehow it doesn't work as expected with wysiwyg mode. in simple editor mode it works ok and only inserts extra line break when there is already some content in editor field. can you check this please?

That is a known bug. In WYSIWYG, there's some hidden formatting that causes the message length function to report a random non-zero number when the message area is empty - and I don't know how to work around the problem at this time.

also i have a feature request of a sorts: can you make your script to set focus on editor field after inserting either quote or username? that would be logical i think, usually i want to start writing my message immediately after quoting or addressing someone. i tried to append "this.focus()" call after "this.set_editor_contents()" but somehow it doesn't work. sorry i'm no javascript expert...

A lot of people want to quote multiple things before starting to type a reply. If the focus kept jumping to message area every time, that would be very annoying to those people.

nohuhu
06-25-2009, 08:28 AM
That is a known bug. In WYSIWYG, there's some hidden formatting that causes the message length function to report a random non-zero number when the message area is empty - and I don't know how to work around the problem at this time.


ok then, i'll have to advise my users not to use wysiwyg mode for quick reply.


A lot of people want to quote multiple things before starting to type a reply. If the focus kept jumping to message area every time, that would be very annoying to those people.

i got your point but my users got used to phpbb behaviour and it focused on message area after clicking on username. i myself find it convenient too. is it possible to make it configurable? if not and you don't want to include this feature in your mod, can you advise me on how to do it then? i have no trouble running customized mods. :)

nohuhu
06-25-2009, 08:44 AM
Psionic Vision,

never mind that, i already figured it out myself.

nohuhu
06-25-2009, 09:43 AM
Psionic Vision,

also i think it would do a lot of good to extract all html code from your postbit_factory plugin into separate template. this way it'd be much easier to change visual appearance of postbit.

akanevsky
06-25-2009, 03:47 PM
i got your point but my users got used to phpbb behaviour and it focused on message area after clicking on username. i myself find it convenient too. is it possible to make it configurable? if not and you don't want to include this feature in your mod, can you advise me on how to do it then? i have no trouble running customized mods. :)

I could make it customizable on a per-user basis...

Psionic Vision,

also i think it would do a lot of good to extract all html code from your postbit_factory plugin into separate template. this way it'd be much easier to change visual appearance of postbit.

Thank you for the suggestion.

nohuhu
06-25-2009, 06:21 PM
I could make it customizable on a per-user basis...


yes, that would be very helpful.


Thank you for the suggestion.

well, upon closer look i turned this plugin off and made manual changes to my templates. it isn't that helpful either way 'cause it worked for vanilla postbit template but didn't work for customized postbit_legacy template, it didn't insert "quick quote" button. most probably it just couldn't find the piece of text that you chose as a placeholder for inserting new button. adding code from that plugin to the template worked like charm.

lordnara
10-10-2009, 07:04 AM
i'm using tech forum templates, the button don't show :(
and yes.. i upload the quickquote.gif :)

thanks.... great mod :)

psychonikeo
11-25-2009, 12:51 PM
nevermind..

LIGHTFRAG
02-17-2012, 06:19 PM
In my vb3.8.7 I don't look in file ./clientscript/vbulletin_textedit.js text // vB_Text_Editor methods