I've been researching the best way to utilize HTML5's history api aka psuhState with a proper fallback for HTML4 browsers.

Github uses the history api for its tree browsing (the following link is just an example, not the library github uses):

https://github.com/balupton/History.js/

What I can't figure out is how they handle this functionality for HTML4 browsers such as Firefox 3.5?

I've looked at, specifically, history.js (linked above) to handle this sort of thing. But it requires a hash # implementation for HTML4 browsers which I'd like to avoid.

If you visit Github and browse a directory tree using an HTML4 browser, it looks identical to an HTML5 browser (the url state, that is).

If I disable JavaScript in FF3.5, a URL which previously looked like this:

https://github.com/balupton/history.js/tree/master/tests

now looks like this:

https://github.com/balupton/history.js/tree/a32e91aa1fe5909a29abb690a37f6c129e98068e/tests

Any thoughts?

link|improve this question

57% accept rate
feedback

2 Answers

up vote 5 down vote accepted

GitHub uses http://pjax.heroku.com/

For browsers that don't support pushState it simply degrades to normal old boring full-page-load behaviour.

link|improve this answer
So for that fallback behavior, does that mean Github is physically creating those directories on the server? Or are they creating the directories on the fly somehow? I'm confused about how they operate the fallback technique? – Yahreen Jul 5 '11 at 18:44
Directories? ... – Tekkub Jul 5 '11 at 19:36
Are they creating the folder structure on the server? – Yahreen Jul 6 '11 at 2:55
No, what's being displayed is just a rendering of what's contained in the repo. – Tekkub Jul 6 '11 at 3:52
this uses rails am i right? Anyone know of a less complicated solution? – Ricki Jul 21 '11 at 9:40
show 1 more comment
feedback

Responsive web design from the future is a 96 slide presentation from Kyle Neath, a designer that works at GitHub, that might help you.

pushState. replaceState. Hashbangs. AJAX. PJAX. Beets. Bears. Battlestar Galactica.

Responsive web design is about a lot more than the size of your screen. This talk is about about how GitHub handles links, the url bar, partial page updates, and explains why I think the HTML5 history API is the most important thing to happen to front end development since Firebug.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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