Файловый менеджер - Редактировать - /var/www/html/cssjanus.zip
Ðазад
PK ! �m%� � cssjanus/README.mdnu �Iw�� [](https://packagist.org/packages/cssjanus/cssjanus) # CSSJanus Convert CSS stylesheets between left-to-right and right-to-left. ## Usage ```php transform( string $css, bool $swapLtrInURL = false, bool $swapLeftInURL = false ) : string ``` Parameters; * ``$css`` (string) Stylesheet to transform. * ``$swapLtrInURL`` (boolean) Swap `ltr` to `rtl` direction in URLs. * ``$swapLeftInURL`` (boolean) Swap `left` and `right` edges in URLs. Example: ```php $rtlCss = CSSJanus::transform( $ltrCss ); ``` ### Preventing flipping If a rule is not meant to be flipped by CSSJanus, use a `/* @noflip */` comment to protect the rule. ```css .rule1 { /* Will be converted to margin-right */ margin-left: 1em; } /* @noflip */ .rule2 { /* Will be preserved as margin-left */ margin-left: 1em; } ``` ## Port This is a PHP port of the Node.js implementation of CSSJanus. Feature requests and bugs related to the actual CSS transformation logic or test cases of it, should be submitted upstream at <https://github.com/cssjanus/cssjanus>. CSSJanus was originally a [Google project](http://code.google.com/p/cssjanus/). ## Contribute * Issue tracker: <https://phabricator.wikimedia.org/tag/cssjanus/> * Source code: <https://gerrit.wikimedia.org/g/mediawiki/libs/php-cssjanus> * Submit patches via Gerrit: <https://www.mediawiki.org/wiki/Developer_account> PK ! �b�O �O cssjanus/src/CSSJanus.phpnu �Iw�� <?php /** * PHP port of CSSJanus. https://www.mediawiki.org/wiki/CSSJanus * * Copyright 2020 Timo Tijhof * Copyright 2014 Trevor Parscal * Copyright 2010 Roan Kattouw * Copyright 2008 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * @file */ /** * CSSJanus is a utility that converts CSS stylesheets * from left-to-right (LTR) to right-to-left (RTL). */ class CSSJanus { private const TOKEN_TMP = '`TMP`'; private const TOKEN_LTR_TMP = '`TMPLTR`'; private const TOKEN_RTL_TMP = '`TMPRTL`'; private const TOKEN_COMMENT = '`COMMENT`'; private static $patterns = null; private static function buildPatterns() { if ( self::$patterns !== null ) { return; } // Patterns defined as null are built dynamically $patterns = [ 'nonAscii' => '[\200-\377]', 'unicode' => '(?:(?:\\\\[0-9a-f]{1,6})(?:\r\n|\s)?)', 'num' => '(?:[0-9]*\.[0-9]+|[0-9]+)', 'unit' => '(?:em|ex|px|cm|mm|in|pt|pc|deg|rad|grad|ms|s|hz|khz|%)', 'body_selector' => 'body\s*{\s*', 'direction' => 'direction\s*:\s*', 'escape' => null, 'nmstart' => null, 'nmchar' => null, 'ident' => null, 'quantity' => null, 'possibly_negative_quantity' => null, 'color' => null, 'url_special_chars' => '[!#$%&*-~]', 'valid_after_uri_chars' => '[\'\"]?\s*', 'url_chars' => null, 'lookahead_not_open_brace' => null, 'lookahead_not_closing_paren' => null, 'lookahead_for_closing_paren' => null, 'lookahead_not_letter' => '(?![a-zA-Z])', 'lookbehind_not_letter' => '(?<![a-zA-Z])', 'chars_within_selector' => '[^\}]*?', 'noflip_annotation' => '\/\*\!?\s*@noflip\s*\*\/', 'noflip_single' => null, 'noflip_class' => null, 'comment' => '/\/\*[^*]*\*+([^\/*][^*]*\*+)*\//', 'direction_ltr' => null, 'direction_rtl' => null, 'left' => null, 'right' => null, 'left_in_url' => null, 'right_in_url' => null, 'ltr_dir_selector' => '/(:dir\( *)ltr( *\))/', 'rtl_dir_selector' => '/(:dir\( *)rtl( *\))/', 'ltr_in_url' => null, 'rtl_in_url' => null, 'cursor_east' => null, 'cursor_west' => null, 'four_notation_quantity' => null, 'four_notation_color' => null, 'border_radius' => null, 'box_shadow' => null, 'text_shadow1' => null, 'text_shadow2' => null, 'bg_horizontal_percentage' => null, 'bg_horizontal_percentage_x' => null, 'suffix' => '(\s*(?:!important\s*)?[;}])' ]; // @codingStandardsIgnoreStart Generic.Files.LineLength.TooLong $patterns['escape'] = "(?:{$patterns['unicode']}|\\\\[^\\r\\n\\f0-9a-f])"; $patterns['nmstart'] = "(?:[_a-z]|{$patterns['nonAscii']}|{$patterns['escape']})"; $patterns['nmchar'] = "(?:[_a-z0-9-]|{$patterns['nonAscii']}|{$patterns['escape']})"; $patterns['ident'] = "-?{$patterns['nmstart']}{$patterns['nmchar']}*"; $patterns['quantity'] = "{$patterns['num']}(?:\s*{$patterns['unit']}|{$patterns['ident']})?"; $patterns['possibly_negative_quantity'] = "((?:-?{$patterns['quantity']})|(?:inherit|auto))"; $patterns['possibly_negative_simple_quantity'] = "(?:-?{$patterns['num']}(?:\s*{$patterns['unit']})?)"; $patterns['math_operator'] = '(?:\+|\-|\*|\/)'; $patterns['allowed_chars'] = '(?:\(|\)|\t| )'; $patterns['calc_equation'] = "(?:{$patterns['allowed_chars']}|{$patterns['possibly_negative_simple_quantity']}|{$patterns['math_operator']}){3,}"; $patterns['calc'] = "(?:calc\((?:{$patterns['calc_equation']})\))"; $patterns['possibly_negative_quantity_calc'] = "((?:-?{$patterns['quantity']})|(?:inherit|auto)|{$patterns['calc']})"; $patterns['color'] = "(#?{$patterns['nmchar']}+|(?:rgba?|hsla?)\([ \d.,%-]+\))"; // Use "*+" instead of "*?" to avoid reaching the backtracking limit. // <https://phabricator.wikimedia.org/T326481>, <https://phabricator.wikimedia.org/T215746#4944830>. $patterns['url_chars'] = "(?:{$patterns['url_special_chars']}|{$patterns['nonAscii']}|{$patterns['escape']})*+"; $patterns['lookahead_not_open_brace'] = "(?!({$patterns['nmchar']}|\\r?\\n|\s|#|\:|\.|\,|\+|>|~|\(|\)|\[|\]|=|\*=|~=|\^=|'[^']*'|\"[^\"]*\"|" . self::TOKEN_COMMENT . ")*+{)"; $patterns['lookahead_not_closing_paren'] = "(?!{$patterns['url_chars']}{$patterns['valid_after_uri_chars']}\))"; $patterns['lookahead_for_closing_paren'] = "(?={$patterns['url_chars']}{$patterns['valid_after_uri_chars']}\))"; $patterns['noflip_single'] = "/({$patterns['noflip_annotation']}{$patterns['lookahead_not_open_brace']}[^;}]+;?)/i"; $patterns['noflip_class'] = "/({$patterns['noflip_annotation']}{$patterns['chars_within_selector']}})/i"; $patterns['direction_ltr'] = "/({$patterns['direction']})ltr/i"; $patterns['direction_rtl'] = "/({$patterns['direction']})rtl/i"; $patterns['left'] = "/{$patterns['lookbehind_not_letter']}(left){$patterns['lookahead_not_letter']}{$patterns['lookahead_not_closing_paren']}{$patterns['lookahead_not_open_brace']}/i"; $patterns['right'] = "/{$patterns['lookbehind_not_letter']}(right){$patterns['lookahead_not_letter']}{$patterns['lookahead_not_closing_paren']}{$patterns['lookahead_not_open_brace']}/i"; $patterns['left_in_url'] = "/{$patterns['lookbehind_not_letter']}(left){$patterns['lookahead_for_closing_paren']}/i"; $patterns['right_in_url'] = "/{$patterns['lookbehind_not_letter']}(right){$patterns['lookahead_for_closing_paren']}/i"; $patterns['ltr_in_url'] = "/{$patterns['lookbehind_not_letter']}(ltr){$patterns['lookahead_for_closing_paren']}/i"; $patterns['rtl_in_url'] = "/{$patterns['lookbehind_not_letter']}(rtl){$patterns['lookahead_for_closing_paren']}/i"; $patterns['cursor_east'] = "/{$patterns['lookbehind_not_letter']}([ns]?)e-resize/"; $patterns['cursor_west'] = "/{$patterns['lookbehind_not_letter']}([ns]?)w-resize/"; $patterns['four_notation_quantity_props'] = "((?:margin|padding|border-width)\s*:\s*)"; $patterns['four_notation_quantity'] = "/{$patterns['four_notation_quantity_props']}{$patterns['possibly_negative_quantity_calc']}(\s+){$patterns['possibly_negative_quantity_calc']}(\s+){$patterns['possibly_negative_quantity_calc']}(\s+){$patterns['possibly_negative_quantity_calc']}{$patterns['suffix']}/i"; $patterns['four_notation_color'] = "/((?:-color|border-style)\s*:\s*){$patterns['color']}(\s+){$patterns['color']}(\s+){$patterns['color']}(\s+){$patterns['color']}{$patterns['suffix']}/i"; // border-radius: <length or percentage>{1,4} [optional: / <length or percentage>{1,4} ] $patterns['border_radius'] = '/(border-radius\s*:\s*)' . $patterns['possibly_negative_quantity'] . '(?:(?:\s+' . $patterns['possibly_negative_quantity'] . ')(?:\s+' . $patterns['possibly_negative_quantity'] . ')?(?:\s+' . $patterns['possibly_negative_quantity'] . ')?)?' . '(?:(?:(?:\s*\/\s*)' . $patterns['possibly_negative_quantity'] . ')(?:\s+' . $patterns['possibly_negative_quantity'] . ')?(?:\s+' . $patterns['possibly_negative_quantity'] . ')?(?:\s+' . $patterns['possibly_negative_quantity'] . ')?)?' . $patterns['suffix'] . '/i'; $patterns['box_shadow'] = "/(box-shadow\s*:\s*(?:inset\s*)?){$patterns['possibly_negative_quantity']}/i"; $patterns['text_shadow1'] = "/(text-shadow\s*:\s*){$patterns['possibly_negative_quantity']}(\s*){$patterns['color']}/i"; $patterns['text_shadow2'] = "/(text-shadow\s*:\s*){$patterns['color']}(\s*){$patterns['possibly_negative_quantity']}/i"; $patterns['text_shadow3'] = "/(text-shadow\s*:\s*){$patterns['possibly_negative_quantity']}/i"; $patterns['bg_horizontal_percentage'] = "/(background(?:-position)?\s*:\s*(?:[^:;}\s]+\s+)*?)({$patterns['quantity']})/i"; $patterns['bg_horizontal_percentage_x'] = "/(background-position-x\s*:\s*)(-?{$patterns['num']}%)/i"; $patterns['translate_x'] = "/(transform\s*:[^;}]*)(translateX\s*\(\s*){$patterns['possibly_negative_quantity']}(\s*\))/i"; $patterns['translate'] = "/(transform\s*:[^;}]*)(translate\s*\(\s*){$patterns['possibly_negative_quantity']}((?:\s*,\s*{$patterns['possibly_negative_quantity']}){0,2}\s*\))/i"; // @codingStandardsIgnoreEnd self::$patterns = $patterns; } /** * Transform an LTR stylesheet to RTL * * @param string $css Stylesheet to transform * @param bool|array{transformDirInUrl?:bool,transformEdgeInUrl?:bool} $options Options array, * or value of transformDirInUrl option (back-compat) * - transformDirInUrl: Transform directions in URLs (ltr/rtl). Default: false. * - transformEdgeInUrl: Transform edges in URLs (left/right). Default: false. * @param bool $transformEdgeInUrl [optional] For back-compat * @return string Transformed stylesheet */ public static function transform( $css, $options = [], $transformEdgeInUrl = false ) { if ( !is_array( $options ) ) { $options = [ 'transformDirInUrl' => (bool)$options, 'transformEdgeInUrl' => (bool)$transformEdgeInUrl, ]; } // Defaults $options += [ 'transformDirInUrl' => false, 'transformEdgeInUrl' => false, ]; self::buildPatterns(); // We wrap tokens in ` , not ~ like the original implementation does. // This was done because ` is not a legal character in CSS and can only // occur in URLs, where we escape it to %60 before inserting our tokens. $css = str_replace( '`', '%60', $css ); // Tokenize single line rules with /* @noflip */ $noFlipSingle = new CSSJanusTokenizer( self::$patterns['noflip_single'], '`NOFLIP_SINGLE`' ); $css = $noFlipSingle->tokenize( $css ); // Tokenize class rules with /* @noflip */ $noFlipClass = new CSSJanusTokenizer( self::$patterns['noflip_class'], '`NOFLIP_CLASS`' ); $css = $noFlipClass->tokenize( $css ); // Tokenize comments $comments = new CSSJanusTokenizer( self::$patterns['comment'], self::TOKEN_COMMENT ); $css = $comments->tokenize( $css ); // LTR->RTL fixes start here $css = self::fixDirection( $css ); if ( $options['transformDirInUrl'] ) { $css = self::fixLtrRtlInURL( $css ); } if ( $options['transformEdgeInUrl'] ) { $css = self::fixLeftRightInURL( $css ); } $css = self::fixLeftAndRight( $css ); $css = self::fixCursorProperties( $css ); $css = self::fixFourPartNotation( $css ); $css = self::fixBorderRadius( $css ); $css = self::fixBackgroundPosition( $css ); $css = self::fixShadows( $css ); $css = self::fixTranslate( $css ); // Detokenize stuff we tokenized before $css = $comments->detokenize( $css ); $css = $noFlipClass->detokenize( $css ); $css = $noFlipSingle->detokenize( $css ); return $css; } /** * Replace direction: ltr; with direction: rtl; and vice versa. * * The original implementation only does this inside body selectors * and misses "body\n{\ndirection:ltr;\n}". This function does not have * these problems. * * See https://code.google.com/p/cssjanus/issues/detail?id=15 * * @param string $css * @return string */ private static function fixDirection( $css ) { $css = preg_replace( self::$patterns['direction_ltr'], '$1' . self::TOKEN_TMP, $css ); $css = preg_replace( self::$patterns['direction_rtl'], '$1ltr', $css ); $css = str_replace( self::TOKEN_TMP, 'rtl', $css ); return $css; } /** * Replace 'ltr' with 'rtl' and vice versa in background URLs * @param string $css * @return string */ private static function fixLtrRtlInURL( $css ) { $css = preg_replace( self::$patterns['ltr_dir_selector'], '$1' . self::TOKEN_LTR_TMP . '$2', $css ); $css = preg_replace( self::$patterns['rtl_dir_selector'], '$1' . self::TOKEN_RTL_TMP . '$2', $css ); $css = preg_replace( self::$patterns['ltr_in_url'], self::TOKEN_TMP, $css ); $css = preg_replace( self::$patterns['rtl_in_url'], 'ltr', $css ); $css = str_replace( self::TOKEN_TMP, 'rtl', $css ); $css = str_replace( self::TOKEN_LTR_TMP, 'ltr', $css ); $css = str_replace( self::TOKEN_RTL_TMP, 'rtl', $css ); return $css; } /** * Replace 'left' with 'right' and vice versa in background URLs * @param string $css * @return string */ private static function fixLeftRightInURL( $css ) { $css = preg_replace( self::$patterns['left_in_url'], self::TOKEN_TMP, $css ); $css = preg_replace( self::$patterns['right_in_url'], 'left', $css ); $css = str_replace( self::TOKEN_TMP, 'right', $css ); return $css; } /** * Flip rules like left: , padding-right: , etc. * @param string $css * @return string */ private static function fixLeftAndRight( $css ) { $css = preg_replace( self::$patterns['left'], self::TOKEN_TMP, $css ); $css = preg_replace( self::$patterns['right'], 'left', $css ); $css = str_replace( self::TOKEN_TMP, 'right', $css ); return $css; } /** * Flip East and West in rules like cursor: nw-resize; * @param string $css * @return string */ private static function fixCursorProperties( $css ) { $css = preg_replace( self::$patterns['cursor_east'], '$1' . self::TOKEN_TMP, $css ); $css = preg_replace( self::$patterns['cursor_west'], '$1e-resize', $css ); $css = str_replace( self::TOKEN_TMP, 'w-resize', $css ); return $css; } /** * Swap the second and fourth parts in four-part notation rules like * padding: 1px 2px 3px 4px; * * Unlike the original implementation, this function doesn't suffer from * the bug where whitespace is not preserved when flipping four-part rules * and four-part color rules with multiple whitespace characters between * colors are not recognized. * See https://code.google.com/p/cssjanus/issues/detail?id=16 * @param string $css * @return string */ private static function fixFourPartNotation( $css ) { $css = preg_replace( self::$patterns['four_notation_quantity'], '$1$2$3$8$5$6$7$4$9', $css ); $css = preg_replace( self::$patterns['four_notation_color'], '$1$2$3$8$5$6$7$4$9', $css ); return $css; } /** * Swaps appropriate corners in border-radius values. * * @param string $css * @return string */ private static function fixBorderRadius( $css ) { return preg_replace_callback( self::$patterns['border_radius'], [ self::class, 'calculateBorderRadius' ], $css ); } /** * Callback for fixBorderRadius() * @param array $matches * @return string */ private static function calculateBorderRadius( $matches ) { $pre = $matches[1]; $firstGroup = array_filter( array_slice( $matches, 2, 4 ), 'strlen' ); $secondGroup = array_filter( array_slice( $matches, 6, 4 ), 'strlen' ); $post = $matches[10] ?: ''; if ( $secondGroup ) { $values = self::flipBorderRadiusValues( $firstGroup ) . ' / ' . self::flipBorderRadiusValues( $secondGroup ); } else { $values = self::flipBorderRadiusValues( $firstGroup ); } return $pre . $values . $post; } /** * Callback for fixBorderRadius() * @param array $values Matched values * @return string Flipped values */ private static function flipBorderRadiusValues( $values ) { switch ( count( $values ) ) { case 4: $values = [ $values[1], $values[0], $values[3], $values[2] ]; break; case 3: $values = [ $values[1], $values[0], $values[1], $values[2] ]; break; case 2: $values = [ $values[1], $values[0] ]; break; case 1: $values = [ $values[0] ]; break; } return implode( ' ', $values ); } /** * Flips the sign of a CSS value, possibly with a unit. * * We can't just negate the value with unary minus due to the units. * * @param string $cssValue * @return string */ private static function flipSign( $cssValue ) { // Don't mangle zeroes if ( floatval( $cssValue ) === 0.0 ) { return $cssValue; } elseif ( $cssValue[0] === '-' ) { return substr( $cssValue, 1 ); } else { return "-" . $cssValue; } } /** * Negates horizontal offset in box-shadow and text-shadow rules. * * @param string $css * @return string */ private static function fixShadows( $css ) { $css = preg_replace_callback( self::$patterns['box_shadow'], function ( $matches ) { return $matches[1] . self::flipSign( $matches[2] ); }, $css ); $css = preg_replace_callback( self::$patterns['text_shadow1'], function ( $matches ) { return $matches[1] . $matches[2] . $matches[3] . self::flipSign( $matches[4] ); }, $css ); $css = preg_replace_callback( self::$patterns['text_shadow2'], function ( $matches ) { return $matches[1] . $matches[2] . $matches[3] . self::flipSign( $matches[4] ); }, $css ); $css = preg_replace_callback( self::$patterns['text_shadow3'], function ( $matches ) { return $matches[1] . self::flipSign( $matches[2] ); }, $css ); return $css; } /** * Negates horizontal offset in tranform: translate() * * @param string $css * @return string */ private static function fixTranslate( $css ) { $css = preg_replace_callback( self::$patterns['translate'], function ( $matches ) { return $matches[1] . $matches[2] . self::flipSign( $matches[3] ) . $matches[4]; }, $css ); $css = preg_replace_callback( self::$patterns['translate_x'], function ( $matches ) { return $matches[1] . $matches[2] . self::flipSign( $matches[3] ) . $matches[4]; }, $css ); return $css; } /** * Flip horizontal background percentages. * @param string $css * @return string */ private static function fixBackgroundPosition( $css ) { $replaced = preg_replace_callback( self::$patterns['bg_horizontal_percentage'], [ self::class, 'calculateNewBackgroundPosition' ], $css ); if ( $replaced !== null ) { // preg_replace_callback() sometimes returns null $css = $replaced; } $replaced = preg_replace_callback( self::$patterns['bg_horizontal_percentage_x'], [ self::class, 'calculateNewBackgroundPosition' ], $css ); if ( $replaced !== null ) { $css = $replaced; } return $css; } /** * Callback for fixBackgroundPosition() * @param array $matches * @return string */ private static function calculateNewBackgroundPosition( $matches ) { $value = $matches[2]; if ( substr( $value, -1 ) === '%' ) { $idx = strpos( $value, '.' ); if ( $idx !== false ) { $len = strlen( $value ) - $idx - 2; $value = number_format( 100 - (float)$value, $len ) . '%'; } else { $value = ( 100 - (float)$value ) . '%'; } } return $matches[1] . $value; } } /** * Utility class used by CSSJanus that tokenizes and untokenizes things we want * to protect from being janused. */ class CSSJanusTokenizer { private $regex; private $token; private $originals; /** * Constructor * @param string $regex Regular expression whose matches to replace by a token. * @param string $token Token */ public function __construct( $regex, $token ) { $this->regex = $regex; $this->token = $token; $this->originals = []; } /** * Replace all occurrences of $regex in $str with a token and remember * the original strings. * @param string $str to tokenize * @return string Tokenized string */ public function tokenize( $str ) { return preg_replace_callback( $this->regex, [ $this, 'tokenizeCallback' ], $str ); } /** * @param array $matches * @return string */ private function tokenizeCallback( $matches ) { $this->originals[] = $matches[0]; return $this->token; } /** * Replace tokens with their originals. If multiple strings were tokenized, it's important they be * detokenized in exactly the SAME ORDER. * @param string $str previously run through tokenize() * @return string Original string */ public function detokenize( $str ) { // PHP has no function to replace only the first occurrence or to // replace occurrences of the same string with different values, // so we use preg_replace_callback() even though we don't really need a regex return preg_replace_callback( '/' . preg_quote( $this->token, '/' ) . '/', [ $this, 'detokenizeCallback' ], $str ); } /** * @param array $matches * @return mixed */ private function detokenizeCallback( $matches ) { $retval = current( $this->originals ); next( $this->originals ); return $retval; } } PK ! ���^, ^, cssjanus/APACHE-LICENSE-2.0.txtnu �Iw�� Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. PK ! 6��e� � cssjanus/SECURITY.mdnu �Iw�� # Security policy ## Supported versions The latest release is supported with security updates. ## Reporting a vulnerability Wikimedia takes security seriously. If you believe you have found a security issue, see [mediawiki.org/wiki/Reporting_security_bugs](https://www.mediawiki.org/wiki/Reporting_security_bugs) for how to responsibly report it, so we can take steps to address it as quickly as possible. Thanks! PK ! K�p�| | cssjanus/CODE_OF_CONDUCT.mdnu �Iw�� This project adheres to the [Wikimedia Code of Conduct](https://www.mediawiki.org/wiki/Special:MyLanguage/Code_of_Conduct). PK ! O�1�� � cssjanus/NOTICE.txtnu �Iw�� PHP port of CSSJanus. https://www.mediawiki.org/wiki/CSSJanus Copyright 2020 Timo Tijhof Copyright 2014 Trevor Parscal Copyright 2010 Roan Kattouw Copyright 2008 Google Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. PK ! =���h h cssjanus/AUTHORS.txtnu �Iw�� Principal authors and major contributors (alphabetically): Bryon Engelhardt <ebryon77@gmail.com> Ed Sanders <ejsanders@gmail.com> James Forrester <jforrester@wikimedia.org> Lindsey Simon <elsigh@google.com> Roan Kattouw <roankattouw@gmail.com> Roozbeh Pournader <roozbeh@gmail.com> Timo Tijhof <krinklemail@gmail.com> Trevor Parscal <trevorparscal@gmail.com> PK ! r�� � cssjanus/composer.jsonnu �Iw�� { "name": "cssjanus/cssjanus", "description": "Convert CSS stylesheets between left-to-right and right-to-left.", "license": "Apache-2.0", "homepage": "https://www.mediawiki.org/wiki/CSSJanus", "authors": [ { "name": "Roan Kattouw" }, { "name": "Trevor Parscal" }, { "name": "Timo Tijhof" } ], "autoload": { "psr-0": { "": "src/" } }, "require": { "php": ">=7.4.0" }, "require-dev": { "mediawiki/mediawiki-codesniffer": "43.0.0", "mediawiki/mediawiki-phan-config": "0.14.0", "php-parallel-lint/php-parallel-lint": "1.3.2", "phpunit/phpunit": "9.6.16" }, "scripts": { "test": [ "parallel-lint . --exclude vendor", "phpunit", "@phpcs", "@phan" ], "cover": "phpunit --coverage-html coverage", "phan": "phan --allow-polyfill-parser", "fix": [ "phpcbf" ], "phpcs": "phpcs -sp" }, "config": { "allow-plugins": { "dealerdirect/phpcodesniffer-composer-installer": true } } } PK ! �m%� � cssjanus/README.mdnu �Iw�� PK ! �b�O �O � cssjanus/src/CSSJanus.phpnu �Iw�� PK ! ���^, ^, �U cssjanus/APACHE-LICENSE-2.0.txtnu �Iw�� PK ! 6��e� � j� cssjanus/SECURITY.mdnu �Iw�� PK ! K�p�| | Q� cssjanus/CODE_OF_CONDUCT.mdnu �Iw�� PK ! O�1�� � � cssjanus/NOTICE.txtnu �Iw�� PK ! =���h h � cssjanus/AUTHORS.txtnu �Iw�� PK ! r�� � É cssjanus/composer.jsonnu �Iw�� PK � ƍ
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка