mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
2a4b879c21
commit
63664e6c1c
1155 changed files with 62261 additions and 84 deletions
13
dashboard-ui/bower_components/prism/tests/languages/roboconf/comment_feature.test
vendored
Normal file
13
dashboard-ui/bower_components/prism/tests/languages/roboconf/comment_feature.test
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
#
|
||||
# Foobar
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["comment", "#"],
|
||||
["comment", "# Foobar"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for comments.
|
13
dashboard-ui/bower_components/prism/tests/languages/roboconf/component_feature.test
vendored
Normal file
13
dashboard-ui/bower_components/prism/tests/languages/roboconf/component_feature.test
vendored
Normal 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.
|
19
dashboard-ui/bower_components/prism/tests/languages/roboconf/keyword_feature.test
vendored
Normal file
19
dashboard-ui/bower_components/prism/tests/languages/roboconf/keyword_feature.test
vendored
Normal 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.
|
11
dashboard-ui/bower_components/prism/tests/languages/roboconf/optional_feature.test
vendored
Normal file
11
dashboard-ui/bower_components/prism/tests/languages/roboconf/optional_feature.test
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
(optional)
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
["optional", "(optional)"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for optional flag.
|
17
dashboard-ui/bower_components/prism/tests/languages/roboconf/property_feature.test
vendored
Normal file
17
dashboard-ui/bower_components/prism/tests/languages/roboconf/property_feature.test
vendored
Normal 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.
|
20
dashboard-ui/bower_components/prism/tests/languages/roboconf/value_feature.test
vendored
Normal file
20
dashboard-ui/bower_components/prism/tests/languages/roboconf/value_feature.test
vendored
Normal 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.
|
12
dashboard-ui/bower_components/prism/tests/languages/roboconf/wildcard_feature.test
vendored
Normal file
12
dashboard-ui/bower_components/prism/tests/languages/roboconf/wildcard_feature.test
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
load-balance-able.*
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
[
|
||||
"load-balance-able", ["punctuation", "."],
|
||||
["wildcard", "*"]
|
||||
]
|
||||
|
||||
----------------------------------------------------
|
||||
|
||||
Checks for wildcards.
|
Loading…
Add table
Add a link
Reference in a new issue