Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just looked at Gmail source, and I'm surprised the way they name id / class name.

This is just a curious what do them mean ? alt text

share|improve this question
2  
Having a hard time reading those names... – Klaus Byskov Pedersen Jan 4 '11 at 17:59
@Klaus Open image in new tab (using Chrome) which should provide actual size or go directly to the image itself i.imgur.com/RR4LI.png – Aaron McIver Jan 4 '11 at 18:00
1  
@Aaron ~ As long as Klaus has been around here, I think the joke was on the fact that it's been minified. – jcolebrand Jan 4 '11 at 18:01
@drachenstern Was a sizing assumption as the image at least for my eyes is not visible in the default context...;/ – Aaron McIver Jan 4 '11 at 18:02
@Aaron ~ It's not visible for anyone in the default context – jcolebrand Jan 4 '11 at 18:03
show 1 more comment

3 Answers

up vote 8 down vote accepted

Gmail uses a minifier on it's CSS and javascript - that's why you get such bizarre names for classes, ids, javascript variables, etc.

If I'm not mistaken they likely use something like GWT for building the site, and then compile it down to the form you're seeing.

share|improve this answer
Presumably to save bandwidth? – Nathan S. Jan 4 '11 at 18:00
@Nathan - for bandwidth, and with the added benefit of obfuscation! – Gavin Miller Jan 4 '11 at 18:01
3  
I doubt it was for intentional obfuscation. – jcolebrand Jan 4 '11 at 18:02

Knowing how much the Google guys care about caching, bandwidth and such, I suppose these names are just short random IDs generated by an automated CSS minifier.

share|improve this answer

The class names by themselves have no meaning in English. They have quite a bit of meaning to the browser, since they are tied to CSS declarations.

They also seem to indicate that Gmail is using a grid based system and a CSS minifier, for what that is worth.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.