1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-02-02 21:12:02 -05:00
parent 2a4b879c21
commit 63664e6c1c
1155 changed files with 62261 additions and 84 deletions

View file

@ -0,0 +1,13 @@
#
# Foobar
----------------------------------------------------
[
["comment", "#"],
["comment", "# Foobar"]
]
----------------------------------------------------
Checks for comments.

View file

@ -0,0 +1,13 @@
ApacheServer {}
lb--apache-mod-jk--puppet {}
----------------------------------------------------
[
["component", "ApacheServer"], ["punctuation", "{"], ["punctuation", "}"],
["component", "lb--apache-mod-jk--puppet"], ["punctuation", "{"], ["punctuation", "}"]
]
----------------------------------------------------
Checks for component names.

View file

@ -0,0 +1,19 @@
facet Foo {}
instance of Bar {}
external
import
----------------------------------------------------
[
["keyword", "facet"],
["component", "Foo"], ["punctuation", "{"], ["punctuation", "}"],
["keyword", "instance of"],
["component", "Bar"], ["punctuation", "{"], ["punctuation", "}"],
["keyword", "external"],
["keyword", "import"]
]
----------------------------------------------------
Checks for keywords.

View file

@ -0,0 +1,11 @@
(optional)
----------------------------------------------------
[
["optional", "(optional)"]
]
----------------------------------------------------
Checks for optional flag.

View file

@ -0,0 +1,17 @@
extends :
imports:
installer:
data.ec2.elastic.ip:
----------------------------------------------------
[
["property", "extends"], ["punctuation", ":"],
["property", "imports"], ["punctuation", ":"],
["property", "installer"], ["punctuation", ":"],
["property", "data.ec2.elastic.ip"], ["punctuation", ":"]
]
----------------------------------------------------
Checks for properties.

View file

@ -0,0 +1,20 @@
port = 8080;
MySQL.port = 3307, My-Client-Database.port = 3308;
my-own-variable = something;
----------------------------------------------------
[
"port ", ["punctuation", "="],
["value", "8080"], ["punctuation", ";"],
"\r\nMySQL", ["punctuation", "."], "port ", ["punctuation", "="],
["value", "3307"], ["punctuation", ","],
" My-Client-Database", ["punctuation", "."], "port ", ["punctuation", "="],
["value", "3308"], ["punctuation", ";"],
"\r\nmy-own-variable ", ["punctuation", "="],
["value", "something"], ["punctuation", ";"]
]
----------------------------------------------------
Checks for default values.

View file

@ -0,0 +1,12 @@
load-balance-able.*
----------------------------------------------------
[
"load-balance-able", ["punctuation", "."],
["wildcard", "*"]
]
----------------------------------------------------
Checks for wildcards.