attributes

Python: Are class attributes equivalent to local variables when inside a method?

In python, I know that looking up a locally scoped variable is significantly faster than looking up a global scoped variable. So: a = 4 def function() for x in range(10000): <do something with 'a'> Is slower than def function() a = 4 for x in range(10000): <do something with 'a'> So, when I look at a cla...

What does the "s" attribute signify in a cell tag in XLSX

In the XML of a worksheet in an XLSX file (Excel 2007) cell tags that have a "t" attribute equal to "s" are string types. The value tag inside the c needs to be looked up and converted via the sharedStrings document. But, some cells have s="237" and no t attribute at all. The value tag has an integer like 39448 which does not relate ...

Add attributes to Jtree Dynamically

How to add attributes to a dynamically generated nodes of a JTree, the generated Jtree will be converted to a xml file Please Please help me ...

Magento - get filterable attributes by category

I have created a custom navigation module specifically for a website, but I really want to be able to list filterable attributes by a specific category. So for instance my main navigation is: Category 1 Category 2 Category 3 etc. I then that when a user mouses over a category, they are then presented with an expanded menu...

Custom Attribute to Ensure Encapsulation

I'm beginning to look into custom attributes, and I've come up with the following idea: what if I could make an attribute which would restrict the use of a variable to the property it backed? [RestrictToProperty("Foo")] private object _foo; public object Foo { get { return _foo; } set { _foo = value; OnFooCha...

Product specification as WS, XML or json

This is not a programming question but i hope this might be your field anyway. Is there a free standard protocol/source where I can download specifications about mobile phones, like size, weight, screen res. and so on. There is WURFL, uaprof but these are more focused on protocols/standards supported then the physical attributes and fe...

Python: How to make object attribute refer call a method

I'd like for an attribute call like object.x to return the results of some method, say object.other.other_method(). How can I do this? Edit: I asked a bit soon: it looks like I can do this with object.__dict__['x']=object.other.other_method() Is this an OK way to do this? ...

Is there a way to hide the tooltip with html <a> title attribute??

I want the the tooltip not be displayed when the mouse hovers over the links although the title attribute should be there for it affects SEO. I've read about removing using jQuery with $('...').removeAttr('title'); but does this still generate the title atribute in html for the search engine crawlers to crawl?? ...

Implementing IErrorHandler using class level Attributes in WCF

Had no luck with getting it working via config files, so decided to attempt to go the more robust route of doign it via class level attributes. If I can get this working it is clearly a great way of wrapping exceptions in Faults in the service layer withou trepeating lots of code. However the code in the attribute never seems to get run...

semi colon delimited xs:attribute xsd

Hey, I'm currently building an XSD to validate some XML I'm working on, I'm guessing this probably isn't possible but I'm wondering if there is some way to enforce an attribute that is a ";" delimited list for example <nbsp style="cell-width:1.29;background-color:#99CC00;"/> similar to the way the style attribute works in html. Than...

PHP: How to convert array to XML with support to attributes (DOMi ?)

I'm using DOMi ( http://domi.sourceforge.net ) to create XML from arrays. But I don't know how to create attributes in these XML (in arrays, so these attributes appear in the XML). How can I construct these arrays so I can get some tags with attributes after the convertion? Thank you! ...

How can i validate this attribute(annonation) ?

I am new about attributes. I just try it on my console application. So how can i validate my person instance below example ? class Person { [StringLength(8,ErrorMessage="Please less then 8 character")] public string Name { get; set; } } ...

IE8 gets stuck while sending openid authentication request with activated attribute exchange

I´m getting a problem sending the authentication request with activated attribute exchange. It works with FF and Opera but IE seems to have a problem with it. The error occurs within the request.RedirectToProvider(). The Url within the address bar shows the endpoints url. Here is a code snippet where the authentication request is crea...

Is it possible to retain custom attributes in a class instance after deserialization?

I'm trying to build a custom HTML helper for MVC.NET that would allow me to render object entities (Model Objects) as HTML forms. So I decided to do it using custom attributes such as html input type, readonly flag, css classes, etc. Similar in a way to LINQ Mapping attributes that set database related bindings for Table and Column. So I...

how to get class info. in attribute class which is written on that class.

hi all, [myattribute] class myclass { } myattribute:attribute { // here i need to access all properties with values and methods of "Myclass". } how can i get this..? ...

Why "decimal" is not a valid attribute parameter type?

It is really unbelievable but real. This code will not work: [AttributeUsage(AttributeTargets.Property|AttributeTargets.Field)] public class Range : Attribute { public decimal Max { get; set; } public decimal Min { get; set; } } public class Item { [Range(Min=0m,Max=1000m)] //compile error:'Min' is not a valid named attrib...

Jquery parsing xml from request

Hi, I am using Jquery. I have an xml returned from a webservice. So I want to extract some value from it. This is an xml example returned from webservice: <ns3:ExecuteResponse xmlns:ns3="http://www.opengis.net/wps/1.0.0" xmlns:ns1="http://www.opengis.net/ows/1.1" xmlns:ns2="http://www.w3.org/1999/xlink" statusLocation="http://webse...

How to get every attribute's name, value and parent element name in SQLXML?

Given this SQL: DECLARE @content XML SET @content = '<people> <person id="1" bimble="1"> <firstname bobble="gomble">John</firstname> <surname>Doe</surname> </person> <person id="2" bimble="11"> <firstname bobble="zoom">Mary</firstname> <surname>Jane</surname> </person> <person id="4" bimble="10"> <firstname...

custom attribute UI in Magento admin

Hi I'm trying to change the way Magento shows options of an attribute with multiple select. I have 10K options for this attribute. How can I override the UI and use an Ajax based UI? The admin will be able to filter options and present only ~20 each time. I know how to use js and php for this but not in Magento. Thanks ...

C# Attributes and their uses

I really don't know much about attributes in general in C#, I've seen them in use in a lot of different ways/places but I don't think I see the importance of some of them. Some definitely have importance because they provide a noticeable function, such as [Serializable]. Yet, others don't seem so important, such as one my coworker uses t...