Displaying 20 results from an estimated 757 matches for "upwards".
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
2009 Jun 10
3
Problems 4.2 installing on Windows?
I keep an old Windows machine around for making sure that RedCloth
Win32 binary gems install. When I try gem update RedCloth, it just
installs 4.1.9. Did I do something wrong in the gemspec? Would
someone else with a windows machine try it and let me know how it goes?
Jason
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
2008 Mar 15
8
Now what?
> $ rake test
> /usr/local/bin/ruby -Ilib:test "/usr/local/lib/ruby/gems/1.8/gems/
> rake-0.7.3/lib/rake/rake_test_loader.rb" "test/test_formatters.rb"
> "test/test_parser.rb"
> Loaded suite /usr/local/lib/ruby/gems/1.8/gems/rake-0.7.3/lib/rake/
> rake_test_loader
> Started
>
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
2008 Mar 13
3
Whitespace in SuperRedCloth
Up to now, the tests have been running with whitespace stripped out.
Newlines and tabs are insignificant in HTML, so I figured why bother
with them?
Now I realize why: they''re significant in pre tags and they also make
your code look pretty!
I''ve been working to get SRC output to roughly match Tetxile2''s as
far as tabs and newlines go. It''s tough and
2010 Sep 03
6
how can I plot bar plots with all the bars (negative and positive) in the same direction????
...g list,
this seems stupid, but I actually don't find the solution:
if I have a vector of numbers x of length n, ranging, say, from -3 to 4, if I do
barplot (x)
all the values below 0 go downwards, and all the positive values go upward. How can I make them all begin from the minimum pointing upwards?
Thanks!
Gabriele Zoppoli, MD
Ph.D. Fellow, Experimental and Clinical Oncology and Hematology, University of Genova, Genova, Italy
Guest Researcher, LMP, NCI, NIH, Bethesda MD
Work: 301-451-8575
Mobile: 301-204-5642
Email: zoppolig at mail.nih.gov
2011 Jan 13
9
spurious <li> generated when list followed by 3
RedCloth master generates a spurios <li> element when a numbered or undumbered list is followed by three or more newlines.
RedCloth.new("* one\n* two\n* three \n\n\n").to_html
#=> "<ul>\n\t<li>one</li>\n\t<li>two</li>\n\t<li>three</li>\n</ul>\n<li>"
# note extra trailing <li> outside <ul>
A colleague
2008 Feb 21
5
Question about entities
...s some code, "isn't it"</code>.
Thanks!
Jason
References:
http://www.w3.org/International/questions/qa-escapes
http://textile.thresholdstate.com/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/redcloth-upwards/attachments/20080221/145b93b7/attachment.html
2011 Jan 19
3
Installing on CentOS
...at I''m missing? Do I need to configure some repository
information?
Thanks,
Doug
P.S. Total Ruby/RubyGems novice - so I could be doing all manner of dumb
stuff...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/redcloth-upwards/attachments/20110118/ec67017a/attachment.html>
2016 Mar 07
2
sis deduplication broken from 2.2.16 upwards
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
sis attachment deduplication is broken in 2.2.16 upwards.
It is caused by this commit.
https://github.com/dovecot/core/commit/664bf3e236c214aee86294483c379e4fa66c2e63
in src/lib-fs/fs-sis.c function fs_sis_try_link() is comparation of
inodes of hash files.
Because fs_stat() after that commit use fstat() on open fd of temporary
file instead of stat on fi...
2008 May 13
4
hard_breaks issues
Hello,
I''m new to this list, so first of all, many thanks to RedCloth''s
developers, it really helps me in many ruby apps :-)
I post here because I''d like to have a clear view on "hard_breaks"
related issues. I saw old references on the web and on the archives on
this ML, I''d like a fresh view !
It seems that RedCloth 3.0.4 does not handle
2003 Jan 14
1
myths about upwards growing stacks
...ore importantly, this piece of code in klibc/arch/README is wrong:
#if STACK_GROWS_UP
argc = (int)*argptr--;
argv = (char **)argptr;
envp = argv-(argc+1);
#else
argc = (int)*argptr++;
argv = (char **)argptr;
envp = argv+(argc+1);
#endif
i'm not sure why people think that having an upwards-growing stack
means that argc, argv & envp all change places, but they don't. see
include/asm-parisc/processor.h for complete details of the stack layout.
--
"It's not Hollywood. War is real, war is primarily not about defeat or
victory, it is about death. I've seen thousa...
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 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
2020 Sep 09
3
constrained cosine rounding mode behavior
Hi:
I am trying to implement interval arithmetic through llvm. I have a problem with the rounding mode with llvm.experimental.constrained.cos
I have two pieces of codes:
; Function Attrs: norecurse nounwind readnone ssp uwtable
define double @cosine_down(double returned) local_unnamed_addr #0 {
; call the llvm intrinsic to perform downward cosine
2009 Jun 07
1
Close to a 4.2 release; experimenting with Ragel alternatives
...'t tried it out, so I don''t know its
> limitations.
> If anyone else has suggestions of things I should explore, do let me know!
> ?I want to keep RedCloth fast, but it also needs to be maintainable.
> Jason
> _______________________________________________
> Redcloth-upwards mailing list
> Redcloth-upwards at rubyforge.org
> http://rubyforge.org/mailman/listinfo/redcloth-upwards
>
2016 Mar 10
5
sis deduplication broken from 2.2.16 upwards
On 3/9/2016 9:02 PM, Timo Sirainen <tss at iki.fi> wrote:
> On 08 Mar 2016, at 01:50, Pavel Stano <stanojr at websupport.sk> wrote:
>>
>> sis attachment deduplication is broken in 2.2.16 upwards.
>> It is caused by this commit.
>> https://github.com/dovecot/core/commit/664bf3e236c214aee86294483c379e4fa66c2e63
>>
>> in src/lib-fs/fs-sis.c function fs_sis_try_link() is comparation of
>> inodes of hash files.
>> Because fs_stat() after that commit use fstat...
2013 Jul 29
1
Connected Line presentation in 1.8.x upwards
Hi,
I've searched the asterisk.org and voip-info wiki sites, but not found an
answer that seems to match.
Hopefully this is a simple question. COLP is working very well on our
system - Unfortunately it is working a bit TOO well in some circumstances.
We have some "untrusted" trunks. On these trunks, an initial CallerID can
be used, but any redirected caller numbers, COLP updates
2007 Jan 16
1
<BR> and <P> in RedCloth v. Textism
...help.
Or am I barking up a non-existent tree? Is there a way already to do
what I want without a code change?
Thanks for any insight and assistance and especially for such a great
tool!
Steve
p.s. I saw these postings in the archives which are related:
http://rubyforge.org/pipermail/redcloth-upwards/2006-June/000041.html
http://rubyforge.org/pipermail/redcloth-upwards/2006-August/000077.html
June 2006 claims that the exact problem I have is fixed! But I''m still
having it.. Any patch around that can help?!
p.p.s. (I''m on version 3.0.4, at least according the folder that it&...