vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Community Lounge (https://vborg.vbsupport.ru/forumdisplay.php?f=13)
-   -   Firefox plug in for your forum? (https://vborg.vbsupport.ru/showthread.php?t=77393)

Reeve of shinra 03-03-2005 01:36 PM

Firefox plug in for your forum?
 
I was curious ... has anyone made a firefox extention so your forum members can recieve PM's, see the latest topics (via the rss feeds of course), etc?

Oblivion Knight 03-05-2005 08:05 AM

I haven't seen one around, but it sounds like a nice idea..

I know someone made an MSN Messenger tab for vB2, that was pretty cool too.

Brad 03-05-2005 08:27 AM

Not for vB but similar.

http://www.dslreports.com/shownews/60984

Dean C 03-05-2005 09:42 AM

It would be quite easy to do I'd imagine :) Just take a bit of the gmail notifier code

Reeve of shinra 03-06-2005 01:06 AM

Brad, thats what led me to ask the question. :)

Actually, I kept thinking about it since I saw thier desktop notifier.

dethfire 03-10-2005 02:47 AM

anyone working on this? ;)

Reeve of shinra 03-14-2005 02:03 AM

Theorizing ;)

What would be needed or useful in such a plug in?

* Newest and updated threads (external.php xml feeds most likely).

* PM notification

* Quick Post for AN-NET's Journal (assuming the same could work for some of the articles hacks)

* Buddy List (I dont think anyone on my site makes use of that but...)

dethfire 03-14-2005 02:26 PM

Quote:

Originally Posted by Reeve of shinra
Theorizing ;)

What would be needed or useful in such a plug in?

* Newest and updated threads (external.php xml feeds most likely).

* PM notification

* Quick Post for AN-NET's Journal (assuming the same could work for some of the articles hacks)

* Buddy List (I dont think anyone on my site makes use of that but...)

yes these would be awesome!

drumsy 12-25-2005 02:54 AM

Any word on this?

sabret00the 12-25-2005 09:49 AM

one exists because desitorrents.com has one ;)

filburt1 12-25-2005 12:44 PM

Quote:

Originally Posted by Reeve of shinra
I was curious ... has anyone made a firefox extention so your forum members can recieve PM's, see the latest topics (via the rss feeds of course), etc?

Not a Firefox extension but a complete C# application. You'll see more in the next month or whenever.

Logikos 12-25-2005 02:01 PM

A good person to ask is WetWired. He's been programming over 15 years. I belive C, C++, ect.. is his actual job. :)

Dave# 01-01-2006 11:26 AM

I did a search plugin recently

http://mycroft.mozdev.org/download.h...mitform=Search

It doesn't use the forums search but rather a hook into google's search but it works well I think.

Zate 01-03-2006 04:53 PM

yes i made one for tampaforums.com and tamparacing.com .. in the process of getting it added to the mozilla site so it will update. It resides up with the rest of the menus. Right now all the links are hard coded.

Next release I think I will add an options area that will let users select via check boxes the urls they want to display, aswell as a place for them to add their own links.

demo of it is here --> http://www.zate.org/xpi.html (right click, save as then open it, select firefox as the application).

dakuda 01-03-2006 09:11 PM

Quote:

Originally Posted by Zate
yes i made one for tampaforums.com and tamparacing.com .. in the process of getting it added to the mozilla site so it will update. It resides up with the rest of the menus. Right now all the links are hard coded.

Next release I think I will add an options area that will let users select via check boxes the urls they want to display, aswell as a place for them to add their own links.

demo of it is here --> http://www.zate.org/xpi.html (right click, save as then open it, select firefox as the application).

I don't know a whole lot about this now (about to pour on the net to research), but is tehre a way you could post the source for that for others to modify?

Zate 01-04-2006 01:24 PM

that is the source... the xpi file... save it, change it to a .zip and extract it.

i used this to help me : http://extensions.roachfiend.com/howto_bug.html

dakuda 01-05-2006 09:58 AM

Quote:

Originally Posted by Zate
that is the source... the xpi file... save it, change it to a .zip and extract it.

i used this to help me : http://extensions.roachfiend.com/howto_bug.html

I see how that works now. Thanks.

EricaJoy 01-05-2006 11:39 AM

I don't see how it works but I'd like to.

/me makes puppy dog eyes

Code Monkey 01-05-2006 02:56 PM

Quote:

Originally Posted by Zate
that is the source... the xpi file... save it, change it to a .zip and extract it.

i used this to help me : http://extensions.roachfiend.com/howto_bug.html

Might be easier for folks if you attached the one you saved into a zip.

Zate 01-05-2006 03:42 PM

go to http://www.zate.org/xpi.html

right clik, save as.

go to the downloaded file (tftr.xpi) and change it to a .zip (tr.tf.zip)

extract it.

Inside the chrome folder, extract the jar (i used winrar).

use notedpad, or textpad to edit the files, use this site to help you learn what to change --> http://extensions.roachfiend.com/howto_bug.html

Code Monkey 01-05-2006 06:10 PM

I am able to get the menu part of the extension to work real good. But clicking does nothing. So I am still trying to figure out what I missed.

