forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
359 changed files
with
9,096 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ CODE_OF_CONDUCT.md | |
deploy.sh | ||
font-selection.json | ||
README.md | ||
Vagrantfile | ||
Vagrantfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Deploy | |
|
||
on: | ||
push: | ||
branches: [ 'main' ] | ||
branches: [ 'master' ] | ||
|
||
jobs: | ||
deploy: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ build/ | |
_yardoc | ||
doc/ | ||
.idea/ | ||
vendor/ | ||
|
||
# Vagrant artifacts | ||
ubuntu-*-console.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
2.5.9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: '3' | ||
services: | ||
slate: | ||
build: . | ||
command: ["build"] | ||
volumes: | ||
- "./build:/srv/slate/build" | ||
- "./source:/srv/slate/source" | ||
slate_serve: | ||
image: slatedocs/slate | ||
command: ["serve"] | ||
ports: | ||
- "4567:4567" | ||
volumes: | ||
- "./source:/srv/slate/source" | ||
depends_on: | ||
- slate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
# -*- coding: utf-8 -*- # | ||
# frozen_string_literal: true | ||
|
||
# this is based on https://github.com/rouge-ruby/rouge/blob/master/lib/rouge/themes/monokai_sublime.rb | ||
# but without the added background, and changed styling for JSON keys to be soft_yellow instead of white | ||
|
||
module Rouge | ||
module Themes | ||
class OyTheme < CSSTheme | ||
name 'oy.theme.slate' | ||
|
||
palette :black => '#000000' | ||
palette :bright_green => '#a6e22e' | ||
palette :bright_pink => '#f92672' | ||
palette :carmine => '#960050' | ||
palette :dark => '#49483e' | ||
palette :dark_grey => '#888888' | ||
palette :dark_red => '#aa0000' | ||
palette :dimgrey => '#75715e' | ||
palette :emperor => '#555555' | ||
palette :grey => '#999999' | ||
palette :light_grey => '#aaaaaa' | ||
palette :light_violet => '#ae81ff' | ||
palette :soft_cyan => '#66d9ef' | ||
palette :soft_yellow => '#e6db74' | ||
palette :very_dark => '#1e0010' | ||
palette :whitish => '#f8f8f2' | ||
palette :orange => '#ff860F' | ||
palette :yellow => '#f7d250' | ||
palette :white => '#ffffff' | ||
|
||
style Generic::Heading, :fg => :grey | ||
style Literal::String::Regex, :fg => :orange | ||
style Generic::Output, :fg => :dark_grey | ||
style Generic::Prompt, :fg => :emperor | ||
style Generic::Strong, :bold => false | ||
style Generic::Subheading, :fg => :light_grey | ||
style Name::Builtin, :fg => :orange | ||
style Comment::Multiline, | ||
Comment::Preproc, | ||
Comment::Single, | ||
Comment::Special, | ||
Comment, :fg => :dimgrey | ||
style Error, | ||
Generic::Error, | ||
Generic::Traceback, :fg => :carmine | ||
style Generic::Deleted, | ||
Generic::Inserted, | ||
Generic::Emph, :fg => :dark | ||
style Keyword::Constant, | ||
Keyword::Declaration, | ||
Keyword::Reserved, | ||
Name::Constant, | ||
Keyword::Type, :fg => :soft_cyan | ||
style Literal::Number::Float, | ||
Literal::Number::Hex, | ||
Literal::Number::Integer::Long, | ||
Literal::Number::Integer, | ||
Literal::Number::Oct, | ||
Literal::Number, | ||
Literal::String::Char, | ||
Literal::String::Escape, | ||
Literal::String::Symbol, :fg => :light_violet | ||
style Literal::String::Doc, | ||
Literal::String::Double, | ||
Literal::String::Backtick, | ||
Literal::String::Heredoc, | ||
Literal::String::Interpol, | ||
Literal::String::Other, | ||
Literal::String::Single, | ||
Literal::String, :fg => :yellow | ||
style Name::Attribute, | ||
Name::Class, | ||
Name::Decorator, | ||
Name::Exception, | ||
Name::Function, :fg => :bright_green | ||
style Name::Variable::Class, | ||
Name::Namespace, | ||
Name::Entity, | ||
Name::Builtin::Pseudo, | ||
Name::Variable::Global, | ||
Name::Variable::Instance, | ||
Name::Variable, | ||
Text::Whitespace, | ||
Text, | ||
Name, :fg => :white | ||
style Name::Label, :fg => :orange | ||
style Operator::Word, | ||
Name::Tag, | ||
Keyword, | ||
Keyword::Namespace, | ||
Keyword::Pseudo, | ||
Operator, :fg => :orange | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
en: | ||
title: "Product Documentation" | ||
home: "Home" | ||
register: "Register Now" | ||
login: "Log In" | ||
api: "API Docs" | ||
lang: "ID" | ||
search: "Search Documentation" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
id: | ||
title: "Dokumentasi Produk" | ||
home: "Beranda" | ||
register: "Daftar Sekarang" | ||
login: "Masuk Dashboard" | ||
api: "Dok API" | ||
lang: "EN" | ||
search: "Pencarian Dokumentasi" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docs.oyindonesia.com |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+125 KB
source/images/As_Parent_Subs_Existing_Username_Not_Connected_with_any_parent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.