Tagged Questions

0
votes
0answers
8 views

add custom function to YUI tabview

I've come up with the following function to fill a need: function getTabFromElementID(elementID){ //get all of the tabs from the tabViewObject var tabArray = this.get('tabs'); var …
1
vote
3answers
282 views

Extending PHP static classes

I've been struggling in this area for days now, and I have reached a conclusion, but since the conclusion was not what I was looking for, before I give up, I'll try to see what other people say. Faith …
0
votes
3answers
199 views

Extending the Template Controller in Kohana

I'm having a bit of confusion in attempting to retroactively create a new base controller for my project. If I'm not mistaken, all I need to do is create a file in application/libraries called …
4
votes
4answers
246 views

Can I use C++ features while extending Python?

The Python manual says that you can create modules for Python in both C and C++. Can you take advantage of things like classes and templates when using C++? Wouldn't it create incompatibilities with …
0
votes
0answers
104 views

Extending Enterprise Library Caching Block - how to get instance of MyCacheManager?

Hi, Since the default implementation of CacheManager doesn't provide GetItemsOfType<> (and many others) I thought of building my own: [ConfigurationElementType(typeof(CustomCacheManagerData))] …
1
vote
1answer
271 views

Reacting to new contacts in Android Contacts application

I would like to perform a certain operation every time a user adds a new contact in the Android Contacts application. It would include using the new contact's information. Is there an easy way to do …
2
votes
2answers
157 views

Extend xUnit.NET to use custom code when processing a class and locating test methods

I'm a big fan of the xUnit.NET framework; I find it light, simple, clean, and extensible. Now let's say that I have a class like so: public class AdditionSpecification { static int result; …
0
votes
3answers
104 views

How does extending a programming language work?

Hello there! I have no programming experience but am interested in learning a language. So reading this section …
-2
votes
2answers
611 views

URLVariables class in Flash/Flex - how to get typed properties? Extending? Wrapping?

Is it possible to somehow extend the URLVariables class in Flash/Flex to get typed access to form data, not relying on URLVariables being dynamic? Behold: class MyURLVariables extends URLVariables { …
1
vote
3answers
380 views

extending pythonce to access gsm/camera/gps easily from pythonce

Hi, as it seems there is no scripting language for windows mobile devices that gives access to phone (sms, mms, make a call, take photo) I wonder how complex would it be to make a python library that …