Arc Forumnew | comments | leaders | submit | wfarr's commentslogin
1 point by wfarr 6445 days ago | link | parent | on: So, hey, I finally deployed my Arc blog

It seems Opera's not respecting something with the CSS. The content area not only has a minimum height, but the pre has auto overflows (meaning it should force the box to only a given size and then use scrollbars).

-----

2 points by wfarr 6445 days ago | link | parent | on: So, hey, I finally deployed my Arc blog

Yeah, a lot of the validation issues come from Arc's somewhat stubborn nature regarding tags that should end with a slash.

For now, I've moved the doctype to HTML 4.01 Transitional and all is well. I really would like to go back to XHTML though.

The CSS could use some work too, but most of the issues with that are my early adoption of some css3 standards.

-----

3 points by lojic 6444 days ago | link

Given that the browser with 80% to 90% can't handle XHTML properly, and after long drawn out debates in usenet over the best doctype, I've personally settled on HTML 4.01 Strict. Once I discovered how IE actually handles XHTML, that sealed the deal.

-----

2 points by wfarr 6444 days ago | link

As an update, after much heartbreak over not knowing about (cdata), the RSS now validates as well.

-----

3 points by wfarr 6445 days ago | link | parent | on: So, hey, I finally deployed my Arc blog

In that post I detail that it is available here: http://github.com/wfarr/wfarr-arc/tree/master

;)

-----

2 points by wfarr 6445 days ago | link | parent | on: So, hey, I finally deployed my Arc blog

Got it back up after a brief stint of being incredibly stupid.

One thing I'd really like to get happening is fully-fledged Markdown support, which'd benefit everyone. Anyone who wants to jump in is more than welcome to.

-----

3 points by wfarr 6445 days ago | link | parent | on: Moved Anarki to GitHub

Done. 3 left here.

-----

1 point by eds 6445 days ago | link

Thanks. As a result of getting an account, I can invite 3 people as well.

Actually, we can't run out of invites as long as the people who get invited use their invites on others, and those people use their invites, etc....

-----

1 point by almkglor 6445 days ago | link

Hmm. Maybe we need a meta-anarki where people apply for github invites specifically for write-access to anarki. In Arc, of course. ^^

-----

2 points by wfarr 6445 days ago | link | parent | on: Moved Anarki to GitHub

I've got invites as well.

-----

2 points by wfarr 6446 days ago | link | parent | on: Are you using Arc for a web site?

I've been working on my own blog based on blog.arc, but a little bit more comprehensive.

My only concern right now is deployment via Lighty.

-----

1 point by wfarr 6453 days ago | link | parent | on: Bug in (markdown)

"Here I am typing normally. Yey, fun, etc.

  (def mycode (goes here)
    (pr "for sure"))
This paragraph isn't wrapped as a paragraph! =(

But this one is! =/"

Where newline's would've been converted to \n, etc.

-----

1 point by almkglor 6452 days ago | link

The bug appears to be that code-block consumes all whitespace after it. However, the paragraph detector expects to see some newlines. Hmm.

-----

1 point by almkglor 6452 days ago | link

Grr. Possibly just have it print </code></pre><p> instead >.<

Edit: Okay. Here's the diff:

  diff --git a/app.arc b/app.arc
  index 912a1ad..8106695 100644
  --- a/app.arc
  +++ b/app.arc
  @@ -421,7 +421,7 @@
                  (do (pr  "<p><pre><code>")
                    (let cb (code-block s (- newi spaces 1))
                      (pr cb)
  -                   (= i (+ (- newi spaces 1) (len cb))))
  +                   (= i (+ (- newi spaces 2) (len cb))))
                    (pr "</code></pre>"))
                  (iflet newi (parabreak s i (if (is i 0) 1 0))
                         (do (unless (is i 0) (pr "<p>"))
Why the change to 2? Because cb itself has a lookahead problem. Or maybe not, grr.

-----

1 point by wfarr 6454 days ago | link | parent | on: Help link has disappeared

Really now?

I see it on the edit page. FF3 on Linux.

-----

2 points by lojic 6453 days ago | link

I see it when editing comments, but not on new submissions.

-----

2 points by wfarr 6456 days ago | link | parent | on: Anarki Down

No! Arg. =(

-----

More