vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   [AJAX] vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097)

zemic 09-04-2005 10:51 PM

Thats a point actually! Stupid question........ if they collapse it, does that mean it doesnt load the shoutbox at all when the page is loaded? or does it load the shoutbox, just not display it?

whitetigergrowl 09-05-2005 05:06 AM

Quote:

Originally Posted by zemic
Thats a point actually! Stupid question........ if they collapse it, does that mean it doesnt load the shoutbox at all when the page is loaded? or does it load the shoutbox, just not display it?

I've never noticed a performance hit on my website with it collapsed. It may still load it, but as long as its collapsed, anytime they visit the site, it will remain collapsed.

But that duplicate smiley issue REALLY needs to be fixed. Otherwise, its a neat little box!

thecool 09-08-2005 12:34 PM

morning folks, i have vbShout 2.0 installed, but i can't get to the archive, the shoutbox link isn't clickable.

whats the code to make the like clickable and where do i put it?

also, i don't have [edit][delete][add settings] when i go to vbshout options in the general options control panel

y2krazy 09-08-2005 04:00 PM

I changed the basic layout of the archive page and added a footer to the template, like I do with all the other hacks to make them look more streamlined with the forums. Screenshot is included.

Phrase Manager -> Add New Phrase
Varname: vbshout_footer
Text: Powered by <b>vBShout</b> v2.0 by <a href="http://www.infernotechnologies.net/" target="_blank">Zero Tolerance</a>

Style Manager -> Choose the Style to Edit -> "forumhome_vbshout_archive"
Replace entire template with:

Code:

<script type='text/javascript'>
<!--

postingShout = false

function _ShoutControl()
{
        this.shoutid      = -1
        this.active      = false
}

_ShoutControl.prototype.Delete = function (shoutid)
{
        if (!this.active)
        {
                if (confirm('Are you sure to want to delete this shout message?'))
                {
                        return this.DoDelete(shoutid)
                }
        }

        return false
}

_ShoutControl.prototype.DoDelete = function (shoutid)
{
        this.active  = true
        this.shoutid = shoutid

        doDel = new vB_AJAX_Handler(true)
        doDel.onreadystatechange(DeleteDone)
        doDel.send('vbshout.php', 'do=deleteshout&id=' + this.shoutid)

        return false
}

_ShoutControl.prototype.Edit = function (shoutid)
{
        if (shoutid != this.shoutid)
        {
                if (this.active)
                {
                        this.cancelActive(this.shoutid)
                }

                this.active      = true
                this.shoutid      = shoutid

                // Activate Editor
                fetch_object('shout_message_edit_' + this.shoutid).style.display  = ''
                fetch_object('shout_message_' + this.shoutid).style.display      = 'none'
        }
       
        return false
}

_ShoutControl.prototype.cancelActive = function (shoutid)
{
        // Deactivate Editor
        fetch_object('shout_message_edit_' + this.shoutid).style.display  = 'none'
        fetch_object('shout_message_' + this.shoutid).style.display      = ''
        return false
}

_ShoutControl.prototype.Save = function ()
{
        if (this.active)
        {
                doShout = new vB_AJAX_Handler(true)
                doShout.onreadystatechange(SaveDone)

                if (postingShout)
                {
                        alert('Posting in progress..')
                        return false
                }

                ShoutMsg = fetch_object('shout_message_editor_' + this.shoutid).value

                if (ShoutMsg.replace(/ /g, '') == '')
                {
                        alert('You must enter a shout!')
                        return false
                }

                doShout.send('vbshout.php', 'do=editshout&id=' + this.shoutid + '&shout=' + PHP.urlencode(ShoutMsg))
                postingShout = true
        }

        return false
}

Shout = new _ShoutControl

function SaveDone()
{
        if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
        {
                postingShout  = false
                Shout.active  = false
                Shout.cancelActive(Shout.shoutid)
                fetch_object('shout_message_' + Shout.shoutid).innerHTML = doShout.handler.responseText
                Shout.shoutid = -1
        }
}

function DeleteDone()
{
        if (doDel.handler.readyState == 4 && doDel.handler.status == 200)
        {
                ShoutID      = Shout.shoutid
                postingShout  = false
                Shout.active  = false
                Shout.shoutid = -1

                if (doDel.handler.responseText == 'true')
                {
                        fetch_object('shout_top_' + ShoutID).parentNode.removeChild(fetch_object('shout_top_' + ShoutID))
                }
        }
}

-->
</script>

