/plugin/revealjs/ |
H A D | example_presentation.dokuwiki | 120 <nowiki><fragment>text</fragment></nowiki> 122 <fragment>Hit the next arrow...</fragment> 124 <fragment>... to step through ...</fragment> 126 <fragment>... a</fragment> <fragment>fragmented</fragment> <fragment>slide.</fragment> 135 <fragment> 139 <fragment> 143 <fragment> 201 <fragment-block grow>grow</fragment-block> 203 <fragment-block shrink>shrink</fragment-block> 205 <fragment fade-out>fade-out</fragment> [all …]
|
H A D | README.md | 349 - `<fragment>` for inline usage (only formatting and substitutions supported) 350 - `<fragment-block>` for any wiki content 351 - `<fragment-list>` to overwrite the global option build_all_lists (if false) 352 - `<no-fragment-list>` to overwrite the global option build_all_lists (if true) 357 <fragment>Hit the next arrow...</fragment> 359 <fragment>... to step through ...</fragment> 361 <fragment>... a</fragment> <fragment>fragmented</fragment> <fragment>slide.</fragment>
|
/plugin/combo/grammar/ |
H A D | PageSql.g4 | 156 fragment A: [aA]; 157 fragment B: [bB]; 158 fragment C: [cC]; 159 fragment D: [dD]; 160 fragment E: [eE]; 161 fragment F: [fF]; 162 fragment G: [gG]; 163 fragment H: [hH]; 164 fragment I: [iI]; 165 fragment J: [jJ]; [all …]
|
/plugin/evesso/phpoauthlib/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 50 private $fragment = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 110 $this->fragment = isset($uriParts['fragment']) ? $uriParts['fragment'] : ''; 205 return $this->fragment; 258 if (!empty($this->fragment)) { 259 $uri .= "#{$this->fragment}"; 301 if (!empty($this->fragment)) { 302 $uri .= "#{$this->fragment}"; 345 * @param string $fragment 347 public function setFragment($fragment) argument 349 $this->fragment = $fragment;
|
H A D | UriFactoryInterface.php | 37 * @param string $fragment 41 …unction createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
|
H A D | UriFactory.php | 53 * @param string $fragment 57 …function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '') argument 66 $uri->setFragment($fragment);
|
/plugin/oauth/vendor/lusitanian/oauth/src/OAuth/Common/Http/Uri/ |
H A D | Uri.php | 50 private $fragment = ''; variable in OAuth\\Common\\Http\\Uri\\Uri 110 $this->fragment = isset($uriParts['fragment']) ? $uriParts['fragment'] : ''; 205 return $this->fragment; 258 if (!empty($this->fragment)) { 259 $uri .= "#{$this->fragment}"; 301 if (!empty($this->fragment)) { 302 $uri .= "#{$this->fragment}"; 345 * @param string $fragment 347 public function setFragment($fragment) argument 349 $this->fragment = $fragment;
|
H A D | UriFactoryInterface.php | 37 * @param string $fragment 41 …unction createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = ''); argument
|
H A D | UriFactory.php | 53 * @param string $fragment 57 …function createFromParts($scheme, $userInfo, $host, $port, $path = '', $query = '', $fragment = '') argument 66 $uri->setFragment($fragment);
|
/plugin/combo/ComboStrap/ |
H A D | DokuwikiUrl.php | 56 private $fragment; variable in ComboStrap\\DokuwikiUrl 83 $this->fragment = substr($url, $hashTagPosition + 1); 162 $this->fragment = substr($token, 1); 181 $this->fragment = substr($key, $anchorPosition + 1); 225 $this->fragment = substr($value, $anchorPosition + 1); 263 if ($this->fragment != null) { 264 … $this->queryString = substr($queryStringAndAnchorOriginal, 0, -strlen($this->fragment) - 1); 283 $attributes[self::ANCHOR_ATTRIBUTES] = $this->fragment; 305 return $this->fragment;
|
/plugin/authgooglesheets/vendor/guzzlehttp/psr7/src/ |
H A D | Uri.php | 61 private $fragment = ''; variable in GuzzleHttp\\Psr7\\Uri 128 $this->fragment 152 * @param string $fragment 177 if ($fragment != '') { 178 $uri .= '#' . $fragment; 469 return $this->fragment; 566 public function withFragment($fragment) argument 568 $fragment = $this->filterQueryAndFragment($fragment); 570 if ($this->fragment === $fragment) { 575 $new->fragment = $fragment; [all …]
|
/plugin/icalevents/vendor/sabre/uri/tests/ |
H A D | ParseTest.php | 54 'fragment' => 'test' 81 'fragment' => null, 95 'fragment' => 'test' 107 'fragment' => null, 171 'fragment' => null,
|
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/ |
H A D | backbone.js | 1668 getFragment: function(fragment) { argument 1669 if (fragment == null) { 1671 fragment = this.getPath(); 1673 fragment = this.getHash(); 1805 loadUrl: function(fragment) { argument 1808 fragment = this.fragment = this.getFragment(fragment); 1811 handler.callback(fragment); 1829 fragment = this.getFragment(fragment || ''); 1833 if (fragment === '' || fragment.charAt(0) === '?') { 1836 var url = rootPath + fragment; [all …]
|
/plugin/revealjs/css/ |
H A D | reveal.css | 30 .reveal .slides section .fragment { 38 .reveal .slides section .fragment.grow { 45 .reveal .slides section .fragment.shrink { 52 .reveal .slides section .fragment.zoom-in { 73 .reveal .slides section .fragment.strike { 111 .reveal .slides section .fragment.fade-in-then-out.current-fragment, 112 .reveal .slides section .fragment.current-visible.current-fragment { 122 .reveal .slides section .fragment.fade-in-then-semi-out.current-fragment { 144 .reveal .slides section .fragment.highlight-current-red.current-fragment { 147 .reveal .slides section .fragment.highlight-current-green.current-fragment { [all …]
|
H A D | reveal.scss | 38 .reveal .slides section .fragment { 49 .reveal .slides section .fragment.grow { 58 .reveal .slides section .fragment.shrink { 95 .reveal .slides section .fragment.strike { 141 &.current-fragment { 156 &.current-fragment { 181 .reveal .slides section .fragment.highlight-current-red.current-fragment { 184 .reveal .slides section .fragment.highlight-current-green.current-fragment { 187 .reveal .slides section .fragment.highlight-current-blue.current-fragment { 400 // a fragment [all …]
|
/plugin/openid/Auth/OpenID/ |
H A D | URINorm.php | 241 $fragment = $uri_matches[8]; 242 if ($fragment === null) { 243 $fragment = ''; 246 return $scheme . '://' . $authority . $path . $query . $fragment;
|
/plugin/fedauth/Auth/OpenID/ |
H A D | URINorm.php | 241 $fragment = $uri_matches[8]; 242 if ($fragment === null) { 243 $fragment = ''; 246 return $scheme . '://' . $authority . $path . $query . $fragment;
|
/plugin/authgooglesheets/vendor/psr/http-message/src/ |
H A D | UriInterface.php | 294 * @param string $fragment The fragment to use with the new instance. 297 public function withFragment($fragment); argument
|
/plugin/combo/syntax/ |
H A D | permalink.php | 136 $fragment = $attributes->getValueAndRemoveIfPresent(self::FRAGMENT_ATTRIBUTE); 150 if ($fragment != null) { 151 $url .= "#$fragment"; 174 if ($fragment !== null) { 175 $canonicalUrl .= "#$fragment";
|
/plugin/openid/Auth/ |
H A D | OpenID.php | 367 * @param string $fragment The fragment. 372 $query = '', $fragment = '') argument 399 if ($fragment) { 400 $result .= "#" . $fragment;
|
/plugin/fedauth/Auth/ |
H A D | OpenID.php | 367 * @param string $fragment The fragment. 372 $query = '', $fragment = '') argument 399 if ($fragment) { 400 $result .= "#" . $fragment;
|
/plugin/dirtylittlehelper/mermaid/editor/docs/ |
H A D | json.worker.js | 1 …fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o),this.authority=t||h,…
|
/plugin/dirtylittlehelper/mermaid/editor/ |
H A D | json.worker.js | 1 …fragment=e.fragment||h):(this.scheme=function(e,t){return e||t?e:"file"}(e,o),this.authority=t||h,…
|
/plugin/authfacebook/lib/Url/ |
H A D | FacebookUrlManipulator.php | 64 $fragment = isset($parts['fragment']) ? '#' . $parts['fragment'] : ''; 66 return $scheme . $host . $port . $path . $query . $fragment;
|
/plugin/jcapture/src/com/hammurapi/jcapture/ |
H A D | ScreenRecorder.java | 226 for (Fragment fragment: fragments) { in getMovie() 232 … fps = config.isSound() ? fragment.getActualFps() : config.getSpeedScale()*fragment.getActualFps(); in getMovie() 239 for (Future<ScreenShot> sf: fragment.screenshots) { in getMovie() 274 …fragmentCollector.add(new FragmentImpl(Collections.unmodifiableList(framesCollector), fragment.aud… in getMovie()
|