PDA

View Full Version : External Javascript Syndication System


GameExploiters
07-28-2011, 11:09 PM
So I'm using this Javascript to list the newest threads on the front page of my site, except I've noticed that longer thread titles end up pushing the entire site off.

So how do i limit the thread title characters and how do i have the poster instead of time of the post display ?

I currently use this code:

<script type="text/javascript" src="http://www.My-Site.net/forum/external.php?type=js"></script>

<script type="text/javascript">
<!--
for (var i = 0; i < threads.length; i++)
{
document.write ('<a href="http://www.My-Site.net/forum/showthread.php?t=' + threads[i]['threadid'] + '"> <span style="color:#FFFF00"> ' + ' <img src="images/star.png" alt="star icon"/> ' + threads[i]['title'] + ' </span> </a> <em>Posted on: ' + threads[i]['threaddate'] + '</em><br />');
}
//-->
</script>

Thanks for your time (:

-GE

kh99
07-29-2011, 12:52 AM
Try this:

<script type="text/javascript" src="http://localhost/forum4/external.php?type=js"></script>

<script type="text/javascript">
<!--
var maxlen = 30;
for (var i = 0; i < threads.length; i++)
{
var title = (threads[i]['title'].length > maxlen ? threads[i]['title'].substr(1, maxlen - 3) + "..." : threads[i]['title']);
document.write ('<a href="http://www.My-Site.net/forum/showthread.php?t=' + threads[i]['threadid'] + '"> <span style="color:#FFFF00"> ' + ' <img src="images/star.png" alt="star icon"/> ' + title + ' </span> </a> <em>Posted by: ' + threads[i]['poster'] + '</em><br />');
}
//-->
</script>


of course you should change maxlen to whatever you want.

GameExploiters
07-29-2011, 04:31 PM
Thank you very much!

--------------- Added 1311974969 at 1311974969 ---------------

I found an error with your code, it cuts off the first letter off the thread :/

http://img600.imageshack.us/img600/9133/errorvc.png

It's supposed to say 'ReQ is done and..'


Also how to make it output the first 200 characters of a thread ?
Is there a online document with all the "threads[i]['poster']" things ? Cause the one from vBulletin lacks a LOT of information...

kh99
08-01-2011, 03:04 PM
Sorry about that - there should be a '0' instead of '1' in the substr call:

<script type="text/javascript" src="http://localhost/forum4/external.php?type=js"></script>

<script type="text/javascript">
<!--
var maxlen = 30;
for (var i = 0; i < threads.length; i++)
{
var title = (threads[i]['title'].length > maxlen ? threads[i]['title'].substr(0, maxlen - 3) + "..." : threads[i]['title']);
document.write ('<a href="http://www.My-Site.net/forum/showthread.php?t=' + threads[i]['threadid'] + '"> <span style="color:#FFFF00"> ' + ' <img src="images/star.png" alt="star icon"/> ' + title + ' </span> </a> <em>Posted by: ' + threads[i]['poster'] + '</em><br />');
}
//-->
</script>


Also how to make it output the first 200 characters of a thread ?
Is there a online document with all the "threads[i]['poster']" things ? Cause the one from vBulletin lacks a LOT of information...


I just look at the external.php file to see what it's doing. In the case of a javascript output it only provides threadid, title, poster, date, time. You could probably modify external.php to provide more (I don't think it can be done with plugins, you'd havew to edit the file. In any case, the JS output section is around line 403.