Click here to Skip to main content
15,909,498 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: QA functionality misunderstood? Pin
Sandeep Mewara5-May-10 3:19
mveSandeep Mewara5-May-10 3:19 
GeneralRe: QA functionality misunderstood? Pin
Thiru Thirunavukarasu5-May-10 4:45
Thiru Thirunavukarasu5-May-10 4:45 
GeneralRe: QA functionality misunderstood? Pin
Matthew Dennis5-May-10 4:49
sysadminMatthew Dennis5-May-10 4:49 
GeneralMy QA Comments Pin
AspDotNetDev4-May-10 20:22
protectorAspDotNetDev4-May-10 20:22 
GeneralRe: My QA Comments Pin
Sandeep Mewara4-May-10 20:56
mveSandeep Mewara4-May-10 20:56 
GeneralRe: My QA Comments Pin
Thiru Thirunavukarasu5-May-10 4:46
Thiru Thirunavukarasu5-May-10 4:46 
GeneralSupporter icon blinking out entirely after showing halo Pin
Dan Neely4-May-10 9:59
Dan Neely4-May-10 9:59 
GeneralRe: Supporter icon blinking out entirely after showing halo Pin
Chris Maunder13-May-10 4:34
cofounderChris Maunder13-May-10 4:34 
GeneralNewline eaten following closing of strike tag. Pin
Dan Neely4-May-10 9:57
Dan Neely4-May-10 9:57 
GeneralRe: Newline eaten following closing of strike tag. Pin
Luc Pattyn4-May-10 11:48
sitebuilderLuc Pattyn4-May-10 11:48 
GeneralQA Comments - but where is "My vote of one"? Pin
OriginalGriff4-May-10 6:36
mveOriginalGriff4-May-10 6:36 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
Chris Maunder4-May-10 6:38
cofounderChris Maunder4-May-10 6:38 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
OriginalGriff4-May-10 8:18
mveOriginalGriff4-May-10 8:18 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
Dan Neely4-May-10 9:50
Dan Neely4-May-10 9:50 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
OriginalGriff4-May-10 9:59
mveOriginalGriff4-May-10 9:59 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
AspDotNetDev4-May-10 20:16
protectorAspDotNetDev4-May-10 20:16 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
Ankur\m/5-May-10 1:53
professionalAnkur\m/5-May-10 1:53 
GeneralRe: QA Comments - but where is "My vote of one"? Pin
Ankur\m/7-May-10 23:33
professionalAnkur\m/7-May-10 23:33 
GeneralQA comments animation Pin
Tom Deketelaere4-May-10 3:26
professionalTom Deketelaere4-May-10 3:26 
GeneralRe: QA comments animation Pin
Thiru Thirunavukarasu4-May-10 4:44
Thiru Thirunavukarasu4-May-10 4:44 
GeneralRe: QA comments animation Pin
Thiru Thirunavukarasu12-May-10 6:34
Thiru Thirunavukarasu12-May-10 6:34 
GeneralAhem... Chris Pin
#realJSOP4-May-10 0:14
professional#realJSOP4-May-10 0:14 
GeneralRe: Ahem... Chris Pin
Chris Maunder4-May-10 2:47
cofounderChris Maunder4-May-10 2:47 
GeneralRe: Ahem... Chris Pin
#realJSOP4-May-10 7:15
professional#realJSOP4-May-10 7:15 
GeneralRe: Ahem... Chris [modified] Pin
Luc Pattyn4-May-10 16:17
sitebuilderLuc Pattyn4-May-10 16:17 
Chris, there is more to it than that. I can provide you with a lot of details now.

Executive Summary: UserAgent is very relevant; dates can be off by 1 day.

Details:

1.
I already noticed CP Vanity sometimes shows dates that are off by 1 day when compared with what your article summary page shows. Example:
http://www.codeproject.com/script/Articles/MemberArticles.aspx?amid=648011[^] shows the CP Vanity article with "Last Updated: 6 Apr 2010" which is correct; the article itself also says "Updated: 6 Apr 2010". So far so good.

CP Vanity itself gets the same page (script/Articles/MemberArticles.aspx?amid=648011) showing "5 Apr 2010" and that is what my app displays.

I noticed this weeks ago, never took the time to investigate thoroughly.
FWIW: CP Vanity does not set a UserAgent.

2.
John is having bigger trouble, he wants to load an article itself and says he misses a lot of content.

3.
So I now downloaded CP Vanity[^] using an HttpWebRequest (without UserAgent) and it results in a file of 85KB. When I look at the same page with FireFox, View Source, and save that as text, it is 165KB and contains a lot more information, including menus and the full header block containing "Updated: 6 Apr 2010" which is completely absent in the WebHttpRequest result.

BTW: the UserAgent I used is:
req.UserAgent="Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.19) Gecko/2010031422 Firefox/3.0.17";



4.
The CP Vanity article shows (in Vista/FireFox):
Posted:	23 Mar 2010
Updated:	6 Apr 2010

The same URL downloaded with HttpWebRequest with my own UserAgent (the one my website gets from my system) contains:
<tr><td>Posted:</td><td><b>22 Mar 2010</b></td></tr>

<tr><td>Updated:</td><td><b>5 Apr 2010</b></td></tr>

so both dates are off by 1 day.


Conclusions

1. the UserAgent is very relevant; when absent a very slimmed down page is obtained. That explains Johns main problem.
2. with a realistic UserAgent, dates can be off by 1 day. I don't know why or how. Maybe you have an idea about that.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles]

Prolific encyclopedia fixture proof-reader browser patron addict?
We all depend on the beast below.


modified on Tuesday, May 4, 2010 10:28 PM

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.