Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 10-03-2004, 03:06 PM
robert_2004 robert_2004 is offline
 
Join Date: Sep 2004
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default sToP pEoPle TaLkiNg LiKe tHiS!!!

referring to my title, i really hate it when members write like this. my moderators end up re-writing the post, or deleting it, just to fix it.

i'm not sure what to call this, so i couldn't exaclty search for something on the forum now.

Has anyone made a mod like this yet, that someone could kindly point me in the right direction??

If not, i would like a script that would auto happen (auto pick up the member want to post like that) or a button so my mods can select all the words, press the button, and the writing goes normal (with capitols after full stops, etc - would be great :squareeyed: )
Reply With Quote
  #2  
Old 10-03-2004, 03:19 PM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

CaN'T YoU PrEvEnT ShOuTiNg FrOm ThE AdMiNcP?
Reply With Quote
  #3  
Old 10-03-2004, 03:23 PM
Surtain23's Avatar
Surtain23 Surtain23 is offline
 
Join Date: Sep 2004
Location: Western New York
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

He DoEsNt MeAn ShOuTiNg

Caps, lowercase, caps, lowercase, ect. Very annoying.
Reply With Quote
  #4  
Old 10-03-2004, 03:27 PM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ya i hate those also, thought it would be funny to do it. Alway reminds me of the chat rooms in AOL 3.0 .

I'll look at php.net for a command in refrence to this...
Reply With Quote
  #5  
Old 10-03-2004, 03:44 PM
Velocd's Avatar
Velocd Velocd is offline
 
Join Date: Mar 2002
Location: CA University
Posts: 1,696
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

A script could easily be made to autocorrect their mispellings, but that isn't going to teach the people not to type that way. You should instead make it more aware to your members that poor grammar and inappropriate mixture of caps makes it hard for people to read posts, and ask (or maybe enforce) them to not do it.

But, for an automated fix something like this would do it (found from PHP.net):
PHP Code:
function RemoveShouting($string)
{
 
$lower_exceptions = array(
       
"to" => "1""a" => "1""the" => "1""of" => "1"
 
);
                                     
 
$higher_exceptions = array(
       
"I" => "1""II" => "1""III" => "1""IV" => "1",
       
"V" => "1""VI" => "1""VII" => "1""VIII" => "1",
       
"XI" => "1""X" => "1"
 
);

 
$words split(" "$string);
 
$newwords = array(); 
 
 foreach (
$words as $word)
 {
       if (!
$higher_exceptions[$word])
               
$word strtolower($word);
       if (!
$lower_exceptions[$word])
               
$word ucfirst($word);
         
array_push($newwords$word);
 
 }
       
 return 
join(" "$newwords);  

Reply With Quote
  #6  
Old 10-03-2004, 04:25 PM
robert_2004 robert_2004 is offline
 
Join Date: Sep 2004
Posts: 126
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i remember seeing a forum that allowed the use to change all your words INTO the shOuTiNg StYLe, but can't remember where forum / what site.

thanks velocd, i'll look at this in the morning
Reply With Quote
  #7  
Old 10-03-2004, 05:48 PM
Talisman's Avatar
Talisman Talisman is offline
 
Join Date: Aug 2002
Location: USA/West Coast
Posts: 371
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by robert_2004
i really hate it when members write like this. my moderators end up re-writing the post, or deleting it, just to fix it.
If there was a simple hack to install that would correct the typing automatically, that would be very handy. Since there isn't one that would fix this, I'd suggest you contact the member(s) directly. Let them know it's not cool to deliberately annoy your community like this and tell them you're simply not going to allow it. Ask them to stop "nicely" the first time; repeat the warning more firmly one time after that.

Then, if they continue playing games like this with their posts, slap them into a "Miserable User" status and be done with it.

https://vborg.vbsupport.ru/showthrea...miserable+user

Now the situation is effectively reversed. Either ignore them completely when they get irritated and start to complain... or just blow them off with polite (but useless) replies. You could suggest they must be having connection problems, say the server's been acting weird lately, tell them to check with their ISP, or blame it on solar flares.
Reply With Quote
  #8  
Old 10-03-2004, 05:58 PM
miz miz is offline
 
Join Date: Mar 2003
Posts: 416
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

well i have another idea for that,

need to make a function that check if post is like that

only to check not to replace

if check_shout=="yes" then

print stantard error ( dont shout ++++er)

so the user will need to rewrite his msg again only without the shouting thing

after 2-3 times same user edit his posts again and again
he will learn, and post normally
or else he wont be able to post

what do you think about this idea ?

i think its better then warning etc etc
Reply With Quote
  #9  
Old 10-03-2004, 06:14 PM
Logikos Logikos is offline
 
Join Date: Jan 2003
Posts: 2,924
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Would if a user wants to add the title to his thread like this:

Today Microsoft Drops Two Points

See the caps? Would need to make it so it don't take caps off of all the words.
Reply With Quote
  #10  
Old 10-03-2004, 07:57 PM
Colin F's Avatar
Colin F Colin F is offline
 
Join Date: Jul 2004
Location: Switzerland
Posts: 1,551
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

maybe check for the amount of capital letters in the text and if it's over a certain percentige, echo an error message?
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 08:32 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.09435 seconds
  • Memory Usage 2,268KB
  • Queries Executed 13 (?)
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)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)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_postinfo_query
  • fetch_postinfo
  • 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