Skip to content

Commit 618ed19

Browse files
authored
Merge pull request #227 from robotframework/issues-225-226
Fix http links and favicon
2 parents 47b2fad + f95a743 commit 618ed19

File tree

8 files changed

+49
-49
lines changed

8 files changed

+49
-49
lines changed

public/favicon.ico

-3.06 KB
Binary file not shown.

src/components/PageFooter.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</a>
4545
</div>
4646
<div>
47-
<a href="http://twitter.com/robotframework">
47+
<a href="https://twitter.com/robotframework">
4848
Twitter
4949
</a>
5050
</div>
@@ -70,12 +70,12 @@
7070
</a>
7171
</div>
7272
<div>
73-
<a href="http://robotframework.org/robotframework/#user-guide">
73+
<a href="https://robotframework.org/robotframework/#user-guide">
7474
User guide
7575
</a>
7676
</div>
7777
<div>
78-
<a href="http://robotframework.org/robotframework/#user-guide">
78+
<a href="https://github.com/robotframework/WebDemo">
7979
Web demo
8080
</a>
8181
</div>

src/content/english.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default () => ({
2929
},
3030
{
3131
name: 'Forum',
32-
url: 'http://forum.robotframework.org/',
32+
url: 'https://forum.robotframework.org/',
3333
description: 'Discuss Robot Framework'
3434
},
3535
{
@@ -252,7 +252,7 @@ Welcome Page Should Be Open
252252
key: 'libraries',
253253
description: `Separately developed external libraries that
254254
can be installed based on your needs. Creating your own libraries is a breeze. For instructions, see
255-
<a href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries" target="_blank">
255+
<a href="https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries" target="_blank">
256256
creating test libraries</a> in Robot Framework User Guide.`
257257
},
258258
{

src/content/resources/builtin.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
11
export default () => ([
22
{
33
name: 'Builtin',
4-
href: 'http://robotframework.org/robotframework/latest/libraries/BuiltIn.html',
4+
href: 'https://robotframework.org/robotframework/latest/libraries/BuiltIn.html',
55
description: 'Provides a set of often needed generic keywords. Always automatically available without imports.',
66
tags: ['library']
77
},
88
{
99
name: 'Collections',
10-
href: 'http://robotframework.org/robotframework/latest/libraries/Collections.html',
10+
href: 'https://robotframework.org/robotframework/latest/libraries/Collections.html',
1111
description: 'Provides a set of keywords for handling Python lists and dictionaries.',
1212
tags: ['library']
1313
},
1414
{
1515
name: 'DateTime',
16-
href: 'http://robotframework.org/robotframework/latest/libraries/DateTime.html',
16+
href: 'https://robotframework.org/robotframework/latest/libraries/DateTime.html',
1717
description: 'Library for date and time conversions.',
1818
tags: ['library']
1919
},
2020
{
2121
name: 'Dialogs',
22-
href: 'http://robotframework.org/robotframework/latest/libraries/Dialogs.html',
22+
href: 'https://robotframework.org/robotframework/latest/libraries/Dialogs.html',
2323
description: 'Provides means for pausing the execution and getting input from users.',
2424
tags: ['library']
2525
},
2626
{
2727
name: 'OperatingSystem',
28-
href: 'http://robotframework.org/robotframework/latest/libraries/OperatingSystem.html',
28+
href: 'https://robotframework.org/robotframework/latest/libraries/OperatingSystem.html',
2929
description: 'Enables various operating system related tasks to be performed in the system where Robot Framework is running.',
3030
tags: ['library']
3131
},
3232
{
3333
name: 'Process',
34-
href: 'http://robotframework.org/robotframework/latest/libraries/Process.html',
34+
href: 'https://robotframework.org/robotframework/latest/libraries/Process.html',
3535
description: 'Library for running processes in the system.',
3636
tags: ['library']
3737
},
3838
{
3939
name: 'Remote',
40-
href: 'https://github.com/robotframework/RemoteInterface',
40+
href: 'httpss://github.com/robotframework/RemoteInterface',
4141
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.',
4242
tags: ['library']
4343
},
4444
{
4545
name: 'Screenshot',
46-
href: 'http://robotframework.org/robotframework/latest/libraries/Screenshot.html',
46+
href: 'https://robotframework.org/robotframework/latest/libraries/Screenshot.html',
4747
description: 'Provides keywords to capture screenshots of the desktop.',
4848
tags: ['library']
4949
},
5050
{
5151
name: 'String',
52-
href: 'http://robotframework.org/robotframework/latest/libraries/String.html',
52+
href: 'https://robotframework.org/robotframework/latest/libraries/String.html',
5353
description: 'Library for generating, modifying and verifying strings.',
5454
tags: ['library']
5555
},
5656
{
5757
name: 'Telnet',
58-
href: 'http://robotframework.org/robotframework/latest/libraries/Telnet.html',
58+
href: 'https://robotframework.org/robotframework/latest/libraries/Telnet.html',
5959
description: 'Makes it possible to connect to Telnet servers and execute commands on the opened connections.',
6060
tags: ['library']
6161
},
6262
{
6363
name: 'XML',
64-
href: 'http://robotframework.org/robotframework/latest/libraries/XML.html',
64+
href: 'https://robotframework.org/robotframework/latest/libraries/XML.html',
6565
description: 'Library for generating, modifying and verifying XML files.',
6666
tags: ['library']
6767
},
6868
{
6969
name: 'Rebot',
7070
description: 'Generate logs and reports based on XML outputs and for combining multiple outputs together.',
71-
href: 'http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#post-processing-outputs',
71+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#post-processing-outputs',
7272
tags: ['tool']
7373
},
7474
{
7575
name: 'Libdoc',
7676
description: 'Generate keyword documentation for test libraries and resource files.',
77-
href: 'http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#libdoc',
77+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#libdoc',
7878
tags: ['tool']
7979
},
8080
{
8181
name: 'Testdoc',
8282
description: 'Generate high level HTML documentation based on Robot Framework test cases.',
83-
href: 'http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#testdoc',
83+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#testdoc',
8484
tags: ['tool']
8585
},
8686
{
8787
name: 'Tidy',
8888
description: 'Cleaning up and changing format of Robot Framework test data files.',
89-
href: 'http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#tidy',
89+
href: 'https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#tidy',
9090
tags: ['tool']
9191
}
9292
])

src/content/resources/learning.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default () => ([
77
{
88
name: 'User Guide',
99
description: 'Reference manual explaining all Robot Framework features in detail.',
10-
href: 'http://robotframework.org/robotframework/#user-guide'
10+
href: 'https://robotframework.org/robotframework/#user-guide'
1111
},
1212
{
1313
name: 'Quick Start Guide',
@@ -22,17 +22,17 @@ export default () => ([
2222
{
2323
name: 'Dos And Don\'ts',
2424
description: 'Slide set loosely based on \'How to write good test cases\' guidelines.',
25-
href: 'http://www.slideshare.net/pekkaklarck/robot-framework-dos-and-donts'
25+
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-dos-and-donts'
2626
},
2727
{
2828
name: 'Public API',
2929
description: 'Public API for writing your own tools against Robot Framework.',
30-
href: 'http://robot-framework.readthedocs.org/en/latest/'
30+
href: 'https://robot-framework.readthedocs.org/en/latest/'
3131
},
3232
{
3333
name: 'Introduction Slides',
3434
description: 'Generic Robot Framework introduction slides.',
35-
href: 'http://www.slideshare.net/pekkaklarck/robot-framework-introduction'
35+
href: 'https://www.slideshare.net/pekkaklarck/robot-framework-introduction'
3636
},
3737
{
3838
name: 'RPA tutorials',

src/content/resources/libraries.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default () => ([
4848
{
4949
name: 'Database Library (Java)',
5050
href: 'https://github.com/MarketSquare/robotframework-dblibrary',
51-
description: 'Java-based library for database testing. Usable with Jython. Available also at <a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-dblibrary%22" target="_blank">Maven central</a>.',
51+
description: 'Java-based library for database testing. Usable with Jython. Available also at <a href="https://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-dblibrary%22" target="_blank">Maven central</a>.',
5252
tags: ['java']
5353
},
5454
{
@@ -109,7 +109,7 @@ export default () => ([
109109
{
110110
name: 'HttpRequestLibrary (Java)',
111111
href: 'https://github.com/MarketSquare/robotframework-httprequestlibrary',
112-
description: 'HTTP level testing using Apache HTTP client. Available also at <a href="http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-httprequestlibrary%22" target="_blank">Maven central</a>.',
112+
description: 'HTTP level testing using Apache HTTP client. Available also at <a href="https://search.maven.org/#search%7Cga%7C1%7Ca%3A%22robotframework-httprequestlibrary%22" target="_blank">Maven central</a>.',
113113
tags: ['http', 'java']
114114
},
115115
{
@@ -202,7 +202,7 @@ export default () => ([
202202
},
203203
{
204204
name: 'SeleniumLibrary',
205-
href: 'http://github.com/robotframework/SeleniumLibrary/',
205+
href: 'https://github.com/robotframework/SeleniumLibrary/',
206206
description: 'Web testing library that uses popular Selenium tool internally.',
207207
tags: ['web', 'selenium']
208208
},
@@ -215,7 +215,7 @@ export default () => ([
215215
{
216216
name: 'SikuliLibrary',
217217
href: 'https://github.com/rainmanwy/robotframework-SikuliLibrary#readme',
218-
description: 'Provides keywords to test UI through <a href="http://sikulix.com/" target="_blank">Sikulix</a>. This library supports Python 2.x and 3.x.',
218+
description: 'Provides keywords to test UI through <a href="https://sikulix.com/" target="_blank">Sikulix</a>. This library supports Python 2.x and 3.x.',
219219
tags: ['ui']
220220
},
221221
{

src/content/resources/tools.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ export default () => ([
3838
{
3939
name: 'Robot Plugin for IntelliJ IDEA',
4040
description: 'For IntelliJ IDEA-based editors by JIVE Software.',
41-
href: 'http://plugins.jetbrains.com/plugin/7430',
41+
href: 'https://plugins.jetbrains.com/plugin/7430',
4242
tags: ['editor']
4343
},
4444
{
4545
name: 'Robot Support for IntelliJ IDEA',
4646
description: 'For IntelliJ IDEA-based editors by Valerio Angelini.',
47-
href: 'http://plugins.jetbrains.com/plugin/7415',
47+
href: 'https://plugins.jetbrains.com/plugin/7415',
4848
tags: ['editor']
4949
},
5050
{
@@ -140,7 +140,7 @@ export default () => ([
140140
{
141141
name: 'Mabot',
142142
description: 'Tool for reporting manual tests in format compatible with Robot Framework outputs.',
143-
href: 'http://github.com/robotframework/mabot/',
143+
href: 'https://github.com/robotframework/mabot/',
144144
tags: ['']
145145
},
146146
{
@@ -164,7 +164,7 @@ export default () => ([
164164
{
165165
name: 'RFDoc',
166166
description: 'Web based system for storing and searching Robot Framework library and resource file documentations.',
167-
href: 'http://github.com/robotframework/rfdoc',
167+
href: 'https://github.com/robotframework/rfdoc',
168168
tags: ['']
169169
},
170170
{

0 commit comments

Comments
 (0)