Skip to content

Commit c9ef8dd

Browse files
author
Antti Karjalainen
committed
Changes based on user feedback:
- Re-arrange library sections - Rename support ”paid” to ”vendors”
1 parent ceabcdc commit c9ef8dd

File tree

1 file changed

+116
-123
lines changed

1 file changed

+116
-123
lines changed

sources/src/App.vue

Lines changed: 116 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -89,40 +89,83 @@ export default {
8989
},
9090
tabs: [
9191
{
92-
title: "Other",
92+
title: "Standard",
9393
items: [
9494
{
95-
title: "Creating test libraries",
95+
title: "Builtin",
9696
href:
97-
"http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries",
97+
"http://robotframework.org/robotframework/#standard-libraries",
9898
text:
99-
"Creating test libraries section in Robot Framework User Guide."
99+
"Provides a set of often needed generic keywords. Always automatically available without imports."
100100
},
101101
{
102-
title: "plone.app.robotframework",
102+
title: "Dialogs",
103103
href:
104-
"https://pypi.python.org/pypi/plone.app.robotframework",
104+
"http://robotframework.org/robotframework/#standard-libraries",
105105
text:
106-
"Provides resources and tools for writing functional Selenium tests for Plone CMS and its add-ons."
106+
"Provides means for pausing the test execution and getting input from users."
107107
},
108108
{
109-
title: "JavalibCore",
110-
href: "https://github.com/robotframework/JavalibCore/wiki",
109+
title: "Collections",
110+
href:
111+
"http://robotframework.org/robotframework/#standard-libraries",
111112
text:
112-
"Base for implementing larger Java based test libraries for Robot Framework."
113+
"Provides a set of keywords for handling Python lists and dictionaries."
114+
},
115+
{
116+
title: "OperatingSystem",
117+
href:
118+
"http://robotframework.org/robotframework/#standard-libraries",
119+
text:
120+
"Enables various operating system related tasks to be performed in the system where Robot Framework is running."
113121
},
114122
{
115123
title: "Remote",
116124
href: "https://github.com/robotframework/RemoteInterface",
117125
text:
118-
"Built-in special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol."
126+
"Special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol."
119127
},
120128
{
121-
title: "RemoteApplications",
129+
title: "Screenshot",
122130
href:
123-
"https://github.com/robotframework/RemoteApplications",
131+
"http://robotframework.org/robotframework/#standard-libraries",
124132
text:
125-
"Special test library for launching Java applications on a separate JVM and taking other libraries into use on them."
133+
"Provides keywords to capture screenshots of the desktop."
134+
},
135+
{
136+
title: "String",
137+
href:
138+
"http://robotframework.org/robotframework/#standard-libraries",
139+
text:
140+
"Library for generating, modifying and verifying strings."
141+
},
142+
{
143+
title: "Telnet",
144+
href:
145+
"http://robotframework.org/robotframework/#standard-libraries",
146+
text:
147+
"Makes it possible to connect to Telnet servers and execute commands on the opened connections."
148+
},
149+
{
150+
title: "XML",
151+
href:
152+
"http://robotframework.org/robotframework/#standard-libraries",
153+
text:
154+
"Library for generating, modifying and verifying XML files."
155+
},
156+
{
157+
title: "Process",
158+
href:
159+
"http://robotframework.org/robotframework/#standard-libraries",
160+
text:
161+
"Library for running processes in the system. New in Robot Framework 2.8."
162+
},
163+
{
164+
title: "DateTime",
165+
href:
166+
"http://robotframework.org/robotframework/#standard-libraries",
167+
text:
168+
"Library for date and time conversions. New in Robot Framework 2.8.5."
126169
}
127170
]
128171
},
@@ -359,83 +402,40 @@ export default {
359402
]
360403
},
361404
{
362-
title: "Standard",
405+
title: "Other",
363406
items: [
364407
{
365-
title: "Builtin",
366-
href:
367-
"http://robotframework.org/robotframework/#standard-libraries",
368-
text:
369-
"Provides a set of often needed generic keywords. Always automatically available without imports."
370-
},
371-
{
372-
title: "Dialogs",
408+
title: "Creating test libraries",
373409
href:
374-
"http://robotframework.org/robotframework/#standard-libraries",
410+
"http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries",
375411
text:
376-
"Provides means for pausing the test execution and getting input from users."
412+
"Creating test libraries section in Robot Framework User Guide."
377413
},
378414
{
379-
title: "Collections",
415+
title: "plone.app.robotframework",
380416
href:
381-
"http://robotframework.org/robotframework/#standard-libraries",
417+
"https://pypi.python.org/pypi/plone.app.robotframework",
382418
text:
383-
"Provides a set of keywords for handling Python lists and dictionaries."
419+
"Provides resources and tools for writing functional Selenium tests for Plone CMS and its add-ons."
384420
},
385421
{
386-
title: "OperatingSystem",
387-
href:
388-
"http://robotframework.org/robotframework/#standard-libraries",
422+
title: "JavalibCore",
423+
href: "https://github.com/robotframework/JavalibCore/wiki",
389424
text:
390-
"Enables various operating system related tasks to be performed in the system where Robot Framework is running."
425+
"Base for implementing larger Java based test libraries for Robot Framework."
391426
},
392427
{
393428
title: "Remote",
394429
href: "https://github.com/robotframework/RemoteInterface",
395430
text:
396-
"Special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol."
397-
},
398-
{
399-
title: "Screenshot",
400-
href:
401-
"http://robotframework.org/robotframework/#standard-libraries",
402-
text:
403-
"Provides keywords to capture screenshots of the desktop."
404-
},
405-
{
406-
title: "String",
407-
href:
408-
"http://robotframework.org/robotframework/#standard-libraries",
409-
text:
410-
"Library for generating, modifying and verifying strings."
411-
},
412-
{
413-
title: "Telnet",
414-
href:
415-
"http://robotframework.org/robotframework/#standard-libraries",
416-
text:
417-
"Makes it possible to connect to Telnet servers and execute commands on the opened connections."
418-
},
419-
{
420-
title: "XML",
421-
href:
422-
"http://robotframework.org/robotframework/#standard-libraries",
423-
text:
424-
"Library for generating, modifying and verifying XML files."
425-
},
426-
{
427-
title: "Process",
428-
href:
429-
"http://robotframework.org/robotframework/#standard-libraries",
430-
text:
431-
"Library for running processes in the system. New in Robot Framework 2.8."
431+
"Built-in special library acting as a proxy between Robot Framework and test libraries elsewhere. Actual test libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol."
432432
},
433433
{
434-
title: "DateTime",
434+
title: "RemoteApplications",
435435
href:
436-
"http://robotframework.org/robotframework/#standard-libraries",
436+
"https://github.com/robotframework/RemoteApplications",
437437
text:
438-
"Library for date and time conversions. New in Robot Framework 2.8.5."
438+
"Special test library for launching Java applications on a separate JVM and taking other libraries into use on them."
439439
}
440440
]
441441
}
@@ -824,18 +824,11 @@ export default {
824824
text:
825825
"Master's Thesis by Pekka Klärck (né Laukkanen) that introduced Robot Framework concept."
826826
},
827-
{
828-
title: "Codecentric / Agile Testing",
829-
href:
830-
"http://blog.codecentric.de/en/category/agile/agile-testing/",
831-
text:
832-
"Robot Framework and Agile testing related blog posts by Codecentric."
833-
}
834827
]
835828
},
836829
{
837-
title: "Paid",
838-
data: [
830+
title: "Paid courses",
831+
items: [
839832
{
840833
title: "eTestingAcademy",
841834
href: "http://www.etestingacademy.com/",
@@ -899,49 +892,7 @@ export default {
899892
]
900893
},
901894
{
902-
title: "Other",
903-
items: [
904-
{
905-
title: "LinkedIn",
906-
href:
907-
"http://www.linkedin.com/groups/Robot-Framework-3710899",
908-
text: "Robot Framework group on LinkedIn."
909-
},
910-
{
911-
title: "AT.info",
912-
href:
913-
"http://automated-testing.info/category/robot-framework",
914-
text: "Robot Framework help forum по-русски."
915-
},
916-
{
917-
title: "robotframework-devel",
918-
href: "http://groups.google.com/group/robotframework-devel",
919-
text:
920-
"Mailing list for contributors and developers of the Robot Framework ecosystem."
921-
},
922-
{
923-
title: "Helsinki Meetup group",
924-
href: "https://www.meetup.com/Robot-Framework-Helsinki/",
925-
text: "Robot Framework Meetup group in Helsinki, Finland."
926-
},
927-
{
928-
title: "Stack Overflow",
929-
href:
930-
"http://stackoverflow.com/questions/tagged/robotframework",
931-
text:
932-
"Questions in Stack Overflow tagged with Robot Framework."
933-
},
934-
{
935-
title: "robotframework-announce",
936-
href:
937-
"http://groups.google.com/group/robotframework-announce",
938-
text:
939-
"Mailing list for just release announcements, nothing more."
940-
}
941-
]
942-
},
943-
{
944-
title: "Paid",
895+
title: "Vendors",
945896
items: [
946897
{
947898
title: "Comiq",
@@ -1027,6 +978,48 @@ export default {
1027978
"VALA Group provides outstanding software development and quality assurance services by utilizing automation, co-operation and intelligent tool selection for companies ranging from start-ups to major publicly listed companies."
1028979
}
1029980
]
981+
},
982+
{
983+
title: "Other",
984+
items: [
985+
{
986+
title: "LinkedIn",
987+
href:
988+
"http://www.linkedin.com/groups/Robot-Framework-3710899",
989+
text: "Robot Framework group on LinkedIn."
990+
},
991+
{
992+
title: "AT.info",
993+
href:
994+
"http://automated-testing.info/category/robot-framework",
995+
text: "Robot Framework help forum по-русски."
996+
},
997+
{
998+
title: "robotframework-devel",
999+
href: "http://groups.google.com/group/robotframework-devel",
1000+
text:
1001+
"Mailing list for contributors and developers of the Robot Framework ecosystem."
1002+
},
1003+
{
1004+
title: "Helsinki Meetup group",
1005+
href: "https://www.meetup.com/Robot-Framework-Helsinki/",
1006+
text: "Robot Framework Meetup group in Helsinki, Finland."
1007+
},
1008+
{
1009+
title: "Stack Overflow",
1010+
href:
1011+
"http://stackoverflow.com/questions/tagged/robotframework",
1012+
text:
1013+
"Questions in Stack Overflow tagged with Robot Framework."
1014+
},
1015+
{
1016+
title: "robotframework-announce",
1017+
href:
1018+
"http://groups.google.com/group/robotframework-announce",
1019+
text:
1020+
"Mailing list for just release announcements, nothing more."
1021+
}
1022+
]
10301023
}
10311024
]
10321025
}

0 commit comments

Comments
 (0)