Skip to content

Commit 571b11f

Browse files
author
Antti Karjalainen
committed
Change to new robotframework.org site with new visual identity
2 parents 8a8ccd1 + 9542166 commit 571b11f

File tree

128 files changed

+16052
-2
lines changed

Some content is hidden

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

128 files changed

+16052
-2
lines changed

.gitignore

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1-
_plugins
2-
.pygments-cache
31
.DS_Store
2+
/dist/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
/test/unit/coverage/
7+
sources/node_modules/
8+
.idea
9+
.vscode
10+
*.suo
11+
*.ntvs*
12+
*.njsproj
13+
*.sln

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
robotframework.org

README.rst

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Robot Framework ecosystem front page
2+
====================================
3+
4+
This repository hosts Robot Framework's public website source code. The site
5+
itself is available at http://robotframework.org.
6+
7+
Readme for editing this page `<sources/README.md>`__
8+
9+
Adding or updating resources
10+
----------------------------
11+
12+
To get new links added or old information updated, please `submit an issue`__
13+
to this project. If you want a new link to be added, include at least the
14+
following information:
15+
16+
- Name of the library, tool, or other resource.
17+
- Short description. Should not be longer than 200 characters.
18+
- Link to the resource.
19+
- When adding a new user, also include company/organization logo.
20+
21+
Alternatively you can `submit a pull request`__ with the above information and
22+
make it even easier for us to add the link.
23+
24+
__ https://github.com/robotframework/robotframework.github.com/issues
25+
__ https://github.com/robotframework/robotframework.github.com/pulls

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<!doctype html><html lang=en><head><title>Robot Framework</title><meta charset=utf-8><meta name=viewport content="width=device-width,initial-scale=1,shrink-to-fit=no"><meta name=description content="Generic test automation framework for acceptance testing and ATDD"><meta name=author content=""><link rel=apple-touch-icon sizes=76x76 href=/static/img/icons/apple-touch-icon.png><link rel=icon type=image/png sizes=32x32 href=/static/img/icons/favicon-32x32.png><link rel=icon type=image/png sizes=16x16 href=/static/img/icons/favicon-16x16.png><link rel=manifest href=/static/img/icons/site.webmanifest><link rel=mask-icon href=/static/img/icons/safari-pinned-tab.svg color=#5bbad5><meta name=msapplication-TileColor content=#da532c><meta name=theme-color content=#ffffff><link href=/static/css/app.922d89a69010208d1066f396ee649b21.css rel=stylesheet></head><body><div id=app></div><script type=text/javascript src=/static/js/manifest.14a76fad9b304f57d579.js></script><script type=text/javascript src=/static/js/vendor.e66dd3a5f6f9d36c7ec9.js></script><script type=text/javascript src=/static/js/app.a7eb3c37668b391f1adb.js></script></body></html>

sources/.babelrc

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"modules": false,
5+
"targets": {
6+
"node": "current",
7+
"uglify": false
8+
}
9+
}],
10+
"stage-2"
11+
],
12+
"plugins": ["transform-runtime"],
13+
"env": {
14+
"test": {
15+
"presets": ["env", "stage-2"],
16+
"plugins": ["istanbul"]
17+
}
18+
}
19+
}

sources/.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

sources/.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/build/
2+
/config/
3+
/dist/
4+
/*.js
5+
/test/unit/coverage/

sources/.eslintrc.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// https://eslint.org/docs/user-guide/configuring
2+
3+
module.exports = {
4+
root: true,
5+
parser: 'babel-eslint',
6+
parserOptions: {
7+
sourceType: 'module'
8+
},
9+
env: {
10+
browser: true,
11+
},
12+
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
13+
extends: 'standard',
14+
// required to lint *.vue files
15+
plugins: [
16+
'html'
17+
],
18+
// add your custom rules here
19+
'rules': {
20+
// allow paren-less arrow functions
21+
'arrow-parens': 0,
22+
// allow async-await
23+
'generator-star-spacing': 0,
24+
// allow debugger during development
25+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
26+
}
27+
}

sources/.postcssrc.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
"plugins": {
5+
// to edit target browsers: use "browserslist" field in package.json
6+
"postcss-import": {},
7+
"autoprefixer": {}
8+
}
9+
}

sources/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Robotframework sources
2+
3+
> Robot Framework ecosystem front page sources
4+
5+
## Build Setup
6+
7+
``` bash
8+
9+
# clone repo
10+
git clone https://github.com/robotframework/robotframework.github.com.git
11+
12+
# go to sources folder
13+
cd sources
14+
15+
# install dependencies
16+
npm install
17+
18+
# serve with hot reload at localhost:8080
19+
npm run dev
20+
21+
# and when you are ready to publish your changes, build for production with minification
22+
npm run build
23+
24+
This will generate build files to top-level of project. Remember to commit these too.
25+
```
26+
27+
For a detailed explanation on how things work, check out the [vue-webpack template](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
28+
29+
We also use [bootstrap-vue](https://bootstrap-vue.js.org/docs) for implementing bootstrap-v4.

0 commit comments

Comments
 (0)