Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Quick Reply Multiquote Details »»
Quick Reply Multiquote
Version: 1.00, by Xenon Xenon is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Version: 3.0.3 Rating:
Released: 01-02-2005 Last Update: Never Installs: 39
 
No support by the author.

This Modification allows users to highlight text in user's posts and after clicking the QR-icon it will get entered into the qr-form surrounded by quote tags When no text is highlighted, the QR icon will work as it did before.

You can see a demo version on vb.org already

Thx to EvilS1 for the IE-JS code

Notice: the .js Files are cached by most browsers, so if you installed the hack, and don't notice a change, do a hard refresh to download the newest version from the server.

Notice: The hack is designed to work with normal text boxes, right now the wysiwyg editor is not supported.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 05-24-2005, 05:19 AM
zetetic's Avatar
zetetic zetetic is offline
 
Join Date: Apr 2004
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by deathemperor
care to share it ?
I figured out that he means he fixed that problem in his own hack, not this one. I looked at his but couldn't figure out how what he did could be applied to this one, though.
Reply With Quote
  #93  
Old 05-28-2005, 09:04 PM
zetetic's Avatar
zetetic zetetic is offline
 
Join Date: Apr 2004
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay I'm not a skilled coder but here's the workaround I came up with for users who have apostrophes in their names:

Edit functions_showthread.php:

Find:

HTML Code:
// do posts from ignored users
Add Above:

PHP Code:
$post['qrusername'] = addslashes($post['username']); 
Then edit the postbit template:

Find:

HTML Code:
onclick="return doMultiQuote('$post[username]',
Replace with:

HTML Code:
onclick="return doMultiQuote('$post[qrusername]',
This works for me, but use at your own risk.

Edited to add: Don't forget to change legacy_postbit too, if you give your users the option to use it. I always forget that.
Reply With Quote
  #94  
Old 05-29-2005, 06:01 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tmhall
Okay I'm not a skilled coder but here's the workaround I came up with for users who have apostrophes in their names:

Edit functions_showthread.php:

Find:

HTML Code:
// do posts from ignored users
Add Above:

PHP Code:
$post['qrusername'] = addslashes($post['username']); 
Then edit the postbit template:

Find:

HTML Code:
onclick="return doMultiQuote('$post[username]',
Replace with:

HTML Code:
onclick="return doMultiQuote('$post[qrusername]',
This works for me, but use at your own risk.
Good one, sir. Thanks!
Reply With Quote
  #95  
Old 05-29-2005, 01:29 PM
zetetic's Avatar
zetetic zetetic is offline
 
Join Date: Apr 2004
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo
Good one, sir. Thanks!
Thanks and you're welcome.
Reply With Quote
  #96  
Old 06-02-2005, 11:07 PM
Lurk Lurk is offline
 
Join Date: Feb 2004
Location: Garden Grove, CA
Posts: 99
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tmhall
Edited to add: Don't forget to change legacy_postbit too, if you give your users the option to use it. I always forget that.
Damn, wow... That's amazing.
Reply With Quote
  #97  
Old 06-02-2005, 11:18 PM
zetetic's Avatar
zetetic zetetic is offline
 
Join Date: Apr 2004
Posts: 338
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Lurk
Damn, wow... That's amazing.
Um... huh? Why's it amazing that I forget to edit the legacy postbit?
Reply With Quote
  #98  
Old 06-03-2005, 05:27 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by tmhall
Um... huh? Why's it amazing that I forget to edit the legacy postbit?
I do not know if it is amazing, but it happens to me too, all the time!

On a sidenote, I just install this on 3.0.7 and it works fine. Just one question, I got from reading the previous pages. I saw too many requests for porting this to the WYSIWYG editor. Do you guys get WYSIWIG in the Quck Reply? And if you do, how did you do it? I am using WYSIWYG in the normal reply etc, but I didn't know you can have it in the QR as well.

Rgds
Reply With Quote
  #99  
Old 07-01-2005, 09:41 AM
deathemperor's Avatar
deathemperor deathemperor is offline
 
Join Date: Jul 2003
Location: HOL
Posts: 1,270
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sv1cec
On a sidenote, I just install this on 3.0.7 and it works fine. Just one question, I got from reading the previous pages. I saw too many requests for porting this to the WYSIWYG editor. Do you guys get WYSIWIG in the Quck Reply? And if you do, how did you do it? I am using WYSIWYG in the normal reply etc, but I didn't know you can have it in the QR as well.
ACP -> Vboptions -> Message Posting and Editing Options -> Quick Reply Enabled -> Yes - Show Enhanced (WYSIWYG) Editor Toolbar
Reply With Quote
  #100  
Old 07-01-2005, 09:46 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank You Sir!
Reply With Quote
  #101  
Old 07-20-2005, 09:15 AM
csidlernet csidlernet is offline
 
Join Date: Apr 2003
Location: sydney
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

goodwork Xenon!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:05 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05214 seconds
  • Memory Usage 2,317KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_html
  • (2)bbcode_php
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete