Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
QuoteIt! - Quote Database Details »»
QuoteIt! - Quote Database
Version: 3.17, by Cap'n Steve Cap'n Steve is offline
Developer Last Online: May 2010 Show Printable Version Email this Page

Category: Major Additions - Version: 3.6.0 Rating:
Released: 01-01-2007 Last Update: 04-30-2008 Installs: 207
DB Changes Uses Plugins Template Edits
Re-useable Code Additional Files Translations  
No support by the author.

QuoteIt! version 3.1

I'm no longer able to put very much time into this mod, so I've set up a Subversion repository at http://www.vbulletinprogramming.com/projects/quoteit/ to allow others to help out. You can use the login "vbuser" with the password "vbulletin" to edit files. If someone would like to completely take over the mod, please contact me.


QuoteIt! allows you to have a database of quotes integrated with your forum. Users submit quotes that can then be voted on by the other users, using your choice of two rating systems. The average installation will show a random quote on the forum home page, but you can include it on any vBulletin page or on your portal home page.

If you'd like to see a demo, go to forums.monkeycrap.com.

Features:

Random Quote
- a random quote can be shown on any vBulletin powered page
- the administrator can set a default rating threshold that quotes must meet before showing up as the random quote
- a new random quote can be chosen at a specific interval of time, to reduce server load

Quote Database
- quotes can be searched, filtered, and sorted by many different criteria
- quotes have a "context" field that can be turned on or off to include more information about the quote
- quotes can be embedded in posts with bbcode
- each post and private message now has a "Submit to Quotes" link that allows users to quote things said on your forum more easily

Quote Ratings System
- quotes can be rated either plus/minus or on a scale from 1 to 5
- quotes below a certain total score or average score can be filtered out

Quote Management
- quotes can either be automatically approved or moderated
- the quote moderation que is like the que for posts, enabling the moderation of several quotes at once
- usergroup permissions are used for adding, editing, deleting, rating and viewing quotes
- most actions use AJAX to avoid page reloads

Don't forget to click install!

Currently known problems are listed here.

The files needed to edit the included images are attached to this post.

This hack is based on QuoteIt! 1.2, originally by magnus. The "submit post" feature was inspired by an addon by CtrlAltDel.

Older versions (no longer in development): QuoteIt! 3 for vBulletin 3.5.x | QuoteIt! 2.03 for vBulletin 3.0.x

Show Your Support

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

Comments
  #582  
Old 06-02-2008, 04:27 PM
gpc10347 gpc10347 is offline
 
Join Date: May 2008
Posts: 180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cap'n Steve View Post
I'm almost afraid to ask.
As well you should be. Actually, anything I place between the open and close randomquote - even just a space -allows it to function. So I'm good here...


Quote:
Originally Posted by Cap'n Steve View Post
There must be a hook for previewing signatures that I missed. If you're feeling adventurous, you could look at the other "Finalize BBCode" plugins and try to copy that code to a plugin at whatever hook is called when previewing.
That's next.

Quote:
Originally Posted by Cap'n Steve View Post
I don't think it's a missing end tag, but running it through http://validator.w3.org/ might help you pinpoint the problem.
Oh thanks for that. I need constant reminders of how poor the rest of my pages are!

Here's an off the wall issue that might be related. Viewing source from an interior page that works shows this:
<script type="text/javascript">

and it may be a co-incidence but the bad page (from CMPS) shows this view source:
<script type=\"text/javascript\">

Escaped quotes mean anything to you?

UPDATE: Commented out line 809 in functions_quoteit.php and it's officially working on my front page in vBavanced.

$tempinclude = str_replace('"', '\"', $tempinclude);

I'll shut up for a little while!
Reply With Quote
  #583  
Old 06-03-2008, 05:39 AM
Cap'n Steve's Avatar
Cap'n Steve Cap'n Steve is offline
 
Join Date: Feb 2004
Location: Kalamazoo, MI, USA
Posts: 745
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, that information is a little disturbing, but will probably be very helpful when I get around to writing the next version. I don't know what was changed in the bbcode or in vBadvanced, but thanks for giving me some clues.
Reply With Quote
  #584  
Old 06-07-2008, 09:37 PM
cillianok cillianok is offline
 
