Skip to content

Commit d60bfc6

Browse files
committed
added links
1 parent 73750b3 commit d60bfc6

File tree

6 files changed

+52
-2
lines changed

6 files changed

+52
-2
lines changed

_site/assets/css/robotframework.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ body > .section:nth-child(even){
9191

9292
#introduction:before,
9393
#introduction:after,
94+
#test-libraries:before,
95+
#test-libraries:after,
9496
#tools:before,
9597
#tools:after,
9698
#communication:before,
@@ -100,6 +102,7 @@ body > .section:nth-child(even){
100102
}
101103

102104
#introduction:after,
105+
#test-libraries:after,
103106
#tools:after,
104107
#communication:after {
105108
clear: both;
@@ -110,6 +113,7 @@ body > .section:nth-child(even){
110113
* Include this rule to trigger hasLayout and contain floats.
111114
*/
112115
#introduction,
116+
#test-libraries,
113117
#tools,
114118
#communication {
115119
*zoom: 1;
@@ -182,6 +186,7 @@ body > .section:nth-child(even){
182186
color: white;
183187
}
184188

189+
#test-libraries > .section,
185190
#tools > .section,
186191
#communication > .section {
187192
width: 30%;

_site/assets/js/robotframework.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ $( document ).ready(function() {
3939
init_carousel();
4040

4141
$( "#menu" ).scrollspy().find("a").click(function(){
42+
console.log('click');
4243
$(this).scrollspy( "refresh" );
4344
});
4445

_site/index.html

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,22 @@ <h2>Examples</h2>
118118
<div class="section" id="test-libraries">
119119
<h2>Test libraries</h2>
120120
<p>Test libraries lorem ipsum sil dolor est lorem ipsum sil dolor est lorem ipsum sil dolor est lorem ipsum sil dolor est</p>
121+
<div class="section" id="standard-test-libraries">
122+
<h3>Standard test libraries</h3>
123+
<ul class="simple">
124+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/BuiltInLibrary">Builtin</a></li>
125+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/OperatingSystemLibrary">OperatingSystem</a></li>
126+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/ScreenshotLibrary">Screenshot</a></li>
127+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/TelnetLibrary">Telnet</a></li>
128+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/CollectionsLibrary">Collections</a></li>
129+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/StringLibrary">String</a></li>
130+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/DialogsLibrary">Dialogs</a></li>
131+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/RemoteLibrary">Remote</a></li>
132+
<li><a class="reference external" href="http://code.google.com/p/robotframework/wiki/XMLLibrary">XML</a></li>
133+
</ul>
134+
</div>
135+
<div class="section" id="third-party-provided-libraries">
136+
<h3>Third party provided libraries</h3>
121137
<ul class="simple">
122138
<li><a class="reference external" href="http://code.google.com/p/robotframework-autoitlibrary/">AutoItLibrary</a></li>
123139
<li><a class="reference external" href="http://franz-see.github.com/Robotframework-Database-Library/">Database Library (Java)</a></li>
@@ -135,6 +151,7 @@ <h2>Test libraries</h2>
135151
<li><a class="reference external" href="http://code.google.com/p/robotframework-watinlibrary/">WatinLibrary</a></li>
136152
</ul>
137153
</div>
154+
</div>
138155
<div class="section" id="tools">
139156
<h2>Tools</h2>
140157
<p>Tools provide lorem ipsum lorem ipsumlorem ipsumlorem ipsumlorem ipsum ipsum lorem ipsumlorem ipsumlorem ipsumlorem ipsum</p>
@@ -151,6 +168,8 @@ <h3>Editors</h3>
151168
</li>
152169
<li><p class="first"><a class="reference external" href="https://github.com/sakari/robot-mode">Emacs major mode</a></p>
153170
</li>
171+
<li><p class="first"><a class="reference external" href="https://github.com/shellderp/sublime-robot-plugin">Sublime plugin</a></p>
172+
</li>
154173
<li><p class="first"><a class="reference external" href="https://bitbucket.org/jussimalinen/robot.tmbundle/">TextMate bundle</a></p>
155174
</li>
156175
<li><p class="first"><a class="reference external" href="https://github.com/mfukar/robotframework-vim">Vim plugin</a></p>
@@ -200,7 +219,8 @@ <h3>Mailing lists</h3>
200219
<li><a class="reference external" href="http://groups.google.com/group/robotframework-announce">robotframework-announce</a></li>
201220
<li><a class="reference external" href="http://groups.google.com/group/robotframework-devel">robotframework-devel</a></li>
202221
<li><a class="reference external" href="http://groups.google.com/group/robotframework-commit">robotframework-commit</a></li>
203-
<li><a class="reference external" href="http://groups.google.com/group/robotframework-ja">japanese users list</a></li>
222+
<li><a class="reference external" href="http://groups.google.com/group/robotframework-ja">Japanese users list</a></li>
223+
<li><a class="reference external" href="http://groups.google.com/group/robotframework-cn">Chinese users list</a></li>
204224
</ul>
205225
</div>
206226
<div class="section" id="irc">

assets/css/robotframework.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ body > .section:nth-child(even){
9191

9292
#introduction:before,
9393
#introduction:after,
94+
#test-libraries:before,
95+
#test-libraries:after,
9496
#tools:before,
9597
#tools:after,
9698
#communication:before,
@@ -100,6 +102,7 @@ body > .section:nth-child(even){
100102
}
101103

102104
#introduction:after,
105+
#test-libraries:after,
103106
#tools:after,
104107
#communication:after {
105108
clear: both;
@@ -110,6 +113,7 @@ body > .section:nth-child(even){
110113
* Include this rule to trigger hasLayout and contain floats.
111114
*/
112115
#introduction,
116+
#test-libraries,
113117
#tools,
114118
#communication {
115119
*zoom: 1;
@@ -182,6 +186,7 @@ body > .section:nth-child(even){
182186
color: white;
183187
}
184188

189+
#test-libraries > .section,
185190
#tools > .section,
186191
#communication > .section {
187192
width: 30%;

assets/js/robotframework.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ $( document ).ready(function() {
3939
init_carousel();
4040

4141
$( "#menu" ).scrollspy().find("a").click(function(){
42+
console.log('click');
4243
$(this).scrollspy( "refresh" );
4344
});
4445

index.rst

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,22 @@ Test libraries
8282

8383
Test libraries lorem ipsum sil dolor est lorem ipsum sil dolor est lorem ipsum sil dolor est lorem ipsum sil dolor est
8484

85+
Standard test libraries
86+
-----------------------
87+
88+
- `Builtin <http://code.google.com/p/robotframework/wiki/BuiltInLibrary>`_
89+
- `OperatingSystem <http://code.google.com/p/robotframework/wiki/OperatingSystemLibrary>`_
90+
- `Screenshot <http://code.google.com/p/robotframework/wiki/ScreenshotLibrary>`_
91+
- `Telnet <http://code.google.com/p/robotframework/wiki/TelnetLibrary>`_
92+
- `Collections <http://code.google.com/p/robotframework/wiki/CollectionsLibrary>`_
93+
- `String <http://code.google.com/p/robotframework/wiki/StringLibrary>`_
94+
- `Dialogs <http://code.google.com/p/robotframework/wiki/DialogsLibrary>`_
95+
- `Remote <http://code.google.com/p/robotframework/wiki/RemoteLibrary>`_
96+
- `XML <http://code.google.com/p/robotframework/wiki/XMLLibrary>`_
97+
98+
Third party provided libraries
99+
------------------------------
100+
85101
- `AutoItLibrary <http://code.google.com/p/robotframework-autoitlibrary/>`_
86102
- `Database Library (Java) <http://franz-see.github.com/Robotframework-Database-Library/>`_
87103
- `Database Library (Python) <https://github.com/ThomasJaspers/robotframework-dblibrary>`_
@@ -108,6 +124,7 @@ Editors
108124
is an IDE tool for editing test data.
109125
- `Eclipse plugin <https://github.com/NitorCreations/RobotFramework-EclipseIDE>`_
110126
- `Emacs major mode <https://github.com/sakari/robot-mode>`_
127+
- `Sublime plugin <https://github.com/shellderp/sublime-robot-plugin>`_
111128
- `TextMate bundle <https://bitbucket.org/jussimalinen/robot.tmbundle/>`_
112129
- `Vim plugin <https://github.com/mfukar/robotframework-vim>`_
113130

@@ -138,7 +155,8 @@ Mailing lists
138155
- `robotframework-announce <http://groups.google.com/group/robotframework-announce>`_
139156
- `robotframework-devel <http://groups.google.com/group/robotframework-devel>`_
140157
- `robotframework-commit <http://groups.google.com/group/robotframework-commit>`_
141-
- `japanese users list <http://groups.google.com/group/robotframework-ja>`_
158+
- `Japanese users list <http://groups.google.com/group/robotframework-ja>`_
159+
- `Chinese users list <http://groups.google.com/group/robotframework-cn>`_
142160

143161

144162
IRC

0 commit comments

Comments
 (0)