Click here to Skip to main content
15,886,422 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

 
GeneralRe: C++ code formatting problems Pin
Chris Maunder25-Jun-21 8:06
cofounderChris Maunder25-Jun-21 8:06 
GeneralRe: C++ code formatting problems Pin
Espen Harlinn25-Jun-21 12:12
professionalEspen Harlinn25-Jun-21 12:12 
GeneralRe: C++ code formatting problems Pin
Nelek26-Jun-21 1:09
protectorNelek26-Jun-21 1:09 
GeneralRe: C++ code formatting problems Pin
Espen Harlinn26-Jun-21 1:28
professionalEspen Harlinn26-Jun-21 1:28 
JokeRe: C++ code formatting problems Pin
Nelek26-Jun-21 3:18
protectorNelek26-Jun-21 3:18 
GeneralRe: C++ code formatting problems Pin
Nelek25-Jun-21 8:20
protectorNelek25-Jun-21 8:20 
GeneralRe: C++ code formatting problems Pin
Espen Harlinn25-Jun-21 12:06
professionalEspen Harlinn25-Jun-21 12:06 
SuggestionIn Q&A, TextBox messing user input. Pin
Patrice T17-Jun-21 10:38
mvePatrice T17-Jun-21 10:38 
In Q&A and probably in other places, TextBoxes (including comments) are changing user input on their own.
- During user input/edition, preview look good.
- When 'Submit you question' is hit, a process alter user input.
C++
// because of '< ' anything goes well
for(int i=0; i< n; i++) {
    a += i;
}

C++
// because of '<n' anything after it gets lost
for(int i=0; i<n; i++) {
    a += i;
}

C++
// if there is '<n' 2 times, everything in between is messed
for(int i=0; i<n; i++) {
    a += i;
}
for(int i=0; i<n; i++) {
    a += i;
}

Encoding the input prevent problems.
My understanding:
As soon '<n' is encountered, process recognize as beginning of xml/html tag and remove anything after it if there is only 1.
If there is 2 '<n', anything in between gets altered with some '=""' inserted between words.

I think it would be more natural if the feature was deactivated by default

I am sure I already reported same thing, but unable to find it in forum history.
Patrice

“Everything should be made as simple as possible, but no simpler.” Albert Einstein

GeneralRe: In Q&A, TextBox messing user input. Pin
Greg Utas17-Jun-21 11:55
professionalGreg Utas17-Jun-21 11:55 
GeneralRe: In Q&A, TextBox messing user input. Pin
Patrice T17-Jun-21 12:00
mvePatrice T17-Jun-21 12:00 
GeneralRe: In Q&A, TextBox messing user input. Pin
Matthew Dennis21-Jun-21 4:55
sysadminMatthew Dennis21-Jun-21 4:55 
GeneralRe: In Q&A, TextBox messing user input. Pin
Patrice T21-Jun-21 18:27
mvePatrice T21-Jun-21 18:27 
GeneralRe: In Q&A, TextBox messing user input. Pin
Chris Maunder22-Jun-21 7:50
cofounderChris Maunder22-Jun-21 7:50 
GeneralRe: In Q&A, TextBox messing user input. Pin
Patrice T22-Jun-21 8:38
mvePatrice T22-Jun-21 8:38 
GeneralRe: In Q&A, TextBox messing user input. Pin
Patrice T30-Jun-21 9:29
mvePatrice T30-Jun-21 9:29 
SuggestionJust a thought about article downloads. Pin
OriginalGriff16-Jun-21 20:10
mveOriginalGriff16-Jun-21 20:10 
SuggestionLost all my work Pin
CodeErgoSum14-Jun-21 20:55
CodeErgoSum14-Jun-21 20:55 
GeneralRe: Lost all my work Pin
CodeErgoSum14-Jun-21 21:02
CodeErgoSum14-Jun-21 21:02 
GeneralRe: Lost all my work Pin
CodeErgoSum14-Jun-21 21:20
CodeErgoSum14-Jun-21 21:20 
GeneralRe: Lost all my work Pin
Greg Utas15-Jun-21 0:26
professionalGreg Utas15-Jun-21 0:26 
GeneralRe: Lost all my work Pin
Matthew Dennis21-Jun-21 5:04
sysadminMatthew Dennis21-Jun-21 5:04 
QuestionWeekly poll, multiselect? Pin
Wendelius14-Jun-21 4:31
mentorWendelius14-Jun-21 4:31 
BugLayout problems Pin
Richard Deeming7-Jun-21 23:58
mveRichard Deeming7-Jun-21 23:58 
GeneralRe: Layout problems Pin
Richard MacCutchan8-Jun-21 0:26
mveRichard MacCutchan8-Jun-21 0:26 
GeneralRe: Layout problems Pin
Richard Deeming8-Jun-21 0:39
mveRichard Deeming8-Jun-21 0:39 

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

Flags: SolvedFixedAnswered

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