<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
        <td width='175' valign='top'>
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="175" align="center">
                <thead>
                <tr>
                        <td class="tcat">
                                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_vbshout_stat')"><img id="collapseimg_forumhome_vbshout_stat" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_vbshout_stat].gif" alt="" border="0" /></a>
                                Statistics
                        </td>
                </tr>
                </thead>
                <tbody id="collapseobj_forumhome_vbshout_stat" style="$vbcollapse[collapseobj_forumhome_vbshout_stat]">
                <tr>
                        <td class="alt1" align="left">
                                <span class="smallfont"><b>Total Shouts:</b> $TS</span>
                        </td>
                </tr>
                <tr>
                        <td class="alt1" align="left">
                                <span class="smallfont"><b>Past 24 Hours:</b> $T4</span>               
                        </td>
                </tr>
                <tr>
                        <td class="alt1" align="left">
                                <span class="smallfont"><b>Your Shouts:</b> $TY</span>
                        </td>
                </tr>
                </tbody>
                </table>

                <br />

                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="175" align="center">
                <thead>
                <tr>
                        <td class="tcat">
                                <a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_vbshout_top')"><img id="collapseimg_forumhome_vbshout_top" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_vbshout_top].gif" alt="" border="0" /></a>
                                Top 10 Shouters
                        </td>
                </tr>
                </thead>
                <tbody id="collapseobj_forumhome_vbshout_stat" style="$vbcollapse[collapseobj_forumhome_vbshout_stat]">
                $TopTen
                </tbody>
                </table>
        </td>

<!-- Spacer Cell -->
<td width="15"><img alt="" src="$vboptions[bburl]/$vboptions[cleargifurl]" width="15" /></td>
<!-- / Spacer Cell -->

        <td width='100%' valign='top'>
                <table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <tr>
                        <td class="tcat" align="left">
                                Shouts
                        </td>
                </tr>
                $Output
                <tr>
                        <td class="tcat" align="right"><span class="smallfont">$vbphrase[vbshout_footer]</span></td>
                </tr>
                </table>
        </td>
</tr>
</table>

$pagenav

Style Manager -> Choose the Style to Edit -> "forumhome_vbshout_archive_shout"
Replace entire template with:

Code:

<tbody id="shout_top_{$Shout['sid']}">
<tr>
                        <td class="thead" align="left">
                                <span style='float:right'>{$Shout['time']}</span>
                                <a href="member.php?{$session['sessionurl_q']}u={$Shout['s_by']}">{$Shout['username']}</a>
                        </td>
                </tr>
                <tr>
                        <td class="alt1" width="1%" align="left" id="shout_{$Shout['sid']}">
                                <if condition="$bbuserinfo[userid] == $Shout[s_by] OR can_moderate()">
                                        <span class="smallfont" style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>
                                <span class="smallfont" id="shout_message_edit_{$Shout['sid']}" style='display:none'><input type='text' id='shout_message_editor_{$Shout['sid']}' value='{$Shout['msg_safe']}' style="width: 50%" class="bginput" /> <input type='button' class='button' onclick='Shout.Save()' value='Save' /></span>
                                <span class="smallfont" id="shout_message_{$Shout['sid']}">
                                <if condition="!$Shout[s_me]">
                                        {$Shout['s_shout']}
                                <else />
                                        <span class='highlight'>
                                                *{$Shout['username']} {$Shout['s_shout']}*
                                        </span>
                                </if>
                                </span>
                        </td>
                </tr>
</tbody>

Style Manager -> Choose the Style to Edit -> "forumhome_vbshout_archive_topshouter"
Replace entire template with:

Code:

<tr>
                        <td class="alt1" align="left">
                                <span class="smallfont"><strong><a href="member.php?{$session['sessionurl_q']}u={$TTS['s_by']}">{$TTS['username']}</a>:</strong> {$TTS['TS']}</span>
                        </td>
                </tr>

You can test the vBShout out yourself at my site if you wish, too(see my sig for a link).

ckmarkhsu 09-08-2005 05:21 PM

work great ...good hack

Metro Man 09-08-2005 08:29 PM

Error in RC3

this error on shoutbox an then the user is logout

15Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288

Vizionz 09-09-2005 05:30 AM

works fine for me i just doing it from scratch though so maybe just remove it and reinstall

Boofo 09-09-2005 05:34 AM

Is there a way to have smilies show up as inline images (class="inlineimg") like it does in the shout edit/delete area? That would help with shouts where smilies throw the line off.

Schwartz12 09-09-2005 11:56 AM

not sure if this has been answered, but any chance on replicating this into a chatroom system?

It's really good. My users absolutely love it.

Mainly I would just want it on a seperate page than the homepage and have a "users in the chat" on the homepage.

But I believe the AJAX part is what people like about it.

Is AJAX very server intensive?

Valter 09-09-2005 06:21 PM

Quote:

Originally Posted by Metro Man
Error in RC3

this error on shoutbox an then the user is logout

15Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288

Just go to options and choose to hide completely Shoutbox for users who have no permissions to view shouts.


All times are GMT. The time now is 10:19 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03134 seconds
  • Memory Usage 1,784KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete