Skip to content

Commit 5e3cd87

Browse files
authored
Merge pull request #1 from SeleniumHQ/master
10/20 pull down code from Selenium branch
2 parents d9f5b56 + d92b8ff commit 5e3cd87

File tree

652 files changed

+10822
-10787
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

652 files changed

+10822
-10787
lines changed

build-site.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
#!/bin/bash
22

33
echo -e "\033[0;32mDeleting Hugo previously generated directories for docs and main site...\033[0m"
4-
rm -rf public && rm -rf docs_source_files/public
4+
rm -rf site_source_files/public && rm -rf docs_source_files/public
55

66
echo -e "\033[0;32mGenerating Hugo site for docs...\033[0m"
77
cd docs_source_files && hugo && cd ..
88

99
echo -e "\033[0;32mGenerating Hugo site for main website...\033[0m"
10-
hugo
10+
cd site_source_files && hugo && cd ..
1111

1212
echo -e "\033[0;32mMerging both sites into a single one...\033[0m"
13-
mv docs_source_files/public/* public/documentation
13+
mv docs_source_files/public/* site_source_files/public/documentation
1414

1515
echo -e "\033[0;32mRefreshing contents of the published directory...\033[0m"
16-
rm -rf docs && mv public docs
16+
rm -rf docs && mv site_source_files/public docs
1717

1818
echo -e "\033[0;32mDone building site!\033[0m"

docs/about/index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>About Selenium</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

@@ -183,7 +184,7 @@ <h2>History of Selenium</h2>
183184
<p class="body">The story starts in 2004 at ThoughtWorks in Chicago, with Jason Huggins building the Core mode as "JavaScriptTestRunner" for the testing of an internal Time and Expenses application (Python, Plone). Automatic testing of any applications is core to ThoughtWork's style, given the Agile leanings of this consultancy. He has help from Paul Gross and Jie Tina Wang. For them, this was a day job.</p>
184185
</div>
185186
<div class="button-container long-section-button">
186-
<a href="/history">
187+
<a href="/site/history">
187188
<div class="button green"><b>READ FULL HISTORY</b></div>
188189
</a>
189190
</div>
@@ -194,7 +195,7 @@ <h2>Selenium Ecosystem</h2>
194195
<p class="body">Over the last decade, a large ecosystem of opensource projects and commercial services have sprouted up around Selenium. This page attempts to capture some of the companies that make use of Selenium as a central part of what they do.</p>
195196
</div>
196197
<div class="button-container long-section-button">
197-
<a href="/ecosystem">
198+
<a href="/site/ecosystem">
198199
<div class="button green"><b>VIEW ECOSYSTEM</b></div>
199200
</a>
200201
</div>

docs/blog/2016/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<html>
77
<head>
88
<title>Blog</title>
9+
<link rel="icon" href="/site/favicon.ico" type="image/png">
910
<meta name="viewport" content="width=device-width,initial-scale=1">
1011
</head>
1112

@@ -147,7 +148,7 @@
147148

148149
<body>
149150
<section class="hero">
150-
<a href="/blog"><h1>Selenium Blog - 2016 Archive</h1></a>
151+
<a href="/site/blog"><h1>Selenium Blog - 2016 Archive</h1></a>
151152
</section>
152153

153154
<div class="blog-container">

docs/blog/2017/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<html>
77
<head>
88
<title>Blog</title>
9+
<link rel="icon" href="/site/favicon.ico" type="image/png">
910
<meta name="viewport" content="width=device-width,initial-scale=1">
1011
</head>
1112

@@ -147,7 +148,7 @@
147148

148149
<body>
149150
<section class="hero">
150-
<a href="/blog"><h1>Selenium Blog - 2017 Archive</h1></a>
151+
<a href="/site/blog"><h1>Selenium Blog - 2017 Archive</h1></a>
151152
</section>
152153

153154
<div class="blog-container">

docs/blog/2018/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<html>
77
<head>
88
<title>Blog</title>
9+
<link rel="icon" href="/site/favicon.ico" type="image/png">
910
<meta name="viewport" content="width=device-width,initial-scale=1">
1011
</head>
1112

@@ -147,7 +148,7 @@
147148

148149
<body>
149150
<section class="hero">
150-
<a href="/blog"><h1>Selenium Blog - 2018 Archive</h1></a>
151+
<a href="/site/blog"><h1>Selenium Blog - 2018 Archive</h1></a>
151152
</section>
152153

153154
<div class="blog-container">

docs/blog/2019/index.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<html>
77
<head>
88
<title>Blog</title>
9+
<link rel="icon" href="/site/favicon.ico" type="image/png">
910
<meta name="viewport" content="width=device-width,initial-scale=1">
1011
</head>
1112

@@ -147,7 +148,7 @@
147148

148149
<body>
149150
<section class="hero">
150-
<a href="/blog"><h1>Selenium Blog - 2019 Archive</h1></a>
151+
<a href="/site/blog"><h1>Selenium Blog - 2019 Archive</h1></a>
151152
</section>
152153

153154
<div class="blog-container">

docs/blog/announcing-selenium-3-beta/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Announcing Selenium 3.0-beta1</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/fall-selenium-conf/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Fall Selenium Conf, Save the Date &amp; Call for Speakers!</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/firefox-55/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Firefox 55 and Selenium IDE</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/hacking-with-intellij/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Hacking with IntelliJ</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/index.html

+10-9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium Support</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

@@ -145,7 +146,7 @@
145146

146147
<body>
147148
<section class="hero">
148-
<a href="/blog"><h1>Selenium Blog</h1></a>
149+
<a href="/site/blog"><h1>Selenium Blog</h1></a>
149150
</section>
150151

151152
<div class="filter-container-mobile">
@@ -182,10 +183,10 @@ <h3>Search blog</h3>
182183
<div class="filter-section">
183184
<h3>Archive</h3>
184185
<div class="archive-link-container">
185-
<a href="/blog/2018">2018</a>
186-
<a href="/blog/2017">2017</a>
187-
<a href="/blog/2016">2016</a>
188-
<a href="/blog/2015">2015</a>
186+
<a href="/site/blog/2018">2018</a>
187+
<a href="/site/blog/2017">2017</a>
188+
<a href="/site/blog/2016">2016</a>
189+
<a href="/site/blog/2015">2015</a>
189190
</div>
190191
</div>
191192
<div class="filter-section">
@@ -355,10 +356,10 @@ <h3>Search blog</h3>
355356
<div class="filter-section">
356357
<h3>Archive</h3>
357358
<div class="archive-link-container">
358-
<a href="/blog/2018">2018</a>
359-
<a href="/blog/2017">2017</a>
360-
<a href="/blog/2016">2016</a>
361-
<a href="/blog/2015">2015</a>
359+
<a href="/site/blog/2018">2018</a>
360+
<a href="/site/blog/2017">2017</a>
361+
<a href="/site/blog/2016">2016</a>
362+
<a href="/site/blog/2015">2015</a>
362363
</div>
363364
</div>
364365
<div class="filter-section">

docs/blog/long-live-selenium-ide/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium IDE Is Dead, Long Live Selenium IDE! </title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/page/2/index.html

+10-9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium Support</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

@@ -145,7 +146,7 @@
145146

146147
<body>
147148
<section class="hero">
148-
<a href="/blog"><h1>Selenium Blog</h1></a>
149+
<a href="/site/blog"><h1>Selenium Blog</h1></a>
149150
</section>
150151

151152
<div class="filter-container-mobile">
@@ -182,10 +183,10 @@ <h3>Search blog</h3>
182183
<div class="filter-section">
183184
<h3>Archive</h3>
184185
<div class="archive-link-container">
185-
<a href="/blog/2018">2018</a>
186-
<a href="/blog/2017">2017</a>
187-
<a href="/blog/2016">2016</a>
188-
<a href="/blog/2015">2015</a>
186+
<a href="/site/blog/2018">2018</a>
187+
<a href="/site/blog/2017">2017</a>
188+
<a href="/site/blog/2016">2016</a>
189+
<a href="/site/blog/2015">2015</a>
189190
</div>
190191
</div>
191192
<div class="filter-section">
@@ -357,10 +358,10 @@ <h3>Search blog</h3>
357358
<div class="filter-section">
358359
<h3>Archive</h3>
359360
<div class="archive-link-container">
360-
<a href="/blog/2018">2018</a>
361-
<a href="/blog/2017">2017</a>
362-
<a href="/blog/2016">2016</a>
363-
<a href="/blog/2015">2015</a>
361+
<a href="/site/blog/2018">2018</a>
362+
<a href="/site/blog/2017">2017</a>
363+
<a href="/site/blog/2016">2016</a>
364+
<a href="/site/blog/2015">2015</a>
364365
</div>
365366
</div>
366367
<div class="filter-section">

docs/blog/page/3/index.html

+10-9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium Support</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

@@ -145,7 +146,7 @@
145146

146147
<body>
147148
<section class="hero">
148-
<a href="/blog"><h1>Selenium Blog</h1></a>
149+
<a href="/site/blog"><h1>Selenium Blog</h1></a>
149150
</section>
150151

151152
<div class="filter-container-mobile">
@@ -182,10 +183,10 @@ <h3>Search blog</h3>
182183
<div class="filter-section">
183184
<h3>Archive</h3>
184185
<div class="archive-link-container">
185-
<a href="/blog/2018">2018</a>
186-
<a href="/blog/2017">2017</a>
187-
<a href="/blog/2016">2016</a>
188-
<a href="/blog/2015">2015</a>
186+
<a href="/site/blog/2018">2018</a>
187+
<a href="/site/blog/2017">2017</a>
188+
<a href="/site/blog/2016">2016</a>
189+
<a href="/site/blog/2015">2015</a>
189190
</div>
190191
</div>
191192
<div class="filter-section">
@@ -275,10 +276,10 @@ <h3>Search blog</h3>
275276
<div class="filter-section">
276277
<h3>Archive</h3>
277278
<div class="archive-link-container">
278-
<a href="/blog/2018">2018</a>
279-
<a href="/blog/2017">2017</a>
280-
<a href="/blog/2016">2016</a>
281-
<a href="/blog/2015">2015</a>
279+
<a href="/site/blog/2018">2018</a>
280+
<a href="/site/blog/2017">2017</a>
281+
<a href="/site/blog/2016">2016</a>
282+
<a href="/site/blog/2015">2015</a>
282283
</div>
283284
</div>
284285
<div class="filter-section">

docs/blog/selenium-3-is-coming/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium 3 Is Coming</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/blog/selenium-3.0/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<html>
55
<head>
66
<title>Selenium 3.0: Out Now!</title>
7+
<link rel="icon" href="/site/favicon.ico" type="image/png">
78
<meta name="viewport" content="width=device-width,initial-scale=1">
89
</head>
910

docs/documentation/en/404.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
<title>404 Page not found</title>
1010

1111

12-
<link href="https://seleniumhq.github.io/site/documentation/en/css/nucleus.css?1571348621" rel="stylesheet">
13-
<link href="https://seleniumhq.github.io/site/documentation/en/css/fontawesome-all.min.css?1571348621" rel="stylesheet">
14-
<link href="https://seleniumhq.github.io/site/documentation/en/css/hybrid.css?1571348621" rel="stylesheet">
15-
<link href="https://seleniumhq.github.io/site/documentation/en/css/featherlight.min.css?1571348621" rel="stylesheet">
16-
<link href="https://seleniumhq.github.io/site/documentation/en/css/perfect-scrollbar.min.css?1571348621" rel="stylesheet">
17-
<link href="https://seleniumhq.github.io/site/documentation/en/css/theme.css?1571348621" rel="stylesheet">
18-
<link href="https://seleniumhq.github.io/site/documentation/en/css/hugo-theme.css?1571348621" rel="stylesheet">
12+
<link href="https://seleniumhq.github.io/site/documentation/en/css/nucleus.css?1571415927" rel="stylesheet">
13+
<link href="https://seleniumhq.github.io/site/documentation/en/css/fontawesome-all.min.css?1571415927" rel="stylesheet">
14+
<link href="https://seleniumhq.github.io/site/documentation/en/css/hybrid.css?1571415927" rel="stylesheet">
15+
<link href="https://seleniumhq.github.io/site/documentation/en/css/featherlight.min.css?1571415927" rel="stylesheet">
16+
<link href="https://seleniumhq.github.io/site/documentation/en/css/perfect-scrollbar.min.css?1571415927" rel="stylesheet">
17+
<link href="https://seleniumhq.github.io/site/documentation/en/css/theme.css?1571415927" rel="stylesheet">
18+
<link href="https://seleniumhq.github.io/site/documentation/en/css/hugo-theme.css?1571415927" rel="stylesheet">
1919

20-
<link href="https://seleniumhq.github.io/site/documentation/en/css/theme-selenium.css?1571348621" rel="stylesheet">
20+
<link href="https://seleniumhq.github.io/site/documentation/en/css/theme-selenium.css?1571415927" rel="stylesheet">
2121

2222
<style>
2323
:root #header + #content > #left > #rlblock_left {

0 commit comments

Comments
 (0)