search for: check_id

Displaying 5 results from an estimated 5 matches for "check_id".

Did you mean: check_idq
2006 Oct 24
1
test env. differs from development env, tests breaking
...ning that weren''t happening before. Furthermore, they aren''t happening on other developer''s boxes. Most of the failing tests seem to involve verifying that validations are working. Take the example of check details: create_table( :check_details ) do |t| t.column( :check_id, :integer ) t.column( :description, :string ) t.column( :amount_in_cents, :integer ) #t.column( :account_to_credit_id, :integer ) #t.column( :account_to_debit_id, :integer ) end add_index( :check_details, :check_id ) Now from test/unit/check_detail_test.rb, # validates_presenc...
2004 Aug 06
2
XML statistics on remote server
what i did in this situation was dump the stats/status file to the local server through a lynx --dump call from php .. and then i also update a sql table to reflect the changes so i can poll that instead .. a. <p>On Thu, 26 Feb 2004, MacSym wrote: > > Hi everybody, > > I am wondering if it is possible to generate the XML/XSL files on a remote > server (status.xsl,
2014 Aug 25
1
tinc 1.1 - Improve Hostname Support
...ality-into-util-fo.patch Type: application/octet-stream Size: 3239 bytes Desc: not available URL: <http://www.tinc-vpn.org/pipermail/tinc-devel/attachments/20140824/88653277/attachment.obj> -------------- next part -------------- A non-text attachment was scrubbed... Name: 0002-utils-Refactor-check_id-out-of-protocol-for-global-a.patch Type: application/octet-stream Size: 3043 bytes Desc: not available URL: <http://www.tinc-vpn.org/pipermail/tinc-devel/attachments/20140824/88653277/attachment-0001.obj> -------------- next part -------------- A non-text attachment was scrubbed... Name: 0003...
2008 Nov 25
0
Sanitizing the New Session Key Format
Facebook''s new session format contains periods and underscores which appear to be breaking mem_cache_store. To get my app working again, I appended the following code to the end of environment.rb class CGI class Session class MemCacheStore def check_id(id) #:nodoc:# id = id.gsub(''-'', '''').gsub(''.'', '''').gsub(''_'', '''') /[^0-9a-zA-Z-]+/ =~ id.to_s ? false : true end end end end The above code tricks rails into thinking the sessi...
2010 Nov 15
1
Dashes in node names
...?: ----- start diff ----- diff -ruNp tinc-1.0.13/src/protocol.c tinc-1.0.13.new1/src/protocol.c --- tinc-1.0.13/src/protocol.c 2010-03-13 18:53:33.000000000 +0100 +++ tinc-1.0.13.new1/src/protocol.c 2010-11-15 15:11:05.056142676 +0100 @@ -56,7 +56,7 @@ static avl_tree_t *past_request_tree; bool check_id(const char *id) { for(; *id; id++) - if(!isalnum(*id) && *id != '_') + if(!isalnum(*id) && *id != '_' && *id != '-') return false; return true; ----- end diff ----- mfg, dnjl