Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit4013147

Browse files
author
Antti Karjalainen
committed
Re-arrange libraries: standard, external, other
1 parenta5b8d5d commit4013147

File tree

1 file changed

+71
-71
lines changed

1 file changed

+71
-71
lines changed

‎sources/src/App.vue‎

Lines changed: 71 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -90,40 +90,83 @@ export default {
9090
},
9191
tabs: [
9292
{
93-
title:"Other",
93+
title:"Standard",
9494
items: [
9595
{
96-
title:"Creating test libraries",
96+
title:"Builtin",
9797
href:
98-
"http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries",
98+
"http://robotframework.org/robotframework/#standard-libraries",
9999
text:
100-
"Creating test libraries section in Robot Framework User Guide."
100+
"Provides a set of often needed generic keywords. Always automatically available without imports."
101101
},
102102
{
103-
title:"plone.app.robotframework",
103+
title:"Dialogs",
104104
href:
105-
"https://pypi.python.org/pypi/plone.app.robotframework",
105+
"http://robotframework.org/robotframework/#standard-libraries",
106106
text:
107-
"Providesresources and toolsforwriting functional Selenium tests for Plone CMS and its add-ons."
107+
"Providesmeansforpausing the test execution and getting input from users."
108108
},
109109
{
110-
title:"JavalibCore",
111-
href:"https://github.com/robotframework/JavalibCore/wiki",
110+
title:"Collections",
111+
href:
112+
"http://robotframework.org/robotframework/#standard-libraries",
112113
text:
113-
"Base for implementing larger Java based test libraries for Robot Framework."
114+
"Provides a set of keywords for handling Python lists and dictionaries."
115+
},
116+
{
117+
title:"OperatingSystem",
118+
href:
119+
"http://robotframework.org/robotframework/#standard-libraries",
120+
text:
121+
"Enables various operating system related tasks to be performed in the system where Robot Framework is running."
114122
},
115123
{
116124
title:"Remote",
117125
href:"https://github.com/robotframework/RemoteInterface",
118126
text:
119-
"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."
127+
"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."
120128
},
121129
{
122-
title:"RemoteApplications",
130+
title:"Screenshot",
123131
href:
124-
"https://github.com/robotframework/RemoteApplications",
132+
"http://robotframework.org/robotframework/#standard-libraries",
125133
text:
126-
"Special test library for launching Java applications on a separate JVM and taking other libraries into use on them."
134+
"Provides keywords to capture screenshots of the desktop."
135+
},
136+
{
137+
title:"String",
138+
href:
139+
"http://robotframework.org/robotframework/#standard-libraries",
140+
text:
141+
"Library for generating, modifying and verifying strings."
142+
},
143+
{
144+
title:"Telnet",
145+
href:
146+
"http://robotframework.org/robotframework/#standard-libraries",
147+
text:
148+
"Makes it possible to connect to Telnet servers and execute commands on the opened connections."
149+
},
150+
{
151+
title:"XML",
152+
href:
153+
"http://robotframework.org/robotframework/#standard-libraries",
154+
text:
155+
"Library for generating, modifying and verifying XML files."
156+
},
157+
{
158+
title:"Process",
159+
href:
160+
"http://robotframework.org/robotframework/#standard-libraries",
161+
text:
162+
"Library for running processes in the system. New in Robot Framework 2.8."
163+
},
164+
{
165+
title:"DateTime",
166+
href:
167+
"http://robotframework.org/robotframework/#standard-libraries",
168+
text:
169+
"Library for date and time conversions. New in Robot Framework 2.8.5."
127170
}
128171
]
129172
},
@@ -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 thetestexecution and getting input from users."
412+
"Creatingtestlibraries 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-
"Providesa set of keywordsforhandling Python listsanddictionaries."
419+
"Providesresources and toolsforwriting functional Selenium tests for Plone CMSandits 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 whereRobot Framework is running."
425+
"Base for implementing larger Java based test libraries forRobot 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-
"Libraryfordateandtime conversions. New in Robot Framework 2.8.5."
438+
"Special test libraryforlaunching Java applications on a separate JVMandtaking other libraries into use on them."
439439
}
440440
]
441441
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp