tags
5 | if ($element->tag === 'b')
6 | $element->outertext = '';
7 | }
8 |
9 | // Register the callback function with its function name
10 | $html->set_callback('my_callback');
11 |
12 | // Callback function will be invoked while dumping
13 | echo $html;
14 | ```
--------------------------------------------------------------------------------
/codemirror/mode/d/test.js:
--------------------------------------------------------------------------------
1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others
2 | // Distributed under an MIT license: https://codemirror.net/LICENSE
3 |
4 | (function() {
5 | var mode = CodeMirror.getMode({indentUnit: 2}, "d");
6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); }
7 |
8 | MT("nested_comments",
9 | "[comment /+]","[comment comment]","[comment +/]","[variable void] [variable main](){}");
10 |
11 | })();
12 |
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlDocument/copy_until_char.md:
--------------------------------------------------------------------------------
1 | ```php
2 | copy_until ( string $char ) : string
3 | ```
4 |
5 | Copies all characters starting at the current parsing position in the document. Sets the parsing position to the first character that matches the provided character.
6 |
7 | | Parameter | Description |
8 | |-----------|---------------------------------|
9 | | `char` | A character to stop copying at. |
10 |
11 | Returns the copied characters.
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlNode/__construct.md:
--------------------------------------------------------------------------------
1 | ```php
2 | __construct ( [ object $dom ] ) : object
3 | ```
4 |
5 | | Parameter | Description |
6 | |-----------|---------------------------------------------------------------|
7 | | `dom` | An object of type [`HtmlDocument`](../HtmlDocument/index.md). |
8 |
9 | Constructs a new object of type `HtmlNode`, assigns `$dom` as DOM object and adds itself to the list of nodes in `$dom`.
10 |
--------------------------------------------------------------------------------
/vendor/adinan-cenci/radio-browser/examples/z-pick-a-server.php:
--------------------------------------------------------------------------------
1 | ';
20 | echo RadioBrowser::pickAServer();
21 | echo '';
22 |
--------------------------------------------------------------------------------
/codemirror/test/mode_test.css:
--------------------------------------------------------------------------------
1 | .mt-output .mt-token {
2 | border: 1px solid #ddd;
3 | white-space: pre;
4 | font-family: "Consolas", monospace;
5 | text-align: center;
6 | }
7 |
8 | .mt-output .mt-style {
9 | font-size: x-small;
10 | }
11 |
12 | .mt-output .mt-state {
13 | font-size: x-small;
14 | vertical-align: top;
15 | }
16 |
17 | .mt-output .mt-state-row {
18 | display: none;
19 | }
20 |
21 | .mt-state-unhide .mt-output .mt-state-row {
22 | display: table-row;
23 | }
24 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/list.less:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .@{fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: @fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .@{fa-css-prefix}-li {
11 | position: absolute;
12 | left: -@fa-li-width;
13 | width: @fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.@{fa-css-prefix}-lg {
17 | left: (-@fa-li-width + (4em / 14));
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlNode/is_block_element.md:
--------------------------------------------------------------------------------
1 | ```php
2 | is_block_element ( object $node ) : bool
3 | ```
4 |
5 | | Parameter | Description |
6 | |-----------|-------------|
7 | | `node` | A node |
8 |
9 | Returns true if the provided element is a block level element.
10 |
11 | Find more information about block level elements at
12 | [https://www.w3resource.com/html/HTML-block-level-and-inline-elements.php](https://www.w3resource.com/html/HTML-block-level-and-inline-elements.php)
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_list.scss:
--------------------------------------------------------------------------------
1 | // List Icons
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix}-ul {
5 | padding-left: 0;
6 | margin-left: $fa-li-width;
7 | list-style-type: none;
8 | > li { position: relative; }
9 | }
10 | .#{$fa-css-prefix}-li {
11 | position: absolute;
12 | left: -$fa-li-width;
13 | width: $fa-li-width;
14 | top: (2em / 14);
15 | text-align: center;
16 | &.#{$fa-css-prefix}-lg {
17 | left: -$fa-li-width + (4em / 14);
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlNode/convert_text.md:
--------------------------------------------------------------------------------
1 | ```php
2 | convert_text ( string $text ) : string
3 | ```
4 |
5 | | Parameter | Description |
6 | |-----------|------------------|
7 | | `text` | Text to convert. |
8 |
9 | Assumes that the provided text is in the form of the configured source character set (see [`sourceCharset`](../HtmlDocument/index.md)) and converts it to the specified target character set (see [`targetCharset`](../HtmlDocument/index.md)).
10 |
11 | Returns the converted text.
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlDocument/getElementsByTagName.md:
--------------------------------------------------------------------------------
1 | ```php
2 | getElementsByTagName ( string $name [, int $idx = -1 ] ) : object
3 | ```
4 |
5 | Searches elements by tag name.
6 |
7 | | Parameter | Description |
8 | |-----------|---------------------------------------------|
9 | | `name` | Tag name of the element to find. |
10 | | `idx` | Returns the element at the specified index. |
11 |
12 | Returns the element(s) or null if no match was found.
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlNode/dump.md:
--------------------------------------------------------------------------------
1 | ```php
2 | dump ( [ bool $show_attr = false [, int $depth = 0 ]] )
3 | ```
4 |
5 | | Parameter | Description |
6 | |-------------|--------------------------------------------------------|
7 | | `show_attr` | Attribute names are included in the output if enabled. |
8 | | `depth` | Depth of the current element |
9 |
10 | Dumps information about the current node and all child nodes recursively.
--------------------------------------------------------------------------------
/sql/incremental_upgrade_44.sql:
--------------------------------------------------------------------------------
1 | ALTER TABLE `track` ADD COLUMN `composer` VARCHAR(333) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';
2 |
3 | -- --------------------------------------------------------
4 |
5 | --
6 | -- Database version
7 | --
8 |
9 | UPDATE `server` SET `value` = '' WHERE `name` = 'latest_version' LIMIT 1;
10 | UPDATE `server` SET `value` = '0' WHERE `name` = 'latest_version_idle_time' LIMIT 1;
11 | UPDATE `server` SET `value` = '44' WHERE `name` = 'database_version' LIMIT 1;
--------------------------------------------------------------------------------
/vendor/composer/autoload_files.php:
--------------------------------------------------------------------------------
1 | $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php',
10 | '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php',
11 | '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php',
12 | );
13 |
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlNode/save.md:
--------------------------------------------------------------------------------
1 | ```php
2 | save ( [ string $filepath = '' ] ) : string
3 | ```
4 |
5 | Writes the current node to file.
6 |
7 | | Parameter | Description |
8 | |------------|--------------------------------------------------------|
9 | | `filepath` | Writes to file if the provided file path is not empty. |
10 |
11 | Returns the document string.
12 |
13 | **Examples**
14 |
15 | ```php
16 | $string = $node->save();
17 | $string = $node->save($file);
18 | ```
--------------------------------------------------------------------------------
/sql/incremental_upgrade_52.sql:
--------------------------------------------------------------------------------
1 | --
2 | -- Changes in `counter` table
3 | --
4 |
5 | ALTER TABLE `counter` CHANGE `album_id` `album_id` VARCHAR(100) NOT NULL DEFAULT '';
6 |
7 | -- --------------------------------------------------------
8 |
9 | --
10 | -- Database version
11 | --
12 |
13 | UPDATE `server` SET `value` = '' WHERE `name` = 'latest_version' LIMIT 1;
14 | UPDATE `server` SET `value` = '0' WHERE `name` = 'latest_version_idle_time' LIMIT 1;
15 | UPDATE `server` SET `value` = '52' WHERE `name` = 'database_version' LIMIT 1;
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlDocument/getElementsById.md:
--------------------------------------------------------------------------------
1 | ```php
2 | getElementsById ( string $id [, int $idx = null ] ) : object
3 | ```
4 |
5 | Searches elements by id.
6 |
7 | | Parameter | Description |
8 | |-----------|--------------------------------------------------------|
9 | | `id` | ID of the element to find. |
10 | | `idx` | Returns the element at the specified index if defined. |
11 |
12 | Returns the element(s) or null if no match was found.
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/less/core.less:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .@{fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/adinan-cenci/radio-browser/examples/y-get-servers-ips.php:
--------------------------------------------------------------------------------
1 | ';
20 | print_r(RadioBrowser::getServerIps());
21 | echo '';
22 |
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/HtmlDocument/copy_until.md:
--------------------------------------------------------------------------------
1 | ```php
2 | copy_until ( string $chars ) : string
3 | ```
4 |
5 | Copies all characters starting at the current parsing position in the document. Sets the parsing position to the first character that matches any of the characters in the provided list of characters.
6 |
7 | | Parameter | Description |
8 | |-----------|------------------------------------------|
9 | | `chars` | A list of characters to stop copying at. |
10 |
11 | Returns the copied characters.
--------------------------------------------------------------------------------
/fonts/font-awesome-4.7.0/scss/_core.scss:
--------------------------------------------------------------------------------
1 | // Base Class Definition
2 | // -------------------------
3 |
4 | .#{$fa-css-prefix} {
5 | display: inline-block;
6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration
7 | font-size: inherit; // can't have font-size inherit on line above, so need to override
8 | text-rendering: auto; // optimizelegibility throws things off #1094
9 | -webkit-font-smoothing: antialiased;
10 | -moz-osx-font-smoothing: grayscale;
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/vendor/guzzlehttp/promises/src/AggregateException.php:
--------------------------------------------------------------------------------
1 | =5.6"
13 | },
14 | "require-dev": {
15 | "phpunit/phpunit": "^5 || ^6.5",
16 | "php-coveralls/php-coveralls": "^2.1"
17 | },
18 | "autoload": {
19 | "files": ["src/getallheaders.php"]
20 | },
21 | "autoload-dev": {
22 | "psr-4": {
23 | "getallheaders\\Tests\\": "tests/"
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/vendor/psr/http-client/src/ClientInterface.php:
--------------------------------------------------------------------------------
1 | addClass('hidden');
19 | $node->addClass('article important');
20 | $node->addClass(array('article', 'new'));
21 | ```
--------------------------------------------------------------------------------
/sql/incremental_upgrade_49.sql:
--------------------------------------------------------------------------------
1 | -- --------------------------------------------------------
2 | --
3 | -- Zmiany w tabeli `tidal_album`
4 | --
5 |
6 | ALTER TABLE `tidal_album` ADD COLUMN `audio_quality` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '';
7 |
8 |
9 | -- --------------------------------------------------------
10 |
11 | --
12 | -- Database version
13 | --
14 |
15 | UPDATE `server` SET `value` = '' WHERE `name` = 'latest_version' LIMIT 1;
16 | UPDATE `server` SET `value` = '0' WHERE `name` = 'latest_version_idle_time' LIMIT 1;
17 | UPDATE `server` SET `value` = '49' WHERE `name` = 'database_version' LIMIT 1;
--------------------------------------------------------------------------------
/PHPsimpleHTMLDomParser/docs/examples/creating-dom-objects.md:
--------------------------------------------------------------------------------
1 | ## From string
2 |
3 | ```php
4 | load('Hello!');
10 | ```
11 |
12 | ## From URL
13 |
14 | ```php
15 | load('http://www.google.com/');
21 |
22 | ```
23 |
24 | ## From file
25 |
26 | ```php
27 | loadFile('test.htm');
33 | ```
--------------------------------------------------------------------------------
/vendor/psr/http-factory/src/ResponseFactoryInterface.php:
--------------------------------------------------------------------------------
1 | load(<<
13 |
14 |
15 | | Title |
16 | | Row 1 |
17 |
18 |
19 |