From tobias.luetke at gmail.com Sun Apr 3 00:43:57 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sun Apr 3 00:42:28 2005 Subject: [typo] Typo Message-ID: <9963c1bd05040221434ac71d9a@mail.gmail.com> Hey everyone, I managed to create this mailing list without actually subscribing myself. Now how clever is that? Anyways typo has gotten some major love the past two days. I pulled the config.yml into the database, added ajax based comments, revamped ajax based live search, closed almost all tickets on the trac and added beautiful perma links in the /2005/04/04/title-with-dashes style. The changes can be seen at blog.leetsoft.com and they life currently only in subversion trunk. I'm planning on releasing a new version soon after i figure out how to properly secure the settings controller. Keeping to my system of very liberal version bumps I think this release will be typo 2.0 since there are some backwards incompatible changes introduced like the dependency on the new settings table. Anyways, just a small status update -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From ib at sdf-eu.org Sun Apr 3 11:24:47 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 3 11:19:46 2005 Subject: [typo] Route problems Message-ID: <42500ABF.8030707@sdf-eu.org> Hey guys, I am having trouble with the routes to feeds in Typo. If I view /xml/rss/feed.xml in a webbrowser it works ok. After I try to add the feed in RssBandit it becomes unusable, even from the browser. I get the following message: ------------- Routing Error No route for path: "feed.xml" Failure reasons: "articles"}> failed because unused components were left: feed.xml "index"} when {:controller=>"xml"}> failed because value for component "xml" doesn't match feed.xml "articles", :action=>"permalink"}> failed because value for component "articles" doesn't match feed.xml nil, :action=>"index"}> failed because no controller found at subpath feed.xml ------------- The strange thing is that now it doesn't work anymore, even if I restart webrick. (!!) Very, very strange. I compare the files from my installation with the original files and everything is unchanged. I erase my installation, copy the original files, change my settings and... it works! Until next time I try to add it in RssBandit. :-( Any ideas? Ioan From ib at sdf-eu.org Sun Apr 3 12:32:34 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 3 12:27:30 2005 Subject: [typo] Route problems In-Reply-To: <9963c1bd0504030840dfad29b@mail.gmail.com> References: <42500ABF.8030707@sdf-eu.org> <9963c1bd0504030840dfad29b@mail.gmail.com> Message-ID: <42501AA2.2050809@sdf-eu.org> The problem is that Typo doesn't create feed.xml after it is deleted. I think it has nothing to do with RssBandit, because it worked once. It has nothing to do with the mime; the file simply doesn't exist. The directories are chmod 777. If I put a "raise "xxx"" in xml_controller.rb method "rss" I get the same error, so it doesn't even arrive there. I need to find a way to determine webrick to call the controller code if the xml isn't there. Tobias Luetke wrote: > This could be the caching at fault. On the first request after an > update to the database the XML is just dumped into the file system ( > /xml/rss/feed.xml for example ) > > This has the advantage that further requests don't even have to be > interpreted by typo anymore, the web server will just serve the > document. > > Now the question is why does RSS Bandit have issues with this, i could > imagine that Webrick might serve these cached feeds with the wrong > mime type. > > Either way, try to delete the xml folder in your public dir and see if > this is the issue. > > On Apr 3, 2005 11:24 AM, Ioan Bizau jr. wrote: > >>Hey guys, >> >>I am having trouble with the routes to feeds in Typo. >>If I view /xml/rss/feed.xml in a webbrowser it works ok. After I try to >>add the feed in RssBandit it becomes unusable, even from the browser. I >>get the following message: >> >>------------- >> >>Routing Error >> >>No route for path: "feed.xml" >> >>Failure reasons: >>"articles"}> >>failed because unused components were left: feed.xml >>>{:action=>"index"} when {:controller=>"xml"}> failed because value for >>component "xml" doesn't match feed.xml >>>when {:controller=>"articles", :action=>"permalink"}> failed because >>value for component "articles" doesn't match feed.xml >>>{:id=>nil, :action=>"index"}> failed because no controller found at >>subpath feed.xml >> >>------------- >> >>The strange thing is that now it doesn't work anymore, even if I restart >>webrick. (!!) Very, very strange. I compare the files from my >>installation with the original files and everything is unchanged. I >>erase my installation, copy the original files, change my settings >>and... it works! Until next time I try to add it in RssBandit. :-( >>Any ideas? >> >>Ioan >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From ib at sdf-eu.org Sun Apr 3 15:44:40 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 3 15:39:37 2005 Subject: [typo] Route problems In-Reply-To: <9963c1bd05040310054da2122d@mail.gmail.com> References: <42500ABF.8030707@sdf-eu.org> <9963c1bd0504030840dfad29b@mail.gmail.com> <42501AA2.2050809@sdf-eu.org> <9963c1bd05040310054da2122d@mail.gmail.com> Message-ID: <425047A8.1050200@sdf-eu.org> It doesn't work neither in development nor in production. What else could I try? Tobias Luetke wrote: > It would only create the feed.xml if you are in production mode as > caching is disabled during development. > > Maybe thats the case here? > > On Apr 3, 2005 12:32 PM, Ioan Bizau jr. wrote: > >>The problem is that Typo doesn't create feed.xml after it is deleted. I >>think it has nothing to do with RssBandit, because it worked once. >>It has nothing to do with the mime; the file simply doesn't exist. >>The directories are chmod 777. >>If I put a "raise "xxx"" in xml_controller.rb method "rss" I get the >>same error, so it doesn't even arrive there. I need to find a way to >>determine webrick to call the controller code if the xml isn't there. >> >>Tobias Luetke wrote: >> >>>This could be the caching at fault. On the first request after an >>>update to the database the XML is just dumped into the file system ( >>>/xml/rss/feed.xml for example ) >>> >>>This has the advantage that further requests don't even have to be >>>interpreted by typo anymore, the web server will just serve the >>>document. >>> >>>Now the question is why does RSS Bandit have issues with this, i could >>>imagine that Webrick might serve these cached feeds with the wrong >>>mime type. >>> >>>Either way, try to delete the xml folder in your public dir and see if >>>this is the issue. >>> >>>On Apr 3, 2005 11:24 AM, Ioan Bizau jr. wrote: >>> >>> >>>>Hey guys, >>>> >>>>I am having trouble with the routes to feeds in Typo. >>>>If I view /xml/rss/feed.xml in a webbrowser it works ok. After I try to >>>>add the feed in RssBandit it becomes unusable, even from the browser. I >>>>get the following message: >>>> >>>>------------- >>>> >>>>Routing Error >>>> >>>>No route for path: "feed.xml" >>>> >>>>Failure reasons: >>>>"articles"}> >>>>failed because unused components were left: feed.xml >>>>>>>{:action=>"index"} when {:controller=>"xml"}> failed because value for >>>>component "xml" doesn't match feed.xml >>>>>>>when {:controller=>"articles", :action=>"permalink"}> failed because >>>>value for component "articles" doesn't match feed.xml >>>>>>>{:id=>nil, :action=>"index"}> failed because no controller found at >>>>subpath feed.xml >>>> >>>>------------- >>>> >>>>The strange thing is that now it doesn't work anymore, even if I restart >>>>webrick. (!!) Very, very strange. I compare the files from my >>>>installation with the original files and everything is unchanged. I >>>>erase my installation, copy the original files, change my settings >>>>and... it works! Until next time I try to add it in RssBandit. :-( >>>>Any ideas? >>>> >>>>Ioan >>>>_______________________________________________ >>>>Typo-list mailing list >>>>Typo-list@rubyforge.org >>>>http://rubyforge.org/mailman/listinfo/typo-list >>>> >>> >>> >>> >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From ib at sdf-eu.org Sun Apr 3 18:48:07 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 3 18:43:04 2005 Subject: [typo] Route problems In-Reply-To: <9963c1bd050403135362eda195@mail.gmail.com> References: <42500ABF.8030707@sdf-eu.org> <9963c1bd0504030840dfad29b@mail.gmail.com> <42501AA2.2050809@sdf-eu.org> <9963c1bd05040310054da2122d@mail.gmail.com> <425047A8.1050200@sdf-eu.org> <9963c1bd050403135362eda195@mail.gmail.com> Message-ID: <425072A7.3070203@sdf-eu.org> Works well with Rails 0.11.1; I had 0.10.1 before. Thanks a lot, Tobias!!! Tobias Luetke wrote: > Super strange problem. I have tested the exports extensively under > webrick now and couldn't manage to break them. Please verify that you > don't have a public/xml/rss/feed.xml file (delete if its there). Also > please make sure that you are running the latest rails. > > On Apr 3, 2005 3:44 PM, Ioan Bizau jr. wrote: > >>It doesn't work neither in development nor in production. >>What else could I try? >> >>Tobias Luetke wrote: >> >>>It would only create the feed.xml if you are in production mode as >>>caching is disabled during development. >>> >>>Maybe thats the case here? >>> >>>On Apr 3, 2005 12:32 PM, Ioan Bizau jr. wrote: >>> >>> >>>>The problem is that Typo doesn't create feed.xml after it is deleted. I >>>>think it has nothing to do with RssBandit, because it worked once. >>>>It has nothing to do with the mime; the file simply doesn't exist. >>>>The directories are chmod 777. >>>>If I put a "raise "xxx"" in xml_controller.rb method "rss" I get the >>>>same error, so it doesn't even arrive there. I need to find a way to >>>>determine webrick to call the controller code if the xml isn't there. >>>> >>>>Tobias Luetke wrote: >>>> >>>> >>>>>This could be the caching at fault. On the first request after an >>>>>update to the database the XML is just dumped into the file system ( >>>>>/xml/rss/feed.xml for example ) >>>>> >>>>>This has the advantage that further requests don't even have to be >>>>>interpreted by typo anymore, the web server will just serve the >>>>>document. >>>>> >>>>>Now the question is why does RSS Bandit have issues with this, i could >>>>>imagine that Webrick might serve these cached feeds with the wrong >>>>>mime type. >>>>> >>>>>Either way, try to delete the xml folder in your public dir and see if >>>>>this is the issue. >>>>> >>>>>On Apr 3, 2005 11:24 AM, Ioan Bizau jr. wrote: >>>>> >>>>> >>>>> >>>>>>Hey guys, >>>>>> >>>>>>I am having trouble with the routes to feeds in Typo. >>>>>>If I view /xml/rss/feed.xml in a webbrowser it works ok. After I try to >>>>>>add the feed in RssBandit it becomes unusable, even from the browser. I >>>>>>get the following message: >>>>>> >>>>>>------------- >>>>>> >>>>>>Routing Error >>>>>> >>>>>>No route for path: "feed.xml" >>>>>> >>>>>>Failure reasons: >>>>>>"articles"}> >>>>>>failed because unused components were left: feed.xml >>>>>>>>>>>{:action=>"index"} when {:controller=>"xml"}> failed because value for >>>>>>component "xml" doesn't match feed.xml >>>>>>>>>>>when {:controller=>"articles", :action=>"permalink"}> failed because >>>>>>value for component "articles" doesn't match feed.xml >>>>>>>>>>>{:id=>nil, :action=>"index"}> failed because no controller found at >>>>>>subpath feed.xml >>>>>> >>>>>>------------- >>>>>> >>>>>>The strange thing is that now it doesn't work anymore, even if I restart >>>>>>webrick. (!!) Very, very strange. I compare the files from my >>>>>>installation with the original files and everything is unchanged. I >>>>>>erase my installation, copy the original files, change my settings >>>>>>and... it works! Until next time I try to add it in RssBandit. :-( >>>>>>Any ideas? >>>>>> >>>>>>Ioan >>>>>>_______________________________________________ >>>>>>Typo-list mailing list >>>>>>Typo-list@rubyforge.org >>>>>>http://rubyforge.org/mailman/listinfo/typo-list >>>>>> >>>>> >>>>> >>>>> >>>>_______________________________________________ >>>>Typo-list mailing list >>>>Typo-list@rubyforge.org >>>>http://rubyforge.org/mailman/listinfo/typo-list >>>> >>> >>> >>> >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From robby at planetargon.com Mon Apr 4 17:12:09 2005 From: robby at planetargon.com (Robby Russell) Date: Mon Apr 4 17:06:55 2005 Subject: [typo] pagination broken? Message-ID: <1112649130.12171.6.camel@linus> I have typo installed and I have more than 10 entries in my blog. It's limiting it at 10 (which is fine) but doesn't give me an option at the bottom to go back a page. Is this in the system yet or is this on the todo list? -Robby -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From sergio.rael at gmail.com Tue Apr 5 07:06:55 2005 From: sergio.rael at gmail.com (Sergio Rael) Date: Tue Apr 5 07:01:36 2005 Subject: [typo] Where do I set the categories? Message-ID: <48ab4e2805040504062f986f1c@mail.gmail.com> Hello, I must be the king of the stupids but I really don't know how to set up the categories. Not having categories Typo doesn't allow to post. Thanks Sergio From seth at remor.com Tue Apr 5 07:55:14 2005 From: seth at remor.com (Seth Hall) Date: Tue Apr 5 07:50:00 2005 Subject: [typo] Where do I set the categories? In-Reply-To: <48ab4e2805040504062f986f1c@mail.gmail.com> References: <48ab4e2805040504062f986f1c@mail.gmail.com> Message-ID: <3a1ca76b73442377c07d52cf47b3e55b@remor.com> On Apr 5, 2005, at 7:06 AM, Sergio Rael wrote: > Hello, > > I must be the king of the stupids but I really don't know how to set > up the categories. Not having categories Typo doesn't allow to post. No, not at all. We still don't have any docs for Typo :) Most people are currently adding categories directly into the database. There is a script in the trac that Vince Hodges submitted yesterday for adding categories from the command line (http://typo.leetsoft.com/trac.cgi/ticket/20). Another way is when you create an article you can type a command into the title of your article which will add a category or categories and add the current article to those categories. e.g. [+newcategory, +anothernewcategory] Your article title I think this is currently broken though, but it will probably be working again soon. .Seth From sergio.rael at gmail.com Tue Apr 5 08:07:05 2005 From: sergio.rael at gmail.com (Sergio Rael) Date: Tue Apr 5 08:01:47 2005 Subject: [typo] Where do I set the categories? In-Reply-To: <3a1ca76b73442377c07d52cf47b3e55b@remor.com> References: <48ab4e2805040504062f986f1c@mail.gmail.com> <3a1ca76b73442377c07d52cf47b3e55b@remor.com> Message-ID: <48ab4e28050405050718391175@mail.gmail.com> On Apr 5, 2005 1:55 PM, Seth Hall wrote: > Another way is when you > create an article you can type a command into the title of your article > which will add a category or categories and add the current article to > those categories. > > e.g. > [+newcategory, +anothernewcategory] Your article title > > I think this is currently broken though, but it will probably be > working again soon. This way to set categories is cool. Thank you very much for the explanation. Sergio From chanezon at gmail.com Tue Apr 5 08:23:00 2005 From: chanezon at gmail.com (Patrick Chanezon) Date: Tue Apr 5 08:17:41 2005 Subject: [typo] Where do I set the categories? In-Reply-To: <48ab4e28050405050718391175@mail.gmail.com> References: <48ab4e2805040504062f986f1c@mail.gmail.com> <3a1ca76b73442377c07d52cf47b3e55b@remor.com> <48ab4e28050405050718391175@mail.gmail.com> Message-ID: see http://blog.chanezon.com/articles/2005/03/24/categories-how-do-i-do Not very secure yet, but works for me. Hope this helps. P@ On Apr 5, 2005 2:07 PM, Sergio Rael wrote: > On Apr 5, 2005 1:55 PM, Seth Hall wrote: > > > Another way is when you > > create an article you can type a command into the title of your article > > which will add a category or categories and add the current article to > > those categories. > > > > e.g. > > [+newcategory, +anothernewcategory] Your article title > > > > I think this is currently broken though, but it will probably be > > working again soon. > > This way to set categories is cool. Thank you very much for the explanation. > > Sergio > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From seth at remor.com Tue Apr 5 08:30:56 2005 From: seth at remor.com (Seth Hall) Date: Tue Apr 5 08:25:46 2005 Subject: [typo] pagination broken? In-Reply-To: <1112649130.12171.6.camel@linus> References: <1112649130.12171.6.camel@linus> Message-ID: <2da585cb8e1d7cdc710eddb16876c705@remor.com> On Apr 4, 2005, at 5:12 PM, Robby Russell wrote: > I have typo installed and I have more than 10 entries in my blog. It's > limiting it at 10 (which is fine) but doesn't give me an option at the > bottom to go back a page. Is this in the system yet or is this on the > todo list? I've been meaning to get around to this, but it looks like I may not have much time until next week, so if someone else wants to write a patch for this, feel free. The articles controller just needs to use the pagination helper that is included in rails now. .Seth From tobias.luetke at gmail.com Tue Apr 5 09:24:30 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 5 09:19:11 2005 Subject: [typo] Where do I set the categories? In-Reply-To: References: <48ab4e2805040504062f986f1c@mail.gmail.com> <3a1ca76b73442377c07d52cf47b3e55b@remor.com> <48ab4e28050405050718391175@mail.gmail.com> Message-ID: <9963c1bd05040506241e3bba05@mail.gmail.com> What i would really like is to add some sort of authentication to typo. After you login i would like to show a small "add category" link under the list of current categories and do some ajax-fu to create categories tada list style. But then again seth will probably tell me off because this is almost a html admin again. Its not easy... On Apr 5, 2005 8:23 AM, Patrick Chanezon wrote: > see http://blog.chanezon.com/articles/2005/03/24/categories-how-do-i-do > Not very secure yet, but works for me. > Hope this helps. > > P@ > > On Apr 5, 2005 2:07 PM, Sergio Rael wrote: > > On Apr 5, 2005 1:55 PM, Seth Hall wrote: > > > > > Another way is when you > > > create an article you can type a command into the title of your article > > > which will add a category or categories and add the current article to > > > those categories. > > > > > > e.g. > > > [+newcategory, +anothernewcategory] Your article title > > > > > > I think this is currently broken though, but it will probably be > > > working again soon. > > > > This way to set categories is cool. Thank you very much for the explanation. > > > > Sergio > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From seth at remor.com Tue Apr 5 09:25:52 2005 From: seth at remor.com (Seth Hall) Date: Tue Apr 5 09:20:35 2005 Subject: [typo] Typo Blogs on del.icio.us Message-ID: I just finished tagging all of Typo blogs that are listed on the wiki with the tag "typoblogs" on del.icio.us (http://del.icio.us/tag/typoblogs). Perhaps, someone adventurous could write a script to take the rss feed from that tag and output an opml file for easily subscribing to all Typo blogs in an aggregator? later, .Seth From seth at remor.com Tue Apr 5 09:28:14 2005 From: seth at remor.com (Seth Hall) Date: Tue Apr 5 09:23:00 2005 Subject: [typo] Where do I set the categories? In-Reply-To: <9963c1bd05040506241e3bba05@mail.gmail.com> References: <48ab4e2805040504062f986f1c@mail.gmail.com> <3a1ca76b73442377c07d52cf47b3e55b@remor.com> <48ab4e28050405050718391175@mail.gmail.com> <9963c1bd05040506241e3bba05@mail.gmail.com> Message-ID: <4f939ee565e1edbef3c575daa801e10c@remor.com> haha. No, I agree that we kind of need to have some html interface stuff. At least rails makes it really easy and maintainable. .Seth On Apr 5, 2005, at 9:24 AM, Tobias Luetke wrote: > What i would really like is to add some sort of authentication to > typo. After you login > i would like to show a small "add category" link under the list of > current categories and do some ajax-fu to create categories tada list > style. > > But then again seth will probably tell me off because this is almost a > html admin again. > > Its not easy... > > > On Apr 5, 2005 8:23 AM, Patrick Chanezon wrote: >> see >> http://blog.chanezon.com/articles/2005/03/24/categories-how-do-i-do >> Not very secure yet, but works for me. >> Hope this helps. >> >> P@ >> >> On Apr 5, 2005 2:07 PM, Sergio Rael wrote: >>> On Apr 5, 2005 1:55 PM, Seth Hall wrote: >>> >>>> Another way is when you >>>> create an article you can type a command into the title of your >>>> article >>>> which will add a category or categories and add the current article >>>> to >>>> those categories. >>>> >>>> e.g. >>>> [+newcategory, +anothernewcategory] Your article title >>>> >>>> I think this is currently broken though, but it will probably be >>>> working again soon. >>> >>> This way to set categories is cool. Thank you very much for the >>> explanation. >>> >>> Sergio >>> _______________________________________________ >>> Typo-list mailing list >>> Typo-list@rubyforge.org >>> http://rubyforge.org/mailman/listinfo/typo-list >>> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Seth Hall Network Security Engineer Phone: 614-292-9721 Ohio State University Enterprise Network Security E-mail: security@osu.edu Web: http://www.net.ohio-state.edu/security/ From tobias.luetke at gmail.com Tue Apr 5 09:41:50 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 5 09:36:32 2005 Subject: [typo] Typo Blogs on del.icio.us In-Reply-To: <9963c1bd0504050635aae34f4@mail.gmail.com> References: <9963c1bd0504050635aae34f4@mail.gmail.com> Message-ID: <9963c1bd0504050641ad16412@mail.gmail.com> Wow thats a cool idea. Another idea was to set up a "default ping target" page and have all typo blogs send a ping when the owner posts something sort of like technocrati. I think its time to get www.typo-weblog.com On Apr 5, 2005 9:25 AM, Seth Hall wrote: > I just finished tagging all of Typo blogs that are listed on the wiki > with the tag "typoblogs" on del.icio.us > > (http://del.icio.us/tag/typoblogs). > > Perhaps, someone adventurous could write a script to take the rss feed > from that tag and output an opml file for easily subscribing to all > Typo blogs in an aggregator? > > later, > .Seth > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From seth at remor.com Tue Apr 5 09:52:46 2005 From: seth at remor.com (Seth Hall) Date: Tue Apr 5 09:47:32 2005 Subject: [typo] Typo Blogs on del.icio.us In-Reply-To: <9963c1bd0504050635aae34f4@mail.gmail.com> References: <9963c1bd0504050635aae34f4@mail.gmail.com> Message-ID: On Apr 5, 2005, at 9:35 AM, Tobias Luetke wrote: > Another idea was to set up a "default ping target" page and have all > typo blogs send a ping when the owner posts something sort of like > technocrati. Yeah, that'd be cool. It would help with keeping up to date on what's happening with typo, there is so much activity going on right now, it's pretty hard to keep up with all of it. It would at least be good if we could get people to start sending pings to a certain place whenever they make a post to their blog about typo. > I think its time to get www.typo-weblog.com Probably not a bad idea. .Seth > On Apr 5, 2005 9:25 AM, Seth Hall wrote: >> I just finished tagging all of Typo blogs that are listed on the wiki >> with the tag "typoblogs" on del.icio.us >> >> (http://del.icio.us/tag/typoblogs). >> >> Perhaps, someone adventurous could write a script to take the rss feed >> from that tag and output an opml file for easily subscribing to all >> Typo blogs in an aggregator? From shanev at gmail.com Tue Apr 5 11:02:52 2005 From: shanev at gmail.com (Shane Vitarana) Date: Tue Apr 5 10:57:35 2005 Subject: [typo] Typo Blogs on del.icio.us In-Reply-To: References: <9963c1bd0504050635aae34f4@mail.gmail.com> Message-ID: <4ab757a405040508029463575@mail.gmail.com> I was actually thinking about registering something like rubyroller.com to host Typo blogs. But it looks like http://www.rubyist.org/ has a similar idea. I don't have the bandwith for something like that anyway. Shane On Apr 5, 2005 7:52 AM, Seth Hall wrote: > > On Apr 5, 2005, at 9:35 AM, Tobias Luetke wrote: > > > Another idea was to set up a "default ping target" page and have all > > typo blogs send a ping when the owner posts something sort of like > > technocrati. > > Yeah, that'd be cool. It would help with keeping up to date on what's > happening with typo, there is so much activity going on right now, it's > pretty hard to keep up with all of it. It would at least be good if we > could get people to start sending pings to a certain place whenever > they make a post to their blog about typo. > > > I think its time to get www.typo-weblog.com > > Probably not a bad idea. > > .Seth > > > On Apr 5, 2005 9:25 AM, Seth Hall wrote: > >> I just finished tagging all of Typo blogs that are listed on the wiki > >> with the tag "typoblogs" on del.icio.us > >> > >> (http://del.icio.us/tag/typoblogs). > >> > >> Perhaps, someone adventurous could write a script to take the rss feed > >> from that tag and output an opml file for easily subscribing to all > >> Typo blogs in an aggregator? > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From robby at planetargon.com Tue Apr 5 12:08:09 2005 From: robby at planetargon.com (Robby Russell) Date: Tue Apr 5 12:02:56 2005 Subject: [typo] Typo Blogs on del.icio.us In-Reply-To: <4ab757a405040508029463575@mail.gmail.com> References: <9963c1bd0504050635aae34f4@mail.gmail.com> <4ab757a405040508029463575@mail.gmail.com> Message-ID: <1112717290.12171.66.camel@linus> I began offering Typo as an option late last week for our blog hosting packages: http://planetargon.com/blog_hosting/ -Robby On Tue, 2005-04-05 at 09:02 -0600, Shane Vitarana wrote: > I was actually thinking about registering something like > rubyroller.com to host Typo blogs. But it looks like > http://www.rubyist.org/ has a similar idea. I don't have the bandwith > for something like that anyway. > > Shane > > On Apr 5, 2005 7:52 AM, Seth Hall wrote: > > > > On Apr 5, 2005, at 9:35 AM, Tobias Luetke wrote: > > > > > Another idea was to set up a "default ping target" page and have all > > > typo blogs send a ping when the owner posts something sort of like > > > technocrati. > > > > Yeah, that'd be cool. It would help with keeping up to date on what's > > happening with typo, there is so much activity going on right now, it's > > pretty hard to keep up with all of it. It would at least be good if we > > could get people to start sending pings to a certain place whenever > > they make a post to their blog about typo. > > > > > I think its time to get www.typo-weblog.com > > > > Probably not a bad idea. > > > > .Seth > > > > > On Apr 5, 2005 9:25 AM, Seth Hall wrote: > > >> I just finished tagging all of Typo blogs that are listed on the wiki > > >> with the tag "typoblogs" on del.icio.us > > >> > > >> (http://del.icio.us/tag/typoblogs). > > >> > > >> Perhaps, someone adventurous could write a script to take the rss feed > > >> from that tag and output an opml file for easily subscribing to all > > >> Typo blogs in an aggregator? > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From patrick at lenz.sh Tue Apr 5 12:26:50 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 5 12:21:32 2005 Subject: [typo] pagination broken? In-Reply-To: <2da585cb8e1d7cdc710eddb16876c705@remor.com> References: <1112649130.12171.6.camel@linus> <2da585cb8e1d7cdc710eddb16876c705@remor.com> Message-ID: <5E4DDD5E-720D-4151-8362-A8F35DC05AD3@lenz.sh> On Apr 5, 2005, at 2:30 PM, Seth Hall wrote: > I've been meaning to get around to this, but it looks like I may > not have much time until next week, so if someone else wants to > write a patch for this, feel free. The articles controller just > needs to use the pagination helper that is included in rails now. I added simple pagination to the AWS branch in changeset [128]. It should work just as fine in trunk and Tobias is likely to merge it as soon as he approves the changes. In the meantime you can apply the following patch: http://typo.leetsoft.com/trac.cgi/changeset/128?format=diff -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From tobias.luetke at gmail.com Tue Apr 5 12:54:58 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 5 12:49:37 2005 Subject: [typo] Typo Blogs on del.icio.us In-Reply-To: <1112717290.12171.66.camel@linus> References: <9963c1bd0504050635aae34f4@mail.gmail.com> <4ab757a405040508029463575@mail.gmail.com> <1112717290.12171.66.camel@linus> Message-ID: <9963c1bd050405095433ee39a7@mail.gmail.com> cool stuff :) On Apr 5, 2005 12:08 PM, Robby Russell wrote: > I began offering Typo as an option late last week for our blog hosting > packages: > > http://planetargon.com/blog_hosting/ > > -Robby > > On Tue, 2005-04-05 at 09:02 -0600, Shane Vitarana wrote: > > I was actually thinking about registering something like > > rubyroller.com to host Typo blogs. But it looks like > > http://www.rubyist.org/ has a similar idea. I don't have the bandwith > > for something like that anyway. > > > > Shane > > > > On Apr 5, 2005 7:52 AM, Seth Hall wrote: > > > > > > On Apr 5, 2005, at 9:35 AM, Tobias Luetke wrote: > > > > > > > Another idea was to set up a "default ping target" page and have all > > > > typo blogs send a ping when the owner posts something sort of like > > > > technocrati. > > > > > > Yeah, that'd be cool. It would help with keeping up to date on what's > > > happening with typo, there is so much activity going on right now, it's > > > pretty hard to keep up with all of it. It would at least be good if we > > > could get people to start sending pings to a certain place whenever > > > they make a post to their blog about typo. > > > > > > > I think its time to get www.typo-weblog.com > > > > > > Probably not a bad idea. > > > > > > .Seth > > > > > > > On Apr 5, 2005 9:25 AM, Seth Hall wrote: > > > >> I just finished tagging all of Typo blogs that are listed on the wiki > > > >> with the tag "typoblogs" on del.icio.us > > > >> > > > >> (http://del.icio.us/tag/typoblogs). > > > >> > > > >> Perhaps, someone adventurous could write a script to take the rss feed > > > >> from that tag and output an opml file for easily subscribing to all > > > >> Typo blogs in an aggregator? > > > > > > _______________________________________________ > > > Typo-list mailing list > > > Typo-list@rubyforge.org > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > -- > /*************************************** > * Robby Russell | Owner.Developer.Geek > * PLANET ARGON | www.planetargon.com > * Portland, OR | robby@planetargon.com > * 503.351.4730 | blog.planetargon.com > * PHP, Ruby, and PostgreSQL Development > * http://www.robbyonrails.com/ > ****************************************/ > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From riedel at ibr-oss.de Wed Apr 6 05:16:41 2005 From: riedel at ibr-oss.de (Konrad Riedel) Date: Wed Apr 6 05:11:25 2005 Subject: [typo] Typo Install problems Message-ID: <4253A8F9.1040505@ibr-oss.de> Hi, surely a silly newbie question, but I'm lost at this point I tried the latest release and svn HEAD. config for dev/prod is the same. script/server is working fine, but running under apache(fastcgi) gives this: NameError in Articles#find_by_date undefined local variable Ahh, solved - I had a lot of running fcgi-processes, so I restarted apache... And I have a question regarding german umlauts, they are ok in Webrick, but wrong in apache. Any Hints? Thanks Konrad From sergio.rael at gmail.com Wed Apr 6 05:58:25 2005 From: sergio.rael at gmail.com (Sergio Rael) Date: Wed Apr 6 05:53:11 2005 Subject: [typo] Typo Install problems In-Reply-To: <4253A8F9.1040505@ibr-oss.de> References: <4253A8F9.1040505@ibr-oss.de> Message-ID: <48ab4e280504060258448d4a4@mail.gmail.com> On Apr 6, 2005 11:16 AM, Konrad Riedel wrote: > And I have a question regarding german umlauts, they are ok in Webrick, > but wrong in apache. > > Any Hints? This is probably related to the content-encoding in Apache. I noticed a problem as well with that, it seems that the webpage declare itself to be utf-8: but Typo (Rails (Ruby)) doesn't declare itself has being UTF-8 with @headers["Content-Type"] = "text/html; charset=UTF-8" as explained in: http://www.w3.org/International/O-HTTP-charset So the default content-type of your Apache is used instead. My AddDefaultCharset in Apache is set to UTF-8 and I don't have a single problem with that as long as I send the information to Typo (with sqlite) encoded in UTF-8 as well. Sergio From riedel at ibr-oss.de Wed Apr 6 09:46:39 2005 From: riedel at ibr-oss.de (Konrad Riedel) Date: Wed Apr 6 09:41:23 2005 Subject: [typo] Typo Install problems In-Reply-To: <48ab4e280504060258448d4a4@mail.gmail.com> References: <4253A8F9.1040505@ibr-oss.de> <48ab4e280504060258448d4a4@mail.gmail.com> Message-ID: <4253E83F.4010506@ibr-oss.de> Sergio Rael schrieb: So the default content-type of your Apache is used instead. My > AddDefaultCharset in Apache is set to UTF-8 and I don't have a single > problem with that as long as I send the information to Typo (with > sqlite) encoded in UTF-8 as well. I've set it to utf8 and everything is fine, except in IE6 but that's another topic (right block starts after main, dynamic commenting doesn't work - you have to reload the page). Mit freundlichen Gr??en Konrad Riedel From robby at planetargon.com Wed Apr 6 09:59:02 2005 From: robby at planetargon.com (Robby Russell) Date: Wed Apr 6 09:53:47 2005 Subject: [typo] mentioned on the Rails blog Message-ID: <1112795943.12171.139.camel@linus> Good work guys! http://rubyurl.com/fPX4r -Robby -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From tobias.luetke at gmail.com Wed Apr 6 10:11:19 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Wed Apr 6 10:05:58 2005 Subject: [typo] Typo Install problems In-Reply-To: <4253E83F.4010506@ibr-oss.de> References: <4253A8F9.1040505@ibr-oss.de> <48ab4e280504060258448d4a4@mail.gmail.com> <4253E83F.4010506@ibr-oss.de> Message-ID: <9963c1bd05040607112b0cdb5e@mail.gmail.com> Hmm i tested all the ajax stuff with IE when i had a chance. Not that its a priority as 1.9% of my visitors use it... ( i kid you not ) I guess we should add UTF-8 content type header to all pages of typo? On Apr 6, 2005 9:46 AM, Konrad Riedel wrote: > Sergio Rael schrieb: > So the default content-type of your Apache is used instead. My > > AddDefaultCharset in Apache is set to UTF-8 and I don't have a single > > problem with that as long as I send the information to Typo (with > > sqlite) encoded in UTF-8 as well. > I've set it to utf8 and everything is fine, except in IE6 but that's > another topic (right block starts after main, dynamic commenting doesn't > work - you have to reload the page). > > Mit freundlichen Gr??en > Konrad Riedel > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From tobias.luetke at gmail.com Wed Apr 6 10:13:55 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Wed Apr 6 10:08:34 2005 Subject: [typo] mentioned on the Rails blog In-Reply-To: <1112795943.12171.139.camel@linus> References: <1112795943.12171.139.camel@linus> Message-ID: <9963c1bd05040607134d4f4169@mail.gmail.com> Cool stuff! On Apr 6, 2005 9:59 AM, Robby Russell wrote: > Good work guys! > > http://rubyurl.com/fPX4r > > -Robby > > -- > /*************************************** > * Robby Russell | Owner.Developer.Geek > * PLANET ARGON | www.planetargon.com > * Portland, OR | robby@planetargon.com > * 503.351.4730 | blog.planetargon.com > * PHP, Ruby, and PostgreSQL Development > * http://www.robbyonrails.com/ > ****************************************/ > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From seth at remor.com Wed Apr 6 10:23:32 2005 From: seth at remor.com (Seth Hall) Date: Wed Apr 6 10:18:15 2005 Subject: [typo] Typo Install problems In-Reply-To: <9963c1bd05040607112b0cdb5e@mail.gmail.com> References: <4253A8F9.1040505@ibr-oss.de> <48ab4e280504060258448d4a4@mail.gmail.com> <4253E83F.4010506@ibr-oss.de> <9963c1bd05040607112b0cdb5e@mail.gmail.com> Message-ID: <2988b7531a98d3b67ea33b890b87f75f@remor.com> I suppose we probably should add utf8 as the content type. We should probably update the database definitions too then so that the databases will store utf8. .Seth On Apr 6, 2005, at 10:11 AM, Tobias Luetke wrote: > Hmm i tested all the ajax stuff with IE when i had a chance. > > Not that its a priority as 1.9% of my visitors use it... ( i kid you > not ) > > I guess we should add UTF-8 content type header to all pages of typo? > > On Apr 6, 2005 9:46 AM, Konrad Riedel wrote: >> Sergio Rael schrieb: >> So the default content-type of your Apache is used instead. My >>> AddDefaultCharset in Apache is set to UTF-8 and I don't have a single >>> problem with that as long as I send the information to Typo (with >>> sqlite) encoded in UTF-8 as well. >> I've set it to utf8 and everything is fine, except in IE6 but that's >> another topic (right block starts after main, dynamic commenting >> doesn't >> work - you have to reload the page). >> >> Mit freundlichen Gr??en >> Konrad Riedel -- Seth Hall Network Security Engineer Phone: 614-292-9721 Ohio State University Enterprise Network Security E-mail: security@osu.edu Web: http://www.net.ohio-state.edu/security/ From robby at planetargon.com Fri Apr 8 12:12:53 2005 From: robby at planetargon.com (Robby Russell) Date: Fri Apr 8 12:07:29 2005 Subject: [typo] current trunk issues Message-ID: <1112976773.6025.30.camel@linus> Trying to install from the current trunk and I get an issue with internal redirects: > Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace. > Any thoughts? -Robby -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From robby at planetargon.com Fri Apr 8 12:23:58 2005 From: robby at planetargon.com (Robby Russell) Date: Fri Apr 8 12:18:38 2005 Subject: [typo] current trunk issues In-Reply-To: <1112976773.6025.30.camel@linus> References: <1112976773.6025.30.camel@linus> Message-ID: <1112977438.6025.32.camel@linus> On Fri, 2005-04-08 at 09:12 -0700, Robby Russell wrote: > Trying to install from the current trunk and I get an issue with > internal redirects: > > > Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace. > > > > Any thoughts? > > -Robby > Nevermind, was a quirk apache config. Robby -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From seth at remor.com Sat Apr 9 11:58:22 2005 From: seth at remor.com (Seth Hall) Date: Sat Apr 9 11:52:57 2005 Subject: [typo] Problem resolved in typo yesterday Message-ID: <17196e6edd93f32d84783905fb01625c@remor.com> We received a ticket in the typo trac instance yesterday that pointed out a problem with the new settings in the database code. The page where those settings are created is available even after the settings are put in place, making your password available to the world. Anyone running the new 'settings in database' code should update their typo from subversion, or you can just delete the settings controller to solve the problem. .Seth From robby at planetargon.com Sat Apr 9 12:06:45 2005 From: robby at planetargon.com (Robby Russell) Date: Sat Apr 9 12:01:19 2005 Subject: [typo] Problem resolved in typo yesterday In-Reply-To: <17196e6edd93f32d84783905fb01625c@remor.com> References: <17196e6edd93f32d84783905fb01625c@remor.com> Message-ID: <1113062806.6025.148.camel@linus> On Sat, 2005-04-09 at 11:58 -0400, Seth Hall wrote: > We received a ticket in the typo trac instance yesterday that pointed > out a problem with the new settings in the database code. The page > where those settings are created is available even after the settings > are put in place, making your password available to the world. Anyone > running the new 'settings in database' code should update their typo > from subversion, or you can just delete the settings controller to > solve the problem. > > .Seth Yeah, I noticed that when someone pointed out that my settings were world viewable. Perhaps this should be posted on the mail blog for typo so that people know to update their pages asap. :-) (doubts everyone is on the list that uses it) -Robby -- /*************************************** * Robby Russell | Owner.Developer.Geek * PLANET ARGON | www.planetargon.com * Portland, OR | robby@planetargon.com * 503.351.4730 | blog.planetargon.com * PHP, Ruby, and PostgreSQL Development * http://www.robbyonrails.com/ ****************************************/ From tobias.luetke at gmail.com Sat Apr 9 12:50:04 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sat Apr 9 12:44:38 2005 Subject: [typo] Problem resolved in typo yesterday In-Reply-To: <1113062806.6025.148.camel@linus> References: <17196e6edd93f32d84783905fb01625c@remor.com> <1113062806.6025.148.camel@linus> Message-ID: <9963c1bd050409095039cb16dd@mail.gmail.com> Heh, i actually knew about this all along, Guess i should have said something. I'll get started now hacking the install process up so that we have real user accs On Apr 9, 2005 12:06 PM, Robby Russell wrote: > On Sat, 2005-04-09 at 11:58 -0400, Seth Hall wrote: > > We received a ticket in the typo trac instance yesterday that pointed > > out a problem with the new settings in the database code. The page > > where those settings are created is available even after the settings > > are put in place, making your password available to the world. Anyone > > running the new 'settings in database' code should update their typo > > from subversion, or you can just delete the settings controller to > > solve the problem. > > > > .Seth > > Yeah, I noticed that when someone pointed out that my settings were > world viewable. Perhaps this should be posted on the mail blog for typo > so that people know to update their pages asap. :-) > > (doubts everyone is on the list that uses it) > > -Robby > > -- > /*************************************** > * Robby Russell | Owner.Developer.Geek > * PLANET ARGON | www.planetargon.com > * Portland, OR | robby@planetargon.com > * 503.351.4730 | blog.planetargon.com > * PHP, Ruby, and PostgreSQL Development > * http://www.robbyonrails.com/ > ****************************************/ > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From stuart.smith at smsconsulting.wanadoo.co.uk Sun Apr 10 14:17:06 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Sun Apr 10 14:10:56 2005 Subject: [typo] How do Trackbacks/Pings work in Typo? Message-ID: <1113157026.4762.9.camel@xena> I'm at a bit of a disadvantage here - never used blogging, know nothing about Ruby and know very little about RoR. However, I'm determined to use Typo as my learning project so could someone explain to me how I use the Trackback and/or Ping feature in Typo. It would also be very useful for me to follow the Typo code thru a debugger - how do I do that? Thanks From tobias.luetke at gmail.com Sun Apr 10 17:49:29 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sun Apr 10 17:43:59 2005 Subject: [typo] How do Trackbacks/Pings work in Typo? In-Reply-To: <1113157026.4762.9.camel@xena> References: <1113157026.4762.9.camel@xena> Message-ID: <9963c1bd050410144945c89894@mail.gmail.com> Pingback is a feature of weblogs which allows you to "ping" pages which you mention in your articles so that they can create a link back to you. Trackback is the same in active, you give the trackback call a endpoint and it will inform the endpoint about your post. Typo supports these features. To send out a trackback you have to use the moveable type api and a client like marsedit which supports this feature. As far as i know there is no traditional step through debugger for ruby ( might be wrong, someone said eclipse supports it ) But if you have seen any rails applications before you should feel at home. On Apr 10, 2005 2:17 PM, Stuart Smith wrote: > I'm at a bit of a disadvantage here - never used blogging, know nothing > about Ruby and know very little about RoR. However, I'm determined to > use Typo as my learning project so could someone explain to me how I use > the Trackback and/or Ping feature in Typo. > > It would also be very useful for me to follow the Typo code thru a > debugger - how do I do that? > > Thanks > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From tibbetts at MIT.EDU Sun Apr 10 21:33:56 2005 From: tibbetts at MIT.EDU (Richard Tibbetts) Date: Sun Apr 10 21:28:35 2005 Subject: [typo] Using mtsend.py with Typo Message-ID: <20050411013356.GE22457@multics.mit.edu> I'm trying to use mtsend with typo 1.6.8. It seems to be "half-posting" articles. The articles don't show up on the front page, but they do show up when I try to get at them with mtsend -L, or when I go to URLs like articles/read/4 using the id. I see on the wiki that mtsend is known to work with Typo. I've never used mtsend before, so there is every possibility I'm using it wrong. Does anyone have advice on tricks for using it with Typo? Or is it likely that I've tripped over a bug Typo? Richard From tobias.luetke at gmail.com Sun Apr 10 21:43:46 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sun Apr 10 21:38:15 2005 Subject: [typo] Using mtsend.py with Typo In-Reply-To: <20050411013356.GE22457@multics.mit.edu> References: <20050411013356.GE22457@multics.mit.edu> Message-ID: <9963c1bd0504101843141436fa@mail.gmail.com> The articles are posted but not published. That is because a certian method wasn't implemented in this version of typo. The bug is fixed in the next release ( that and a million other things ). In the meantime you can just post using the metaweblog api On Apr 10, 2005 9:33 PM, Richard Tibbetts wrote: > I'm trying to use mtsend with typo 1.6.8. It seems to be > "half-posting" articles. The articles don't show up on the front page, > but they do show up when I try to get at them with mtsend -L, or when > I go to URLs like articles/read/4 using the id. > > I see on the wiki that mtsend is known to work with Typo. I've never > used mtsend before, so there is every possibility I'm using it wrong. > Does anyone have advice on tricks for using it with Typo? Or is it > likely that I've tripped over a bug Typo? > > Richard > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From helgeg at helgegudmundsen.com Mon Apr 11 04:39:37 2005 From: helgeg at helgegudmundsen.com (helgeg@helgegudmundsen.com) Date: Mon Apr 11 04:34:08 2005 Subject: [typo] Using mtsend.py with Typo Message-ID: <1113208777.57225@bidwell.textdrive.com> Tobias Luetke wrote .. > The bug is fixed in the next release ( that and a million other things > ). In the meantime you can just post using the metaweblog api Is the bug fixed in the trunk of the svn repository? Helge A. Gudmundsen From seth at remor.com Mon Apr 11 08:49:54 2005 From: seth at remor.com (Seth Hall) Date: Mon Apr 11 08:44:28 2005 Subject: [typo] Using mtsend.py with Typo In-Reply-To: <1113208777.57225@bidwell.textdrive.com> References: <1113208777.57225@bidwell.textdrive.com> Message-ID: <728f5156b9ea598232718922474e52c9@remor.com> On Apr 11, 2005, at 4:39 AM, helgeg@helgegudmundsen.com wrote: > Tobias Luetke wrote .. >> The bug is fixed in the next release ( that and a million other things >> ). In the meantime you can just post using the metaweblog api > > Is the bug fixed in the trunk of the svn repository? Yep. .Seth From anoop at ranganath.com Tue Apr 12 00:00:34 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Mon Apr 11 23:55:04 2005 Subject: [typo] using typo without a virtualhost Message-ID: I just tried an install of typo without using a virtualhost, as I really like having my home page be at http://ranganath.com/~anoop/ and wanted my blog at http://ranganath.com/~anoop/blog/ (Please ignore the old movable type install at the original location. i am so ashamed). Anyway, a few changes need to be made to the stylesheet and template or it spits out a few bad links. articles.rhtml: - + -

<%= config_value('blog_name') %>

+

<%= link_to config_value('blog_name'), { :controller => '/' } %>

base.css The four references to /images need to be to ../images .htaccess needs to be modified also, but this should NOT be commited into the repository, but maybe mentioned in a how-to somewhere. I'd appreciate it if the changes to articles.rhtml and base.css are committed, as I believe the changes make them more "correct". Thanks! Anoop From patrick at lenz.sh Tue Apr 12 03:30:36 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 12 03:25:10 2005 Subject: [typo] using typo without a virtualhost In-Reply-To: References: Message-ID: <0b48be504c38199a785ba65e1195f36b@lenz.sh> Anoop, > I'd appreciate it if the changes to articles.rhtml and base.css are > committed, as I believe the changes make them more "correct". Thanks for the patch. I committed the changes to the repository in changeset 168. -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From stuart.smith at smsconsulting.wanadoo.co.uk Tue Apr 12 15:10:26 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Tue Apr 12 15:04:07 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) Message-ID: <1113333026.4508.14.camel@xena> I have written some code to fix this ticket; how do I get the code reviewed? How do I get the code checked in once the changes have been agreed? This is my first attempt at using ruby and my first attempt at RoR so please forgive me if the code is a bit 'amateurish'. Any comments would be most welcome. Thanks I have included my changes below: app/controllers/articles_controller.rb require "parsedate" include ParseDate @@yr, @@mth, @@dy = nil def archive # date is passed in as Mth YYYY e.g. January 2005 # using @@yr @@mth @@dy as class variables so hold values over multiple calls so I don't have # to rewrite the index method to handle year and month of archive (it will always be set on 1st call) if @params["date"] @archivedate = '01 ' + @params["date"] @@yr, @@mth, @@dy = parsedate(@archivedate) # might be more efficient way to parse the date! end @pages = Paginator.new self, Article.count_by_date(@@yr, @@mth), 10, @params['page'] @articles = Article.find_all_by_date(@@yr, @@mth, nil, @pages.current.to_sql) render_action "index" end app/helpers/application_helper.rb def archivelist() archives = Archive.find_dates() render_partial("shared/archives", archives) end app/models/archive.rb class Archive < ActiveRecord::Base has_many :articles def self.find_dates() @archives=Article.find_by_sql(["SELECT distinct date_format (created_at, '%%M %%Y') date from articles ORDER by created_at "]) end end app/models/article.rb belongs_to :archive app/views/layouts/articles.rhtml <%= archivelist %>
app/views/shared/_archives.rhtml Archives
<% for archive in archives -%> <%= link_to archive.date, :controller=>"articles", :action=>"archive", :date=>archive.date %>
<% end -%> From ib at sdf-eu.org Tue Apr 12 16:03:27 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Tue Apr 12 15:58:09 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <1113333026.4508.14.camel@xena> References: <1113333026.4508.14.camel@xena> Message-ID: <425C298F.6050906@sdf-eu.org> There is a problem here. You used date_format, which is database dependent. AFAIK this thing is done using to_char in PostgreSQL and Oracle and cast in MSSQL. I also wanted to fix this issue, but I got stuck here. From what I saw RoR doesn't offer us a solution. Maybe somebody else has an idea what to do? Stuart Smith wrote: > I have written some code to fix this ticket; how do I get the code > reviewed? How do I get the code checked in once the changes have been > agreed? > > This is my first attempt at using ruby and my first attempt at RoR so > please forgive me if the code is a bit 'amateurish'. > > Any comments would be most welcome. > > Thanks > > I have included my changes below: > > app/controllers/articles_controller.rb > > require "parsedate" > include ParseDate > @@yr, @@mth, @@dy = nil > > def archive > # date is passed in as Mth YYYY e.g. January 2005 > # using @@yr @@mth @@dy as class variables so hold values over > multiple calls so I don't have > # to rewrite the index method to handle year and month of archive > (it will always be set on 1st call) > if @params["date"] > @archivedate = '01 ' + @params["date"] > @@yr, @@mth, @@dy = parsedate(@archivedate) # might be more > efficient way to parse the date! > end > @pages = Paginator.new self, Article.count_by_date(@@yr, @@mth), 10, > @params['page'] > @articles = Article.find_all_by_date(@@yr, @@mth, nil, > @pages.current.to_sql) > render_action "index" > end > > > > app/helpers/application_helper.rb > > def archivelist() > archives = Archive.find_dates() > render_partial("shared/archives", archives) > end > > > app/models/archive.rb > > class Archive < ActiveRecord::Base > > has_many :articles > > def self.find_dates() > @archives=Article.find_by_sql(["SELECT distinct date_format > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > end > > end > > > app/models/article.rb > > belongs_to :archive > > > app/views/layouts/articles.rhtml > > <%= archivelist %> >
> > > app/views/shared/_archives.rhtml > > Archives
> <% for archive in archives -%> > <%= link_to > archive.date, :controller=>"articles", :action=>"archive", :date=>archive.date %>
> <% end -%> > > > > > > > > > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > From stuart.smith at smsconsulting.wanadoo.co.uk Tue Apr 12 16:21:59 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Tue Apr 12 16:15:43 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <425C298F.6050906@sdf-eu.org> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> Message-ID: <1113337319.4508.23.camel@xena> I misunderstood the database dependency issues; I just assumed that since an ISP/host would run typo against a specific persistent storage mechanism then a specific version of archive.rb would be installed on the target system. I just saw this as an extension of the multiple SQL files to create the initial schema for a specific vendor db. It would be interesting to see what others make of the problem regarding vendor specific SQL statements. There are companies that make a living from 'middleware' to allow the coder to write non-specific SQL (e.g. RogueWave had something called dbtools.h that I used a long time ago but that was a real 'pain in the ass' to use). Thanks Stuart > > app/models/archive.rb > > > > class Archive < ActiveRecord::Base > > > > has_many :articles > > > > def self.find_dates() > > @archives=Article.find_by_sql(["SELECT distinct date_format > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > end > > > > end > > From tobias.luetke at gmail.com Tue Apr 12 17:04:23 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 12 16:58:52 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <1113337319.4508.23.camel@xena> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> Message-ID: <9963c1bd05041214041187b9ec@mail.gmail.com> Typo supports this already. http://blog.leetsoft.com/articles/2005/ http://blog.leetsoft.com/articles/2005/03/ http://blog.leetsoft.com/articles/2005/03/28/ On Apr 12, 2005 4:21 PM, Stuart Smith wrote: > I misunderstood the database dependency issues; I just assumed that > since an ISP/host would run typo against a specific persistent storage > mechanism then a specific version of archive.rb would be installed on > the target system. I just saw this as an extension of the multiple SQL > files to create the initial schema for a specific vendor db. > > It would be interesting to see what others make of the problem regarding > vendor specific SQL statements. There are companies that make a living > from 'middleware' to allow the coder to write non-specific SQL (e.g. > RogueWave had something called dbtools.h that I used a long time ago but > that was a real 'pain in the ass' to use). > > Thanks > > Stuart > > > > > app/models/archive.rb > > > > > > class Archive < ActiveRecord::Base > > > > > > has_many :articles > > > > > > def self.find_dates() > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > end > > > > > > end > > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From stuart.smith at smsconsulting.wanadoo.co.uk Tue Apr 12 17:30:25 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Tue Apr 12 17:24:06 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <9963c1bd05041214041187b9ec@mail.gmail.com> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> Message-ID: <1113341425.4508.27.camel@xena> Isn't the issue being discussed here the method by which a list of links reflecting the month/year of the article is generated? I see now that typo supports the year/month/day (optional) argument list but how do we get from article creation dates to a list of months&years using non- specific date formatting that works for all DB's. Stuart On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > Typo supports this already. > > http://blog.leetsoft.com/articles/2005/ > http://blog.leetsoft.com/articles/2005/03/ > http://blog.leetsoft.com/articles/2005/03/28/ > > On Apr 12, 2005 4:21 PM, Stuart Smith > wrote: > > I misunderstood the database dependency issues; I just assumed that > > since an ISP/host would run typo against a specific persistent storage > > mechanism then a specific version of archive.rb would be installed on > > the target system. I just saw this as an extension of the multiple SQL > > files to create the initial schema for a specific vendor db. > > > > It would be interesting to see what others make of the problem regarding > > vendor specific SQL statements. There are companies that make a living > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > RogueWave had something called dbtools.h that I used a long time ago but > > that was a real 'pain in the ass' to use). > > > > Thanks > > > > Stuart > > > > > > > > app/models/archive.rb > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > has_many :articles > > > > > > > > def self.find_dates() > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > end > > > > > > > > end > > > > > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > From ib at sdf-eu.org Tue Apr 12 17:41:22 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Tue Apr 12 17:36:02 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <1113341425.4508.27.camel@xena> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> <1113341425.4508.27.camel@xena> Message-ID: <425C4081.1000203@sdf-eu.org> I have also understood it like this; anyway such a feature is very important (maybe the ability to choose between a calendar and links for each month). It would be very nice to have the db-independence in RoR directly, but because the queries are SQL-based it is more difficult to acheive this. Something like HQL would be nice. I think I will take a better look at RoR and write about this issue on a specific mailing list. Anyway - Typo guys are RoR guys so I hope I'm not very off topic. Stuart Smith wrote: > Isn't the issue being discussed here the method by which a list of links > reflecting the month/year of the article is generated? I see now that > typo supports the year/month/day (optional) argument list but how do we > get from article creation dates to a list of months&years using non- > specific date formatting that works for all DB's. > > Stuart > > On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > >>Typo supports this already. >> >>http://blog.leetsoft.com/articles/2005/ >>http://blog.leetsoft.com/articles/2005/03/ >>http://blog.leetsoft.com/articles/2005/03/28/ >> >>On Apr 12, 2005 4:21 PM, Stuart Smith >> wrote: >> >>>I misunderstood the database dependency issues; I just assumed that >>>since an ISP/host would run typo against a specific persistent storage >>>mechanism then a specific version of archive.rb would be installed on >>>the target system. I just saw this as an extension of the multiple SQL >>>files to create the initial schema for a specific vendor db. >>> >>>It would be interesting to see what others make of the problem regarding >>>vendor specific SQL statements. There are companies that make a living >>>from 'middleware' to allow the coder to write non-specific SQL (e.g. >>>RogueWave had something called dbtools.h that I used a long time ago but >>>that was a real 'pain in the ass' to use). >>> >>>Thanks >>> >>>Stuart >>> >>> >>> >>>>>app/models/archive.rb >>>>> >>>>>class Archive < ActiveRecord::Base >>>>> >>>>> has_many :articles >>>>> >>>>> def self.find_dates() >>>>> @archives=Article.find_by_sql(["SELECT distinct date_format >>>>>(created_at, '%%M %%Y') date from articles ORDER by created_at "]) >>>>> end >>>>> >>>>>end >>>>> >>> >>>_______________________________________________ >>>Typo-list mailing list >>>Typo-list@rubyforge.org >>>http://rubyforge.org/mailman/listinfo/typo-list >>> >> >> > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > From stuart.smith at smsconsulting.wanadoo.co.uk Wed Apr 13 15:10:18 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Wed Apr 13 15:03:57 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <9963c1bd05041214041187b9ec@mail.gmail.com> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> Message-ID: <1113419418.4641.6.camel@xena> Hi Tobias, I took on board your comment and have reduced the solution to this: ########################################################################### app/views/shared/_archives.rhtml [new file] Archives
<% for archive in archives -%> <%= link_to archive.dispdate, "/articles/"+archive.date %>
<% end -%> app/views/layouts/articles.rhtml [add code nr categorylist] <%= archivelist %>
app/models/article.rb [ new function ] def self.find_dates() @archives=Article.find_by_sql(["SELECT distinct date_format (created_at, '%%M %%Y') dispdate, date_format(created_at, '%%Y/%%m') date from articles ORDER by created_at "]) end app/helpers/application_helper.rb [ new function ] def archivelist() archives = Article.find_dates() render_partial("shared/archives", archives) end ############################################################################ This is now a lot simpler than before but still contains some MySql specific date formatting. I would appreciate any comments from anyone. regards Stuart Smith On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > Typo supports this already. > > http://blog.leetsoft.com/articles/2005/ > http://blog.leetsoft.com/articles/2005/03/ > http://blog.leetsoft.com/articles/2005/03/28/ > > On Apr 12, 2005 4:21 PM, Stuart Smith > wrote: > > I misunderstood the database dependency issues; I just assumed that > > since an ISP/host would run typo against a specific persistent storage > > mechanism then a specific version of archive.rb would be installed on > > the target system. I just saw this as an extension of the multiple SQL > > files to create the initial schema for a specific vendor db. > > > > It would be interesting to see what others make of the problem regarding > > vendor specific SQL statements. There are companies that make a living > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > RogueWave had something called dbtools.h that I used a long time ago but > > that was a real 'pain in the ass' to use). > > > > Thanks > > > > Stuart > > > > > > > > app/models/archive.rb > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > has_many :articles > > > > > > > > def self.find_dates() > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > end > > > > > > > > end > > > > > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > From vhodges at shaw.ca Wed Apr 13 17:23:51 2005 From: vhodges at shaw.ca (Vince Hodges) Date: Wed Apr 13 17:12:30 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <1113419418.4641.6.camel@xena> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> <1113419418.4641.6.camel@xena> Message-ID: <20050413212351.GA2069@localhost.localdomain> Regarding the db specific sql...How about something like this (not tested, just off the top of my head!): app/views/shared/_archives.rhtml [new file] Archives
<% for archive in archives -%> <%= link_to archive.created_at.strftime("%B %Y"), "/articles/"+archive.created_at.strftime("%Y/%m") %>
<% end -%> app/models/article.rb [ new function ] def self.find_dates() @archives=Article.find_by_sql(["SELECT distinct created_at from articles ORDER by created_at"]) end The calls to strftime could (and probably should) go into a helper. Formatting data for display should go into the view, not the persistance layer IMO. I was thinking that it would be cool if it worked something like this: - Show a set of controls for navigating years (increment, decrement and the year itself). - And as the year changes, make an ajax call to get the months for the selected year that contain posts and update the display accordingly. (maybe faded text for months that have no posts) Vince On 20:10, Wed 13 Apr 05, Stuart Smith wrote: > Hi Tobias, I took on board your comment and have reduced the solution to > this: > ########################################################################### > > app/views/shared/_archives.rhtml [new file] > > > Archives
> <% for archive in archives -%> > <%= link_to archive.dispdate, "/articles/"+archive.date %>
> <% end -%> > > > app/views/layouts/articles.rhtml [add code nr categorylist] > > <%= archivelist %> >
> > > > app/models/article.rb [ new function ] > > def self.find_dates() > @archives=Article.find_by_sql(["SELECT distinct date_format > (created_at, '%%M %%Y') dispdate, date_format(created_at, '%%Y/%%m') > date from articles ORDER by created_at "]) > end > > > app/helpers/application_helper.rb [ new function ] > > def archivelist() > archives = Article.find_dates() > render_partial("shared/archives", archives) > end > > ############################################################################ > > This is now a lot simpler than before but still contains some MySql > specific date formatting. > > I would appreciate any comments from anyone. > > regards > > Stuart Smith > > > > On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > > Typo supports this already. > > > > http://blog.leetsoft.com/articles/2005/ > > http://blog.leetsoft.com/articles/2005/03/ > > http://blog.leetsoft.com/articles/2005/03/28/ > > > > On Apr 12, 2005 4:21 PM, Stuart Smith > > wrote: > > > I misunderstood the database dependency issues; I just assumed that > > > since an ISP/host would run typo against a specific persistent storage > > > mechanism then a specific version of archive.rb would be installed on > > > the target system. I just saw this as an extension of the multiple SQL > > > files to create the initial schema for a specific vendor db. > > > > > > It would be interesting to see what others make of the problem regarding > > > vendor specific SQL statements. There are companies that make a living > > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > > RogueWave had something called dbtools.h that I used a long time ago but > > > that was a real 'pain in the ass' to use). > > > > > > Thanks > > > > > > Stuart > > > > > > > > > > > app/models/archive.rb > > > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > > > has_many :articles > > > > > > > > > > def self.find_dates() > > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > > end > > > > > > > > > > end > > > > > > > > > > > _______________________________________________ > > > Typo-list mailing list > > > Typo-list@rubyforge.org > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From tobias.luetke at gmail.com Wed Apr 13 17:39:09 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Wed Apr 13 17:33:41 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <20050413212351.GA2069@localhost.localdomain> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> <1113419418.4641.6.camel@xena> <20050413212351.GA2069@localhost.localdomain> Message-ID: <9963c1bd05041314394a61857d@mail.gmail.com> Personally i must confess that I'm surprised that anyone would want this feature. I always thought it was pretty useless on other blogs. That being said thats a good way to do it Vince On 4/13/05, Vince Hodges wrote: > Regarding the db specific sql...How about something like this (not > tested, just off the top of my head!): > > app/views/shared/_archives.rhtml [new file] > Archives
> <% for archive in archives -%> > <%= link_to archive.created_at.strftime("%B %Y"), > "/articles/"+archive.created_at.strftime("%Y/%m") %>
> <% end -%> > > app/models/article.rb [ new function ] > def self.find_dates() > @archives=Article.find_by_sql(["SELECT distinct created_at from > articles ORDER by created_at"]) > end > > The calls to strftime could (and probably should) go into a helper. > Formatting data for display should go into the view, not the > persistance layer IMO. > > I was thinking that it would be cool if it worked something like this: > > - Show a set of controls for navigating years (increment, > decrement and the year itself). > - And as the year changes, make an ajax call to get the months for the > selected year that contain posts and update the display > accordingly. (maybe faded text for months that have no posts) > > > Vince > > > On 20:10, Wed 13 Apr 05, Stuart Smith wrote: > > Hi Tobias, I took on board your comment and have reduced the solution to > > this: > > ########################################################################### > > > > app/views/shared/_archives.rhtml [new file] > > > > > > Archives
> > <% for archive in archives -%> > > <%= link_to archive.dispdate, "/articles/"+archive.date %>
> > <% end -%> > > > > > > app/views/layouts/articles.rhtml [add code nr categorylist] > > > > <%= archivelist %> > >
> > > > > > > > app/models/article.rb [ new function ] > > > > def self.find_dates() > > @archives=Article.find_by_sql(["SELECT distinct date_format > > (created_at, '%%M %%Y') dispdate, date_format(created_at, '%%Y/%%m') > > date from articles ORDER by created_at "]) > > end > > > > > > app/helpers/application_helper.rb [ new function ] > > > > def archivelist() > > archives = Article.find_dates() > > render_partial("shared/archives", archives) > > end > > > > ############################################################################ > > > > This is now a lot simpler than before but still contains some MySql > > specific date formatting. > > > > I would appreciate any comments from anyone. > > > > regards > > > > Stuart Smith > > > > > > > > On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > > > Typo supports this already. > > > > > > http://blog.leetsoft.com/articles/2005/ > > > http://blog.leetsoft.com/articles/2005/03/ > > > http://blog.leetsoft.com/articles/2005/03/28/ > > > > > > On Apr 12, 2005 4:21 PM, Stuart Smith > > > wrote: > > > > I misunderstood the database dependency issues; I just assumed that > > > > since an ISP/host would run typo against a specific persistent storage > > > > mechanism then a specific version of archive.rb would be installed on > > > > the target system. I just saw this as an extension of the multiple SQL > > > > files to create the initial schema for a specific vendor db. > > > > > > > > It would be interesting to see what others make of the problem regarding > > > > vendor specific SQL statements. There are companies that make a living > > > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > > > RogueWave had something called dbtools.h that I used a long time ago but > > > > that was a real 'pain in the ass' to use). > > > > > > > > Thanks > > > > > > > > Stuart > > > > > > > > > > > > > > app/models/archive.rb > > > > > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > > > > > has_many :articles > > > > > > > > > > > > def self.find_dates() > > > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > > > end > > > > > > > > > > > > end > > > > > > > > > > > > > > _______________________________________________ > > > > Typo-list mailing list > > > > Typo-list@rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > > > > > > > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From stuart.smith at smsconsulting.wanadoo.co.uk Wed Apr 13 17:51:36 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Wed Apr 13 17:45:13 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <9963c1bd05041314394a61857d@mail.gmail.com> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> <1113419418.4641.6.camel@xena> <20050413212351.GA2069@localhost.localdomain> <9963c1bd05041314394a61857d@mail.gmail.com> Message-ID: <1113429096.4641.16.camel@xena> Selecting created_at returns both the date and the time of the article; without some formatting at the SQL select level the grouping/parsing of the returned data set has to be done somewhere else. I take it that this discussion infers that ALL SQL statements must be able to be executed by ALL supported DB backends? There must be some way to provide DB specific queries as some sort of configuration parameters? [As I stated earlier, the SQL used to construct the DB depends very much on the DB backend and everyone seems quite happy to run specific scripts to support this]. Is it possible to handle date formatting at the DB Adaptor level? Stuart On Wed, 2005-04-13 at 17:39 -0400, Tobias Luetke wrote: > Personally i must confess that I'm surprised that anyone would want > this feature. > > I always thought it was pretty useless on other blogs. > > That being said thats a good way to do it Vince > > On 4/13/05, Vince Hodges wrote: > > Regarding the db specific sql...How about something like this (not > > tested, just off the top of my head!): > > > > app/views/shared/_archives.rhtml [new file] > > Archives
> > <% for archive in archives -%> > > <%= link_to archive.created_at.strftime("%B %Y"), > > "/articles/"+archive.created_at.strftime("%Y/%m") %>
> > <% end -%> > > > > app/models/article.rb [ new function ] > > def self.find_dates() > > @archives=Article.find_by_sql(["SELECT distinct created_at from > > articles ORDER by created_at"]) > > end > > > > The calls to strftime could (and probably should) go into a helper. > > Formatting data for display should go into the view, not the > > persistance layer IMO. > > > > I was thinking that it would be cool if it worked something like this: > > > > - Show a set of controls for navigating years (increment, > > decrement and the year itself). > > - And as the year changes, make an ajax call to get the months for the > > selected year that contain posts and update the display > > accordingly. (maybe faded text for months that have no posts) > > > > > > Vince > > > > > > On 20:10, Wed 13 Apr 05, Stuart Smith wrote: > > > Hi Tobias, I took on board your comment and have reduced the solution to > > > this: > > > ########################################################################### > > > > > > app/views/shared/_archives.rhtml [new file] > > > > > > > > > Archives
> > > <% for archive in archives -%> > > > <%= link_to archive.dispdate, "/articles/"+archive.date %>
> > > <% end -%> > > > > > > > > > app/views/layouts/articles.rhtml [add code nr categorylist] > > > > > > <%= archivelist %> > > >
> > > > > > > > > > > > app/models/article.rb [ new function ] > > > > > > def self.find_dates() > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > (created_at, '%%M %%Y') dispdate, date_format(created_at, '%%Y/%%m') > > > date from articles ORDER by created_at "]) > > > end > > > > > > > > > app/helpers/application_helper.rb [ new function ] > > > > > > def archivelist() > > > archives = Article.find_dates() > > > render_partial("shared/archives", archives) > > > end > > > > > > ############################################################################ > > > > > > This is now a lot simpler than before but still contains some MySql > > > specific date formatting. > > > > > > I would appreciate any comments from anyone. > > > > > > regards > > > > > > Stuart Smith > > > > > > > > > > > > On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > > > > Typo supports this already. > > > > > > > > http://blog.leetsoft.com/articles/2005/ > > > > http://blog.leetsoft.com/articles/2005/03/ > > > > http://blog.leetsoft.com/articles/2005/03/28/ > > > > > > > > On Apr 12, 2005 4:21 PM, Stuart Smith > > > > wrote: > > > > > I misunderstood the database dependency issues; I just assumed that > > > > > since an ISP/host would run typo against a specific persistent storage > > > > > mechanism then a specific version of archive.rb would be installed on > > > > > the target system. I just saw this as an extension of the multiple SQL > > > > > files to create the initial schema for a specific vendor db. > > > > > > > > > > It would be interesting to see what others make of the problem regarding > > > > > vendor specific SQL statements. There are companies that make a living > > > > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > > > > RogueWave had something called dbtools.h that I used a long time ago but > > > > > that was a real 'pain in the ass' to use). > > > > > > > > > > Thanks > > > > > > > > > > Stuart > > > > > > > > > > > > > > > > > app/models/archive.rb > > > > > > > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > > > > > > > has_many :articles > > > > > > > > > > > > > > def self.find_dates() > > > > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > > > > end > > > > > > > > > > > > > > end > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > Typo-list mailing list > > > > > Typo-list@rubyforge.org > > > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > Typo-list mailing list > > > Typo-list@rubyforge.org > > > http://rubyforge.org/mailman/listinfo/typo-list > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > From stuart.smith at smsconsulting.wanadoo.co.uk Thu Apr 14 16:42:01 2005 From: stuart.smith at smsconsulting.wanadoo.co.uk (Stuart Smith) Date: Thu Apr 14 16:35:36 2005 Subject: [typo] ticket #13 - add Archive articles by month (I hope this is what it means!) In-Reply-To: <1113429096.4641.16.camel@xena> References: <1113333026.4508.14.camel@xena> <425C298F.6050906@sdf-eu.org> <1113337319.4508.23.camel@xena> <9963c1bd05041214041187b9ec@mail.gmail.com> <1113419418.4641.6.camel@xena> <20050413212351.GA2069@localhost.localdomain> <9963c1bd05041314394a61857d@mail.gmail.com> <1113429096.4641.16.camel@xena> Message-ID: <1113511321.11219.8.camel@xena> My final take on this; if someone wants to do the fancy UI then feel free. This seems to work and is not dependent on the DB. ####################################################################### app/views/shared/_archives.rhtml [new file] Archives
<% a=Date.new(1970,01,01) %> <% for archive in archives -%> <% if !( a.year==archive.created_at.year && a.month==archive.created_at.month ) %> <%= link_to archive.created_at.strftime("%B %Y"), "/articles/"+archive.created_at.strftime("%Y/%m") %>
<% a=archive.created_at %> <% end %> <% end -%> app/models/article.rb [ new function ] def self.find_dates() @archives=Article.find_by_sql(["SELECT distinct created_at from articles ORDER by created_at "]) end ######################################################################## There are possible performance problems since I don't understand how the caching works and thus I don't know how often the SELECT will actually call the DB. Stuart > On Wed, 2005-04-13 at 22:51 +0100, Stuart Smith wrote: > Selecting created_at returns both the date and the time of the article; > without some formatting at the SQL select level the grouping/parsing of > the returned data set has to be done somewhere else. > > I take it that this discussion infers that ALL SQL statements must be > able to be executed by ALL supported DB backends? There must be some way > to provide DB specific queries as some sort of configuration parameters? > [As I stated earlier, the SQL used to construct the DB depends very much > on the DB backend and everyone seems quite happy to run specific scripts > to support this]. > > Is it possible to handle date formatting at the DB Adaptor level? > > Stuart > > > > On Wed, 2005-04-13 at 17:39 -0400, Tobias Luetke wrote: > > Personally i must confess that I'm surprised that anyone would want > > this feature. > > > > I always thought it was pretty useless on other blogs. > > > > That being said thats a good way to do it Vince > > > > On 4/13/05, Vince Hodges wrote: > > > Regarding the db specific sql...How about something like this (not > > > tested, just off the top of my head!): > > > > > > app/views/shared/_archives.rhtml [new file] > > > Archives
> > > <% for archive in archives -%> > > > <%= link_to archive.created_at.strftime("%B %Y"), > > > "/articles/"+archive.created_at.strftime("%Y/%m") %>
> > > <% end -%> > > > > > > app/models/article.rb [ new function ] > > > def self.find_dates() > > > @archives=Article.find_by_sql(["SELECT distinct created_at from > > > articles ORDER by created_at"]) > > > end > > > > > > The calls to strftime could (and probably should) go into a helper. > > > Formatting data for display should go into the view, not the > > > persistance layer IMO. > > > > > > I was thinking that it would be cool if it worked something like this: > > > > > > - Show a set of controls for navigating years (increment, > > > decrement and the year itself). > > > - And as the year changes, make an ajax call to get the months for the > > > selected year that contain posts and update the display > > > accordingly. (maybe faded text for months that have no posts) > > > > > > > > > Vince > > > > > > > > > On 20:10, Wed 13 Apr 05, Stuart Smith wrote: > > > > Hi Tobias, I took on board your comment and have reduced the solution to > > > > this: > > > > ########################################################################### > > > > > > > > app/views/shared/_archives.rhtml [new file] > > > > > > > > > > > > Archives
> > > > <% for archive in archives -%> > > > > <%= link_to archive.dispdate, "/articles/"+archive.date %>
> > > > <% end -%> > > > > > > > > > > > > app/views/layouts/articles.rhtml [add code nr categorylist] > > > > > > > > <%= archivelist %> > > > >
> > > > > > > > > > > > > > > > app/models/article.rb [ new function ] > > > > > > > > def self.find_dates() > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > (created_at, '%%M %%Y') dispdate, date_format(created_at, '%%Y/%%m') > > > > date from articles ORDER by created_at "]) > > > > end > > > > > > > > > > > > app/helpers/application_helper.rb [ new function ] > > > > > > > > def archivelist() > > > > archives = Article.find_dates() > > > > render_partial("shared/archives", archives) > > > > end > > > > > > > > ############################################################################ > > > > > > > > This is now a lot simpler than before but still contains some MySql > > > > specific date formatting. > > > > > > > > I would appreciate any comments from anyone. > > > > > > > > regards > > > > > > > > Stuart Smith > > > > > > > > > > > > > > > > On Tue, 2005-04-12 at 17:04 -0400, Tobias Luetke wrote: > > > > > Typo supports this already. > > > > > > > > > > http://blog.leetsoft.com/articles/2005/ > > > > > http://blog.leetsoft.com/articles/2005/03/ > > > > > http://blog.leetsoft.com/articles/2005/03/28/ > > > > > > > > > > On Apr 12, 2005 4:21 PM, Stuart Smith > > > > > wrote: > > > > > > I misunderstood the database dependency issues; I just assumed that > > > > > > since an ISP/host would run typo against a specific persistent storage > > > > > > mechanism then a specific version of archive.rb would be installed on > > > > > > the target system. I just saw this as an extension of the multiple SQL > > > > > > files to create the initial schema for a specific vendor db. > > > > > > > > > > > > It would be interesting to see what others make of the problem regarding > > > > > > vendor specific SQL statements. There are companies that make a living > > > > > > from 'middleware' to allow the coder to write non-specific SQL (e.g. > > > > > > RogueWave had something called dbtools.h that I used a long time ago but > > > > > > that was a real 'pain in the ass' to use). > > > > > > > > > > > > Thanks > > > > > > > > > > > > Stuart > > > > > > > > > > > > > > > > > > > > app/models/archive.rb > > > > > > > > > > > > > > > > class Archive < ActiveRecord::Base > > > > > > > > > > > > > > > > has_many :articles > > > > > > > > > > > > > > > > def self.find_dates() > > > > > > > > @archives=Article.find_by_sql(["SELECT distinct date_format > > > > > > > > (created_at, '%%M %%Y') date from articles ORDER by created_at "]) > > > > > > > > end > > > > > > > > > > > > > > > > end > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > > > Typo-list mailing list > > > > > > Typo-list@rubyforge.org > > > > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > > > > > > > > > > > > > > > > > > > > _______________________________________________ > > > > Typo-list mailing list > > > > Typo-list@rubyforge.org > > > > http://rubyforge.org/mailman/listinfo/typo-list > > > _______________________________________________ > > > Typo-list mailing list > > > Typo-list@rubyforge.org > > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From anoop at ranganath.com Mon Apr 18 22:22:08 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Mon Apr 18 22:16:29 2005 Subject: [typo] annoying tilde problem Message-ID: <53aeb5fa89ed5faa88b6753d9060a36d@ranganath.com> When I use MarsEdit to make a post, any href with a ~ in the URL gets urlencoded by typo. For now I've been going in and modifying the html column in the database, but any idea where this needs to be fixed? Anoop From anotherjesse at gmail.com Mon Apr 18 23:30:29 2005 From: anotherjesse at gmail.com (Jesse Andrews) Date: Mon Apr 18 23:24:47 2005 Subject: [typo] A Plan for (comment) Spam Message-ID: <8677a6f80504182030719ba7df@mail.gmail.com> Hello, I've been working on using Bayes Classification using Lucas Carlson's Classifier library for comment You can read more about it at http://overstimulate.com/articles/2005/04/18/a-plan-for-comment-spam From patrick at lenz.sh Tue Apr 19 01:19:32 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 19 01:13:49 2005 Subject: [typo] annoying tilde problem In-Reply-To: <53aeb5fa89ed5faa88b6753d9060a36d@ranganath.com> References: <53aeb5fa89ed5faa88b6753d9060a36d@ranganath.com> Message-ID: <96A44906-68FD-43D0-8001-97C18671794B@lenz.sh> On Apr 19, 2005, at 4:22 AM, Anoop Ranganath wrote: > When I use MarsEdit to make a post, any href with a ~ in the URL > gets urlencoded by typo. For now I've been going in and modifying > the html column in the database, but any idea where this needs to > be fixed? I just made a few test posts locally and didn't encounter this issue. Which version of MarsEdit and which version of Typo are you using? Did you select any sort of textfilter in the MarsEdit blog setup? -- Patrick Lenz (scoop) patrick@lenz.sh [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From patrick at lenz.sh Tue Apr 19 01:24:22 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 19 01:18:39 2005 Subject: [typo] A Plan for (comment) Spam In-Reply-To: <8677a6f80504182030719ba7df@mail.gmail.com> References: <8677a6f80504182030719ba7df@mail.gmail.com> Message-ID: <606B4B99-4935-454D-A03C-C7D40F3390CF@lenz.sh> Jesse, > Hello, I've been working on using Bayes Classification using Lucas > Carlson's Classifier library for comment Excellent. I was planning on hooking a bayes filter into the new SpamProtection validations that are now committed to trunk. I also don't consider this overkill but a must have nowadays. I'd suggest postponing this until after the 2.0 release which will be Some Time Soon and rolling it out in a minor update later on. I'd also be happy to give it some testing treatment on my blog. Let me know. -- Patrick Lenz (scoop) patrick@lenz.sh [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From anoop at ranganath.com Tue Apr 19 01:40:11 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Tue Apr 19 01:34:43 2005 Subject: [typo] annoying tilde problem In-Reply-To: <96A44906-68FD-43D0-8001-97C18671794B@lenz.sh> References: <53aeb5fa89ed5faa88b6753d9060a36d@ranganath.com> <96A44906-68FD-43D0-8001-97C18671794B@lenz.sh> Message-ID: <2b5993c40da3aa32a7ed0df7d0987ff3@ranganath.com> I don't have a textfilter that I am aware of. I'm running Typo out of CVS and I've chosen metaweblog as my API in MarsEdit. Anoop On Apr 19, 2005, at 1:19 AM, Patrick Lenz wrote: > On Apr 19, 2005, at 4:22 AM, Anoop Ranganath wrote: > >> When I use MarsEdit to make a post, any href with a ~ in the URL gets >> urlencoded by typo. For now I've been going in and modifying the >> html column in the database, but any idea where this needs to be >> fixed? > > I just made a few test posts locally and didn't encounter this issue. > Which version of MarsEdit and which version of Typo are you using? Did > you select any sort of textfilter in the MarsEdit blog setup? > > -- > Patrick Lenz (scoop) > patrick@lenz.sh > > [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - > wiesbadeneins.de ] > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From anoop at ranganath.com Tue Apr 19 01:59:33 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Tue Apr 19 01:53:52 2005 Subject: [typo] annoying tilde problem In-Reply-To: <2b5993c40da3aa32a7ed0df7d0987ff3@ranganath.com> References: <53aeb5fa89ed5faa88b6753d9060a36d@ranganath.com> <96A44906-68FD-43D0-8001-97C18671794B@lenz.sh> <2b5993c40da3aa32a7ed0df7d0987ff3@ranganath.com> Message-ID: <92474d4846c62d89353b0dc8b2700985@ranganath.com> And I did a CVS update and all seems to be working now. Sorry for cluttering the list. On Apr 19, 2005, at 1:40 AM, Anoop Ranganath wrote: > I don't have a textfilter that I am aware of. I'm running Typo out of > CVS and I've chosen metaweblog as my API in MarsEdit. > > Anoop > > On Apr 19, 2005, at 1:19 AM, Patrick Lenz wrote: > >> On Apr 19, 2005, at 4:22 AM, Anoop Ranganath wrote: >> >>> When I use MarsEdit to make a post, any href with a ~ in the URL >>> gets urlencoded by typo. For now I've been going in and modifying >>> the html column in the database, but any idea where this needs to be >>> fixed? >> >> I just made a few test posts locally and didn't encounter this issue. >> Which version of MarsEdit and which version of Typo are you using? >> Did you select any sort of textfilter in the MarsEdit blog setup? >> >> -- >> Patrick Lenz (scoop) >> patrick@lenz.sh >> >> [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - >> wiesbadeneins.de ] >> >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From esheldon at hungsquirrel.org Tue Apr 19 03:44:47 2005 From: esheldon at hungsquirrel.org (Edwin Sheldon) Date: Tue Apr 19 03:39:02 2005 Subject: [typo] Errors running script/server Message-ID: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> Hello, I am trying to install typo on Ubuntu Linux using ruby 1.8.2 and mysql 4.0.23. I installed gems and used it to install rails (and its dependencies) and redcloth, following the instructions, and edited the appropriate config files. However, when I ran script/server, I ran into errors. The errors continued after I also tried using the beta version of rails. Am I missing an important step? Thanks for your time, Edwin -------------------------- $ ruby script/server /usr/lib/ruby/gems/1.8/gems/actionpack-1.8.0/lib/action_controller.rb:52: undefined method `template_class=' for ActionController::Base:Class (NoMethodError) from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in `require__' from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in `require' from /usr/lib/ruby/gems/1.8/gems/activesupport-1.0.4/lib/active_support/dependencies.rb:197:in `require' from /usr/local/lib/site_ruby/1.8/rubygems.rb:175:in `activate' from /usr/local/lib/site_ruby/1.8/rubygems.rb:37:in `require_gem_with_options' from /usr/local/lib/site_ruby/1.8/rubygems.rb:31:in `require_gem' from ./script/../config/environment.rb:33 from script/server:45:in `require' from script/server:45 From tobias.luetke at gmail.com Tue Apr 19 10:14:04 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 19 10:08:20 2005 Subject: [typo] Errors running script/server In-Reply-To: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> References: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> Message-ID: <9963c1bd050419071460da3f3c@mail.gmail.com> Getting ruby to run under debian based linux flavors is always hard. It seems like in your case ERB is missing, see if apt-cache search erb turns something up though. The easiest thing is to compile your own ruby and not rely on the packages. On 4/19/05, Edwin Sheldon wrote: > Hello, > > I am trying to install typo on Ubuntu Linux using ruby 1.8.2 and mysql > 4.0.23. I installed gems and used it to install rails (and its > dependencies) and redcloth, following the instructions, and edited the > appropriate config files. However, when I ran script/server, I ran into > errors. The errors continued after I also tried using the beta version of > rails. Am I missing an important step? > > Thanks for your time, > Edwin > > -------------------------- > > $ ruby script/server > /usr/lib/ruby/gems/1.8/gems/actionpack-1.8.0/lib/action_controller.rb:52: > undefined method `template_class=' for ActionController::Base:Class > (NoMethodError) > from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in > `require__' > from /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in > `require' > from > /usr/lib/ruby/gems/1.8/gems/activesupport-1.0.4/lib/active_support/dependencies.rb:197:in > `require' > from /usr/local/lib/site_ruby/1.8/rubygems.rb:175:in `activate' > from /usr/local/lib/site_ruby/1.8/rubygems.rb:37:in > `require_gem_with_options' > from /usr/local/lib/site_ruby/1.8/rubygems.rb:31:in `require_gem' > from ./script/../config/environment.rb:33 > from script/server:45:in `require' > from script/server:45 > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From patrick at lenz.sh Tue Apr 19 10:18:45 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 19 10:12:37 2005 Subject: [typo] Errors running script/server In-Reply-To: <9963c1bd050419071460da3f3c@mail.gmail.com> References: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> <9963c1bd050419071460da3f3c@mail.gmail.com> Message-ID: FWIW, Debian currently features erb.rb in the package libruby1.8 for the unstable distribution. Stable doesn't even have ruby 1.8 yet (*sigh*) http://packages.debian.org/unstable/libs/libruby1.8 On Apr 19, 2005, at 4:14 PM, Tobias Luetke wrote: > Getting ruby to run under debian based linux flavors is always hard. > It seems like in your case ERB is missing, see if apt-cache search erb > turns something up though. > > The easiest thing is to compile your own ruby and not rely on the > packages. > > On 4/19/05, Edwin Sheldon wrote: > >> Hello, >> >> I am trying to install typo on Ubuntu Linux using ruby 1.8.2 and >> mysql >> 4.0.23. I installed gems and used it to install rails (and its >> dependencies) and redcloth, following the instructions, and edited >> the >> appropriate config files. However, when I ran script/server, I >> ran into >> errors. The errors continued after I also tried using the beta >> version of >> rails. Am I missing an important step? >> >> Thanks for your time, >> Edwin >> >> -------------------------- >> >> $ ruby script/server >> /usr/lib/ruby/gems/1.8/gems/actionpack-1.8.0/lib/ >> action_controller.rb:52: >> undefined method `template_class=' for ActionController::Base:Class >> (NoMethodError) >> from /usr/local/lib/site_ruby/1.8/rubygems/ >> custom_require.rb:18:in >> `require__' >> from /usr/local/lib/site_ruby/1.8/rubygems/ >> custom_require.rb:18:in >> `require' >> from >> /usr/lib/ruby/gems/1.8/gems/activesupport-1.0.4/lib/active_support/ >> dependencies.rb:197:in >> `require' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:175:in >> `activate' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:37:in >> `require_gem_with_options' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:31:in >> `require_gem' >> from ./script/../config/environment.rb:33 >> from script/server:45:in `require' >> from script/server:45 >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From seant at superchannel.org Tue Apr 19 10:19:34 2005 From: seant at superchannel.org (Sean Treadway) Date: Tue Apr 19 10:13:53 2005 Subject: [typo] Errors running script/server In-Reply-To: <9963c1bd050419071460da3f3c@mail.gmail.com> References: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> <9963c1bd050419071460da3f3c@mail.gmail.com> Message-ID: There is yet a longer list of dependent packages. Best to follow this HowTo: http://wiki.rubyonrails.com/rails/show/RailsOnDebian -Sean On Apr 19, 2005, at 4:14 PM, Tobias Luetke wrote: > Getting ruby to run under debian based linux flavors is always hard. > It seems like in your case ERB is missing, see if apt-cache search erb > turns something up though. > > The easiest thing is to compile your own ruby and not rely on the > packages. > > On 4/19/05, Edwin Sheldon wrote: >> Hello, >> >> I am trying to install typo on Ubuntu Linux using ruby 1.8.2 and mysql >> 4.0.23. I installed gems and used it to install rails (and its >> dependencies) and redcloth, following the instructions, and edited the >> appropriate config files. However, when I ran script/server, I ran >> into >> errors. The errors continued after I also tried using the beta >> version of >> rails. Am I missing an important step? >> >> Thanks for your time, >> Edwin >> >> -------------------------- >> >> $ ruby script/server >> /usr/lib/ruby/gems/1.8/gems/actionpack-1.8.0/lib/ >> action_controller.rb:52: >> undefined method `template_class=' for ActionController::Base:Class >> (NoMethodError) >> from >> /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in >> `require__' >> from >> /usr/local/lib/site_ruby/1.8/rubygems/custom_require.rb:18:in >> `require' >> from >> /usr/lib/ruby/gems/1.8/gems/activesupport-1.0.4/lib/active_support/ >> dependencies.rb:197:in >> `require' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:175:in >> `activate' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:37:in >> `require_gem_with_options' >> from /usr/local/lib/site_ruby/1.8/rubygems.rb:31:in >> `require_gem' >> from ./script/../config/environment.rb:33 >> from script/server:45:in `require' >> from script/server:45 >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From esheldon at hungsquirrel.org Tue Apr 19 17:48:56 2005 From: esheldon at hungsquirrel.org (Edwin Sheldon) Date: Tue Apr 19 17:43:13 2005 Subject: [typo] Errors running script/server In-Reply-To: References: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> <9963c1bd050419071460da3f3c@mail.gmail.com> Message-ID: <21863.207.157.122.160.1113947336.squirrel@www.gsctech.com> Sean, That did the trick. Sorry I didn't think to check the Rails documentation! Two more questions. When I run the server now, the blog page shows up, but gives me the following error where there should be a post (even after connecting with BloGTK and trying to add a post): Table 'typo.articles' doesn't exist: SELECT * FROM articles WHERE published !=0 ORDER BY created_at DESC LIMIT 10 Am I supposed to create the necessary tables myself? Also, the server runs by default at http://foo:3000/ . What steps would I take to make it run at http://foo/typo/ or http://foo/ ? Is this a Rails issue or a Typo issue? Thanks again for your time. Edwin > There is yet a longer list of dependent packages. Best to follow this > HowTo: > > http://wiki.rubyonrails.com/rails/show/RailsOnDebian > > -Sean From seant at superchannel.org Tue Apr 19 17:59:52 2005 From: seant at superchannel.org (Sean Treadway) Date: Tue Apr 19 17:54:08 2005 Subject: [typo] Errors running script/server In-Reply-To: <21863.207.157.122.160.1113947336.squirrel@www.gsctech.com> References: <5801.207.157.122.160.1113896687.squirrel@www.gsctech.com> <9963c1bd050419071460da3f3c@mail.gmail.com> <21863.207.157.122.160.1113947336.squirrel@www.gsctech.com> Message-ID: <472cf6adcac05e36d4293694c7334a39@superchannel.org> Good to hear. For the database problem: You'll need to create your databases that you have defined in your database.yml file (looks like you've done that already) Then you'll need to create the tables in the database by running the SQL scripts found in db. One way is to the command line tools for your database to import those scripts. For Postgresql you can run the following from your rails root: psql your_blog_database_name < db/schema.psql.sql For the webserver: You're currently running the Webrick server which binds to port 3000. Check the rails documentation for setting up a rails installation with FastCGI if you want to run it with your existing web server, or take a look at script/server and change the port from 3000 to 80. I haven't tried hosting a Typo blog under a different root "http://server/some/path/to/blog, compared to "http://server/". YMMV. -Sean On Apr 19, 2005, at 11:48 PM, Edwin Sheldon wrote: > Sean, > That did the trick. Sorry I didn't think to check the Rails > documentation! > > Two more questions. When I run the server now, the blog page shows up, > but gives me the following error where there should be a post (even > after > connecting with BloGTK and trying to add a post): > > Table 'typo.articles' doesn't exist: SELECT * FROM articles WHERE > published !=0 ORDER BY created_at DESC LIMIT 10 > > Am I supposed to create the necessary tables myself? > > Also, the server runs by default at http://foo:3000/ . What steps > would I > take to make it run at http://foo/typo/ or http://foo/ ? Is this a > Rails > issue or a Typo issue? > > Thanks again for your time. > Edwin > > >> There is yet a longer list of dependent packages. Best to follow this >> HowTo: >> >> http://wiki.rubyonrails.com/rails/show/RailsOnDebian >> >> -Sean > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From tobias.luetke at gmail.com Wed Apr 20 10:57:04 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Wed Apr 20 10:51:24 2005 Subject: [typo] Changeset [190] Message-ID: <9963c1bd05042007575913d796@mail.gmail.com> Whoops sorry about this. I promise I'm going to run typo's unit tests before checking in from now on. I'm the TDD nut, or I'm supposed to be, after all :) -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From typo at isolated-designs.net Thu Apr 21 02:52:06 2005 From: typo at isolated-designs.net (Justin Palmer) Date: Thu Apr 21 02:46:20 2005 Subject: [typo] Typo Visual Identity Message-ID: <42674D96.4050403@isolated-designs.net> Hi all, I wanted to introduce myself to the Typo list. My name is Jusitn Palmer, and I'll be heading up the Visual Identity for the Typo project. A big thanks to Tobi for allowing me to be a part of Typo! I'm really looking forward to working with everyone, and I expect to see some great things from Typo in the not so distant future. On that note, I've already got a good first draft of the Typo logo. You can read more about it here: http://www.encytemedia.com/article/6/a-fresh-start-typo If you'd like, You can catch me in #rubyonrails as 'Caged'. Cheers, -Justin Palmer encytemedia.com From anotherjesse at gmail.com Thu Apr 21 09:50:57 2005 From: anotherjesse at gmail.com (Jesse Andrews) Date: Thu Apr 21 09:45:11 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <42674D96.4050403@isolated-designs.net> References: <42674D96.4050403@isolated-designs.net> Message-ID: <8677a6f805042106502d1825f6@mail.gmail.com> I think it is beautiful! Great work! Jesse On 4/21/05, Justin Palmer wrote: > Hi all, > I wanted to introduce myself to the Typo list. > My name is Jusitn Palmer, and I'll be heading up the Visual Identity > for the Typo project. > A big thanks to Tobi for allowing me to be a part of Typo! I'm > really looking forward to > working with everyone, and I expect to see some great things from > Typo in the not so distant future. > > On that note, I've already got a good first draft of the Typo logo. > You can read more about it here: > http://www.encytemedia.com/article/6/a-fresh-start-typo > If you'd like, You can catch me in #rubyonrails as 'Caged'. > > Cheers, > -Justin Palmer > encytemedia.com > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From chanezon at gmail.com Thu Apr 21 10:15:28 2005 From: chanezon at gmail.com (Patrick Chanezon) Date: Thu Apr 21 10:09:44 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <8677a6f805042106502d1825f6@mail.gmail.com> References: <42674D96.4050403@isolated-designs.net> <8677a6f805042106502d1825f6@mail.gmail.com> Message-ID: Excellent. I look forward to see what you will design around Typo. I started a redesign myself, but I'm not a designer:-) P@ On 4/21/05, Jesse Andrews wrote: > I think it is beautiful! Great work! > > Jesse > > On 4/21/05, Justin Palmer wrote: > > Hi all, > > I wanted to introduce myself to the Typo list. > > My name is Jusitn Palmer, and I'll be heading up the Visual Identity > > for the Typo project. > > A big thanks to Tobi for allowing me to be a part of Typo! I'm > > really looking forward to > > working with everyone, and I expect to see some great things from > > Typo in the not so distant future. > > > > On that note, I've already got a good first draft of the Typo logo. > > You can read more about it here: > > http://www.encytemedia.com/article/6/a-fresh-start-typo > > If you'd like, You can catch me in #rubyonrails as 'Caged'. > > > > Cheers, > > -Justin Palmer > > encytemedia.com > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From tobias.luetke at gmail.com Thu Apr 21 10:55:27 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Thu Apr 21 10:49:52 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <42674D96.4050403@isolated-designs.net> References: <42674D96.4050403@isolated-designs.net> Message-ID: <9963c1bd050421075533ae9844@mail.gmail.com> Thanks Justin, Great to have you on board. A unique Visual Identity is the missing piece of the puzzle for typo world domination ( lets aim high! ) and at just as important as clean and accessible code in my eyes. Its great to have you on board and the logo looks great! On 4/21/05, Justin Palmer wrote: > Hi all, > I wanted to introduce myself to the Typo list. > My name is Jusitn Palmer, and I'll be heading up the Visual Identity > for the Typo project. > A big thanks to Tobi for allowing me to be a part of Typo! I'm > really looking forward to > working with everyone, and I expect to see some great things from > Typo in the not so distant future. > > On that note, I've already got a good first draft of the Typo logo. > You can read more about it here: > http://www.encytemedia.com/article/6/a-fresh-start-typo > If you'd like, You can catch me in #rubyonrails as 'Caged'. > > Cheers, > -Justin Palmer > encytemedia.com -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From typo at isolated-designs.net Thu Apr 21 14:10:42 2005 From: typo at isolated-designs.net (Justin Palmer) Date: Thu Apr 21 14:06:05 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <9963c1bd050421075533ae9844@mail.gmail.com> References: <42674D96.4050403@isolated-designs.net> <9963c1bd050421075533ae9844@mail.gmail.com> Message-ID: <4267ECA2.6050704@isolated-designs.net> Thanks for the warm welcome and positive feedback guys :-) I hope to get the kinks worked out of the logo and start hammering away at the default template today. World domination is only a .psd file or two away! -Justin Tobias Luetke wrote: >Thanks Justin, > >Great to have you on board. A unique Visual Identity is the missing >piece of the puzzle for typo world domination ( lets aim high! ) and >at just as important as clean and accessible code in my eyes. >Its great to have you on board and the logo looks great! > >On 4/21/05, Justin Palmer wrote: > > >>Hi all, >> I wanted to introduce myself to the Typo list. >> My name is Jusitn Palmer, and I'll be heading up the Visual Identity >>for the Typo project. >> A big thanks to Tobi for allowing me to be a part of Typo! I'm >>really looking forward to >> working with everyone, and I expect to see some great things from >>Typo in the not so distant future. >> >> On that note, I've already got a good first draft of the Typo logo. >>You can read more about it here: >>http://www.encytemedia.com/article/6/a-fresh-start-typo >> If you'd like, You can catch me in #rubyonrails as 'Caged'. >> >> Cheers, >> -Justin Palmer >> encytemedia.com >> >> > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/typo-list/attachments/20050421/5b074cbe/attachment.htm From anotherjesse at gmail.com Thu Apr 21 14:19:51 2005 From: anotherjesse at gmail.com (Jesse Andrews) Date: Thu Apr 21 14:14:03 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <4267ECA2.6050704@isolated-designs.net> References: <42674D96.4050403@isolated-designs.net> <9963c1bd050421075533ae9844@mail.gmail.com> <4267ECA2.6050704@isolated-designs.net> Message-ID: <8677a6f80504211119691e3f80@mail.gmail.com> have you tried Inkscape?? It may not be ready just yet (some of the gnome icon guys are starting to use it), but it is SVG, which is nice. On 4/21/05, Justin Palmer wrote: > Thanks for the warm welcome and positive feedback guys :-) > I hope to get the kinks worked out of the logo and start hammering away > at the default template today. World domination is only a .psd file or two > away! > > -Justin > > > > Tobias Luetke wrote: > Thanks Justin, > > Great to have you on board. A unique Visual Identity is the missing > piece of the puzzle for typo world domination ( lets aim high! ) and > at just as important as clean and accessible code in my eyes. > Its great to have you on board and the logo looks great! > > On 4/21/05, Justin Palmer wrote: > > > Hi all, > I wanted to introduce myself to the Typo list. > My name is Jusitn Palmer, and I'll be heading up the Visual Identity > for the Typo project. > A big thanks to Tobi for allowing me to be a part of Typo! I'm > really looking forward to > working with everyone, and I expect to see some great things from > Typo in the not so distant future. > > On that note, I've already got a good first draft of the Typo logo. > You can read more about it here: > http://www.encytemedia.com/article/6/a-fresh-start-typo > If you'd like, You can catch me in #rubyonrails as 'Caged'. > > Cheers, > -Justin Palmer > encytemedia.com > > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > > From typo at isolated-designs.net Fri Apr 22 15:35:19 2005 From: typo at isolated-designs.net (Justin Palmer) Date: Fri Apr 22 15:29:33 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <8677a6f80504211119691e3f80@mail.gmail.com> References: <42674D96.4050403@isolated-designs.net> <9963c1bd050421075533ae9844@mail.gmail.com> <4267ECA2.6050704@isolated-designs.net> <8677a6f80504211119691e3f80@mail.gmail.com> Message-ID: <426951F7.6010809@isolated-designs.net> Hi Jesse, I haven't tried Inkscape yet, but it looks very interesting. I will check it out :) It can possibly cure my Illustrator woes, as I don't like some of the ways it does things. Also an update on the logo, I've finished the revisions to it. I added a little bit more depth and saturated the colors a little more to give it some vibrance. I also cleaned up the edges a bit, but still tried to keep a 'worn' look. I believe its ready to be finalized. If no one has any objections, we will consider this the 'official' typo logo and feel free to distribute it at will. http://www.encytemedia.com/article/8/typo-take-two You can also pick up a 'powered by typo' button as well. Cheers, -Justin Jesse Andrews wrote: >have you tried Inkscape?? It may not be ready just yet (some of the >gnome icon guys are starting to use it), but it is SVG, which is nice. > >On 4/21/05, Justin Palmer wrote: > > >> Thanks for the warm welcome and positive feedback guys :-) >> I hope to get the kinks worked out of the logo and start hammering away >> at the default template today. World domination is only a .psd file or two >>away! >> >> -Justin >> >> >> >> Tobias Luetke wrote: >> Thanks Justin, >> >>Great to have you on board. A unique Visual Identity is the missing >>piece of the puzzle for typo world domination ( lets aim high! ) and >>at just as important as clean and accessible code in my eyes. >>Its great to have you on board and the logo looks great! >> >>On 4/21/05, Justin Palmer wrote: >> >> >> Hi all, >> I wanted to introduce myself to the Typo list. >> My name is Jusitn Palmer, and I'll be heading up the Visual Identity >>for the Typo project. >> A big thanks to Tobi for allowing me to be a part of Typo! I'm >>really looking forward to >> working with everyone, and I expect to see some great things from >>Typo in the not so distant future. >> >> On that note, I've already got a good first draft of the Typo logo. >>You can read more about it here: >>http://www.encytemedia.com/article/6/a-fresh-start-typo >> If you'd like, You can catch me in #rubyonrails as 'Caged'. >> >> Cheers, >> -Justin Palmer >> encytemedia.com >> >> >> >> >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> >> >> >> >> > >_______________________________________________ >Typo-list mailing list >Typo-list@rubyforge.org >http://rubyforge.org/mailman/listinfo/typo-list > > > > > From lists at dreamfan.net Fri Apr 22 17:17:40 2005 From: lists at dreamfan.net (Cody) Date: Fri Apr 22 17:11:51 2005 Subject: [typo] Typo Visual Identity In-Reply-To: <426951F7.6010809@isolated-designs.net> References: <42674D96.4050403@isolated-designs.net> <9963c1bd050421075533ae9844@mail.gmail.com> <4267ECA2.6050704@isolated-designs.net> <8677a6f80504211119691e3f80@mail.gmail.com> <426951F7.6010809@isolated-designs.net> Message-ID: <4e72f8adef68c6718a2a929716534775@dreamfan.net> Looks good. Are you planning on uploading the file in .ai format for downloading? :-) -Cody On Apr 22, 2005, at 2:35 PM, Justin Palmer wrote: > Hi Jesse, > I haven't tried Inkscape yet, but it looks very interesting. I will > check it out :) > It can possibly cure my Illustrator woes, as I don't like some of > the ways it does things. > > Also an update on the logo, > I've finished the revisions to it. I added a little bit more depth > and saturated the colors a little more to give > it some vibrance. I also cleaned up the edges a bit, but still tried > to keep a 'worn' look. > I believe its ready to be finalized. If no one has any objections, > we will consider this the 'official' typo logo and feel free to > distribute it at will. > http://www.encytemedia.com/article/8/typo-take-two > You can also pick up a 'powered by typo' button as well. > > Cheers, > -Justin > > > > > > Jesse Andrews wrote: > >> have you tried Inkscape?? It may not be ready just yet (some of the >> gnome icon guys are starting to use it), but it is SVG, which is nice. >> >> On 4/21/05, Justin Palmer wrote: >> >>> Thanks for the warm welcome and positive feedback guys :-) I hope to >>> get the kinks worked out of the logo and start hammering away at the >>> default template today. World domination is only a .psd file or two >>> away! >>> -Justin >>> >>> Tobias Luetke wrote: Thanks Justin, >>> >>> Great to have you on board. A unique Visual Identity is the missing >>> piece of the puzzle for typo world domination ( lets aim high! ) and >>> at just as important as clean and accessible code in my eyes. >>> Its great to have you on board and the logo looks great! >>> >>> On 4/21/05, Justin Palmer wrote: >>> Hi all, >>> I wanted to introduce myself to the Typo list. >>> My name is Jusitn Palmer, and I'll be heading up the Visual Identity >>> for the Typo project. >>> A big thanks to Tobi for allowing me to be a part of Typo! I'm >>> really looking forward to >>> working with everyone, and I expect to see some great things from >>> Typo in the not so distant future. >>> >>> On that note, I've already got a good first draft of the Typo logo. >>> You can read more about it here: >>> http://www.encytemedia.com/article/6/a-fresh-start-typo >>> If you'd like, You can catch me in #rubyonrails as 'Caged'. >>> >>> Cheers, >>> -Justin Palmer >>> encytemedia.com >>> _______________________________________________ >>> Typo-list mailing list >>> Typo-list@rubyforge.org >>> http://rubyforge.org/mailman/listinfo/typo-list >>> >>> >>> >>> >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> >> >> >> > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From tobias.luetke at gmail.com Sat Apr 23 12:34:26 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sat Apr 23 12:28:36 2005 Subject: [typo] 2.0 Release Message-ID: <9963c1bd0504230934244f9de9@mail.gmail.com> Hey, Just wanted to let you know that I'll release 2.0 this evening. So a lot of clean up work is being done right now. If you want to help out or just watch please come to irc.freenode.net channel #typo-dev. -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From anoop at ranganath.com Sat Apr 23 14:16:58 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 14:11:08 2005 Subject: [typo] 43 things aggregator Message-ID: I wrote an aggregator for 43 things. I'm attaching the files necessary to get things going: -------------- next part -------------- A non-text attachment was scrubbed... Name: fortythree.rb Type: application/octet-stream Size: 1735 bytes Desc: not available Url : http://rubyforge.org/pipermail/typo-list/attachments/20050423/fc406cfd/fortythree.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: _fortythree.rhtml Type: application/octet-stream Size: 208 bytes Desc: not available Url : http://rubyforge.org/pipermail/typo-list/attachments/20050423/fc406cfd/_fortythree.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: fortythree_test.rb Type: application/octet-stream Size: 2497 bytes Desc: not available Url : http://rubyforge.org/pipermail/typo-list/attachments/20050423/fc406cfd/fortythree_test.obj -------------- next part -------------- The following method needs to be added to application_helper.rb def fortythreelist(url) begin render_partial("shared/fortythree", check_cache(Fortythree, url)) rescue end end and the following line to environment.rb around line 75: require_dependency 'aggregations/fortythree' Lemme know if there is a more appropriate place to post this stuff. Anoop From anoop at ranganath.com Sat Apr 23 14:20:29 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 14:14:38 2005 Subject: [typo] css image problem still around Message-ID: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> I have typo installed without a VirtualHost, and the four images in typo.css are coded with an absolute path, which breaks on my install. Could someone please change lines 603, 607, 611, and 615 to contain "../images" instead of "/images". This shouldn't break any other installs. Thanks, Anoop From seth at remor.com Sat Apr 23 14:30:17 2005 From: seth at remor.com (Seth Hall) Date: Sat Apr 23 14:24:28 2005 Subject: [typo] css image problem still around In-Reply-To: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> Message-ID: <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> On Apr 23, 2005, at 2:20 PM, Anoop Ranganath wrote: > I have typo installed without a VirtualHost, and the four images in > typo.css are coded with an absolute path, which breaks on my install. > Could someone please change lines 603, 607, 611, and 615 to contain > "../images" instead of "/images". This shouldn't break any other > installs. I guess we'll have to think about this because if we do ../images, it wouldn't work when viewing an article with pretty urls. We could have the css supplied by a controller. .Seth From tobias.luetke at gmail.com Sat Apr 23 15:37:34 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sat Apr 23 15:31:41 2005 Subject: [typo] 43 things aggregator In-Reply-To: References: Message-ID: <9963c1bd05042312373a3b61c8@mail.gmail.com> Cool! Do you work from a SVN checkout? In this case you could just svn add those files and submit a patch using svn diff > 43.patch to the trac. I would like get this included in the release On 4/23/05, Anoop Ranganath wrote: > I wrote an aggregator for 43 things. I'm attaching the files necessary > to get things going: > > > > > The following method needs to be added to application_helper.rb > > def fortythreelist(url) > begin > render_partial("shared/fortythree", check_cache(Fortythree, url)) > rescue > end > end > > and the following line to environment.rb around line 75: > > require_dependency 'aggregations/fortythree' > > Lemme know if there is a more appropriate place to post this stuff. > > Anoop > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > > > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From tobias.luetke at gmail.com Sat Apr 23 15:38:27 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sat Apr 23 15:32:34 2005 Subject: [typo] css image problem still around In-Reply-To: <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> Message-ID: <9963c1bd0504231238f01ceb3@mail.gmail.com> actually that works fine. The pwd for the CSS is the css directory On 4/23/05, Seth Hall wrote: > > On Apr 23, 2005, at 2:20 PM, Anoop Ranganath wrote: > > > I have typo installed without a VirtualHost, and the four images in > > typo.css are coded with an absolute path, which breaks on my install. > > Could someone please change lines 603, 607, 611, and 615 to contain > > "../images" instead of "/images". This shouldn't break any other > > installs. > > I guess we'll have to think about this because if we do ../images, it > wouldn't work when viewing an article with pretty urls. > > We could have the css supplied by a controller. > > .Seth > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From anoop at ranganath.com Sat Apr 23 15:40:29 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 15:34:38 2005 Subject: [typo] 43 things aggregator In-Reply-To: <9963c1bd05042312373a3b61c8@mail.gmail.com> References: <9963c1bd05042312373a3b61c8@mail.gmail.com> Message-ID: I work from a heavily modified SVN checkout! I'll make a fresh checkout and drop this stuff in there and generate the patch. Anoop On Apr 23, 2005, at 3:37 PM, Tobias Luetke wrote: > Cool! Do you work from a SVN checkout? In this case you could just svn > add those files and submit a patch using svn diff > 43.patch to the > trac. > I would like get this included in the release > > On 4/23/05, Anoop Ranganath wrote: >> I wrote an aggregator for 43 things. I'm attaching the files >> necessary >> to get things going: >> >> >> >> >> The following method needs to be added to application_helper.rb >> >> def fortythreelist(url) >> begin >> render_partial("shared/fortythree", check_cache(Fortythree, >> url)) >> rescue >> end >> end >> >> and the following line to environment.rb around line 75: >> >> require_dependency 'aggregations/fortythree' >> >> Lemme know if there is a more appropriate place to post this stuff. >> >> Anoop >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> >> >> >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From anoop at ranganath.com Sat Apr 23 15:53:46 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 15:47:55 2005 Subject: [typo] 43 things aggregator In-Reply-To: <9963c1bd05042312373a3b61c8@mail.gmail.com> References: <9963c1bd05042312373a3b61c8@mail.gmail.com> Message-ID: Done. http://typo.leetsoft.com/trac.cgi/ticket/59 On Apr 23, 2005, at 3:37 PM, Tobias Luetke wrote: > Cool! Do you work from a SVN checkout? In this case you could just svn > add those files and submit a patch using svn diff > 43.patch to the > trac. > I would like get this included in the release > > On 4/23/05, Anoop Ranganath wrote: >> I wrote an aggregator for 43 things. I'm attaching the files >> necessary >> to get things going: >> >> >> >> >> The following method needs to be added to application_helper.rb >> >> def fortythreelist(url) >> begin >> render_partial("shared/fortythree", check_cache(Fortythree, >> url)) >> rescue >> end >> end >> >> and the following line to environment.rb around line 75: >> >> require_dependency 'aggregations/fortythree' >> >> Lemme know if there is a more appropriate place to post this stuff. >> >> Anoop >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> >> >> >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From seth at remor.com Sat Apr 23 16:00:54 2005 From: seth at remor.com (Seth Hall) Date: Sat Apr 23 15:55:11 2005 Subject: [typo] css image problem still around In-Reply-To: <9963c1bd0504231238f01ceb3@mail.gmail.com> References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> <9963c1bd0504231238f01ceb3@mail.gmail.com> Message-ID: I was totally mistaken on that one. It's fixed in subversion (and will be in 2.0). .Seth On Apr 23, 2005, at 3:38 PM, Tobias Luetke wrote: > actually that works fine. The pwd for the CSS is the css directory > > On 4/23/05, Seth Hall wrote: >> >> On Apr 23, 2005, at 2:20 PM, Anoop Ranganath wrote: >> >>> I have typo installed without a VirtualHost, and the four images in >>> typo.css are coded with an absolute path, which breaks on my install. >>> Could someone please change lines 603, 607, 611, and 615 to contain >>> "../images" instead of "/images". This shouldn't break any other >>> installs. >> >> I guess we'll have to think about this because if we do ../images, it >> wouldn't work when viewing an article with pretty urls. >> >> We could have the css supplied by a controller. >> >> .Seth >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> > > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Seth Hall Network Security Engineer Phone: 614-292-9721 Ohio State University Enterprise Network Security E-mail: security@osu.edu Web: http://www.net.ohio-state.edu/security/ From anoop at ranganath.com Sat Apr 23 16:04:57 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 15:59:05 2005 Subject: [typo] css image problem still around In-Reply-To: References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> <9963c1bd0504231238f01ceb3@mail.gmail.com> Message-ID: <54f08c3b3faebbb87eb2897452e8ac0d@ranganath.com> I see that admin.css and header.css have been changed, but typo.css stlil appears to use absolute urls in subversion. On Apr 23, 2005, at 4:00 PM, Seth Hall wrote: > I was totally mistaken on that one. It's fixed in subversion (and > will be in 2.0). > > .Seth > > On Apr 23, 2005, at 3:38 PM, Tobias Luetke wrote: > >> actually that works fine. The pwd for the CSS is the css directory >> >> On 4/23/05, Seth Hall wrote: >>> >>> On Apr 23, 2005, at 2:20 PM, Anoop Ranganath wrote: >>> >>>> I have typo installed without a VirtualHost, and the four images in >>>> typo.css are coded with an absolute path, which breaks on my >>>> install. >>>> Could someone please change lines 603, 607, 611, and 615 to contain >>>> "../images" instead of "/images". This shouldn't break any other >>>> installs. >>> >>> I guess we'll have to think about this because if we do ../images, it >>> wouldn't work when viewing an article with pretty urls. >>> >>> We could have the css supplied by a controller. >>> >>> .Seth >>> >>> _______________________________________________ >>> Typo-list mailing list >>> Typo-list@rubyforge.org >>> http://rubyforge.org/mailman/listinfo/typo-list >>> >> >> >> -- >> Tobi >> http://www.snowdevil.ca - Snowboards that don't suck >> http://www.hieraki.org - Open source book authoring >> http://blog.leetsoft.com - Technical weblog >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> > -- > Seth Hall > Network Security Engineer > Phone: 614-292-9721 > > Ohio State University Enterprise Network Security > E-mail: security@osu.edu > Web: http://www.net.ohio-state.edu/security/ > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From seth at remor.com Sat Apr 23 16:17:55 2005 From: seth at remor.com (Seth Hall) Date: Sat Apr 23 16:12:04 2005 Subject: [typo] css image problem still around In-Reply-To: <54f08c3b3faebbb87eb2897452e8ac0d@ranganath.com> References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> <9963c1bd0504231238f01ceb3@mail.gmail.com> <54f08c3b3faebbb87eb2897452e8ac0d@ranganath.com> Message-ID: Hehe, it was still unsaved in my editor :) Fixed now. .Seth On Apr 23, 2005, at 4:04 PM, Anoop Ranganath wrote: > I see that admin.css and header.css have been changed, but typo.css > stlil appears to use absolute urls in subversion. > > On Apr 23, 2005, at 4:00 PM, Seth Hall wrote: > >> I was totally mistaken on that one. It's fixed in subversion (and >> will be in 2.0). >> >> .Seth >> >> On Apr 23, 2005, at 3:38 PM, Tobias Luetke wrote: >> >>> actually that works fine. The pwd for the CSS is the css directory >>> >>> On 4/23/05, Seth Hall wrote: >>>> >>>> On Apr 23, 2005, at 2:20 PM, Anoop Ranganath wrote: >>>> >>>>> I have typo installed without a VirtualHost, and the four images in >>>>> typo.css are coded with an absolute path, which breaks on my >>>>> install. >>>>> Could someone please change lines 603, 607, 611, and 615 to contain >>>>> "../images" instead of "/images". This shouldn't break any other >>>>> installs. >>>> >>>> I guess we'll have to think about this because if we do ../images, >>>> it >>>> wouldn't work when viewing an article with pretty urls. >>>> >>>> We could have the css supplied by a controller. >>>> >>>> .Seth >>>> >>>> _______________________________________________ >>>> Typo-list mailing list >>>> Typo-list@rubyforge.org >>>> http://rubyforge.org/mailman/listinfo/typo-list >>>> >>> >>> >>> -- >>> Tobi >>> http://www.snowdevil.ca - Snowboards that don't suck >>> http://www.hieraki.org - Open source book authoring >>> http://blog.leetsoft.com - Technical weblog >>> >>> _______________________________________________ >>> Typo-list mailing list >>> Typo-list@rubyforge.org >>> http://rubyforge.org/mailman/listinfo/typo-list >>> >> -- >> Seth Hall >> Network Security Engineer >> Phone: 614-292-9721 >> >> Ohio State University Enterprise Network Security >> E-mail: security@osu.edu >> Web: http://www.net.ohio-state.edu/security/ >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Seth Hall Network Security Engineer Phone: 614-292-9721 Ohio State University Enterprise Network Security E-mail: security@osu.edu Web: http://www.net.ohio-state.edu/security/ From anoop at ranganath.com Sat Apr 23 16:32:11 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 16:26:18 2005 Subject: [typo] css image problem still around In-Reply-To: References: <6cc3df6e627062f81d2eee67d0a7ebdb@ranganath.com> <390b3c6a92a2fcd1028b6673a611a9ba@remor.com> <9963c1bd0504231238f01ceb3@mail.gmail.com> <54f08c3b3faebbb87eb2897452e8ac0d@ranganath.com> Message-ID: <0d9099cb994689210e774d2a58891290@ranganath.com> Thanks, unfortunately now the flickr template is broken. http://ranganath.com/~anoop/blog/ if you look at the img src, it's looking for: /~anoop/bloghttp://photos8.flickr.com/9878651_193a98846e_t.jpg I have a feeling this may actually be a rails tag bug. Either way, since the images are external links, I'm not sure if it makes so much sense to use image_tag as opposed to just coding the html. Any thought? Anoop From tobias.luetke at gmail.com Sat Apr 23 16:35:50 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Sat Apr 23 16:29:58 2005 Subject: [typo] 43 things aggregator In-Reply-To: References: <9963c1bd05042312373a3b61c8@mail.gmail.com> Message-ID: <9963c1bd050423133565fda727@mail.gmail.com> thanks, its in trunk On 4/23/05, Anoop Ranganath wrote: > Done. > > http://typo.leetsoft.com/trac.cgi/ticket/59 > > > On Apr 23, 2005, at 3:37 PM, Tobias Luetke wrote: > > > Cool! Do you work from a SVN checkout? In this case you could just svn > > add those files and submit a patch using svn diff > 43.patch to the > > trac. > > I would like get this included in the release > > > > On 4/23/05, Anoop Ranganath wrote: > >> I wrote an aggregator for 43 things. I'm attaching the files > >> necessary > >> to get things going: > >> > >> > >> > >> > >> The following method needs to be added to application_helper.rb > >> > >> def fortythreelist(url) > >> begin > >> render_partial("shared/fortythree", check_cache(Fortythree, > >> url)) > >> rescue > >> end > >> end > >> > >> and the following line to environment.rb around line 75: > >> > >> require_dependency 'aggregations/fortythree' > >> > >> Lemme know if there is a more appropriate place to post this stuff. > >> > >> Anoop > >> > >> _______________________________________________ > >> Typo-list mailing list > >> Typo-list@rubyforge.org > >> http://rubyforge.org/mailman/listinfo/typo-list > >> > >> > >> > >> > > > > > > -- > > Tobi > > http://www.snowdevil.ca - Snowboards that don't suck > > http://www.hieraki.org - Open source book authoring > > http://blog.leetsoft.com - Technical weblog > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From anoop at ranganath.com Sat Apr 23 21:03:11 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sat Apr 23 20:57:18 2005 Subject: [typo] nasty bug in new flickr code Message-ID: <955cacce453630f7d0e15bd04807d4f9@ranganath.com> In Line 18 of the new choose method in flickr.rb the pics array is being destroyed rather than using the set which is a duplicate of it. Changing the two "pics" references to "set" fixes the problem. In it's current state, it'll consume all the pictures in your flickrstream the second time you relaod the page. From anoop at ranganath.com Sun Apr 24 00:47:44 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Sun Apr 24 00:41:53 2005 Subject: [typo] editing posts from MarsEdit Message-ID: <54cf459419772725d077994f281895ca@ranganath.com> I'm currently unable to edit existing posts from MarsEdit running against trunk. I'm not sure if it's a MarsEdit problem or a Typo problem, because when I click the "Send to Weblog" button, nothing happens, when it used to work before. Is anyone else seeing this? Anoop From ib at sdf-eu.org Sun Apr 24 06:32:00 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 24 06:26:25 2005 Subject: [typo] Bug in 2.0? (Showing unpublished posts) Message-ID: <426B75A0.90907@sdf-eu.org> Starting with the 2.0 release Typo also displays the unpublished posts on the frontpage. Is this a bug or a feature? I use unpublished posts instead of static pages - they are not displayed by default, but I can link to them. Changing this line (in the article controller - index action) @articles = Article.find(:all, :condition => 'published!=0', :order => 'articles.created_at DESC', :limit => 10, :offset => @pages.current.offset) to @articles = Article.find_all('published !=0', 'created_at DESC', @pages.current.to_sql) which comes from an older version I was using solves the problem. From patrick at lenz.sh Sun Apr 24 06:45:21 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Sun Apr 24 06:39:29 2005 Subject: [typo] Bug in 2.0? (Showing unpublished posts) In-Reply-To: <426B75A0.90907@sdf-eu.org> References: <426B75A0.90907@sdf-eu.org> Message-ID: <7a531c4b0cefe5a578e97dc86c9c6836@lenz.sh> On 24.04.2005, at 12:32, Ioan Bizau jr. wrote: > Starting with the 2.0 release Typo also displays the unpublished posts > on the frontpage. Is this a bug or a feature? It's a bug. The find() parameter is :conditions, not :condition. Blame Tobi for naming this thing Typo -- no wonder these things keep popping up. :) The bug is fixed in changeset [234] -- here's a diff: http://typo.leetsoft.com/trac.cgi/changeset/234?format=diff Thanks for your bugreport. -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From patrick at lenz.sh Sun Apr 24 07:07:55 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Sun Apr 24 07:02:02 2005 Subject: [typo] editing posts from MarsEdit In-Reply-To: <54cf459419772725d077994f281895ca@ranganath.com> References: <54cf459419772725d077994f281895ca@ranganath.com> Message-ID: <23da1598864d9ee6dafc93ab10213b0f@lenz.sh> On 24.04.2005, at 06:47, Anoop Ranganath wrote: > I'm currently unable to edit existing posts from MarsEdit running > against trunk. I'm not sure if it's a MarsEdit problem or a Typo > problem, because when I click the "Send to Weblog" button, nothing > happens, when it used to work before. > > Is anyone else seeing this? I'm seeing that too. I posted a ticket on typo's trac (#65) and also dropped Brent Simmons an email since I honestly don't know where and how to debug this server side since as you mentioned, there's no single bit being transferred over the network when you click the 'Send to Weblog' button and editing using ecto is working fine (now). Do you have any idea when this behavior started showing up? -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From ib at sdf-eu.org Sun Apr 24 18:07:19 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 24 18:01:45 2005 Subject: [typo] First paragraph Message-ID: <426C1897.4060802@sdf-eu.org> Tobias, I think you could change the first paragraph from Typo's page. It isn't true any more. :-) From patrick at lenz.sh Sun Apr 24 18:40:26 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Sun Apr 24 18:34:36 2005 Subject: [typo] editing posts from MarsEdit In-Reply-To: <23da1598864d9ee6dafc93ab10213b0f@lenz.sh> References: <54cf459419772725d077994f281895ca@ranganath.com> <23da1598864d9ee6dafc93ab10213b0f@lenz.sh> Message-ID: The issue is fixed now. Brent Simmons (of MarsEdit fame) was able to track down the problem to an exception being raised in MarsEdit because one of the fields of the article struct was improperly typed. A patch for typo fixing this API mis-declaration can be found here: http://typo.leetsoft.com/trac.cgi/changeset/242?format=diff Thanks Brent for your support. On 24.04.2005, at 13:07, Patrick Lenz wrote: > On 24.04.2005, at 06:47, Anoop Ranganath wrote: > >> I'm currently unable to edit existing posts from MarsEdit running >> against trunk. I'm not sure if it's a MarsEdit problem or a Typo >> problem, because when I click the "Send to Weblog" button, nothing >> happens, when it used to work before. >> >> Is anyone else seeing this? > > I'm seeing that too. I posted a ticket on typo's trac (#65) and also > dropped Brent Simmons an email since I honestly don't know where and > how to debug this server side since as you mentioned, there's no > single bit being transferred over the network when you click the 'Send > to Weblog' button and editing using ecto is working fine (now). > > Do you have any idea when this behavior started showing up? > > -- > Patrick Lenz (scoop) > patrick@lenz.sh > > Phone: +49-611-333-4722 > Mobile: +49-179-202-6678 > > [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - > wiesbadeneins.de ] > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > > -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From ib at sdf-eu.org Sun Apr 24 19:04:16 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Sun Apr 24 18:58:45 2005 Subject: [typo] body_html Message-ID: <426C25F0.9040701@sdf-eu.org> Once I asked Tobias about the two fields "body" and "body_html". He said that body_html is just an optimization and might be removed soon. It really bothers me, because it feels wet (anti-dry). Can't we just remove it? From anotherjesse at gmail.com Sun Apr 24 19:20:38 2005 From: anotherjesse at gmail.com (Jesse Andrews) Date: Sun Apr 24 19:14:43 2005 Subject: [typo] body_html In-Reply-To: <426C25F0.9040701@sdf-eu.org> References: <426C25F0.9040701@sdf-eu.org> Message-ID: <8677a6f8050424162053295f49@mail.gmail.com> sure, just make a method to the Article that will convert to html after you do the query and you are set... I personally like it since web blogs tend to be read more than edited. Pre-computing the html optimizes for situtations like most blogs. If we built a more sophisticated caching mechanism (cache everything, invalidating cached article reads when a comment/trackback is added/removed or the article is edited, invalidating cached index when an article is removed ) Since Typo does the "42 minutes since ..." it would be necsesary to not cache an article the first hour of its existance. Once the granulatity of the time goes up, you can cache for an hour by default ... Jesse On 4/24/05, Ioan Bizau jr. wrote: > Once I asked Tobias about the two fields "body" and "body_html". He said > that body_html is just an optimization and might be removed soon. > It really bothers me, because it feels wet (anti-dry). Can't we just > remove it? > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From wildwildwes at gmail.com Mon Apr 25 02:24:07 2005 From: wildwildwes at gmail.com (Wes Moxam) Date: Mon Apr 25 02:18:12 2005 Subject: [typo] Static publishing mode Message-ID: <1447a502050424232470adc569@mail.gmail.com> Hi All, I hacked a crude static publisher into typo in order to speed up my typo blog. I don't run rails in an ideal environment, so I needed this so that visitors to the blog wouldn't click elsewhere when they tried to read a posting. I wrote a little piece about this a couple of days ago. You can find it here: http://wmoxam.freeshell.org/articles/2005/04/23/typo-speed-improvement Is anyone else interested in this feature? If so I'll code something up that's a bit more configurable than my current setup and release it. -- Wes From tobias.luetke at gmail.com Mon Apr 25 11:21:45 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Mon Apr 25 11:15:51 2005 Subject: [typo] editing posts from MarsEdit In-Reply-To: References: <54cf459419772725d077994f281895ca@ranganath.com> <23da1598864d9ee6dafc93ab10213b0f@lenz.sh> Message-ID: <9963c1bd050425082137369284@mail.gmail.com> Great news! On 4/24/05, Patrick Lenz wrote: > The issue is fixed now. Brent Simmons (of MarsEdit fame) was able to > track down the problem to an exception being raised in MarsEdit because > one of the fields of the article struct was improperly typed. A patch > for typo fixing this API mis-declaration can be found here: > > http://typo.leetsoft.com/trac.cgi/changeset/242?format=diff > > Thanks Brent for your support. > > On 24.04.2005, at 13:07, Patrick Lenz wrote: > > > On 24.04.2005, at 06:47, Anoop Ranganath wrote: > > > >> I'm currently unable to edit existing posts from MarsEdit running > >> against trunk. I'm not sure if it's a MarsEdit problem or a Typo > >> problem, because when I click the "Send to Weblog" button, nothing > >> happens, when it used to work before. > >> > >> Is anyone else seeing this? > > > > I'm seeing that too. I posted a ticket on typo's trac (#65) and also > > dropped Brent Simmons an email since I honestly don't know where and > > how to debug this server side since as you mentioned, there's no > > single bit being transferred over the network when you click the 'Send > > to Weblog' button and editing using ecto is working fine (now). > > > > Do you have any idea when this behavior started showing up? > > > > -- > > Patrick Lenz (scoop) > > patrick@lenz.sh > > > > Phone: +49-611-333-4722 > > Mobile: +49-179-202-6678 > > > > [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - > > wiesbadeneins.de ] > > > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > > -- > Patrick Lenz (scoop) > patrick@lenz.sh > > Phone: +49-611-333-4722 > Mobile: +49-179-202-6678 > > [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - > wiesbadeneins.de ] > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From tobias.luetke at gmail.com Mon Apr 25 11:24:26 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Mon Apr 25 11:18:31 2005 Subject: [typo] body_html In-Reply-To: <8677a6f8050424162053295f49@mail.gmail.com> References: <426C25F0.9040701@sdf-eu.org> <8677a6f8050424162053295f49@mail.gmail.com> Message-ID: <9963c1bd05042508242b2da47c@mail.gmail.com> I left it in for this release so because of speed. Textilizing everything before display really is hard on the cpu. For the next release i look at statically caching every page of the blog (by moving the 42 minutes ago stuff to javascript ). I'll get rid of the _html business for sure at this point. In hieraki I already got rid of it and cache it in memory and it works fairly well as well so If you want you could look at how hieraki does it and submit a patch for typo. On 4/24/05, Jesse Andrews wrote: > sure, just make a method to the Article that will convert to html > after you do the query and you are set... > > I personally like it since web blogs tend to be read more than edited. > Pre-computing the html optimizes for situtations like most blogs. > > If we built a more sophisticated caching mechanism (cache everything, > invalidating cached article reads when a comment/trackback is > added/removed or the article is edited, invalidating cached index when > an article is removed ) > > Since Typo does the "42 minutes since ..." it would be necsesary to > not cache an article the first hour of its existance. Once the > granulatity of the time goes up, you can cache for an hour by default > ... > > Jesse > > On 4/24/05, Ioan Bizau jr. wrote: > > Once I asked Tobias about the two fields "body" and "body_html". He said > > that body_html is just an optimization and might be removed soon. > > It really bothers me, because it feels wet (anti-dry). Can't we just > > remove it? > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From ib at sdf-eu.org Mon Apr 25 17:22:32 2005 From: ib at sdf-eu.org (Ioan Bizau jr.) Date: Mon Apr 25 17:16:58 2005 Subject: [typo] body_html In-Reply-To: <9963c1bd05042508242b2da47c@mail.gmail.com> References: <426C25F0.9040701@sdf-eu.org> <8677a6f8050424162053295f49@mail.gmail.com> <9963c1bd05042508242b2da47c@mail.gmail.com> Message-ID: <426D5F98.8050402@sdf-eu.org> I didn't see how you do it in hieraki. You have def body_html HtmlEngine.transform(body) end in your model, which does the conversion on-the-fly. Do you make some magic? Anyway, I have another solution. In the Article model use this: --- @@bodies_html = {} def body_html @@bodies_html[id] = HtmlEngine.transform(body) if @@bodies_html[id].nil? @@bodies_html[id] end before_save :clear_cache def clear_cache @@bodies_html[id] = nil end --- Then drop the body_html column (huh) and delete this: --- before_save :transform_body def transform_body self.body_html = HtmlEngine.transform(body, self.text_filter) end --- Works for me. What do you think? Tobias Luetke wrote: > I left it in for this release so because of speed. Textilizing > everything before display > really is hard on the cpu. For the next release i look at statically > caching every page of > the blog (by moving the 42 minutes ago stuff to javascript ). I'll get > rid of the _html business for sure at this point. In hieraki I already > got rid of it and cache it in memory and it works fairly well as well > so If you want you could look at how hieraki does it and submit a > patch for typo. > > > On 4/24/05, Jesse Andrews wrote: > >>sure, just make a method to the Article that will convert to html >>after you do the query and you are set... >> >>I personally like it since web blogs tend to be read more than edited. >> Pre-computing the html optimizes for situtations like most blogs. >> >>If we built a more sophisticated caching mechanism (cache everything, >>invalidating cached article reads when a comment/trackback is >>added/removed or the article is edited, invalidating cached index when >>an article is removed ) >> >>Since Typo does the "42 minutes since ..." it would be necsesary to >>not cache an article the first hour of its existance. Once the >>granulatity of the time goes up, you can cache for an hour by default >>... >> >>Jesse >> >>On 4/24/05, Ioan Bizau jr. wrote: >> >>>Once I asked Tobias about the two fields "body" and "body_html". He said >>>that body_html is just an optimization and might be removed soon. >>>It really bothers me, because it feels wet (anti-dry). Can't we just >>>remove it? >>>_______________________________________________ >>>Typo-list mailing list >>>Typo-list@rubyforge.org >>>http://rubyforge.org/mailman/listinfo/typo-list >>> >> >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From boris at bitslapped.nl Tue Apr 26 17:23:48 2005 From: boris at bitslapped.nl (boris) Date: Tue Apr 26 17:16:35 2005 Subject: [typo] Flickr aggregator not working in 2.0? Message-ID: <200504262122.j3QLMWaX006009@smtp-vbr8.xs4all.nl> Hi, I'm trying to get the flicker aggregation working. In the file view/layouts/articles.rhtml i've removed the # sign an inserted my flicker url. In the previous release (1.x) this worked instantly, but now it will not display images. >From a browser, the url is working, and the delicious agregation works awell. Any suggestions? Best regards, Boris -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/typo-list/attachments/20050426/ddbd0c28/attachment.htm From patrick at lenz.sh Tue Apr 26 17:34:51 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 26 17:29:06 2005 Subject: [typo] Flickr aggregator not working in 2.0? In-Reply-To: <200504262122.j3QLMWaX006009@smtp-vbr8.xs4all.nl> References: <200504262122.j3QLMWaX006009@smtp-vbr8.xs4all.nl> Message-ID: On 26.04.2005, at 23:23, boris wrote: > I'm trying to get the flicker aggregation working. In the file > view/layouts/articles.rhtml i've removed the # sign an inserted my > flicker url. In the previous release (1.x) this worked instantly, but > now it will not display images. The aggregation is working fine on my blog. Are you sure you pass the RSS URL to the aggregator and not the web URL? A sample URL would be: http://flickr.com/services/feeds/photos_public.gne? id=37581743@N00&format=rss_200 If you indeed have the right URL, you might want to comment out the "rescue" statement on line 14 of typo/app/helpers/application_helper.rb and try again which will reveal any code errors we might have erroneously stuck into the 2.0 release. Regards, -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From boris at bitslapped.nl Tue Apr 26 17:59:26 2005 From: boris at bitslapped.nl (boris) Date: Tue Apr 26 17:52:12 2005 Subject: [typo] Flickr aggregator not working in 2.0? In-Reply-To: Message-ID: <200504262158.j3QLwAFr021571@smtp-vbr8.xs4all.nl> Thanks Patrick, it's working now! I'm new to all the Ruby and Rails stuff, so I was unaware of the rescue statement. Commenting out the rescue statement gave a hint. I only have 3 images in my Flickr album which gave an error on this line: for pic in flickr.choose(4) Changing this to (3) fixed this for now. Oh, and as I forgot to mention this in my previous post, Typo's really cool stuff! Boris -----Original Message----- From: typo-list-bounces@rubyforge.org [mailto:typo-list-bounces@rubyforge.org] On Behalf Of Patrick Lenz Sent: dinsdag 26 april 2005 23:35 To: typo-list@rubyforge.org Subject: Re: [typo] Flickr aggregator not working in 2.0? On 26.04.2005, at 23:23, boris wrote: > I'm trying to get the flicker aggregation working. In the file > view/layouts/articles.rhtml i've removed the # sign an inserted my > flicker url. In the previous release (1.x) this worked instantly, but > now it will not display images. The aggregation is working fine on my blog. Are you sure you pass the RSS URL to the aggregator and not the web URL? A sample URL would be: http://flickr.com/services/feeds/photos_public.gne? id=37581743@N00&format=rss_200 If you indeed have the right URL, you might want to comment out the "rescue" statement on line 14 of typo/app/helpers/application_helper.rb and try again which will reveal any code errors we might have erroneously stuck into the 2.0 release. Regards, -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] _______________________________________________ Typo-list mailing list Typo-list@rubyforge.org http://rubyforge.org/mailman/listinfo/typo-list From patrick at lenz.sh Tue Apr 26 18:47:07 2005 From: patrick at lenz.sh (Patrick Lenz) Date: Tue Apr 26 18:41:11 2005 Subject: [typo] Flickr aggregator not working in 2.0? In-Reply-To: <200504262158.j3QLwAFr021571@smtp-vbr8.xs4all.nl> References: <200504262158.j3QLwAFr021571@smtp-vbr8.xs4all.nl> Message-ID: On 26.04.2005, at 23:59, boris wrote: > I'm new to all the Ruby and Rails stuff, so I was unaware of the rescue > statement. Commenting out the rescue statement gave a hint. I only > have 3 > images in my Flickr album which gave an error on this line: > for pic in flickr.choose(4) > > Changing this to (3) fixed this for now. Whew, that's right. I applied a fix in changeset [246], a (one line) diff is available here: http://typo.leetsoft.com/trac.cgi/changeset/246?format=diff Thanks for the bugreport! -- Patrick Lenz (scoop) patrick@lenz.sh Phone: +49-611-333-4722 Mobile: +49-179-202-6678 [ poocs.net - freshmeat.net - rsmodels.net - topmedia.de - wiesbadeneins.de ] From tobias.luetke at gmail.com Tue Apr 26 23:56:49 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Tue Apr 26 23:50:51 2005 Subject: [typo] Regarding 2.5 and podcasting In-Reply-To: <9963c1bd05042620393ef06c3b@mail.gmail.com> References: <9963c1bd05042620393ef06c3b@mail.gmail.com> Message-ID: <9963c1bd050426205640677dac@mail.gmail.com> Hey. One of the features I would really like for the 2.5 release of typo is podcasting. The idea is that when you post a article from the desktop client with a link to an mp3 typo should add the envelop header to the RSS. The admin interface could use the really cool file upload stuff madrobby has been working on. Unfortunately atom doesn't support podcasts at all. I'm starting to think that the atom support could be phased out. I recently learned that atom was basically created because random guy a didn't like random guy b. What are your thoughts? How can we make typo the best podcasting blog available? -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From seant at superchannel.org Wed Apr 27 06:20:08 2005 From: seant at superchannel.org (Sean Treadway) Date: Wed Apr 27 06:14:10 2005 Subject: [typo] Regarding 2.5 and podcasting In-Reply-To: <9963c1bd050426205640677dac@mail.gmail.com> References: <9963c1bd05042620393ef06c3b@mail.gmail.com> <9963c1bd050426205640677dac@mail.gmail.com> Message-ID: +1 I'm leading the development of the Upload Progress code after implementing the backend, reimplementing the Ajax helpers, integrating it tightly into ActionPack and documenting the API. DHH says that the patch should be coming into the rails trunk when it stabilizes. What better way to stabilize than to test in different environments! For the uploading, I suggest that you go ahead with the podcasting branch and start with the basic form uploading. The upload progress patch should mature at about the same rate. One of the goals of the progress is that it should be very easy to convert a traditional multipart form to a form with upload progress so integration should be smooth. http://sean.treadway.info/files/howto-upload-progress.mov Also, talking with the guys over at Odeo could shed some light on what technologies are available, adopted and user friendly. Maybe it can be done backwards where the podcast uploads go to Odeo and an Odeo aggregator can be added to Typo... ? Willing to help in any way, -Sean On Apr 27, 2005, at 5:56 AM, Tobias Luetke wrote: > Hey. > > One of the features I would really like for the 2.5 release of typo is > podcasting. > The idea is that when you post a article from the desktop client with > a link to an mp3 typo should add the envelop header to the RSS. The > admin interface could use the really cool file upload stuff madrobby > has been working on. > Unfortunately atom doesn't support podcasts at all. I'm starting to > think that the atom support could be phased out. I recently learned > that atom was basically created because random guy a didn't like > random guy b. > > What are your thoughts? How can we make typo the best podcasting > blog available? > > -- > Tobi > http://www.snowdevil.ca - Snowboards that don't suck > http://www.hieraki.org - Open source book authoring > http://blog.leetsoft.com - Technical weblog > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From pelletierm at eastmedia.net Thu Apr 28 00:43:18 2005 From: pelletierm at eastmedia.net (Matt Pelletier) Date: Thu Apr 28 00:39:52 2005 Subject: [typo] Question about app design choices for classes with HABTM Message-ID: <427069E6.2070709@eastmedia.net> I noticed that in Admin you can only add/remove Categories to/from an Article once the Article has already been created. I wanted to know if that was a deliberate design choice made to avoid an issue I happen to be running into in my own app (which for these purposes uses the same simple HABTM relationship as Article/Categories). I have tried to allow one or more Categories to be added to an Article in the 'create' method of the Article controller. Using a single or multiple select control I can display existing categories in the _form.rhtml partial without a problem, but when submitting the form (with no modification to the scaffold-generated 'create' method), I receive the error: ---------------- AssociationTypeMismatch in Admin/articles#create Category expected, got String ---------------- This is getting thrown by the first line in the 'create' method: @article = Article.new(@params["article"]) Both the Category and Article models have HABTM declarations referencing one another, and the db tables are properly named (articles, categories, articles_categories). I already have at least two Categories. I have set this up so that the IDs of the Categories are either sent as an array, which appears in the Request parameters, or as just a single ID ("categories" => "2") which is the result when I use just a single select in the form. All techniques result in the same problem. Now, before I solicit tips, is there something basic I am missing (i.e. You can't create a new class if HABTM relationship names have form elements?). Where/how is a new instance of an Article supposed to know that if it has a reflexive HABTM relationship to another class whose name is a form field then that field's value(s) are existing IDs of that other class? I was going to ask this last week, but figured I'd wait until Typo 2.0 came out to see if it was addressed. Since it has been addressed, and since the chosen approach implies a common underlying issue, I now ask: what gives? I think it's fair to assume it is a better app design choice to be able to add Categories to an Article on create, not just once an Article exists. Thanks, Matt From tobias.luetke at gmail.com Thu Apr 28 01:00:13 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Thu Apr 28 00:54:19 2005 Subject: [typo] Question about app design choices for classes with HABTM In-Reply-To: <427069E6.2070709@eastmedia.net> References: <427069E6.2070709@eastmedia.net> Message-ID: <9963c1bd0504272200628e9809@mail.gmail.com> Well, I basically just coded it the way it is because I didn't want to spend a lot of time on it. The current way only took 5 mins to implement and works fairly well. It should be pretty easy to implement it in other ways as well. You can use a multi select form field or a list with checkboxes on your form. Just delete the categories array from the @params, get the proper object with find and push or << it into the habm On 4/27/05, Matt Pelletier wrote: > I noticed that in Admin you can only add/remove Categories to/from an > Article once the Article has already been created. I wanted to know if > that was a deliberate design choice made to avoid an issue I happen to > be running into in my own app (which for these purposes uses the same > simple HABTM relationship as Article/Categories). > > I have tried to allow one or more Categories to be added to an Article > in the 'create' method of the Article controller. Using a single or > multiple select control I can display existing categories in the > _form.rhtml partial without a problem, but when submitting the form > (with no modification to the scaffold-generated 'create' method), I > receive the error: > > ---------------- > AssociationTypeMismatch in Admin/articles#create > > Category expected, got String > ---------------- > > This is getting thrown by the first line in the 'create' method: > @article = Article.new(@params["article"]) > > Both the Category and Article models have HABTM declarations referencing > one another, and the db tables are properly named (articles, categories, > articles_categories). I already have at least two Categories. > > I have set this up so that the IDs of the Categories are either sent as > an array, which appears in the Request parameters, or as just a single > ID ("categories" => "2") which is the result when I use just a single > select in the form. All techniques result in the same problem. > > Now, before I solicit tips, is there something basic I am missing (i.e. > You can't create a new class if HABTM relationship names have form > elements?). Where/how is a new instance of an Article supposed to know > that if it has a reflexive HABTM relationship to another class whose > name is a form field then that field's value(s) are existing IDs of that > other class? > > I was going to ask this last week, but figured I'd wait until Typo 2.0 > came out to see if it was addressed. Since it has been addressed, and > since the chosen approach implies a common underlying issue, I now ask: > what gives? I think it's fair to assume it is a better app design choice > to be able to add Categories to an Article on create, not just once an > Article exists. > > Thanks, > Matt > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From pelletierm at eastmedia.net Thu Apr 28 01:21:38 2005 From: pelletierm at eastmedia.net (Matt Pelletier) Date: Thu Apr 28 01:18:07 2005 Subject: [typo] Question about app design choices for classes with HABTM In-Reply-To: <9963c1bd0504272200628e9809@mail.gmail.com> References: <427069E6.2070709@eastmedia.net> <9963c1bd0504272200628e9809@mail.gmail.com> Message-ID: <427072E2.9070301@eastmedia.net> Ah. I hadn't thought of altering the @params. The multi-select and checkboxes I have tried, but the common problem is the fact that the 'categories' param values are seen as strings instead of IDs that map to existing categories. I thought with HABTM relationships setup this would be automatic. Is there a standard way of dealing with this problem? I feel like with all the intuitive aspects of CRUD this should be a cakewalk. It is likely my newbie-ness causing the confusion. Thanks. Typo is a cool app and has been quite instructive as I've been learning the ropes. Matt Tobias Luetke wrote: > Well, I basically just coded it the way it is because I didn't want to > spend a lot of time on it. The current way only took 5 mins to > implement and works fairly well. > > It should be pretty easy to implement it in other ways as well. You > can use a multi select form field or a list with checkboxes on your > form. Just delete the categories array from the @params, get the > proper object with find and push or << it into the habm > > On 4/27/05, Matt Pelletier wrote: > >>I noticed that in Admin you can only add/remove Categories to/from an >>Article once the Article has already been created. I wanted to know if >>that was a deliberate design choice made to avoid an issue I happen to >>be running into in my own app (which for these purposes uses the same >>simple HABTM relationship as Article/Categories). >> >>I have tried to allow one or more Categories to be added to an Article >>in the 'create' method of the Article controller. Using a single or >>multiple select control I can display existing categories in the >>_form.rhtml partial without a problem, but when submitting the form >>(with no modification to the scaffold-generated 'create' method), I >>receive the error: >> >>---------------- >>AssociationTypeMismatch in Admin/articles#create >> >>Category expected, got String >>---------------- >> >>This is getting thrown by the first line in the 'create' method: >>@article = Article.new(@params["article"]) >> >>Both the Category and Article models have HABTM declarations referencing >>one another, and the db tables are properly named (articles, categories, >>articles_categories). I already have at least two Categories. >> >>I have set this up so that the IDs of the Categories are either sent as >>an array, which appears in the Request parameters, or as just a single >>ID ("categories" => "2") which is the result when I use just a single >>select in the form. All techniques result in the same problem. >> >>Now, before I solicit tips, is there something basic I am missing (i.e. >>You can't create a new class if HABTM relationship names have form >>elements?). Where/how is a new instance of an Article supposed to know >>that if it has a reflexive HABTM relationship to another class whose >>name is a form field then that field's value(s) are existing IDs of that >>other class? >> >>I was going to ask this last week, but figured I'd wait until Typo 2.0 >>came out to see if it was addressed. Since it has been addressed, and >>since the chosen approach implies a common underlying issue, I now ask: >>what gives? I think it's fair to assume it is a better app design choice >>to be able to add Categories to an Article on create, not just once an >>Article exists. >> >>Thanks, >>Matt >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From victor-typo at carotena.net Thu Apr 28 04:04:19 2005 From: victor-typo at carotena.net (Victor Jalencas) Date: Thu Apr 28 17:22:46 2005 Subject: [typo] How to add custom code & layout Message-ID: <42709903.9060309@carotena.net> Hi, I have a question regarding the customization of my blog. I'd like to keep current with the latest developments of typo, but don't want to be reediting the code to apply my modifications every time I synchronize with SVN head. These customizations would include my own layout and stylesheet -once I get to modifying them- but mostly my own tiny bits of code -like the one that fetches the favicon of the commenters and puts it next to their comments (you can see this working in my blog at victor.carotena.net/weblog) Is there a supported way, or better an API, that I haven't noticed to implement plugins like that? My modifications certainly don't interest most users, that's why I ain't submitting them as patches, but perhaps would be useful to a handful if they were optional. cheers, Victor From anoop at ranganath.com Thu Apr 28 20:54:00 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Thu Apr 28 20:48:00 2005 Subject: [typo] using typo without virtualhost Message-ID: I'm posting this here because I replied to someone with it off list and thought others of you might find it useful: I added one line to the .htaccess file after "RewriteEngine On": RewriteEngine On RewriteBase /~anoop/blog My installation is available at http://ranganath.com/~anoop/blog The other trick was symlinks. My typo installation is not in my public_html folder. Instead I have symlink at ~/public_html/blog that links to typo/public Anoop From anoop at ranganath.com Thu Apr 28 20:56:14 2005 From: anoop at ranganath.com (Anoop Ranganath) Date: Thu Apr 28 20:50:13 2005 Subject: [typo] using typo without virtualhost In-Reply-To: References: Message-ID: Also, as a note to all the developers out there, please don't create links with absolute urls! Either use relative urls or ActionPack helper methods to generate your links. Anoop On Apr 28, 2005, at 8:54 PM, Anoop Ranganath wrote: > I'm posting this here because I replied to someone with it off list > and thought others of you might find it useful: > > I added one line to the .htaccess file after "RewriteEngine On": > > RewriteEngine On > RewriteBase /~anoop/blog > > My installation is available at http://ranganath.com/~anoop/blog > > The other trick was symlinks. My typo installation is not in my > public_html folder. Instead I have symlink at ~/public_html/blog that > links to typo/public > > Anoop > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list From seant at superchannel.org Thu Apr 28 21:39:44 2005 From: seant at superchannel.org (Sean Treadway) Date: Thu Apr 28 21:33:43 2005 Subject: [typo] How to add custom code & layout In-Reply-To: <42709903.9060309@carotena.net> References: <42709903.9060309@carotena.net> Message-ID: <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> Hi Victor, I had the same desire and have made a recipe to keep up-to-date with the Typo SVN. There is a comment by Jeremy Kemper that you can also use svk to accomplish the same effect, but give this a try if you don't want to depend on svk. http://sean.treadway.info/articles/2005/04/12/keeping-in-sync-with-typo -Sean On Apr 28, 2005, at 10:04 AM, Victor Jalencas wrote: > Hi, > > I have a question regarding the customization of my blog. I'd like > to keep current with the latest developments of typo, but don't > want to be reediting the code to apply my modifications every time > I synchronize with SVN head. > > These customizations would include my own layout and stylesheet - > once I get to modifying them- but mostly my own tiny bits of code - > like the one that fetches the favicon of the commenters and puts it > next to their comments (you can see this working in my blog at > victor.carotena.net/weblog) > > Is there a supported way, or better an API, that I haven't noticed > to implement plugins like that? My modifications certainly don't > interest most users, that's why I ain't submitting them as patches, > but perhaps would be useful to a handful if they were optional. > > > cheers, > Victor > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > From tobias.luetke at gmail.com Fri Apr 29 00:48:24 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Fri Apr 29 00:42:23 2005 Subject: [typo] using typo without virtualhost In-Reply-To: References: Message-ID: <9963c1bd0504282148383180f1@mail.gmail.com> Hmm typo should be compleatly url dir agnostic. I installed it successfully by just dropping symlinks in random places on apache web servers. Are you sure the rewrite base was required? On 4/28/05, Anoop Ranganath wrote: > I'm posting this here because I replied to someone with it off list and > thought others of you might find it useful: > > I added one line to the .htaccess file after "RewriteEngine On": > > RewriteEngine On > RewriteBase /~anoop/blog > > My installation is available at http://ranganath.com/~anoop/blog > > The other trick was symlinks. My typo installation is not in my > public_html folder. Instead I have symlink at ~/public_html/blog that > links to typo/public > > Anoop > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From tobias.luetke at gmail.com Fri Apr 29 00:49:15 2005 From: tobias.luetke at gmail.com (Tobias Luetke) Date: Fri Apr 29 00:43:14 2005 Subject: [typo] How to add custom code & layout In-Reply-To: <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> References: <42709903.9060309@carotena.net> <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> Message-ID: <9963c1bd050428214951ff8ecd@mail.gmail.com> I also highly recommend svk. It does exactly the same as the blog post describes with just one command. On 4/28/05, Sean Treadway wrote: > Hi Victor, > > I had the same desire and have made a recipe to keep up-to-date with > the Typo SVN. There is a comment by Jeremy Kemper that you can also > use svk to accomplish the same effect, but give this a try if you > don't want to depend on svk. > > http://sean.treadway.info/articles/2005/04/12/keeping-in-sync-with-typo > > -Sean > > On Apr 28, 2005, at 10:04 AM, Victor Jalencas wrote: > > > Hi, > > > > I have a question regarding the customization of my blog. I'd like > > to keep current with the latest developments of typo, but don't > > want to be reediting the code to apply my modifications every time > > I synchronize with SVN head. > > > > These customizations would include my own layout and stylesheet - > > once I get to modifying them- but mostly my own tiny bits of code - > > like the one that fetches the favicon of the commenters and puts it > > next to their comments (you can see this working in my blog at > > victor.carotena.net/weblog) > > > > Is there a supported way, or better an API, that I haven't noticed > > to implement plugins like that? My modifications certainly don't > > interest most users, that's why I ain't submitting them as patches, > > but perhaps would be useful to a handful if they were optional. > > > > > > cheers, > > Victor > > _______________________________________________ > > Typo-list mailing list > > Typo-list@rubyforge.org > > http://rubyforge.org/mailman/listinfo/typo-list > > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- Tobi http://www.snowdevil.ca - Snowboards that don't suck http://www.hieraki.org - Open source book authoring http://blog.leetsoft.com - Technical weblog From victor-typo at carotena.net Fri Apr 29 04:02:01 2005 From: victor-typo at carotena.net (Victor Jalencas) Date: Fri Apr 29 03:56:07 2005 Subject: [typo] How to add custom code & layout In-Reply-To: <9963c1bd050428214951ff8ecd@mail.gmail.com> References: <42709903.9060309@carotena.net> <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> <9963c1bd050428214951ff8ecd@mail.gmail.com> Message-ID: <4271E9F9.50800@carotena.net> Si, if I were to release a couple of plugins, would I distribute them as a patch? Or point people to my repository? Tobias Luetke wrote: > I also highly recommend svk. It does exactly the same as the blog post > describes with just one command. > > On 4/28/05, Sean Treadway wrote: > >>Hi Victor, >> >>I had the same desire and have made a recipe to keep up-to-date with >>the Typo SVN. There is a comment by Jeremy Kemper that you can also >>use svk to accomplish the same effect, but give this a try if you >>don't want to depend on svk. >> >>http://sean.treadway.info/articles/2005/04/12/keeping-in-sync-with-typo >> >>-Sean >> >>On Apr 28, 2005, at 10:04 AM, Victor Jalencas wrote: >> >> >>>Hi, >>> >>> I have a question regarding the customization of my blog. I'd like >>>to keep current with the latest developments of typo, but don't >>>want to be reediting the code to apply my modifications every time >>>I synchronize with SVN head. >>> >>> These customizations would include my own layout and stylesheet - >>>once I get to modifying them- but mostly my own tiny bits of code - >>>like the one that fetches the favicon of the commenters and puts it >>>next to their comments (you can see this working in my blog at >>>victor.carotena.net/weblog) >>> >>> Is there a supported way, or better an API, that I haven't noticed >>>to implement plugins like that? My modifications certainly don't >>>interest most users, that's why I ain't submitting them as patches, >>>but perhaps would be useful to a handful if they were optional. >>> >>> >>>cheers, >>>Victor >>>_______________________________________________ >>>Typo-list mailing list >>>Typo-list@rubyforge.org >>>http://rubyforge.org/mailman/listinfo/typo-list >>> >> >>_______________________________________________ >>Typo-list mailing list >>Typo-list@rubyforge.org >>http://rubyforge.org/mailman/listinfo/typo-list >> > > > From gilles.cherix at gmail.com Sat Apr 30 05:14:41 2005 From: gilles.cherix at gmail.com (Gilles Cherix) Date: Sat Apr 30 10:36:33 2005 Subject: [typo] Document markup freeze for article? In-Reply-To: <9963c1bd050428214951ff8ecd@mail.gmail.com> References: <42709903.9060309@carotena.net> <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> <9963c1bd050428214951ff8ecd@mail.gmail.com> Message-ID: Hi all, Congratulations for the latest release (and the new design), it's everyday more fun to use Ruby on Rails and Typo! I love the new design of Typo, but I would like to keep my personalized one... and I'm probably not the only one. Unfortunately the new release break the html markup in articles.rhtml. That's okay if it happens once but it can be annoying if every release breaks our CSS. Moreover at a certain point in future it'll be nice to have a sort of a theme engine for Typo. With CSS it will be quite easy to add new designs using alternative style sheets. We just need to be careful when designing the markup in the styled documents. So my question is the following: is there any discussion about the inside of articles.rhtml should be or is the markup just an adhoc derivation in order to support the azure design? I'm at the moment digging into CSS/(X)HTML so I'd be glad to take care of this part of the work, although it would be nice if someone with an another point of view would argue with me so that I'm not the only one to take decisions. What do you think? gilles -- "Design" is like a religion - too much of it makes you inflexible and unpopular. -- Linus Torvalds -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/typo-list/attachments/20050430/88385899/attachment.htm From typo at isolated-designs.net Sat Apr 30 15:47:05 2005 From: typo at isolated-designs.net (Justin Palmer) Date: Sat Apr 30 15:41:02 2005 Subject: [typo] Document markup freeze for article? In-Reply-To: References: <42709903.9060309@carotena.net> <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> <9963c1bd050428214951ff8ecd@mail.gmail.com> Message-ID: <4273E0B9.4010607@isolated-designs.net> Hi Gilles, I had a long answer to your question typed out, but after speaking with the other developers I believe we've found a solution to this problem. Currently the primary layout file dictates the look and feel of your site (articles.rhtml) , this file is sprinkled with partials that contain basic markup to support whatever they contain. By creating a new myarticles.rhtml, etc you can easily change the look of your site and you can also svn up without breaking anything. This hasn't been implemented yet, but be aware that it is being discussed and we are working on this! Cheers, -Justin Gilles Cherix wrote: > Hi all, > > Congratulations for the latest release (and the new design), it's > everyday more fun to use Ruby on Rails and Typo! > > I love the new design of Typo, but I would like to keep my > personalized one... and I'm probably not the only one. Unfortunately > the new release break the html markup in articles.rhtml. That's okay > if it happens once but it can be annoying if every release breaks our CSS. > > Moreover at a certain point in future it'll be nice to have a sort of > a theme engine for Typo. With CSS it will be quite easy to add new > designs using alternative style sheets. We just need to be careful > when designing the markup in the styled documents. So my question is > the following: is there any discussion about the inside of > articles.rhtml should be or is the markup just an adhoc derivation in > order to support the azure design? > > I'm at the moment digging into CSS/(X)HTML so I'd be glad to take care > of this part of the work, although it would be nice if someone with an > another point of view would argue with me so that I'm not the only one > to take decisions. > > What do you think? > gilles > > -- > > > "Design" is like a religion - too much of it makes you inflexible and > unpopular. -- Linus Torvalds > >------------------------------------------------------------------------ > >_______________________________________________ >Typo-list mailing list >Typo-list@rubyforge.org >http://rubyforge.org/mailman/listinfo/typo-list > > From gilles.cherix at gmail.com Sat Apr 30 16:25:24 2005 From: gilles.cherix at gmail.com (Gilles Cherix) Date: Sat Apr 30 16:17:04 2005 Subject: [typo] Document markup freeze for article? In-Reply-To: <4273E0B9.4010607@isolated-designs.net> References: <42709903.9060309@carotena.net> <3AA01513-D0AB-42D7-8125-D420E7E4B511@superchannel.org> <9963c1bd050428214951ff8ecd@mail.gmail.com> <4273E0B9.4010607@isolated-designs.net> Message-ID: <6C3189F8-3A58-4957-85AD-C85DB746EC8A@gmail.com> That's one of the solution I was thinking about. Another one was this : Would it be possible to package a .diff with the .css in an archive that would be used as a theme package? The diff would modify the articles to fit the stylesheet when the user select the theme in the admin interface? P.S. Sorry tobi for the wrong subscription Le 30 avr. 05 ? 21:47, Justin Palmer a ?crit : > Hi Gilles, > I had a long answer to your question typed out, but after > speaking with the other developers I believe we've found a solution > to this problem. > Currently the primary layout file dictates the look and feel of > your site (articles.rhtml) , this file is sprinkled with partials > that contain basic markup > to support whatever they contain. By creating a new > myarticles.rhtml, etc you can easily change the look of your site > and you can also svn up without > breaking anything. > > This hasn't been implemented yet, but be aware that it is being > discussed and we are working on this! > > Cheers, > -Justin > > > Gilles Cherix wrote: > > >> Hi all, >> >> Congratulations for the latest release (and the new design), it's >> everyday more fun to use Ruby on Rails and Typo! >> >> I love the new design of Typo, but I would like to keep my >> personalized one... and I'm probably not the only one. >> Unfortunately the new release break the html markup in >> articles.rhtml. That's okay if it happens once but it can be >> annoying if every release breaks our CSS. >> >> Moreover at a certain point in future it'll be nice to have a sort >> of a theme engine for Typo. With CSS it will be quite easy to add >> new designs using alternative style sheets. We just need to be >> careful when designing the markup in the styled documents. So my >> question is the following: is there any discussion about the >> inside of articles.rhtml should be or is the markup just an adhoc >> derivation in order to support the azure design? >> >> I'm at the moment digging into CSS/(X)HTML so I'd be glad to take >> care of this part of the work, although it would be nice if >> someone with an another point of view would argue with me so that >> I'm not the only one to take decisions. >> >> What do you think? >> gilles >> >> -- >> >> >> "Design" is like a religion - too much of it makes you inflexible >> and unpopular. -- Linus Torvalds >> >> --------------------------------------------------------------------- >> --- >> >> _______________________________________________ >> Typo-list mailing list >> Typo-list@rubyforge.org >> http://rubyforge.org/mailman/listinfo/typo-list >> >> > > > _______________________________________________ > Typo-list mailing list > Typo-list@rubyforge.org > http://rubyforge.org/mailman/listinfo/typo-list > -- "Design" is like a religion - too much of it makes you inflexible and unpopular. -- Linus Torvalds -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/typo-list/attachments/20050430/21b75ef9/attachment-0001.htm