CSS Templates and Blog Spam
Prior to this, the blog spammers, people that post either poker referrals, drug purchase links, 'hot' stocks, online diplomas [almost as bad as the USC DEN program!], or money making schemes all seem to never have posted on this '...' blog. I used to think that it was because it had custom CSS that I use to display the pages, and that comment bots couldn't figure out which link to click when they came to my page.
That can't be the case now though; I think that more and more pennies/day workers are being paid to drive views to sites rather than bots. I have to say that is the case, I had 15 comments my museum post which is pretty crazy considering I get like 1 unique visitor a month here and almost no real traffic [maybe I should talk about the iphone too!?].
To fight this I've turned on the blogger captchas, but still allow anonymous posts. I've also upgraded to the new blogger, but I can't tell any difference (other than the label/tag support [for which I didn't add to my CSS? hrrm]). *shrug*
Comments
I could probably write the script in almost no time.
blogID=14597313
postID=7237064045425469409
Which means that if you have an automated script, then how the hell can it match up the postID to the blogID? Try other combinations, they won't work.
Unless they loop through all those 18 digit integer hashes to try and find the one that works.
they could request the permalink and extract the blogId/postId values.
which means there is a small amount of html scraping, but no css impact.
However!
What you say is correct, and leads to my original point. Since I did not use an existing CSS Template when creating these pages, you can't use any sort of typical scraper to scrape the html!
However, they had to've updated thier stuff to use more robust scraping which was the point of the whole post.
Since we are not communicating in english, lets try ruby. 45 minutes of coding produces a way to map them.
http://www.thirstymind.org/scripts/bloggerMapping.rb
I since re-removed it: the html generated by the blogger software doesnt label the 'Post a Comment' link with "comment-link" class. That should help. Maybe I'll turn off the captchas again to see [they are turned off]!
So we will see.
I could have also looked for any href with a baseurl of http://www.blogger.com/comment.g (which I assume sploggers would do, instead of rely on a class identifier) and still successfully map a permalink to the postID.
CSS has nothing to do with being able to map a permalink to a postID. It can be mapped with or without CSS.