diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/.travis.yml | 7 | ||||
-rw-r--r-- | docs/Gemfile | 3 | ||||
-rw-r--r-- | docs/_config.yml | 3 | ||||
-rw-r--r-- | docs/_layouts/default.html | 8 | ||||
-rw-r--r-- | docs/index.md | 6 | ||||
-rw-r--r-- | docs/jekyll-theme-cayman.gemspec | 19 | ||||
-rw-r--r-- | docs/script/bootstrap | 6 | ||||
-rw-r--r-- | docs/script/cibuild | 6 | ||||
-rw-r--r-- | docs/script/release | 42 | ||||
-rw-r--r-- | docs/script/server | 3 |
10 files changed, 8 insertions, 95 deletions
diff --git a/docs/.travis.yml b/docs/.travis.yml deleted file mode 100644 index c2fa3f9..0000000 --- a/docs/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -language: ruby -cache: bundler -sudo: false -rvm: 2.2 - -install: script/bootstrap -script: script/cibuild diff --git a/docs/Gemfile b/docs/Gemfile deleted file mode 100644 index fa75df1..0000000 --- a/docs/Gemfile +++ /dev/null @@ -1,3 +0,0 @@ -source 'https://rubygems.org' - -gemspec diff --git a/docs/_config.yml b/docs/_config.yml index 3ddfdc5..59061b0 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,4 +1,5 @@ title: PSP-UFU description: Plataforma de Sistemas de Potência<br />Universidade Federal de Uberlândia show_downloads: true -theme: jekyll-theme-cayman
\ No newline at end of file +theme: jekyll-theme-cayman +google_analytics: UA-106599602-1
\ No newline at end of file diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 47291a8..732e449 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -6,7 +6,7 @@ {% seo %} <meta name="description" content="{{ page.description | default: site.description | default: site.github.project_tagline }}"/> <meta name="viewport" content="width=device-width, initial-scale=1"> - <meta name="theme-color" content="#157878"> + <meta name="theme-color" content="#fc4a1a"> <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> </head> @@ -18,7 +18,7 @@ <a href="{{ site.github.repository_url }}" class="btn">Ver no GitHub</a> {% endif %} {% if site.show_downloads %} - <a href="https://github.com/Thales1330/PSP/raw/master/docs/downloads/windows/pspufu.zip" class="btn">Download para Windows</a> + <a href="https://github.com/Thales1330/PSP/raw/master/docs/downloads/windows/pspufu.zip" class="btn">Download para Windows (x64)</a> <a href="{{ site.github.zip_url }}" class="btn">Download código fonte</a> <!--a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a--> {% endif %} @@ -29,9 +29,9 @@ <footer class="site-footer"> {% if site.github.is_project_page %} - <span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span> + <span class="site-footer-owner"><a href="{{ site.github.repository_url }}">{{ site.github.repository_name }}</a> é mantido por <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a>.</span> {% endif %} - <span class="site-footer-credits">This page was generated by <a href="https://pages.github.com">GitHub Pages</a>.</span> + <span class="site-footer-credits">Essa página foi gerada por <a href="https://pages.github.com">GitHub Pages</a>.</span> </footer> </section> diff --git a/docs/index.md b/docs/index.md index 6f864cf..32ef25c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -19,7 +19,7 @@ O _software_ permite a realização dos seguintes estudos: - Nível de curto-circuito em todas as barras - **Estabilidade eletromecânica** - Vários modelos de máquinas síncronas - - Criação e edição de controle (tensão e velocidade) genéricos + - Criação e edição de controles (tensão e velocidade) genéricos ## [](#header-2)Documentação @@ -35,6 +35,4 @@ Toda a descrição detalhada do código fonte pode ser encontrada na [**Document  -``` -Desenvolvido por Thales Lima Oliveira -``` +Desenvolvido por Thales Lima Oliveira (<thales@ufu.br>) diff --git a/docs/jekyll-theme-cayman.gemspec b/docs/jekyll-theme-cayman.gemspec deleted file mode 100644 index f5363f3..0000000 --- a/docs/jekyll-theme-cayman.gemspec +++ /dev/null @@ -1,19 +0,0 @@ -# encoding: utf-8 - -Gem::Specification.new do |s| - s.name = "jekyll-theme-cayman" - s.version = "0.1.0" - s.license = "CC0-1.0" - s.authors = ["Jason Long", "GitHub, Inc."] - s.email = ["opensource+jekyll-theme-cayman@github.com"] - s.homepage = "https://github.com/pages-themes/cayman" - s.summary = "Cayman is a Jekyll theme for GitHub Pages" - - s.files = `git ls-files -z`.split("\x0").select do |f| - f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i) - end - - s.platform = Gem::Platform::RUBY - s.add_runtime_dependency "jekyll", "~> 3.5" - s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0" -end diff --git a/docs/script/bootstrap b/docs/script/bootstrap deleted file mode 100644 index 492e553..0000000 --- a/docs/script/bootstrap +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -set -e - -gem install bundler -bundle install diff --git a/docs/script/cibuild b/docs/script/cibuild deleted file mode 100644 index f627530..0000000 --- a/docs/script/cibuild +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -set -e - -bundle exec jekyll build -gem build jekyll-theme-cayman.gemspec diff --git a/docs/script/release b/docs/script/release deleted file mode 100644 index fb400aa..0000000 --- a/docs/script/release +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh -# Tag and push a release. - -set -e - -# Make sure we're in the project root. - -cd $(dirname "$0")/.. - -# Make sure the darn thing works - -bundle update - -# Build a new gem archive. - -rm -rf jekyll-theme-cayman-*.gem -gem build -q jekyll-theme-cayman.gemspec - -# Make sure we're on the master branch. - -(git branch | grep -q 'master') || { - echo "Only release from the master branch." - exit 1 -} - -# Figure out what version we're releasing. - -tag=v`ls jekyll-theme-cayman-*.gem | sed 's/^jekyll-theme-cayman-\(.*\)\.gem$/\1/'` - -# Make sure we haven't released this version before. - -git fetch -t origin - -(git tag -l | grep -q "$tag") && { - echo "Whoops, there's already a '${tag}' tag." - exit 1 -} - -# Tag it and bag it. - -gem push jekyll-theme-cayman-*.gem && git tag "$tag" && - git push origin master && git push origin "$tag" diff --git a/docs/script/server b/docs/script/server deleted file mode 100644 index d8c3e15..0000000 --- a/docs/script/server +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -bundle exec jekyll serve |