##// END OF EJS Templates
Backport PR #2126: ipcluster broken with any batch (PBS/LSF/SGE)...
Backport PR #2126: ipcluster broken with any batch (PBS/LSF/SGE) I have setup ipcluster_config.py to start with LSF: ``` c.IPClusterStart.controller_launcher_class = 'LSF' c.IPClusterStart.engine_launcher_class = 'LSF' ``` But the ipcluster command fails to start the engines: ``` ipcluster start --profile=lsf -n 10 ``` The problem is fixed if I add quotes to the launch command string ```cmd``` in ```launcher.py```. ``` diff --git a/IPython/parallel/apps/launcher.py b/IPython/parallel/apps/launcher.py index e752d2a..6035303 100644 --- a/IPython/parallel/apps/launcher.py +++ b/IPython/parallel/apps/launcher.py @@ -73,7 +73,7 @@ WINDOWS = os.name == 'nt' # Paths to the kernel apps #----------------------------------------------------------------------------- -cmd = "from IPython.parallel.apps.%s import launch_new_instance; launch_new_instance()" +cmd = "\"from IPython.parallel.apps.%s import launch_new_instance; launch_new_instance()\"" ipcluster_cmd_argv = [sys.executable, "-c", cmd % "ipclusterapp"] ```

File last commit:

r4316:68db752a
r7995:061632b4
Show More
jquery.autogrow.js
42 lines | 1.1 KiB | application/javascript | JavascriptLexer
/*
* Auto Grow Textarea Plugin
* by Jevin 5/11/2010
* http://www.technoreply.com/autogrow-textarea-plugin/
*
* Modified by Rob G (aka Fudgey/Mottie)
* - Converted into a plugin
* - Added ability to calculate approximate # cols when textarea is set to 100%
*
* Simplified by Brian Granger on 5/2/2011
*/
(function($) {
$.fn.autogrow = function() {
var grow = function(d) {
var linesCount = 0;
// modified split rule from
// http://stackoverflow.com/questions/2035910/how-to-get-the-number-of-lines-in-a-textarea/2036424#2036424
var lines = d.txt.value.split(/\r|\r\n|\n/);
linesCount = lines.length;
if (linesCount >= d.rowsDefault) {
d.txt.rows = linesCount;
} else {
d.txt.rows = d.rowsDefault;
}
};
return this.each(function() {
var d = {
colsDefault : 0,
rowsDefault : 1,
txt : this,
$txt : $(this)
};
d.txt.onkeyup = function() {
grow(d);
};
grow(d);
});
};
})(jQuery);