Skip to content

Commit 473a035

Browse files
authored
resources in german renamed and added to index.js
1 parent 0fa390e commit 473a035

File tree

7 files changed

+1425
-8
lines changed

7 files changed

+1425
-8
lines changed

src/content/index.js

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ import spanish from './spanish.js'
77
import chinese from './chinese.js'
88
import ach from './ach.js'
99

10-
import builtin from './resources/german/builtin.js'
11-
import libraries from './resources/german/libraries.mjs'
12-
import tools from './resources/german/tools.mjs'
13-
import learning from './resources/german/learning.js'
14-
import users from './resources/german/users.js'
15-
import sponsors from './resources/german/sponsors.js'
16-
1710
import builtin from './resources/builtin.js'
1811
import libraries from './resources/libraries.js'
1912
import tools from './resources/tools.js'
2013
import learning from './resources/learning.js'
2114
import users from './resources/users.js'
2215
import sponsors from './resources/sponsors.js'
2316

17+
import german_builtin from './resources/german/builtin.js'
18+
import german_libraries from './resources/german/libraries.mjs'
19+
import german_tools from './resources/german/tools.mjs'
20+
import german_learning from './resources/german/learning.js'
21+
import german_users from './resources/german/users.js'
22+
import german_sponsors from './resources/german/sponsors.js'
23+
2424
export {
2525
english,
2626
german,
@@ -36,5 +36,12 @@ export {
3636
tools,
3737
learning,
3838
users,
39-
sponsors
39+
sponsors,
40+
41+
german_builtin,
42+
german_libraries,
43+
german_tools,
44+
german_learning,
45+
german_users,
46+
german_sponsors
4047
}
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
export default () => ([
2+
{
3+
name: 'Builtin',
4+
href: 'https://robotframework.org/robotframework/latest/libraries/BuiltIn.html',
5+
description: 'Provides a set of often needed generic keywords. Always automatically available without imports.',
6+
tags: ['library']
7+
},
8+
{
9+
name: 'Collections',
10+
href: 'https://robotframework.org/robotframework/latest/libraries/Collections.html',
11+
description: 'Provides a set of keywords for handling Python lists and dictionaries.',
12+
tags: ['library']
13+
},
14+
{
15+
name: 'DateTime',
16+
href: 'https://robotframework.org/robotframework/latest/libraries/DateTime.html',
17+
description: 'Library for date and time conversions.',
18+
tags: ['library']
19+
},
20+
{
21+
name: 'Dialogs',
22+
href: 'https://robotframework.org/robotframework/latest/libraries/Dialogs.html',
23+
description: 'Provides means for pausing the execution and getting input from users.',
24+
tags: ['library']
25+
},
26+
{
27+
name: 'OperatingSystem',
28+
href: 'https://robotframework.org/robotframework/latest/libraries/OperatingSystem.html',
29+
description: 'Enables various operating system related tasks to be performed in the system where Robot Framework is running.',
30+
tags: ['library']
31+
},
32+
{
33+
name: 'Process',
34+
href: 'https://robotframework.org/robotframework/latest/libraries/Process.html',
35+
description: 'Library for running processes in the system.',
36+
tags: ['library']
37+
},
38+
{
39+
name: 'Remote',
40+
href: 'https://github.com/robotframework/RemoteInterface',
41+
description: 'Special library acting as a proxy between Robot Framework and libraries elsewhere. Actual libraries can be running on different machines and be implemented using any programming language supporting XML-RPC protocol.',
42+
tags: ['library']
43+
},
44+
{
45+
name: 'Screenshot',
46+
href: 'https://robotframework.org/robotframework/latest/libraries/Screenshot.html',
47+
description: 'Provides keywords to capture screenshots of the desktop.',
48+
tags: ['library']
49+
},
50+
{
51+
name: 'String',
52+
href: 'https://robotframework.org/robotframework/latest/libraries/String.html',
53+
description: 'Library for generating, modifying and verifying strings.',
54+
tags: ['library']
55+
},
56+
{
57+
name: 'Telnet',
58+
href: 'https://robotframework.org/robotframework/latest/libraries/Telnet.html',
59+
description: 'Makes it possible to connect to Telnet servers and execute commands on the opened connections.',
60+
tags: ['library']
61+
},
62+
{
63+
name: 'XML',
64+
href: 'https://robotframework.org/robotframework/latest/libraries/XML.html',
65+
description: 'Library for generating, modifying and verifying XML files.',
66+
tags: ['library']
67+
},
68+
{
69+
name: 'Rebot',
70+
description: 'Generate logs and reports based on XML outputs and for combining multiple outputs together.',
71+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#post-processing-outputs',
72+
tags: ['tool']
73+
},
74+
{
75+
name: 'Libdoc',
76+
description: 'Generate keyword documentation for test libraries and resource files.',
77+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#libdoc',
78+
tags: ['tool']
79+
},
80+
{
81+
name: 'Testdoc',
82+
description: 'Generate high level HTML documentation based on Robot Framework test cases.',
83+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#testdoc',
84+
tags: ['tool']
85+
},
86+
{
87+
name: 'Tidy',
88+
description: 'Cleaning up and changing format of Robot Framework test data files.',
89+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#tidy',
90+
tags: ['tool']
91+
}
92+
])
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
export default () => ([
2+
{
3+
name: 'Robot Framework Docs',
4+
description: 'Learn with guides and examples that cover Robot Framework all the way from installation to advanced usage.',
5+
href: 'https://docs.robotframework.org/'
6+
},
7+
{
8+
name: 'User Guide',
9+
description: 'Reference manual explaining all Robot Framework features in detail.',
10+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html'
11+
},
12+
{
13+
name: 'Public API',
14+
description: 'Public API for writing your own tools against Robot Framework.',
15+
href: 'https://robot-framework.readthedocs.org/en/latest/'
16+
},
17+
{
18+
name: 'How to write good test cases',
19+
description: 'Guidelines for writing good test cases using Robot Framework.',
20+
href: 'https://github.com/robotframework/HowToWriteGoodTestCases/blob/master/HowToWriteGoodTestCases.rst'
21+
},
22+
{
23+
name: 'Dos And Don\'ts',
24+
description: 'Slide set loosely based on \'How to write good test cases\' guidelines.',
25+
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-dos-and-donts'
26+
},
27+
{
28+
name: 'Introduction Slides',
29+
description: 'Generic Robot Framework introduction slides.',
30+
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-introduction'
31+
},
32+
{
33+
name: 'Robot Framework katas',
34+
description: 'Series of exercises and examples how to get started with test automation. No prior knowledge of test automation required.',
35+
href: 'https://github.com/eficode-academy/rf-katas'
36+
},
37+
{
38+
name: 'Web Demo',
39+
description: 'Demonstrates how to create tests and higher level keywords. The system under test is a simple web page that is tested using SeleniumLibrary.',
40+
href: 'https://github.com/robotframework/WebDemo'
41+
},
42+
{
43+
name: 'Robot Demo',
44+
description: 'Demonstrates how to create tests and test libraries. The system under test is a simple calculator that is tested using a custom library.',
45+
href: 'https://github.com/robotframework/RobotDemo'
46+
},
47+
{
48+
name: 'Demo: ATDD with Robot Framework',
49+
description: 'How to use Robot Framework for Acceptance Test Driven Development (ATDD) a.k.a. Specification by Example.',
50+
href: 'https://code.google.com/p/atdd-with-robot-framework/'
51+
},
52+
{
53+
name: 'Demo: Using C with Robot Framework',
54+
description: 'This simple example demonstrates how to use C language from Robot Framework test libraries.',
55+
href: 'https://bitbucket.org/robotframework/cdemo'
56+
},
57+
{
58+
name: 'Demo: Remote interface',
59+
description: 'Example demonstrates how to use Robot Framework\'s <a href="https://github.com/robotframework/RemoteInterface">Remote interface</a> to call test libraries written in any programming language.',
60+
href: 'https://github.com/jg8481/robotframework-scala-remote-library'
61+
}
62+
])

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy