mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
cea5507d51
This uses a new fancy inline video display and also shows newly created screencasts, specifically for GitX v0.5
2.2 KiB
2.2 KiB
<script type="text/javascript" charset="utf-8">
var screenshots = screenshots = "The Commit View", 892], ["The History View", 891;
var screencasts = [
[1, "History View", "This video demonstrates basic GitX features that you can use to browse your repository's history"],
[2, "Branch control", "This video shows how you can use GitX to modify your branches"],
[3, "Committing", "This video shows you how you can commit your changes using GitX"],
[4, "Terminal Usage", "This video shows some of the features available when using the gitx command-line utility"],
[5, "Advanced Features", "This feature shows some of the advanced features available in GitX"]
]
var show_video = function(num)
{
var sc = screencasts[num];
document.getElementById("video").innerHTML = ''
document.getElementById("video_description").innerHTML = sc[2];
return false;
}
</script>
';
' + s[1] + ' ';
See it
Here you can have a look at what GitX looks like. There are screenshots and screencasts for you to enjoy!
Screenshots
<script type="text/javascript" charset="utf-8"> var screenshots_div = document.getElementById("screenshots_div"); for (screenshot in screenshots) { var s = screenshots[screenshot]; screenshots_div.innerHTML += '' + s[0] + '
' + '}
</script>
Screencasts
<script type="text/javascript" charset="utf-8"> var episodelist = document.getElementById("episodelist"); for (screencast in screencasts) { var s = screencasts[screencast]; episodelist.innerHTML += '}
</script>
