catch-all

Is there such a thing as a catch-all key for a javascript object?

Considering the following javascript example: var myobj = { func1: function() { alert(name in this) }, func2: function() { alert(name in this) }, func3: function() { alert(name in this) } } myobj.func2(); // returns true myobj.func4(); // undefined function Is it possible to create a 'catch-all' key ...

Asp.net MVC Route class that supports catch-all parameter anywhere in the URL

the more I think about it the more I believe it's possible to write a custom route that would consume these URL definitions: {var1}/{var2}/{var3} Const/{var1}/{var2} Const1/{var1}/Const2/{var2} {var1}/{var2}/Const as well as having at most one greedy parameter on any position within any of the upper URLs like {*var1}/{var2}/{var3} {v...

Catchall Router on Exim does not work

I have setup a catchall router on exim (used as last router): catchall: driver = redirect domains = +local_domains data = ${lookup{*@$domain}lsearch{/etc/aliases}} retry_use_local_part This works perfectly when sending emails locally. However, if I login to my GMail account and send an email to [email protected], then I ge...

Catch all exceptions in Scala 2.8 RC1

I have the following dummy Scala code in the file test.scala: class Transaction { def begin() {} def commit() {} def rollback() {} } object Test extends Application { def doSomething() {} val t = new Transaction() t.begin() try { doSomething() t.commit() } catch { case _ => t.rollback() } } If I compile...

Catch all Application Mapping breaks WCF WebService

In my web application I have a WCF service that feeds data to some of the AJAXy bits. The URL for calling it looks like: "/Sales/Product/ServiceName.svc/MethodName" This worked fine. Then, for SEO reasons, I needed to add some URL rewriting, so I registered an HttpModule and handled the BeginRequest event. Everything still ok. But th...