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

remove unneeded libs

This commit is contained in:
Luke Pulverenti 2016-02-02 22:15:42 -05:00
parent 5aaaf08723
commit 59ea1c2f7d
1109 changed files with 0 additions and 58758 deletions

View file

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

View file

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

View file

@ -1,19 +0,0 @@
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

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

View file

@ -1,17 +0,0 @@
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

@ -1,20 +0,0 @@
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

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