Displaying 20 results from an estimated 23 matches for "rufy".
Did you mean:
ruby
2005 Apr 27
1
Ruby Shipping
To accompany the Payment library (http://payment.rufy.com/), I have
created the shipping library that connects APIs for various shippers
like UPS and FedEx. It is available as a ruby gem:
gem install shipping
or from rubyforge
http://rubyforge.org/projects/shipping
There is going to be some data that will persist for all shipments. For
example,...
2006 Jun 14
7
CR issue
Hi,
I am using RedCloth (3.0.4).
First using online text2html (http://www.textism.com/tools/textile/) ,
"123
456"
returns <p>123<br />456</p>
But by code:
<code>
require ''RedCloth''
puts RedCloth.new("123\n456").to_html
</code>
I got:
<p>123
456</p>
CR is not taken in consideration. Is there any parameter I am
2016 May 14
2
Samba slow on MacOSX Yosemite
Samba is very slow through Finder on our Gigabit network (she's using
a USB3 adaptor), especially when it comes to listings and such on my
wife's computer.
This is my samba configuration on Archlinux:
http://s.natalian.org/2016-05-14/smb.conf
(I'm always running the latest
https://www.archlinux.org/packages/extra/x86_64/samba/)
And this what the mount looks like on the MBP:
//rufie
2006 Jun 05
3
possible bug in trunk base.rb? BREAK_RE.
Hello All, first post to the list.
I just checked out trunk and it broke my tests.
Turns out that the BREAK_RE regex found in base.rb is missing the "/m"
mode modifier.
I am still getting my head around the library so i may be missing
something but was that done on purpose?
Thanks.
jeremy
Index: base.rb
===================================================================
--- base.rb
2016 May 14
0
Samba slow on MacOSX Yosemite
Hi Kai,
(I recognised your smb.conf - I have your 'Samba sharing with undelete'
blog post bookmarked at the moment to try for myself, so thank you for that
one!)
Is this performance issue something recent, or has it always been a similar
speed? I also find my samba shares to be very slow to obtain directory
listings in Finder on OSX.
If something has changed recently and it is running
2006 Jun 16
3
shortcut for full url as the linktext?
Is there a shortcut for this:
"http://foo.com":http://foo.com
?
Thanks,
---John
2005 Nov 21
4
Code blocks
Oh yes, also I added a shortcut for code blocks. Instead of
<pre><code>, you can surround it with three backticks (```).
- Lucas
http://rufy.com/
2005 Dec 12
9
Webrick is being stupid...no info on a brand new project
I created a project, made a migration, generated scaffolding...start
up webrick and I get nothing. To simplify things, I just started
another project and generated a controller, still getting nothing.
The index page loads fine, but nothing beyond that. If I go to
anything that should give me a 404, the page is just blank. The
Webrick console just says a 500 (nothing explaining why), and
2005 Nov 16
4
RedCloth repository moved to SVN
I''ve been getting increasing resistance from helpers who prefer
Subversion over CVS. I feel that it''s slowing down development. So,
done. Mailing lists, releases, news will still be at Rubyforge. Bug
tracking will likely move to the new repository soon as well.
The new repository is at: http://code.whytheluckystiff.net/
Checkout RedCloth from
2005 Nov 21
3
New code: proposed release?
...r? The ultra-conservative 3.0.5
release... the conservative 3.1.0 release... the crack-addict 4.0.0
release... the idiot-savant 1.2.3 release... the Bill Gates RedCloth
2005 release... the Apple RedCloth Nano release... the typical
SourceForge project 3.0.4a11202005 release?
- Lucas
http://rufy.com/
2006 Mar 17
0
Installed Gems on godaddy.com
...w]
<http://www.zenspider.com/ZSS/Products/ParseTree/>- depends on
RubyInline <http://www.situationman.com/_h_admin_/gems.html#RubyInline>.
Extract
and enumerate ruby parse trees.
Executables are parse_tree_abc, parse_tree_deps, parse_tree_show.
*payment 1.0.1* [www] <http://payment.rufy.com/> Payment is used to process
credit cards and electronic cash through merchant accounts.
*podcast 0.0.4* [www] <http://www.inkdroid.org/> Create podcasts from MP3
files
Executable is podcast.
*rails 0.13.1* [www] <http://www.rubyonrails.org/> - depends on
actionmailer <htt...
2006 Jun 16
1
Odd behavior
I''m getting a lot of odd behavior with RedCloth.
Perhaps I''ve configured something wrong.
Here''s one example...
h1. header line
# one
# two
lala haha
------------ Returns the following---------------
<h1>header line
<ol>
<li>one</li>
<li>two<br />lala haha</li>
</ol></h1>
Any ideas about what this might be?
2006 May 10
2
hard_breaks
Dear Dressers of RedCloth,
I have a question:
text = "Foo\nBar\n\nBaz"
RedCloth.new(text, [ :hard_breaks ]).to_html
# => "<p>Foo<br />Bar<br />\nBaz</p>"
Shouldn''t that really be "<p>Foo<br />Bar</p><p>Baz</p>"?
So long,
--
Christoffer Sawicki
2005 Nov 14
1
Yeah !!!
Wow !! Seems like RedCloth is now able to output DocBook !!!!
Great I have to Say !!!
--
Frederick Ros aka Sleeper -- sleeper at jabber.fr
Make sure special cases are truly special.
- The Elements of Programming Style (Kernighan & Plaugher)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189
2005 Nov 21
1
Hard_breaks issue
Hi all, I can dive into it and figure out why using hard_breaks
breaks RedCloth parsing so badly since 3.0.4, but I was wondering if
someone could point me to the right direction. Thanks!
- Lucas
http://rufy.com/
2005 Nov 24
1
Warnings on tests
Lucas, tell me about changeset 103.
<http://code.whytheluckystiff.net/redcloth/changeset/103>
The require lines are causing a pile of warnings. Were you having
problems with the previous revision?
_why
2005 Jul 07
2
Rails equivalent to System.out.println?
Is there a way I can have print statements in Rails code that will go either to
the WEBrick console (prefered) or to a log file?
2006 Feb 23
8
SQL quoting for :order parameter
When I construct a query using variables I do something like this:
@users = User.find(:all, :conditions => ["location = ?", location])
I would like to do the same sort of thing in the :order parameter.
@users = User.find(:all, :order => ["? ASC", location])
When I try this though I get a SQL error and I see that the items in the
array were concatenated together and
2007 Jan 23
7
RedCloth and SuperRedCloth
Good day to the parliament of RedCloth followers gathered here.
Grave matters at hand!!
I''m personally quite unhappy with the state of RedCloth and am
reluctant to release the code in the repository. I can''t say if the
code works with any confidence because I can''t generate the
(Poignant) Guide with the current RedCloth. I know some things are
fixed, but I''m
2005 Jul 06
6
DoubleRenderError exception
The DoubleRenderError exception recently introduced is forcing me to go back and rewrite my apps authentication handler. Before I could do a redirect right in the middle of a request. Whatever was happening after that went unnoticed, I assumed it was simply ending the request after the redirect was called, but apparently it was going on and rendering the page.
Why can''t a redirect