Displaying 6 results from an estimated 6 matches for "quoter".
Did you mean:
quote
2001 Oct 04
0
ANNOUNCE: ticker (peeper)
...::Notifier, Net::Peep::Notification, Finance::Quote
http://peep.sourceforge.net
=3Dcut
# Always use strict :-)
use strict;
use Net::Peep::BC;
use Net::Peep::Log;
use Net::Peep::Client;
use Net::Peep::Notifier;
use Net::Peep::Notification;
use Finance::Quote;
use vars qw{ %config $logger $client $quoter $conf };
# The Net::Peep::Log object will allow us to print out some things in
# a nicely formatted way so we can tell ourselves what we're doing ...
$logger =3D new Net::Peep::Log;
# Instantiate a Peep client object. The client object handles most of
# the dirty work for us so we don't...
2007 May 02
1
1.0.2b7 misrenders nested divs with attributes
...------------ next part --------------
--- Markdown.pl.orig 2006-08-29 19:11:53.000000000 -0700
+++ Markdown.pl 2007-05-02 00:28:53.000000000 -0700
@@ -333,9 +336,11 @@
# before each attribute name.
[\w.:_-]+ # Attribute name
\s*=\s*
- (["']) # Attribute quoter
- .+? # Attribute value
- \1 # Closing quoter
+ (?:
+ ".+?" # "Attribute value"
+ |
+ '.+?' # 'Attribute value'
+ )
)* # Zero or more
}x;
2010 Mar 24
2
Mechanize
Hi
I am trying to submit an asp form using Mechanize.
I have to parse this site in order to get the results
http://www.vitranexpress.com/home/CombinedHome.aspx
So for this I have to log in the site which I was successful using
Mechanize. Once you logged in you have to select the Link "Rate Quoter".
Again using mechanize I got the page that this link pointed to. There is a
form which I need to submit to get the shipping charges.
To submit that you need to enter the destination zip code. With actual site
when you enter the destination zip code it passes an ajax request to the
server and...
2001 Jul 01
2
Quality switch
Hello,
just one question:
is it possible to implement a "quality switch" to Ogg Vorbis like the -V
option of the lame encoder?
It's the only thing I'm missing. Everything else is nearly perfect!
Sebastian
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to
2014 Oct 02
15
[Bug 2283] New: option to execute command without shell
https://bugzilla.mindrot.org/show_bug.cgi?id=2283
Bug ID: 2283
Summary: option to execute command without shell
Product: Portable OpenSSH
Version: 6.6p1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: sshd
Assignee: unassigned-bugs at
2004 Dec 07
30
Bind Variables in Active Record
...#39;s the most logical place for this code to live? Mysql will have
to override quoting rules for '', and most databases will have to
provide customer formatting for Dates and Times.
The current santize method lives in ActiveRecord::Base right? Is that
the right place for these ''quoters''? All the DB specific stuff
appears to live in ''connection''. Should it go in there?
My lack of exposure to the code, and lack of ruby exposure generally,
makes me think I''m missing some really easy option....
I''ll create a ticket & send a patch...