Click here to Skip to main content
15,991,072 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralLots of guideline breaking in the C# forums Pin
David198723-Aug-11 4:18
David198723-Aug-11 4:18 
GeneralRe: Lots of guideline breaking in the C# forums Pin
Nish Nishant23-Aug-11 5:30
sitebuilderNish Nishant23-Aug-11 5:30 
GeneralRe: Lots of guideline breaking in the C# forums Pin
Chris Maunder23-Aug-11 6:24
cofounderChris Maunder23-Aug-11 6:24 
Bugminor preview bug Pin
Dan Neely23-Aug-11 3:22
Dan Neely23-Aug-11 3:22 
GeneralRe: minor preview bug Pin
Nagy Vilmos23-Aug-11 3:45
professionalNagy Vilmos23-Aug-11 3:45 
GeneralRe: minor preview bug Pin
Dan Neely23-Aug-11 4:04
Dan Neely23-Aug-11 4:04 
QuestionRe: minor preview bug Pin
Luc Pattyn23-Aug-11 5:15
sitebuilderLuc Pattyn23-Aug-11 5:15 
AnswerRe: minor preview bug Pin
Dan Neely23-Aug-11 7:40
Dan Neely23-Aug-11 7:40 
white space at the end of a line, or the start of a line outside of a pre-block has no impact on the output. Ignoring it is a simple optimization to reduce server load and network traffic. The problem is that as currently implemented the code is:

C#
if (!IsWhiteSpace(newChar)) 
{
    UpdatePreview();
}


When it should be:

C#
if (!IsWhiteSpace(newChar) || 
    (IsWhiteSpace(newChar) && WhiteSpaceMattersHere(cursorPosition))) 
{
    UpdatePreview();
}


Oh and I spotted another minor bug. When wrapping text in a pre block the update isn't triggered when the pre tags are inserted, but when I click in the edit control returning its focus. (FF5.0)
Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason?
Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful?
--Zachris Topelius

GeneralRe: minor preview bug Pin
Luc Pattyn23-Aug-11 13:51
sitebuilderLuc Pattyn23-Aug-11 13:51 
GeneralRe: minor preview bug Pin
Luc Pattyn24-Aug-11 1:55
sitebuilderLuc Pattyn24-Aug-11 1:55 
GeneralRe: minor preview bug Pin
Chris Maunder24-Aug-11 3:02
cofounderChris Maunder24-Aug-11 3:02 
GeneralRe: minor preview bug Pin
Dan Neely24-Aug-11 3:30
Dan Neely24-Aug-11 3:30 
QuestionReputation points for survey discussion Pin
Dan Neely23-Aug-11 3:01
Dan Neely23-Aug-11 3:01 
AnswerRe: Reputation points for survey discussion Pin
Chris Maunder23-Aug-11 4:05
cofounderChris Maunder23-Aug-11 4:05 
GeneralRe: Reputation points for survey discussion Pin
Dan Neely23-Aug-11 4:17
Dan Neely23-Aug-11 4:17 
GeneralRe: Reputation points for survey discussion Pin
Nish Nishant23-Aug-11 5:32
sitebuilderNish Nishant23-Aug-11 5:32 
GeneralRe: Reputation points for survey discussion Pin
Slacker00724-Aug-11 0:47
professionalSlacker00724-Aug-11 0:47 
BugCritical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
Dan Neely23-Aug-11 2:55
Dan Neely23-Aug-11 2:55 
GeneralRe: Critical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
Ian Shlasko23-Aug-11 3:04
Ian Shlasko23-Aug-11 3:04 
GeneralRe: Critical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
Chris Maunder23-Aug-11 4:05
cofounderChris Maunder23-Aug-11 4:05 
GeneralRe: Critical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
Dan Neely23-Aug-11 4:08
Dan Neely23-Aug-11 4:08 
JokeRe: Critical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
Chris Maunder23-Aug-11 4:10
cofounderChris Maunder23-Aug-11 4:10 
GeneralRe: Critical jaw dropping catastrophic world ending showstopping nightmare bug!!!!111eleventyone Pin
AspDotNetDev23-Aug-11 6:54
protectorAspDotNetDev23-Aug-11 6:54 
SuggestionWe got a live one. Pin
fjdiewornncalwe23-Aug-11 2:24
professionalfjdiewornncalwe23-Aug-11 2:24 
SuggestionSpam suggestion Pin
Hans Dietrich23-Aug-11 2:23
mentorHans Dietrich23-Aug-11 2:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Flags: AnsweredFixedAccepted

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.