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
Personal Notepad Details »»
Personal Notepad
Version: 3.1, by antialiasis antialiasis is offline
Developer Last Online: Nov 2013 Show Printable Version Email this Page

Category: Profile Enhancements - Version: 3.6.7 Rating:
Released: 11-02-2007 Last Update: 11-04-2007 Installs: 127
DB Changes Uses Plugins Auto-Templates
Translations  
No support by the author.

This is a port of my previous Personal Notepad hack for vBulletin 3.5, with some added features and modifications that had been requested. It now makes use of template hooks and is placed in a more convenient location for users.

This hack will add a personal notepad for your members - a feature you may know from for example Invision Power Board. For short, members will be able to edit the content of their own notepad as they want, storing in it whatever they might feel like.

1 automatic template edit
1 product to install

FEATURES

- A notepad in members' main user CP area where they can type in whatever notes they may want to take down and save them
- Notepad can be resized
- Javascript for allowing users to see when they have exceeded the character limit
- Admin CP options (turn on/off, maximum input length, liquid/fixed width, width of fixed-width notepad, usergroups allowed to use notepad)
- No manual template edits
- Fully phrased for easy translation

INSTALLATION

1. Import product-personal_notepad.xml through the Admin CP.
2. Edit the Personal Notepad options in the vBulletin options if desired. (It is automatically turned on upon installation, so if you want to start using it right away without worrying about the options, you can.)
3. There is no 3. You're done. Go inform your members of the addition.

VERSION HISTORY

3.1: Saved space in liquid-width notepad by putting character counter and textbox size changers in the same line, phrased some stuff that was forgotten and added usergroup limitations in the admin options.
3.0: Tweaks for fitting better with the look of vBulletin, cached template, Javascript counter for character limit, made notepad collapsible, added version history.
2.0: Ported to 3.6, added resizing function and admin CP options.
1.0: Initial release.

Show Your Support

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

Comments
  #72  
Old 04-25-2008, 07:39 AM
lood lood is offline
 
Join Date: Nov 2005
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Same problem as Wobbly
Reply With Quote
  #73  
Old 04-25-2008, 07:50 AM
Wobbly Goblin's Avatar
Wobbly Goblin Wobbly Goblin is offline
 
Join Date: Oct 2007
Location: Victorville, CA
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lood View Post
Same problem as Wobbly
I posted it over at vbulletin.com as well (vBulletin 3.6.10 Release Discussion). This is the answer I was given.
Quote:
Originally Posted by Onimua
As stated in the announcement, modifications might need to be updated to be compatible with the new security token system in vBulletin. You will need to contact the author of that modification for the update.
Reply With Quote
  #74  
Old 04-26-2008, 07:25 AM
Wobbly Goblin's Avatar
Wobbly Goblin Wobbly Goblin is offline
 
Join Date: Oct 2007
Location: Victorville, CA
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great news! Zero Tolerance wrote a nice little hack that fixed the problem I was having with the Personal Notepad & Event Attendance mods. Check it out --> Link
Reply With Quote
  #75  
Old 04-26-2008, 08:01 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Wobbly Goblin View Post
Great news! Zero Tolerance wrote a nice little hack that fixed the problem I was having with the Personal Notepad & Event Attendance mods. Check it out --> Link
In the xml

Find:

<input type="hidden" name="do" value="savenotepad" />

And add below it:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

and that will fix the security token error.
Reply With Quote
  #76  
Old 04-26-2008, 04:32 PM
Wobbly Goblin's Avatar
Wobbly Goblin Wobbly Goblin is offline
 
Join Date: Oct 2007
Location: Victorville, CA
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo View Post
In the xml

Find:

<input type="hidden" name="do" value="savenotepad" />

And add below it:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

and that will fix the security token error.
Thanks Boofo...that worked perfectly! I still need Zero's hack for the "Event Attendance" mod, but the Notepad works great without it. I appreciate your help.

Nick
Reply With Quote
  #77  
Old 04-26-2008, 05:06 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Wobbly Goblin View Post
Thanks Boofo...that worked perfectly! I still need Zero's hack for the "Event Attendance" mod, but the Notepad works great without it. I appreciate your help.

Nick
In the "Event Attendance"

Find:

<input type="hidden" name="e" value="$eventinfo[eventid]" />

BELOW it add:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Reply With Quote
  #78  
Old 04-26-2008, 05:24 PM
Wobbly Goblin's Avatar
Wobbly Goblin Wobbly Goblin is offline
 
Join Date: Oct 2007
Location: Victorville, CA
Posts: 60
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo View Post
In the "Event Attendance"

Find:

<input type="hidden" name="e" value="$eventinfo[eventid]" />

BELOW it add:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Excellent...that worked great! Zero's hack is now disabled and my "Personal Notepad" & "Event Attendance" mods are working perfectly.

Thanks again Boofo :up:

Nick
Reply With Quote
  #79  
Old 04-28-2008, 05:50 AM
RedeemedWarrior RedeemedWarrior is offline
 
Join Date: Apr 2008
Posts: 415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

works great
Reply With Quote
  #80  
Old 05-01-2008, 10:13 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a way to add a default message to this like IPB does that explains what you can use this for?
Reply With Quote
  #81  
Old 05-05-2008, 11:24 PM
Kaelon's Avatar
Kaelon Kaelon is offline
 
Join Date: Jan 2002
Posts: 405
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Boofo View Post
In the xml

Find:

<input type="hidden" name="do" value="savenotepad" />

And add below it:

<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />

and that will fix the security token error.
Perfect. For those who want to edit pre-existing installations, make the same edits in the "personal_notepad" template.
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 11:58 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.07399 seconds
  • Memory Usage 2,313KB
  • 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
  • (7)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
  • (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