| /template/strap/resources/firebug/ |
| H A D | firebug-lite-1.2-compressed.js | 19 …].appendChild(new lib.element("link").attribute.set("rel","stylesheet").attribute.set("type","text… 21 …attribute.set('firebugIgnore',true).attribute.set("id","firebugIconDiv").attribute.set("title",ico… 22 …attribute.addClass("Header").insert(el.main);el.left={};el.left.container=new lib.element("DIV").a… 24 …attribute.addClass("Nav").insert(el.left.container);el.nav.console=new lib.element("A").attribute.… 25 …attribute.addClass("Tab").update("DOM").event.addListener("click",lib.util.Curry(d.navigate,intern… 26 buttons[i].attribute.set("href","#");win.refreshSize();} 38 …console:{addLine:function(){with(firebug){return new lib.element("DIV").attribute.addClass("Row").… 39 …("dom");}},print:function(_cmd,_text){with(firebug){d.console.addLine().attribute.addClass("Arrow"… 40 d.console.addLine().attribute.addClass("Error").update("<strong>Error: </strong>"+message,true);}},… 41 …attribute.addClass("Arrow").update(firebug.version);}else{result=eval.call(window,_cmd);d.console.… [all …]
|
| H A D | firebug-lite-1.2.js | 116 …new lib.element("link").attribute.set("rel","stylesheet").attribute.set("type","text/css").attribu… 127 …lib.element("div").attribute.set('firebugIgnore',true).attribute.set("id","firebugIconDiv").attrib… 133 …el.mainiframe = new lib.element("IFRAME").attribute.set("id","FirebugIFrame").attribute.set('fireb… 134 …el.main = new lib.element("DIV").attribute.set("id","Firebug").attribute.set('firebugIgnore',true)… 136 …el.resizer = new lib.element("DIV").attribute.addClass("Resizer").event.addListener("mousedown",wi… 138 el.header = new lib.element("DIV").attribute.addClass("Header").insert(el.main); 140 el.left.container = new lib.element("DIV").attribute.addClass("Left").insert(el.main); 142 el.right.container = new lib.element("DIV").attribute.addClass("Right").insert(el.main); 143 el.main.child.add(new lib.element("DIV").attribute.addClass('Clear')); 149 …el.button.container = new lib.element("DIV").attribute.addClass("ButtonContainer").insert(el.heade… [all …]
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Parser/ |
| H A D | Attribute.php | 38 $attribute = new Ast\Selector\Simple\Attribute($token->content); 46 $attribute->match = $this->_operators[$token->content]; 58 $attribute->literal = new Ast\Value\Literal($token->content); 62 $attribute->literal = $this->delegate(Text::CLASS); 67 return $attribute;
|
| /template/strap/ComboStrap/ |
| H A D | TagAttributes.php | 1052 public function removeComponentAttribute($attribute) argument 1054 $lowerAtt = strtolower($attribute); 1065 …LogUtility::msg("Internal Error: The component attribute ($attribute) is not present. Use the ifPr… 1192 function getValueAndRemoveIfPresent($attribute, $default = null) argument 1194 $value = $this->getValue($attribute, $default); 1195 $this->removeAttributeIfPresent($attribute); 1250 function addEmptyComponentAttributeValue($attribute) argument 1252 $this->componentAttributesCaseInsensitive[$attribute] = ""; 1261 function getBooleanValueAndRemoveIfPresent($attribute, $default = null) argument 1263 $value = $this->getBooleanValue($attribute, $default); [all …]
|
| H A D | MetadataMutation.php | 27 * @param string $attribute 37 …public static function notifyMetadataMutation(string $attribute, $valueBefore, $valueAfter, Path $… argument 44 self::NAME_ATTRIBUTE => $attribute,
|
| H A D | DatabasePageRow.php | 1048 function getDatabaseRowFromAttribute(string $attribute, string $attributeValue) argument 1050 $query = $this->getParametrizedLookupQuery($attribute); 1079 … page ($this->markupPath) and the page ($attributeValue) have the same $attribute ($attributeValue… 1087 …ity::warning("Error: More than 1 rows ($rowCount) found for attribute ($attribute) with the value … 1121 …Found("The existing pages ($existingPages) have all the same attribute $attribute with the value (… 1224 function getFromRow(string $attribute) argument 1230 if (!array_key_exists($attribute, $this->row)) { 1235 …throw new ExceptionRuntime("The metadata ($attribute) was not found in the returned database row."… 1238 $value = $this->row[$attribute]; 1246 $upperAttribute = strtoupper($attribute); [all …]
|
| H A D | Call.php | 178 * @param array $attribute 185 …public static function createComboCall($tagName, $state, array $attribute = array(), string $rawCo… argument 188 PluginUtility::ATTRIBUTES => $attribute, 381 function &getPluginData($attribute = null) argument 384 if ($attribute === null) { 387 return $data[$attribute];
|
| H A D | PluginUtility.php | 799 static function addAttributeValue($attribute, $value, array &$attributes) argument 801 if (array_key_exists($attribute, $attributes) && $attributes[$attribute] !== "") { 802 $attributes[$attribute] .= " {$value}"; 804 $attributes[$attribute] = "{$value}";
|
| /template/strap/syntax/ |
| H A D | label.php | 182 $attribute = $data[PluginUtility::ATTRIBUTES]; 183 $headingId = $attribute[self::HEADING_ID]; 184 $collapseId = $attribute[self::TARGET_ID]; 185 $collapsed = $attribute[self::COLLAPSED]; 222 $attribute = $data[PluginUtility::ATTRIBUTES]; 223 $collapseId = $attribute[self::TARGET_ID]; 224 $headingId = $attribute[self::HEADING_ID]; 225 $collapsed = $attribute[self::COLLAPSED];
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
| H A D | Xpath.php | 415 Ast\Selector\Simple\Attribute $attribute 417 switch ($attribute->match) { 421 $attribute->name, 422 $this->quoteLiteral($attribute->literal->value) 428 $attribute->name, 429 strlen($attribute->literal->value), 430 $this->quoteLiteral($attribute->literal->value) 436 $attribute->name, 437 $this->quoteLiteral($attribute->literal->value) 441 $condition = '@'.$attribute->name.' = '.$this->quoteLiteral($attribute->literal->value); [all …]
|
| H A D | Explain.php | 76 foreach ($attributes as $attribute => $value) { 77 $result->setAttribute($attribute, $value); 270 Ast\Selector\Simple\Attribute $attribute 283 'attribute', '', ['operator' => $operators[$attribute->match]] 287 $this->appendElement('name', $attribute->name); 288 if ($attribute->match !== Ast\Selector\Simple\Attribute::MATCH_EXISTS) { 297 $this->appendElement('operator', $operatorStrings[$attribute->match]); 301 str_replace(['\\', '"'], ['\\\\', '\\"'], $attribute->literal->value)
|
| H A D | Css.php | 148 Ast\Selector\Simple\Attribute $attribute 151 $this->_buffer .= $attribute->name; 152 if ($attribute->match !== Ast\Selector\Simple\Attribute::MATCH_EXISTS) { 161 $this->_buffer .= $operatorStrings[$attribute->match]; 162 $this->_buffer .= $this->quoteString($attribute->literal->value);
|
| /template/strap/action/ |
| H A D | metaprocessing.php | 98 foreach ($attributes as $attribute) { 101 $beforeMeta = MetadataSystem::getForName($attribute) 105 $afterMeta = MetadataSystem::getForName($attribute) 110 … LogUtility::internalError("The metadata was not found for the attribute ($attribute)"); 123 MetadataMutation::notifyMetadataMutation($attribute, $valueBefore, $valueAfter, $page);
|
| /template/a_new_day/js/ |
| D | builder.js | 89 for(attribute in attributes) 90 attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) + 91 '="' + attributes[attribute].toString().escapeHTML() + '"');
|
| D | prototype.js | 1194 var property = pair.first(), attribute = pair.last(); 1196 if (value) result += ' ' + attribute + '=' + value.inspect(true); 1275 var attribute = element.attributes[name]; 1276 if(attribute) return attribute.nodeValue; 1504 _getAttr: function(element, attribute) { 1505 return element.getAttribute(attribute, 2); 1508 _flag: function(element, attribute) { 1509 return $(element).hasAttribute(attribute) ? attribute : null; 1532 hasAttribute: function(element, attribute) { 1534 attribute = t.names[attribute] || attribute; [all …]
|
| /template/battlehorse/js/ |
| D | builder.js | 89 for(attribute in attributes) 90 attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) + 91 '="' + attributes[attribute].toString().escapeHTML() + '"');
|
| D | prototype.js | 1194 var property = pair.first(), attribute = pair.last(); 1196 if (value) result += ' ' + attribute + '=' + value.inspect(true); 1275 var attribute = element.attributes[name]; 1276 if(attribute) return attribute.nodeValue; 1504 _getAttr: function(element, attribute) { 1505 return element.getAttribute(attribute, 2); 1508 _flag: function(element, attribute) { 1509 return $(element).hasAttribute(attribute) ? attribute : null; 1532 hasAttribute: function(element, attribute) { 1534 attribute = t.names[attribute] || attribute; [all …]
|
| /template/twigstarter/vendor/twig/twig/src/TokenParser/ |
| D | ForTokenParser.php | 111 $attribute = $node->getNode('attribute'); 112 …if ($attribute instanceof ConstantExpression && \in_array($attribute->getAttribute('value'), ['len… 113 …The "loop.%s" variable is not defined when looping with a condition.', $attribute->getAttribute('v…
|
| /template/twigstarter/vendor/twig/twig/src/Node/Expression/ |
| D | GetAttrExpression.php | 21 …public function __construct(AbstractExpression $node, AbstractExpression $attribute, ?AbstractExpr… argument 23 $nodes = ['node' => $node, 'attribute' => $attribute];
|
| /template/sprintdoc/ |
| H A D | Template.php | 226 foreach($attributes as $attribute => $data) { 229 $attr = $attribute;
|
| /template/strap/ComboStrap/Xml/ |
| H A D | XmlDocument.php | 518 function removeRootAttribute($attribute) argument 525 if ($this->getDomDocument()->documentElement->attributes[$i]->name == $attribute) { 528 throw new \RuntimeException("Not able to delete the $attribute");
|
| /template/templar/less/ |
| D | labels-badges.less | 51 …ground-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute)
|
| /template/dokui/css/ |
| D | highlight.css | 75 pre .attribute,
|
| /template/strap/ComboStrap/Meta/Api/ |
| H A D | Metadata.php | 638 $attribute = $this->getName(); 640 …MetadataMutation::notifyMetadataMutation($attribute, $oldValue, $actualValue, $this->getResource()…
|
| /template/simple_sidebar/ |
| D | style.css | 3 /** Side Bar width and page width are controlled by the width attribute of div.right_page,
|