Click here to Skip to main content
15,888,610 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: HTML In Comments Pin
Chris Maunder15-Mar-11 2:27
cofounderChris Maunder15-Mar-11 2:27 
GeneralRe: HTML In Comments Pin
Ali Al Omairi(Abu AlHassan)15-Mar-11 13:46
professionalAli Al Omairi(Abu AlHassan)15-Mar-11 13:46 
GeneralRe: HTML In Comments Pin
Chris Maunder15-Mar-11 14:50
cofounderChris Maunder15-Mar-11 14:50 
GeneralRe: HTML In Comments Pin
Ali Al Omairi(Abu AlHassan)15-Mar-11 21:01
professionalAli Al Omairi(Abu AlHassan)15-Mar-11 21:01 
GeneralTT editing Pin
Luc Pattyn14-Mar-11 7:13
sitebuilderLuc Pattyn14-Mar-11 7:13 
GeneralRe: TT editing Pin
AspDotNetDev14-Mar-11 10:50
protectorAspDotNetDev14-Mar-11 10:50 
GeneralRe: TT editing Pin
Luc Pattyn14-Mar-11 11:05
sitebuilderLuc Pattyn14-Mar-11 11:05 
GeneralRe: TT editing Pin
Chris Maunder14-Mar-11 16:33
cofounderChris Maunder14-Mar-11 16:33 
Luc Pattyn wrote:
1. title length checks, just silly.


Allowing single word or pointlessly short questions: automatically avoidable. You've put me on notice enough times saying I should do more automated checks and balances of input and I think this falls squarely into that realm. I am, however, open to adjusting the limits, but I stand by the opinion that yes, it's simple to craft a very small title or question, but that it is just as easy and usually more valuable to be more descriptive.

In your "Using PRE tags" tip the title suggests to me a tip about using PRE tags in HTML. It's actually a tip about using PRE tags in CodeProject content so I would call it "Using PRE tags in questions and articles". It would certainly satisfy those who continually push for the wording on the site to be more accurate and descriptive.

Luc Pattyn wrote:
vertical spacing seems arbitrary; how can I get the first paragraph closer to its title, and consistently so?


The first paragraph is separated from the title by the abstract line and then the list of attrbiutes. You've added what looks like most of the main attributes to your "Using PRE Tags" tip which means when you shrink/expand your browser that line of attributes may wrap and drop the first paragraph down even more.

How about trimming the list of attributes to something reasonable? Or even just having the tags "CodeProject" and "Formatting" for example.

Luc Pattyn wrote:
HTML tags inside PRE: bold "works" and is hardly noticeable, italics does nothing, underline shows its tags. This has been better before.


Bold hasn't changed in years and italics are certainly working for me (and again, haven't changed). It's the nature of the courier font that we've used since day one. I can't remember a time we supported underline. We have always reserved the underline decoration for hyperlinks.

[Edit: I've added in support for underlines. I can see bold really well on all my monitors, but if you're having problems maybe so are others so this will give you another option]

Luc Pattyn wrote:
without lang="text" even the HTML-escape snippet would show odd coloring for no apparent reason.


You mean the block starting with <pre lang='cs'...?

Think what you're asking the colouriser to do: Do you want it to colourise the C# code, or the HTML tags? It can't do both because there's no syntax in practice that would ask for this. My best suggestion is to set the lang='html' and do something like
HTML
<pre lang='cs'>    <!-- the opening PRE tag (normally not visible!) -->

private static int multiply(int arg1, int arg2) {
    return arg1*arg2;
}

</pre>             <!-- the closing PRE tag (normally not visible!) -->


Although I am guessing this isn't what you're after. Alternatively I could add the option to use a <span class='no-colour'>...</span> to give you the ability to uncolour parts of the PRE text.

[Edit: adding "no-color" and "no-colour" now.]

Luc Pattyn wrote:
forums show some icon next to the author, Q&A lists total rep points, however articles and TT don't do any such thing, just a plain author name. why?


That's just the way the lists of those items evolved independently. I do have a task in the list to make these consistent.
cheers,
Chris Maunder

The Code Project | Co-founder
Microsoft C++ MVP

GeneralRe: TT editing Pin
Luc Pattyn14-Mar-11 17:23
sitebuilderLuc Pattyn14-Mar-11 17:23 
GeneralRe: TT editing Pin
Chris Maunder14-Mar-11 17:39
cofounderChris Maunder14-Mar-11 17:39 
Question"Message marked as answered" Pin
Kristian Sixhøj14-Mar-11 6:06
Kristian Sixhøj14-Mar-11 6:06 
AnswerRe: "Message marked as answered" Pin
Chris Maunder14-Mar-11 16:05
cofounderChris Maunder14-Mar-11 16:05 
GeneralRe: "Message marked as answered" Pin
Kristian Sixhøj14-Mar-11 20:56
Kristian Sixhøj14-Mar-11 20:56 
GeneralRe: "Message marked as answered" Pin
Chris Maunder15-Mar-11 2:46
cofounderChris Maunder15-Mar-11 2:46 
GeneralWYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
mgkr14-Mar-11 5:06
mgkr14-Mar-11 5:06 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
Luc Pattyn14-Mar-11 5:18
sitebuilderLuc Pattyn14-Mar-11 5:18 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) [modified] Pin
mgkr14-Mar-11 5:24
mgkr14-Mar-11 5:24 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
Luc Pattyn14-Mar-11 6:04
sitebuilderLuc Pattyn14-Mar-11 6:04 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
#realJSOP14-Mar-11 8:29
mve#realJSOP14-Mar-11 8:29 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
mgkr14-Mar-11 8:46
mgkr14-Mar-11 8:46 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
Sean Ewington14-Mar-11 5:33
staffSean Ewington14-Mar-11 5:33 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
mgkr14-Mar-11 5:47
mgkr14-Mar-11 5:47 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
Sean Ewington14-Mar-11 5:52
staffSean Ewington14-Mar-11 5:52 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
mgkr14-Mar-11 6:01
mgkr14-Mar-11 6:01 
GeneralRe: WYSIWIG article editor "refactors" code in pre blocks - When that code contains Generics (.NET) Pin
Pete O'Hanlon14-Mar-11 8:14
mvePete O'Hanlon14-Mar-11 8:14 

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

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