/plugin/sequencediagram/bower_components/js-sequence-diagrams/ |
H A D | Makefile | 7 js: dist/sequence-diagram-min.js dist/sequence-diagram-raphael-min.js dist/sequence-diagram-snap-mi… 8 css: dist/sequence-diagram-min.css font 45 test: dependencies dist/sequence-diagram-min.js 49 -c dist/sequence-diagram.js \ 55 -c dist/sequence-diagram.js \ 61 -c dist/sequence-diagram-min.js \ 67 -c dist/sequence-diagram-min.js \ 93 dist/sequence-diagram-raphael.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/seq… 97 dist/sequence-diagram-snap.js: src/main.js build/diagram-grammar.js src/jquery-plugin.js src/sequen… 100 dist/sequence-diagram.css: src/sequence-diagram.css [all …]
|
H A D | README.md | 1 …sequence-diagrams.svg)](https://libraries.io/bower/js-sequence-diagrams) [![Build Status](https://… 3 **Generates UML sequence diagrams from simple text** 4 <https://bramp.github.io/js-sequence-diagrams/> 19 ![Sample generated UML diagram](https://bramp.github.io/js-sequence-diagrams/images/sample.svg) 31 Run `bower install bramp/js-sequence-diagrams` and include the scripts below: 37 <script src="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.js" /> 43 <link href="{{ bower directory }}/js-sequence-diagrams/dist/sequence-diagram-min.css" rel="styleshe… 72 For full examples check out [the demo site](https://bramp.github.io/js-sequence-diagrams/). 92 * `sequence`: Applies to main SVG tag. 183 * Dozens of other issues on https://github.com/bramp/js-sequence-diagrams/issues [all …]
|
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/ |
H A D | Sequence.php | 25 * Parse the token stream for a simple selector sequence, 32 $sequence = new Ast\Selector\Sequence(); 47 $sequence->simples[] = $selector; 52 return $sequence; 54 $sequence->simples[] = $this->delegate(PseudoClass::CLASS); 57 $sequence->simples[] = $this->createPseudoElement($token); 62 $sequence->simples[] = $this->delegate(Attribute::CLASS); 71 $sequence->combinator = $this->createCombinator( 74 return $sequence; 93 return $sequence; 117 createCombinator(Scanner\\Token $token, Ast\\Selector\\Sequence $sequence) global() argument [all...] |
/plugin/gtime/gtlib/asn1/tsp/ |
H A D | TSPTSTInfo.php | 215 $sequence = new ASN1Sequence(); 217 $sequence->add(new ASN1Integer((int) $this->version)); 218 $sequence->add(new ASN1ObjectId($this->policy)); 219 $sequence->add($this->messageImprint); 220 $sequence->add(new ASN1Integer($this->serialNumber)); 224 $sequence->add($this->accuracy); 228 $sequence->add(new ASN1Boolean($this->ordering)); 232 $sequence->add(new ASN1Integer($this->nonce)); 243 $sequence->add($tag); 262 $sequence->add($tag); [all …]
|
H A D | TSPTimeStampReq.php | 67 $sequence = new ASN1Sequence(); 69 $sequence->add(new ASN1Integer($this->version)); 70 $sequence->add($this->messageImprint); 72 return $sequence->encodeDER();
|
H A D | TSPMessageImprint.php | 93 $sequence = new ASN1Sequence(); 95 $sequence->add($this->hashAlgorithm); 96 $sequence->add(new ASN1OctetString($this->hashedMessage)); 98 return $sequence->encodeDER();
|
H A D | TSPAccuracy.php | 161 $sequence = new ASN1Sequence(); 164 $sequence->add(new ASN1Integer($this->seconds)); 175 $sequence->add($tag); 186 $sequence->add($tag); 189 return $sequence->encodeDER();
|
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Ast/Selector/ |
H A D | Combinator.php | 8 public $sequence; variable in PhpCss\\Ast\\Selector\\Combinator 10 public function __construct(Sequence $sequence = NULL) { argument 11 $this->sequence = $sequence; 17 $this->sequence->accept($visitor);
|
H A D | Group.php | 43 foreach ($sequences as $sequence) { 44 $this->offsetSet(NULL, $sequence); 49 * Check if a sequence at the given position is available in the list. 60 * Return the sequence at the given position. 71 * Set/Add and sequence at the given position or top the end 82 '$sequence is not an instance of %s but %s.', 97 * Remove the sequence at the given position 108 * Return the sequence list count. 136 * @var Sequence $sequence 138 foreach ($this as $sequence) { [all...] |
/plugin/gtime/gtlib/asn1/gt/ |
H A D | GTTimeSignature.php | 114 $sequence = $tag->getObjectAs(ASN1_TAG_SEQUENCE); 117 $pkSignature->decode($sequence); 153 $sequence = new ASN1Sequence(); 155 $sequence->add(new ASN1OctetString($this->location)); 156 $sequence->add(new ASN1OctetString($this->history)); 157 $sequence->add($this->publishedData); 168 $sequence->add($tag); 187 $sequence->add($tag); 190 return $sequence->encodeDER();
|
H A D | GTCertTokenRequest.php | 57 $sequence = new ASN1Sequence(); 58 $sequence->add(new ASN1Integer($this->version)); 59 $sequence->add(new ASN1Integer($this->historyIdentifier)); 61 return $sequence->encodeDER();
|
H A D | GTVerificationRequest.php | 105 $sequence = new ASN1Sequence(); 106 $sequence->add(new ASN1Integer($this->version)); 107 $sequence->add($this->content); 108 $sequence->add(new ASN1OctetString($this->data)); 110 return $sequence->encodeDER();
|
H A D | GTSignatureInfo.php | 93 $sequence = new ASN1Sequence(); 95 $sequence->add($this->signatureAlgorithm); 96 $sequence->add(new ASN1OctetString($this->signatureValue)); 98 return $sequence->encodeDER();
|
H A D | GTPublishedData.php | 97 $sequence = new ASN1Sequence(); 99 $sequence->add(new ASN1Integer(new GTBigInteger($this->publicationIdentifier))); 100 $sequence->add(new ASN1OctetString($this->publicationImprint)); 102 return $sequence->encodeDER();
|
/plugin/gtime/gtlib/asn1/cms/ |
H A D | CMSSignerInfo.php | 184 $sequence = new ASN1Sequence(); 186 $sequence->add(new ASN1Integer((int) $this->version)); 187 $sequence->add($this->sid); 188 $sequence->add($this->digestAlgorithm); 205 $sequence->add($tag); 209 $sequence->add($this->signatureAlgorithm); 210 $sequence->add(new ASN1OctetString($this->signature)); 227 $sequence->add($tag); 231 return $sequence->encodeDER();
|
H A D | CMSEncapsulatedContentInfo.php | 108 $sequence = new ASN1Sequence(); 109 $sequence->add(new ASN1ObjectId($this->contentType)); 110 $sequence->add($tag); 112 return $sequence->encodeDER(); 134 $sequence = ASN1DER::decode($this->content); 137 $content->decode($sequence);
|
H A D | CMSSignedData.php | 196 $sequence = new ASN1Sequence(); 197 $sequence->add(new ASN1Integer((int) $this->version)); 205 $sequence->add($digestAlgorithms); 206 $sequence->add($this->encapsulatedContent); 223 $sequence->add($certificatesTag); 232 $sequence->add($signerInfos); 234 return $sequence->encodeDER();
|
H A D | CMSIssuerAndSerialNumber.php | 103 $sequence = new ASN1Sequence(); 104 $sequence->add($this->issuer); 105 $sequence->add(new ASN1Integer(new GTBigInteger($this->serialNumber))); 107 return $sequence->encodeDER();
|
H A D | CMSAttribute.php | 115 $sequence = new ASN1Sequence(); 116 $sequence->add(new ASN1ObjectId($this->type)); 117 $sequence->add($values); 119 return $sequence->encodeDER();
|
H A D | CMSContentInfo.php | 110 $sequence = new ASN1Sequence(); 111 $sequence->add(new ASN1ObjectId($this->contentType)); 121 $sequence->add($tag); 123 return $sequence->encodeDER();
|
/plugin/sequencediagram/ |
H A D | style.css | 1 /** js sequence diagrams 2 * https://bramp.github.io/js-sequence-diagrams/ 8 src: url('bower_components/js-sequence-diagrams/dist/danielbd.woff2') format('woff2'), 9 url('bower_components/js-sequence-diagrams/dist/danielbd.woff') format('woff');
|
/plugin/gtime/gtlib/asn1/x509/ |
H A D | X509AlgorithmIdentifier.php | 90 $sequence = new ASN1Sequence(); 91 $sequence->add(new ASN1ObjectId($this->algorithm)); 92 $sequence->add(new ASN1Null()); 94 return $sequence->encodeDER();
|
H A D | X509Extension.php | 121 $sequence = new ASN1Sequence(); 123 $sequence->add(new ASN1ObjectId($this->id)); 126 $sequence->add(new ASN1Boolean(true)); 129 $sequence->add(new ASN1OctetString($this->value)); 131 return $sequence->encodeDER();
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/ |
H A D | CreativeAssignment.php | 52 public $sequence; variable in Google\\Service\\Dfareporting\\CreativeAssignment 195 public function setSequence($sequence) argument 197 $this->sequence = $sequence; 204 return $this->sequence;
|
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/ |
H A D | slice.rst | 7 The ``slice`` filter extracts a slice of a sequence, a mapping, or a string: 46 If the start is non-negative, the sequence will start at that start in the 47 variable. If start is negative, the sequence will start that far from the end 50 If length is given and is positive, then the sequence will have up to that 53 negative then the sequence will stop that many elements from the end of the 54 variable. If it is omitted, then the sequence will have everything from offset
|