Click here to Skip to main content
16,018,973 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

 
GeneralArticle Voting Pin
Rama Krishna Vavilala4-Mar-07 4:16
Rama Krishna Vavilala4-Mar-07 4:16 
GeneralRe: Article Voting Pin
Colin Angus Mackay4-Mar-07 4:24
Colin Angus Mackay4-Mar-07 4:24 
JokeRe: Article Voting Pin
Rama Krishna Vavilala4-Mar-07 4:26
Rama Krishna Vavilala4-Mar-07 4:26 
GeneralRe: Article Voting Pin
Colin Angus Mackay4-Mar-07 4:51
Colin Angus Mackay4-Mar-07 4:51 
AnswerRe: Article Voting Pin
prasad_som4-Mar-07 16:50
prasad_som4-Mar-07 16:50 
GeneralRe: Article Voting Pin
Shog95-Mar-07 4:41
sitebuilderShog95-Mar-07 4:41 
GeneralRe: Article Voting Pin
Rama Krishna Vavilala5-Mar-07 4:48
Rama Krishna Vavilala5-Mar-07 4:48 
GeneralRe: Article Voting Pin
Shog95-Mar-07 5:12
sitebuilderShog95-Mar-07 5:12 
Rama Krishna Vavilala wrote:
my articles which I considered crappy got very high rating and the articles which I considered good got low rating.

Exactly. Just think of all those people who got it wrong. If only they'd had your vote to guide them...
Rama Krishna Vavilala wrote:
Is it difficult to write a GM script that can protect you?.


No. Here's a start (known bug: will only work for the first author on multi-author articles):
var authorLink = XPathNode(document, "//table[@class='ArticleHeader']//a[starts-with(@href, '/script/Articles/list_articles.asp')]");
var userLink = XPathNode(document, "//td[@class='userNavText']/a[starts-with(@href, '/script/profile/whos_who.asp')]");
if ( userLink && userLink.href.match(/id=(\d*)/) )
{
   var userId = RegExp.$1;
   if ( authorLink && authorLink.href.match(/id=(\d*)/) && userId == RegExp.$1 )
   {
      var voting = XPathNode(document, "//td[@class='ArticlePane']/form/table/tbody/tr/td/table/tbody/tr/td[2]");
      if ( voting )
         voting.parentNode.removeChild(voting);
   }
}
(Definition for XPathNode() can be found in CPhog source... or replace with document.evaluate())



----
It appears that everybody is under the impression that I approve of the documentation. You probably also blame Ken Burns for supporting slavery.
--Raymond Chen on MSDN

GeneralIt has become clear..... Pin
Bradml3-Mar-07 1:28
Bradml3-Mar-07 1:28 
GeneralRe: It has become clear..... Pin
Smith#3-Mar-07 22:26
Smith#3-Mar-07 22:26 
GeneralRe: It has become clear..... Pin
Bradml3-Mar-07 23:17
Bradml3-Mar-07 23:17 
GeneralRe: It has become clear..... [modified] Pin
Hesham Amin4-Mar-07 3:12
Hesham Amin4-Mar-07 3:12 
GeneralRe: It has become clear..... Pin
Bradml4-Mar-07 18:30
Bradml4-Mar-07 18:30 
GeneralRe: It has become clear..... Pin
hiral_shah5-Mar-07 2:55
hiral_shah5-Mar-07 2:55 
GeneralRe: It has become clear..... Pin
Ed.Poore5-Mar-07 4:28
Ed.Poore5-Mar-07 4:28 
GeneralRe: It has become clear..... Pin
Bradml5-Mar-07 9:38
Bradml5-Mar-07 9:38 
JokeRe: It has become clear..... Pin
Ed.Poore5-Mar-07 11:23
Ed.Poore5-Mar-07 11:23 
GeneralRe: It has become clear..... Pin
Bradml5-Mar-07 12:02
Bradml5-Mar-07 12:02 
GeneralRe: It has become clear..... Pin
S Douglas5-Mar-07 21:15
professionalS Douglas5-Mar-07 21:15 
GeneralRe: It has become clear..... Pin
Rama Krishna Vavilala5-Mar-07 5:04
Rama Krishna Vavilala5-Mar-07 5:04 
GeneralRe: It has become clear..... Pin
Bradml5-Mar-07 9:38
Bradml5-Mar-07 9:38 
GeneralRe: It has become clear..... Pin
MatrixCoder5-Mar-07 12:47
MatrixCoder5-Mar-07 12:47 
GeneralRe: It has become clear..... Pin
Bradml5-Mar-07 22:06
Bradml5-Mar-07 22:06 
GeneralRe: It has become clear..... Pin
S Douglas5-Mar-07 21:19
professionalS Douglas5-Mar-07 21:19 
GeneralRe: It has become clear..... Pin
Bradml5-Mar-07 22:05
Bradml5-Mar-07 22:05 

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.