similar to: best way to submit enhancement code

Displaying 20 results from an estimated 1000 matches similar to: "best way to submit enhancement code"

2002 Mar 28
1
[PATCH] Feature addition: user access control per auth method
I added a few features to openssh for my local use that I think would be more broadly useful. I basically added access control lists to control who would be allowed public key authentication. I added four config file entries for the server: PubkeyAllowUsers PubkeyDenyUsers PubkeyAllowGroups PubkeyDenyGroups These follow the same sematics as the already existing entries for
2001 Apr 09
3
[PATCH]: Heartbeat/Watchdog Patch
Dear Developers, I've released a patch against openssh-2.5.2p2. The patch adds heartbeat (keepalive) function to ssh(1), and watchdog timeout function to sshd(8). The watchdog timeout is intended to terminate user's processes as soon as possible after the link has been lost. http://www.ecip.tohoku.ac.jp/~hgot/sources/openssh-watchdog.html The combination of the heartbeat and the
2001 Apr 05
1
JNI Wrappering OpenSSH ?
I am currently toying with various avenues for doing some secured file transfers from a javaland process. Realistically on the server side the thing I want is OpenSSH's sftp server. My question is, on the client side, how to get java to talk ssh2 secsh file xfer. Would a sane approach be to find the appropriate points of OpenSSH and turn it into a java library by liberal application of JNI,
2002 Mar 11
1
R Report Generator: Submit to CRAN?
Hello, I have a decent working version of that report writing library which I'm calling R Report Generator. For those who don't know, this is a small library I've been working on which lets you output just about anything to an HTML "report" while you work, or as the result of a script. I'm eventually going to have it do nifty things like produce DocBook XML. I have
2024 Feb 15
2
2024 X.Org Board of Directors Elections Nomination period is NOW
We are seeking nominations for candidates for election to the X.Org Foundation Board of Directors. All X.Org Foundation members are eligible for election to the board. Nominations for the 2024 election are now open and will remain open until 23:59 UTC on 26 February 2024. The Board consists of directors elected from the membership. Each year, an election is held to bring the total number of
2008 Oct 31
6
link_to submit form value 2
Hi to all, I''d like to pass with a link to values inside some form. I''ve read in other posts that it''s possible if i include the forms inside a html <div>... So here it''s my code of the view : <div id="study"> <table> <tr><td><label for="study_titolo">Titolo di
2008 Jun 18
1
Form submit listener not catching form.submit();
Event listener for a form being submitted is not catching an A tag with a submit in it. Example JS: $(form).observe(''submit'', function(e) { e.stop(); // Something }); Example HTML: <a href="#" onClick="myForm.submit();">Submit form</a> Any idea how to fix this without added more js to button?
2010 Jun 10
2
submit button param is duplicated when a form is submitted a second time
Hello, Below I''ve pasted a simple example to reproduce what I say in the subject. I wonder... Is it a bug? Is there any workaround? Thanks! require ''rubygems'' require ''mechanize'' agent = Mechanize.new page = agent.get(''http://google.com/'') google_form = page.form(''f'') google_form.q = ''ruby
2007 Sep 10
0
is there an apache limit on submit size for centos 4 and 5
Is there a limit to the size of the form that apache will accept? I have a small import utility (not php - just straight cgi and C program). It will import smaller files. 350 Meg is the largest I successfully did. But a 6.5G file it will not do. Seems like the form does even submit. Is there a config option in apache that doesnt even accept it? I looked at /var/log/httpd/ error and access and
2006 Jul 30
2
Can''t submit tickets to dev.rubyonrails.org
I get an "internal error" and this traceback: Traceback (most recent call last): File "/usr/local/lib/python2.4/site-packages/trac/web/main.py", line 314, in dispatch_request dispatcher.dispatch(req) File "/usr/local/lib/python2.4/site-packages/trac/web/main.py", line 199, in dispatch resp = chosen_handler.process_request(req) File
2006 Jun 07
0
2nd Submit button with options
I wish to have 2 submit buttons one which does a normal sumbit and the other that does a submit but also passes the parameters such as "render_action" . This doesnt work <%= start_form_tag :action => ''list'' %> <%= image_submit_tag("find.gif", :alt => "Find and Display", :border => 0) %> <%= link_to
2006 Jun 07
0
Javascript submit form & RJS
I''m using javascript to submit a form using the onclick and getting a response using RJS. Everything works fine except for the returned response is coming back as text no matter what I do. I am attempting to explicitly set the Content-Type header and I tried using the :type param to render but nothing seems to work. Any suggestions? Env: OSX Lighttpd Rails Edge Thanks!
2006 Jun 13
0
Get / Set date_select values before form submit
Hi, i''m working with a date_select field, and I''ve got the following question. The date_select outputs something that looks like: <select name="widget[designedon(1i)]"> <option value="2001">2001</option> </select> I''m used to using prototype to access form elements, but I seem to be missing something here. I''m
2006 Jun 29
0
Problem getting encrypted submit buttons working with the paypal gem and rails 1.1.2
I''m running Rails 1.1.2, and using version 1.9.0 of the paypal gem. When I make unencrypted paypal forms, they work just fine, I get the IPN notification from the sandbox and everything is wonderful. When I try to encrypt the form though, all I get is the error message "We were unable to authorize the transaction. Please contact your merchant.", which is ... unhelpful.
2006 May 03
1
form :onblur => ''this.form.submit()'' doesn''t do AJAX
Hi, I''m looking to create a form that gets submitted using AJAX after an element loses focus. <% remote_form_for :person, @person, :url => { :action => "save" }, :update => ''form'' do |f| %> <label for="person_fname"><span class="req">*</span>Name</label> <div class="form_el"> <%=
2006 May 09
2
[Prototype] Why doesn''t calling submit() on a form result in the execution of the onsubmit event handler?
Hi, Is it normal that a call to $(''some_form'').submit() doesn''t result in the execution of an onsubmit event handler on ''some_form''? Thanks, - Rowan -- Morality is usually taught by the immoral. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 May 27
0
newbie question: creating views to submit values
Apologies for such a basic question. I''ve wracked my brain on this a couple days so if anyone takes pity, please help me out. I''ve been looking at STI (Single Table Inheritance) at the Rails Wiki and decided to try it out. I got it working in the model and controllers but can''t figure out how to make a proper view that will take the values and add them into the
2006 Apr 08
2
Multiple submit buttons
Hi, How do i differentiate different submits tags / buttons on one form. Say I want to create an edit form and I want to provide two buttons; one to save and one to cancel. I would have: <%= submit_tag ''Ok'' %> <%= submit_tag ''Cancel'' %> How do I know which button get pressed by the user? One more thing, how to specify the default selection in a
2006 Apr 25
0
Submit a form_remote from arbitrary JS
What I want to do is trigger an AJAX form submit from an event handler for a form element. The form is named, and I tried calling formname.submit() from the onblur handler. However, instead of using the settings from the form_remote_tag above it, the form ends up submitting the whole browser. I know what you''re thinking, why not use an observer? I tried that, and I ran into some
2006 Mar 24
3
JS validation on a form/submit tag? Like :condition=>...
Hallo -- is there a way anyone know of that I can add a :confirm clause to a form submit? Something like: <%= submit_tag ''commit'', :confirm=>"are you certain?" %> Does anyone know how to achieve this? Cheers, doug. -- Posted via http://www.ruby-forum.com/.