The chain tag has no wiki summary.
6
votes
8answers
198 views
How to stop writing chain code?
for example...
if ( /* Condition */ ) {
if ( /* Condition */ ) {
if ( /* Condition */ ) {
// Superb!
} else {
// Error 3
}
} else {
...
5
votes
1answer
612 views
WCF Certificate Chain, verify programmatically
I'm trying to use certificates programmatically, rather than using the store. I'm creating X509Certificate2's with filename and password.
This works fine when I have manually added the root ...
4
votes
1answer
102 views
why doesn't java send the client certificate during SSL handshake?
I'm trying to connect to a secure webservice.
I was getting a handshake failure even though my keystore and truststore have been set correctly.
After several days of frustration, endless googling ...
4
votes
2answers
99 views
How to make chainable function in JavaScript?
Lets imagine function like this:
function foo(x) {
x += '+';
return x;
}
Usage of it would be like:
var x, y;
x = 'Notepad';
y = foo(x);
console.log(y); // Prints 'Notepad+'.
I'm looking ...
4
votes
3answers
163 views
Javascript chain rule, return specific value instead of [Object object] [x]
The question is at the title, but first please look at this code:
function number(a) {
return {
add: function(b) {
result = a + b;
return this;
}, ...
4
votes
2answers
178 views
Execute Process Chain
public void ExecuteProcessChain(string[] asProcesses, string sInRedirect, string sOutRedirect)
{
Process p1 = new Process();
p1.StartInfo.UseShellExecute = false;
...
3
votes
5answers
84 views
jQuery: if inside a chain?
I have this
if(noDelay){
$(element).find("." + options.class).remove();
} else {
$(element).find("." + options.class).fadeOut().remove();
}
Is there a way I could avoid repeating the sentence ...
3
votes
3answers
148 views
How can I chain together filename modifiers in a bash shell?
I understand the modifiers # ## % %%, but I can't figure out if its possible to chain them together as you can in tcsh.
Example in tcsh
set f = /foo/bar/myfile.0076.jpg
echo $f:r:e
--> 0076
echo ...
3
votes
3answers
637 views
Pixel chains from run length encoding
I've been banging my head for a long time on this one
I am doing imaging. So far I've binarized my images, meaning that from a grayscale image, every pixel under a certain value are dropped. This ...
2
votes
2answers
83 views
Concatenate effects with jQuery
I have 4 images (logo-1, logo-2, logo-3 and logo-4) and I want to show them one after the other when I click on a button.
First, I set the height of images to 0 to show them with easeOutBounce ...
2
votes
1answer
873 views
Zend Framework route chaining in application.ini
I am setting language depending on the domain name (en for en.example.com, tr for tr.example.com):
resources.router.routes.plain.type = "Zend_Controller_Router_Route"
...
1
vote
2answers
32 views
How to chain functions without using prototype?
I have a bunch of useful functions that I have collected during my whole life.
function one(num){
return num+1;
}
function two(num){
return num+2;
}
I can call them with two(two(one(5)))
...
1
vote
3answers
61 views
String from ajax execute as jquery
I make an ajax call and I receive a string back from the server (this could also be another string and chain):
thisitem.parent().parent().hide()
Now I want to excecute that jquery chain. I believe ...
1
vote
1answer
169 views
CXF WS, Interceptor: stop processing, respond with fault
I'm scratching my head over this:
Using an Interceptor to check a few SOAP headers, how can I abort the interceptor chain but still respond with an error to the user?
Throwing a Fault works regarding ...
1
vote
0answers
245 views
jQuery Deferred chain
I wish to create a animations chain, while I'm looping on a set of elements; the next loop step is called when the animations of the first step have been completed. The chain is something like that:
...
1
vote
1answer
89 views
Grails - Controller chain and model disapearance
I am trying to use the chain feature to call an other method and render a merged model.
This is how I call the chain:
Controller: emailToNotify, Method: sendEmailConfirmation
if ...
1
vote
0answers
132 views
Flatten list of lists in Python with non-iterable types? [closed]
Possible Duplicate:
Flatten (an irregular) list of lists in Python
I've seen quite a few 'How to flatten list of lists' questions on SO, but I'm still having trouble with my problem. I have ...
1
vote
1answer
42 views
Solving chained callbacks in Jquery
I try to understand whats happening within this code:
(This is said to be a very effective way for solving chained callbacks)
(function hidenext(jq){
jq.eq(0).fadeOut("fast", function(){
...
1
vote
0answers
150 views
Iptables: how to easily group rules in chain?
I have some netfilter rules like this:
iptables -I INPUT -j NFQUEUE -p udp --dport 4444
iptables -t mangle -I INPUT -j MARK --set-mark 100 -p udp --dport 4444
iptables -I OUTPUT -j NFQUEUE -p udp ...
1
vote
1answer
466 views
ruby dynamic chaining methods
HI
I try to build some dynamic defined methods and chain some scope methods something like:
define_method "#{instance_name_method}" do
Kernel.const_get(model_name).___some_chaining methods ...
1
vote
1answer
357 views
Java - Get Certificate Chain
I have a certificate encoded in Base64 ----- BEGIN
CERTIFICATE -----
MIIGezCCBWOgAwIBA ...., how to get the root and intermediate certificates that appear in the certification path from it!
1
vote
2answers
110 views
C++ input chaining in C#
I am trying to learn C# coming from C++. I am writing just some basic console stuff to get a feel for it and was wondering if it is possible to do simple chaining of inputs in C#. For example in C++:
...
0
votes
0answers
26 views
Set delay in mootools chain
i've been trying to set a mootools chain to apply it then in a site. So, i've done it but, still... i need to set a delay on the beggining of sequence, i mean like, wait for 5 seconds before ...
0
votes
2answers
65 views
verisign certificate on tomcat is not trusted by remote server
I am using a webservice from a remote server over ssl.
the remote server has a tomcat FE. we had verisign sign the remote server certificate and the certificate chain is:
o:remote.server.com
...
0
votes
0answers
41 views
VB.NET SSL Certificate Authentication Exception
I am new to VB.Net coding && I am having some problems with my HTTTP(s) debugger application. [using a self-signed certificate]
Every other thing works fine but when authentication occurs ...
0
votes
1answer
40 views
Teamcity build chain issue
In teamcity I have separate configurations for building, deploying and testing a project. we would like to chain them together.Basically the 'build' configuration does a build triggered by version ...
0
votes
0answers
38 views
JAX-WS: define server side handler chain in code and not in external xml
i want to enable http compression for my jax-ws webservice. i found out that i have to do it with a custom handlerchain that can modify the http-headers.
all tutorials i found refer to the annotation ...
0
votes
0answers
36 views
Grails chain method using url causes redirect loop
GSP form:
<g:form controller="search" action="searchBooks" />
Search Controller:
def searchBooks = {
// some action
chain (
uri: "/books/$categories/?phrase=$params.phrase",
...
0
votes
1answer
52 views
About Javascript scope chain
what's the difference between them ? ①function's scope-->②[[scope]]---->③scope
var scope = 'window';
var someFunction = function(){
something go here....
}
someFunction's ...
0
votes
1answer
59 views
Chaining an installer for an exe and msi
I have written a plugin for an application which has an installer as an executable. My plugin is installed using an msi, written in wix. We've now been given permission to distribute the two together. ...
0
votes
0answers
53 views
How to chain multiple routes with Zend_Controlle
My question is how to chain multiple routes using Zend_Controller_Router_Route_Chain?
For example I want to chain 3 routes for year/month/day
but the gole is:
when url is
example.com/2011
runs ...
0
votes
4answers
53 views
jQuery: Make function b after function a is finished
I was wondering what is the best way to perform a second function after the first one is done.
For example make an animation and then fadeIn another element:
$('.btn').click(function () {
...
0
votes
1answer
32 views
implement chanied filters/seach options in a datagrid using ajax
Let´s say I have some sort of datagrid and I want to add a couple chained filters like in this site:
http://www.yelp.com/search?find_desc=bar&ns=1&find_loc=Minneapolis%2C+MN
(sort ...
0
votes
3answers
35 views
how to jump or escape chain in jQuery
How to jumping or escape chain in jQuery.
for example.
$("h3").click(function(){
//doSomething
if(~~)
// in this case, escape chain(A and B function will be not work)
else ...
0
votes
0answers
99 views
Chain select for nested Entities in Rails
I'm using simple_form and cocoon for adding nesting Entities, and it works fine. Also I have a model set exactly like this and this plugin doesn't work for me. So maybe there are a simple script that ...
0
votes
3answers
62 views
How do I chain methods in PHP?
jQuery lets me chain methods. I also remember seeing the same in PHP so I wrote this:
class cat {
function meow() {
echo "meow!";
}
function purr() {
echo "purr!";
}
}
$kitty = new cat;
...
0
votes
4answers
281 views
javascript function chaining without the chain members knowing about each other
I want to create a javascript pipeline like powershell, bash (|) or f# (|>). Ie. something equivalent to
getstuff() | sort() | grep("foo") | take(5)
I saw a discussion about this in coffeescript ...
0
votes
1answer
71 views
CakePHP Model Chain Find
I have an object $this->user which is of model User. This object is populated by $this->Auth->user in my app controller like so:
$this->user = ClassRegistry::init('User');
...
0
votes
1answer
192 views
Chain select - jQuery
I have two select boxes.
The one contains my exposure type, the second my click rate. Is it possible to do, so you first have to select your exposure type, and when you do that, it will take the ...
0
votes
1answer
415 views
extjs4 : chained combo
I'm trying to add some dynamic data into a "livesearch" combo box.
I've a set of 2 combos.
The first one allow you to select some data.
The second combo is a "livesearch" combo that should have a ...
0
votes
1answer
241 views
Chaining AddClass/RemoveClass Events With Mootools
I'm currently putting together a css animation, and part of achieving this involves changing the class name of the body at specific intervals.
Being quite new to mootools (and js in general) the best ...
0
votes
1answer
65 views
Chaining .live() events to functions
I cannot get focused to update with the current value. Is there a bug in this code or is there a cleaner approach I am missing? Can I pass 'this' or the 'event'?
I am getting this error:
'focused ...
0
votes
3answers
104 views
How can I call any function in a chain of functions, without the chaining?
Sorry if my question wasn't clear enough. I'll put my code here...
var chain = {
'fn_1' : {
//fn_1 code here
chain.fn_2();},
'fn_2' : {
//fn_2 code here
...
0
votes
1answer
425 views
How to re-run whole map/reduce in hadoop before job completion?
I using Hadoop Map/Reduce using Java
Suppose, I have completed a whole map/reduce job. Is there any way I could repeat the whole map/reduce part only, without ending the job. I mean, I DON'T want to ...
0
votes
0answers
250 views
How to change certificate's chain inside PKCS#12 (pfx) keystore?
I need to sign applet with .PFX file which I have from GlobalSign for code signing.
I'm following the guide from GlobalSign page:
...
0
votes
1answer
78 views
Actionscript 3.0 sound chain
Is it possible in actionscript 3.0 to play chain of sounds (i.e. several mp3s)?
Or should I manually start playing first sound, wait for SOUND_COMPLETE event, then start second sound and so on?
0
votes
1answer
203 views
Mocking Django query using Mox
I'm trying to mock a django filter query using Mox. I am following the instructions on Mox website, however, since my django query is a chained method, it complains that the AndReturn() method doesn't ...
0
votes
2answers
411 views
python itertools.chain to chain an iter list?
code:
import itertools
def _yield_sample():
it = iter(itertools.combinations('ABCD', 2))
it2 = iter(itertools.combinations('EFGH', 3))
itc = itertools.chain(it,it2)
for x in itc:
...
0
votes
2answers
241 views
Need open source framework for simple workflow
A simple workflow is needed in my application.
And I found:
Apache chain: simple and easy use, but it’s just boolean decision (true or false) in a step.
jBPM : powerful, but heavy. It needs ...
0
votes
2answers
342 views
what is the use of filter and chain in servlet?
chain.doFilter(req,res);
which we used in servlet program.i want to know what is the use of the method in servlet?
Also what is the use of filter and chain concept ion java servlets?