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

Reply
 
Thread Tools
Thread Torrent Details »»
Thread Torrent
Version: 1.00, by Kriek Kriek is offline
Developer Last Online: Sep 2004 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 06-03-2003 Last Update: Never Installs: 15
 
No support by the author.

Description

After discussion with the Serence development team and several members of this community including cloudrunner would wrote KlipFolio Integration, I have decided to release Thread Torrent for Serence KlipFolio and vBulletin, moreover This hack was essentially requested by Koutaru here to provide a way to display newest threads. KlipFolio is a desktop application that allows you to easily view and manage live, automated and customizable channels to unique information sources called Klips. A Klip is a live, automated and customizable channel to a unique information source that runs in KlipFolio. For more information you can reference the KlipScript Guide for documentation (Also see Klip Tags). The basics are essentially self explanatory; let me know if you have any more questions concerning this topic.



Installation Information
Code:
Files to edit: (2) vbTT.php, vbTT.klip
Files to upload: (2) vbTT.php, vbTT.klip
Queries to Run: (0) nada
Templates to edit: (1) nada
Templates to add: (0) nada
Time to install: approx 3 minutes

Show Your Support

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

Comments
  #2  
Old 06-04-2003, 12:29 AM
Velocd's Avatar
Velocd Velocd is offline
 
Join Date: Mar 2002
Location: CA University
Posts: 1,696
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well the 10 people (thus far) who have downloaded this must understand what it is, but I guess I'm a little slow today.

How does this differ from the recent hack by cloudrunner?
Reply With Quote
  #3  
Old 06-04-2003, 01:19 AM
Koutaru's Avatar
Koutaru Koutaru is offline
 
Join Date: Feb 2003
Location: IL
Posts: 589
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Cloudrunners is new posts in a specific form (specifically for your news or announcements forum) whereas this hack is for new threads in general (am i right?)

[high]* Koutaru clicks install[/high]
Reply With Quote
  #4  
Old 06-04-2003, 02:14 AM
Cloudrunner's Avatar
Cloudrunner Cloudrunner is offline
 
Join Date: May 2003
Location: Butte, MT
Posts: 635
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That about sums it up. His takes your most recent threads from the entire forum and feeds it to your klipfarm. It includes thread starter username, how many replies, and when the last reply was (from a quick glance look see at the code, I didn't delve too deep.).

I'm assuming that since the output is in RDF format, one could easily integrate this as a backend syndication system as well, but that's all for another day
Reply With Quote
  #5  
Old 06-04-2003, 02:46 AM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Affirmative. Every forum, every thread.

Even private forums if you are logged in with proper permissions
Reply With Quote
  #6  
Old 06-04-2003, 02:48 AM
Reverend Reverend is offline
 
Join Date: Mar 2002
Location: England
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A couple of things to bare in mind when using any kind of forum backend feeds including this one.

You'll need to add a custom description to the online.php if you want to avoid getting an "unknown Location" when someone clicks a thread link via the klip.
And also,if a member stays logged into the forums,i.e their session hasn't expired,and then clicks a link via the klip,they will appear twice on the WOL,(as their username,and further down the list as a guest).You can check this by logging into your forums,and then open klipfolio and click one of the thread links.Look at the IP's column and you'll be listed with the same IP as "username" and "guest".Which means your forums currently active users count will be wrong.

Just thought i'd make users aware of that.
Reply With Quote
  #7  
Old 06-04-2003, 03:10 AM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm afraid I have yet to personally experience the first problem you mentioned, nor have any of my members or clients in over a one year time span, so I'm afraid I'll have to take your word for it. I've been working closely with the Serence development team so I'll mention it to them in the coming weeks. The second problem or nuisance rather you spoke of is actually quite simple to exclude from Who's Online which typically displays as: Guest Unknown Location: /vbTT.php -- so a simple comparison operator will do

Method no.1

Open online.php and find
PHP Code:
". iif(!$WOLguests, " AND session.userid user.userid", "") ."
ORDER BY user.username"); 
Then replace with the following
PHP Code:
". iif(!$WOLguests, " AND session.userid user.userid", "") ."
AND session.location NOT LIKE '%/vbTT.php%' ORDER BY user.username"); 
Reply With Quote
  #8  
Old 06-04-2003, 03:29 AM
Reverend Reverend is offline
 
Join Date: Mar 2002
Location: England
Posts: 206
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey i didn't say it was a problem,i was merely pointing out some of my observations when using forum klips in the past and thought i'd make other members aware of them.

It's a nice hack Kriek,let us know how you get on with your further discussions with the Serence Devs.
Reply With Quote
  #9  
Old 06-04-2003, 01:58 PM
Kriek's Avatar
Kriek Kriek is offline
 
Join Date: Jul 2002
Location: Florida
Posts: 135
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Reverend, Sure thing, but most of the development is obviously surrounding Klipfolio itself and its features concerning Klips, but I have to admit that with each modification there seems to be another open window available for vBulletin as well as other software.
Reply With Quote
  #10  
Old 06-04-2003, 09:59 PM
Mutt's Avatar
Mutt Mutt is offline
 
Join Date: Nov 2001
Posts: 331
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks, it's very cool. My members will love it. I'm racking my brain tring to think about how else I can use this. Only thing I've come up with would be pms and then setting klip to alert when ever there a new item.
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 02:20 PM.


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.12016 seconds
  • Memory Usage 2,299KB
  • Queries Executed 23 (?)
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
  • (1)bbcode_code
  • (2)bbcode_php
  • (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
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)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