comparison src/en/index.html @ 30:d13070c29a6c

Added Quick Start for all but Windows users and made the TortoiseHG image jump ofer that with piranhas JavaScript code - can be replaced with dynamic page creation later on.
author Arne Babenhauserheide <bab@draketo.de>
date Mon, 16 Feb 2009 09:24:03 +0100
parents 18110c461824
children 79b76605bbc4
comparison
equal deleted inserted replaced
29:18110c461824 30:d13070c29a6c
51 <dd><a href="javascript:void(0);">Linux</a></dd> 51 <dd><a href="javascript:void(0);">Linux</a></dd>
52 </dl> 52 </dl>
53 </div> 53 </div>
54 </div> 54 </div>
55 55
56 <div id="replace">
57 That's a default content here
58 </div>
59
60 <div class="row"> 56 <div class="row">
61 <div class="col big"> 57 <div class="col big">
62 <h3>How you can benefit from Mercurial</h3> 58 <h3>How you can benefit from Mercurial</h3>
63 <ol> 59 <ol>
64 <li class="i-1"> 60 <li class="i-1">
74 <p>Mercurial strives to deliver on each of its promises. Most tasks simply work on the first try and without requiring arcane knowledge. (If one doesn't, that's most likely no feature but a <a href="http://selenic.com/mercurial/bugs/">bug</a>. Please <a href="http://selenic.com/mercurial/bugs/">tell us about it</a>!)</p> 70 <p>Mercurial strives to deliver on each of its promises. Most tasks simply work on the first try and without requiring arcane knowledge. (If one doesn't, that's most likely no feature but a <a href="http://selenic.com/mercurial/bugs/">bug</a>. Please <a href="http://selenic.com/mercurial/bugs/">tell us about it</a>!)</p>
75 </li> 71 </li>
76 </ol> 72 </ol>
77 </div> 73 </div>
78 <div class="col"> 74 <div class="col">
79 <h3>Mercurial in action</h3> 75 <h3>Mercurial Quick Start</h3>
80 <!-- Flash Player should definitely not come here!--> 76
81 <img src="images/tour.jpg" alt=""> 77 <div id="replace">
78 <p><em>Clone a project and create a patch</em></p>
79
80 <pre>$ hg clone http://bitbucket.org/ArneBab/hello
81 $ cd hello
82 $ (edit files)
83 $ hg add (new files)
84 $ hg commit -m 'My changes'
85 $ hg export > patch.diff
86
87 </pre>
88
89 <p><em>Create a project and commit</em></p>
90
91 <pre>$ hg init (project-directory)
92 $ (add some files)
93 $ hg add
94 $ hg commit -m 'Initial commit'
95
96 </pre>
97 </div>
98
82 </div> 99 </div>
83 </div> 100 </div>
84 </div> 101 </div>
85 102
86 <div id="footer"> 103 <div id="footer">