Join Date: Aug 2002
Location: Ireland
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any *easy* way to make it smaller, height-wise?
Reply With Quote
  #585  
Old 06-08-2008, 03:40 AM
Cap'n Steve's Avatar
Cap'n Steve Cap'n Steve is offline
 
Join Date: Feb 2004
Location: Kalamazoo, MI, USA
Posts: 745
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't know what you consider easy, but you can edit the padding in clientscript/vbulletin_css/quoteit_main.css or remove the information you don't need displayed in the quote_listbit template.
Reply With Quote
  #586  
Old 06-08-2008, 02:15 PM
Dr. Bantham's Avatar
Dr. Bantham Dr. Bantham is offline
 
Join Date: Feb 2007
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cap'n Steve View Post
A new version has been uploaded to make the AJAX compatible with vBulletin 3.7.
Can you tell us what files/templates have changed in this most recent release? I have made a number of custom modifications and I would rather integrate new revisions as opposed to trying to replicate all my past work again. This would be a great help!
Reply With Quote
  #587  
Old 06-08-2008, 02:33 PM
gpc10347 gpc10347 is offline
 
Join Date: May 2008
Posts: 180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dr. Bantham View Post
Can you tell us what files/templates have changed in this most recent release? I have made a number of custom modifications and I would rather integrate new revisions as opposed to trying to replicate all my past work again. This would be a great help!
(Warning: Off Topic)

Dr. Bantham.. Apologies for the interruption however, your site has got o be one of the best examples of vBulletin going. Seriously. Intriguing to the point of engaging - it's an extraordinary showpiece that I've recommended to others...

(Please continue)
Reply With Quote
  #588  
Old 06-08-2008, 03:27 PM
Dr. Bantham's Avatar
Dr. Bantham Dr. Bantham is offline
 
Join Date: Feb 2007
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gpc10347 View Post
(Warning: Off Topic)

Dr. Bantham.. Apologies for the interruption however, your site has got o be one of the best examples of vBulletin going. Seriously. Intriguing to the point of engaging - it's an extraordinary showpiece that I've recommended to others...

(Please continue)
Wow! I am truly grateful for the generous praise. I have put a lot of work into the content and general aesthetics of my site, but I must give much credit to the wealth of resources within this site. I am especially proud of many of the custom styles I have developed, many of which graphically mimic certain book layouts or story concepts published by the author the site is dedicated to. As with many vBulletin efforts, the focal group of mine is admittedly small. It has been a great boon to gathering fans, introducing new readers and discussing similar interests. Again, many thanks for the kind words!
Reply With Quote
  #589  
Old 06-11-2008, 02:58 AM
Cap'n Steve's Avatar
Cap'n Steve Cap'n Steve is offline
 
Join Date: Feb 2004
Location: Kalamazoo, MI, USA
Posts: 745
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The latest version is just a two line workaround in quotes.php, as shown in this post.
Reply With Quote
  #590  
Old 06-12-2008, 12:12 AM
dimples dimples is offline
 
Join Date: Dec 2007
Posts: 8
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I love the mod and everything seems to be working great so far. I have one question though and I apologize if this has been asked earlier. Is there a way we can take out the two quote gifs that default around the quote in the random quote box. They never seem to line up right and I would rather just eliminate them if I could.

Thank you much!
Reply With Quote
  #591  
Old 06-12-2008, 03:03 AM
Cap'n Steve's Avatar
Cap'n Steve Cap'n Steve is offline
 
Join Date: Feb 2004
Location: Kalamazoo, MI, USA
Posts: 745
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just remove these sections from the quote_listbit template:

HTML Code:
<img src="{$stylevar['imgdir_misc']}/quotation-open.png" alt="“" width="60px" height="51px" class="quoteimage openquote" />
<span width="60px" height="51px" class="openquote ieimage">&nbsp;</span>
HTML Code:
<span width="60px" height="51px" class="closequote ieimage">&nbsp;</span>
<if condition="!$sidebar">
<img src="{$stylevar['imgdir_misc']}/quotation-close.png" alt="”" width="60px" height="51px" class="quoteimage closequote" />
</if>
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 05:09 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.06312 seconds
  • Memory Usage 2,331KB
  • 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
  • (2)bbcode_html
  • (6)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
  • (3)pagenav_pagelinkrel
  • (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