EDIT: Got it. You have to make sure you replace every single instance of "trtf" in every single file with your new extension short name.

EricaJoy 01-06-2006 01:06 AM

So I googled XUL Editor and chanced upon and extension thats for making extensions! Looks promising so far, check it out:

http://ted.mielczarek.org/code/mozilla/extensiondev/

dakuda 01-06-2006 03:09 AM

Quote:

Originally Posted by JumpD
Might be easier for folks if you attached the one you saved into a zip.

That was pretty much my only hurdle. Once I knew to change extensions it went like clockwork.

Code Monkey 01-06-2006 07:44 AM

Aparently it's evil to talk about this in the lounge. :D

If your going to use the above template to make a link extension for your vb forum, I altered one of the js functions a bit. In chrome>content>common.js add this function. Make sure you change it to your site url and forum root.
Code:

function tsg_open_vb(event, fid)
{
        if (event && event.button != 0)
        {
                getBrowser().addTab("http://yoursite.com/forumhome/forumdisplay.php?f="+fid);
        } else {
                loadURI("http://yoursite.com/forumhome/forumdisplay.php?f="+fid);
        }
}

Then you can just tsg_open_vb(event, '5') using the forum id instead of puting the whole url for every link. Smaller is better with js.

Now someone move this thing before it explodes.

EricaJoy 01-06-2006 07:13 PM

i finished mine! wheeeee!

Lizard King 01-06-2006 08:07 PM

Quote:

Originally Posted by princessfrozen
i finished mine! wheeeee!

can we see a demo :)

Code Monkey 01-06-2006 09:55 PM

<a href="http://joystickrequired.com/ff_extensions/jsr_extension.html" target="_blank">Mine is working</a>.

dethfire 01-06-2006 11:27 PM

well I must be retarded, every time I install my edited one it says it's an invaild package

Code Monkey 01-07-2006 03:56 AM

FYI. That install.js file that comes with that above code is legacy and not needed for Firefox. Firefox handles the install now. It may be needed if you wish to install in another mozila based app, or it may not. Not needed for FF though.

EricaJoy 01-07-2006 06:34 AM

Quote:

Originally Posted by dethfire
well I must be retarded, every time I install my edited one it says it's an invaild package

mine was giving me an error with the install file for the longest. turns out i zipped it wrong. whats the exact error it gives you?

dethfire 01-07-2006 09:00 PM

Quote:

Originally Posted by princessfrozen
mine was giving me an error with the install file for the longest. turns out i zipped it wrong. whats the exact error it gives you?

File could not be installed, not a valid install package.

EricaJoy 01-08-2006 01:10 AM

upload and link, i'll see if i can help at all.

dakuda 01-09-2006 10:16 PM

Has anyone submitted the extension to addons.mozilla.org?

I was just wondering if they allow such site-specific menus to be added to their database, or am I on my own with distribution....

Just asking while I wait for the 'editor to get back to you' on my extension....

filburt1 01-10-2006 12:42 AM

Extensions are for chumps, plus it doesn't apply to the 65% to 95% of the people using your site who use IE. Real men write full applications: http://www.webdesignforums.net/wdf_notifs_about.php . Course that limits it to Windows because it's written in C#, but that's a near-constant 90% of the user base.

Reeve of shinra 01-10-2006 01:37 AM

Your making me want to cry here Filburt! Its not fair to tease us those of us who don't know C# like this!

Lizard King 01-10-2006 01:44 AM

Quote:

Originally Posted by Reeve of shinra
Your making me want to cry here Filburt! Its not fair to tease us those of us who don't know C# like this!

Same in here when i saw the note The WDF Notifier is a unique, simple, and beneficial application to Web Design Forums.net only. Sorry, but it is not available or for sale for other web sites. i felt terribly sorry. We all know sharing is important :P

filburt1 01-10-2006 01:56 AM

The application is actually extremely simple. It's all the server-side stuff that's more important. The architecture lets me add new notification types and messages without ever upgrading the client.

Go-go ubiquitous data formats.

EricaJoy 01-10-2006 04:58 PM

Quote:

Originally Posted by filburt1
Extensions are for chumps, plus it doesn't apply to the 65% to 95% of the people using your site who use IE. Real men write full applications: http://www.webdesignforums.net/wdf_notifs_about.php . Course that limits it to Windows because it's written in C#, but that's a near-constant 90% of the user base.

Well I guess I'm okay with my firefox extension then. :P :cheeky:

Reeve of shinra 01-10-2006 05:36 PM

Quote:

Originally Posted by filburt1
The application is actually extremely simple. It's all the server-side stuff that's more important. The architecture lets me add new notification types and messages without ever upgrading the client.

Go-go ubiquitous data formats.

Is the server side stuff written in php or c# and are you using native vb features? I imagine you had to add something for the PM notification.

filburt1 01-10-2006 11:13 PM

The server-side is all PHP with some commonly installed PHP extensions (the server runs Linux so C# would be out anyway). Everything is done with custom scripts and hooks. Not one file on my site has been edited from vB's default.


All times are GMT. The time now is 04:43 PM.

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.01248 seconds
  • Memory Usage 1,818KB
  • 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
  • (1)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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