Changes between Version 7 and Version 8 of Ru:Help/Styles/MapCSSImplementation
- Timestamp:
- 2018-04-04T08:59:35+02:00 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ru:Help/Styles/MapCSSImplementation
v7 v8 352 352 /* Заметьте, что регулярное выражение должно быть заключено в /.../ */ 353 353 }}} 354 Case-insensitive matching can be enabled via the embeddedflag expression `(?i)` (see[https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#CASE_INSENSITIVE Pattern.CASE_INSENSITIVE]).354 Нечувствительное к регистру условие можно включить с помощью встроенного flag expression `(?i)` (см. [https://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html#CASE_INSENSITIVE Pattern.CASE_INSENSITIVE]). 355 355 {{{ 356 356 #!mapcss … … 360 360 |------------------------------------------------------------------------------- 361 361 {{{#!td align=left valign=top 362 `!~` ( sincer6455)363 }}} 364 {{{#!td align=left valign=top 365 negated[https://download.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html#sumRegular expression] match362 `!~` (начиная с r6455) 363 }}} 364 {{{#!td align=left valign=top 365 несоответствие [https://download.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html#sum регулярному выражению] 366 366 367 367 }}} … … 374 374 |------------------------------------------------------------------------------- 375 375 {{{#!td align=left valign=top 376 `∈` ([http://www.fileformat.info/info/unicode/char/2208/index.htm U+2208], sincer6609)377 }}} 378 {{{#!td align=left valign=top 379 element of 376 `∈` ([http://www.fileformat.info/info/unicode/char/2208/index.htm U+2208], с r6609) 377 }}} 378 {{{#!td align=left valign=top 379 является элементом ... 380 380 381 381 }}} … … 384 384 #!mapcss 385 385 node[amenity=parking] ∈ *[amenity=parking] { 386 throwWarning: tr("{0} inside{1}", "amenity=parking", "amenity=parking");387 } 388 }}} 389 }}} 390 |------------------------------------------------------------------------------- 391 {{{#!td align=left valign=top 392 `⧉` ([http://www.fileformat.info/info/unicode/char/29c9/index.htm U+29C9], sincer6613)393 }}} 394 {{{#!td align=left valign=top 395 crossing 386 throwWarning: tr("{0} внутри {1}", "amenity=parking", "amenity=parking"); 387 } 388 }}} 389 }}} 390 |------------------------------------------------------------------------------- 391 {{{#!td align=left valign=top 392 `⧉` ([http://www.fileformat.info/info/unicode/char/29c9/index.htm U+29C9], с r6613) 393 }}} 394 {{{#!td align=left valign=top 395 пересечение 396 396 397 397 }}} … … 400 400 #!mapcss 401 401 area:closed:areaStyle ⧉ area:closed:areaStyle { 402 throwOther: tr(" Overlapping Areas");403 } 404 }}} 405 takes`layer`tag into account if set (sincer12986)402 throwOther: tr("Перекрывающиеся области"); 403 } 404 }}} 405 принимает во внимание тег `layer`, если он задан (начиная с r12986) 406 406 }}} 407 407