… Class selectors 1 E#myid an E element with ID equal to myid . ID selectors 1 E[foo] an E element with a foo attribute Attribute selectors 2 E[foo="bar"] an E element whose foo attribute value is exactly equal to bar Attribute selectors 2 E[foo="bar" i] an E element whose foo att…
…e builder) to enable or disable, the classic example is brought by the --enable-foo or --with-bar options at ./configure call (those parameters are used to enable dependencies that are off by default, but there are cases when the dependencies are on by default so you have --disab…
…y, here’s a minimal example of the PHP code required to create a shortcode: // [foobar] function wporg_foobar_func( $atts ) { return "foo and bar"; } add_shortcode( 'foobar', 'wporg_foobar_func' ); This will create [foobar] shortcode that returns as: foo and bar With attributes: …
…creation, adding the following lines to the "LocalSettings.php" file defines a "Foo" namespace 3000 and its associated "Foo_talk" namespace. Note that having a talk namespace associated with your custom namespace is currently a hard requirement. // Define constants for my additio…
…t Like Loading... Columns UI is an alternative skinnable user interface for the Foobar2000 audio player. Playlist view with columns, grouping and artwork In-line metadata editing Customizable layout through interchangeable panel and toolbar components Built-in panels: playlist vi…
…pplied. This pseudo-class can increase the specificity of a rule. For example, #foo:not(#bar) will match the same element as the simpler #foo , but has the higher specificity of two id selectors. The specificity of the :not() pseudo-class is replaced by the specificity of the mos…
…is any property whose name starts with two dashes (U+002D HYPHEN-MINUS), like --foo . The <custom-property-name> production corresponds to this: it’s defined as any <dashed-ident> (a valid identifier that starts with two dashes), except -- itself, which is reserved for future use…
…is any property whose name starts with two dashes (U+002D HYPHEN-MINUS), like --foo . The <custom-property-name> production corresponds to this: it’s defined as any <dashed-ident> (a valid identifier that starts with two dashes), except -- itself, which is reserved for future use…
… via Unix Domain Socket. map_with_recv_port Examples map_with_recv_port http // foo example com 8000 http // example com map_with_recv_port http // foo example com 8888 http // example com Explanation: Requests received on port 8000 and 8888 are forwarded to different servers. ma…
…he current outgoing headers. All header names are lowercase. request setHeader 'Foo' 'bar' request setHeader 'Cookie' 'foo=bar' 'bar=baz' ]) const headerNames request getHeaderNames () // headerNames === ['foo', 'cookie'] request.getHeaders() Added in: v7.7.0 Returns: <Object> Re…
…ions or pipe the string into psql , for example: psql -c '\x' -c 'SELECT * FROM foo;' or echo '\x \\ SELECT * FROM foo;' | psql \\ is the separator meta-command.) Each SQL command string passed to -c is sent to the server as a single request. Because of this, the server executes …
…soname version which corresponds to the sub-slot. For example: RDEPEND dev-libs/foo:0/3 Package dependency specifications can use slot operators to clarify what should happen if the slot and/or sub-slot of a runtime dependency changes: :* Indicates that any slot value is acceptab…
…he parentheses are empty. Do not put a space following a function name. $a = getFoo ( $b ); $c = getBar (); Put a space after the : in the function return type hint, but not before: function square ( int $x ) : int { return $x * $x ; } Put spaces in brackets when declaring an arr…
… elements separated by whitespace , and surrounded by parentheses. For example, foo is a list whose elements are the three atoms , and foo . These values are implicitly typed: they are respectively two integers and a Lisp-specific data type called a "symbol", and do not have to b…
…s, e.g. {{ subst : PAGENAME }} or {{ subst : #switch: {{ NUMBEROFADMINS }}| 1 = Foo | 1000 = Bar | #default = Baz }} . There may be white space between the opening braces and the "subst:". However it is recommended not to have any space or newlines immediately after the "subst:",…