<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Blooking Has A Community</title>
	<atom:link href="http://www.novelr.com/2008/05/22/blooking-has-a-community/feed" rel="self" type="application/rss+xml" />
	<link>http://www.novelr.com/2008/05/22/blooking-has-a-community</link>
	<description>Hacking Publishing</description>
	<lastBuildDate>Mon, 06 Feb 2012 12:58:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2544</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Fri, 30 May 2008 17:47:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2544</guid>
		<description>I&#039;ve talked to the other 5 people on board, and we&#039;ve decided that the project has enough people for the pre-launch stage. Spotty, Allan, thanks for offering your help and time. I deeply appreciate your offer. But as my main objective at this pre-launch stage is to keep the team as lean as possible. I&#039;ll get back to the two of you as soon as it seems we might have a chance of pulling this off.

Thank you.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve talked to the other 5 people on board, and we&#8217;ve decided that the project has enough people for the pre-launch stage. Spotty, Allan, thanks for offering your help and time. I deeply appreciate your offer. But as my main objective at this pre-launch stage is to keep the team as lean as possible. I&#8217;ll get back to the two of you as soon as it seems we might have a chance of pulling this off.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2523</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Wed, 28 May 2008 07:12:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2523</guid>
		<description>Right. Thanks, Chris. It&#039;ll be a lot easier for me to make a choice now. =)</description>
		<content:encoded><![CDATA[<p>Right. Thanks, Chris. It&#8217;ll be a lot easier for me to make a choice now. =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2522</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Tue, 27 May 2008 15:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2522</guid>
		<description>Hi Eli -- It&#039;s really hard to quantify that.  PHP is a procedural language, so you think about doing one thing at a time, step by step.  Some people find that easy to grasp.  XSL is more a functional language, so you think about capturing a description of how to do any one thing, and let the language itself worry about stringing them together.  In a way, it&#039;s a more abstract way of describing what you want -- with XSL, you tell the system *what* you want, instead of *how* do make it happen.  Some people find *that* easier to grasp.

If you are doing purely HTML template stuff, I think you&#039;ll find XSL pretty much comparable to PHP in terms of difficulty (but a lot more verbose).  But, in reality, you aren&#039;t likely to be doing the same things.  XSL is a closed language -- there are only a certain number of types of things you can do with it.  You won&#039;t be running database queries from inside XSL, for instance.  You won&#039;t be dealing with session variables from inside XSL.  You won&#039;t be doing any of the things that makes PHP both flexible and more involved.  You&#039;ll essentially be translating from whatever the engine handed you into whatever you want it to look like, and nothing else.

PHP, OTOH, will allow you to do additional stuff.  If the data you are given isn&#039;t quite what you want, you can change it, or recreate it, or do all sorts of things the PHP and WordPress environment allow you to do.  That&#039;s where you&#039;ll find the big difference between the two languages for templating.

One last thing -- when looking over the Symphony FAQ yesterday, I found this at the bottom: 

&quot;That said, Symphony is unmistakably designed for developers. [...]  If you&#039;re looking for an application that takes care of the technical side of things for you, then Symphony is probably not the best choice.&quot;

It looks to me that, unless Symphony already does *exactly* what you need in terms of collection and creation of data -- so that all you need to do is translate what it hands you into pretty HTML -- you are going to be learning XSL *and* PHP, and you&#039;ll be writing the hard kind of PHP to get it to do what you need.  I can&#039;t say that for sure, not having used it, but that&#039;s the way it sounds to me.  In which case, given what you&#039;ve said, I&#039;d advise you to go with WordPress -- there are an *awful* lot of plugins out there that can probably do all of the hard stuff for you, leaving you with relatively simple templating jobs to do in PHP.

Chris.</description>
		<content:encoded><![CDATA[<p>Hi Eli &#8212; It&#8217;s really hard to quantify that.  PHP is a procedural language, so you think about doing one thing at a time, step by step.  Some people find that easy to grasp.  XSL is more a functional language, so you think about capturing a description of how to do any one thing, and let the language itself worry about stringing them together.  In a way, it&#8217;s a more abstract way of describing what you want &#8212; with XSL, you tell the system *what* you want, instead of *how* do make it happen.  Some people find *that* easier to grasp.</p>
<p>If you are doing purely HTML template stuff, I think you&#8217;ll find XSL pretty much comparable to PHP in terms of difficulty (but a lot more verbose).  But, in reality, you aren&#8217;t likely to be doing the same things.  XSL is a closed language &#8212; there are only a certain number of types of things you can do with it.  You won&#8217;t be running database queries from inside XSL, for instance.  You won&#8217;t be dealing with session variables from inside XSL.  You won&#8217;t be doing any of the things that makes PHP both flexible and more involved.  You&#8217;ll essentially be translating from whatever the engine handed you into whatever you want it to look like, and nothing else.</p>
<p>PHP, OTOH, will allow you to do additional stuff.  If the data you are given isn&#8217;t quite what you want, you can change it, or recreate it, or do all sorts of things the PHP and WordPress environment allow you to do.  That&#8217;s where you&#8217;ll find the big difference between the two languages for templating.</p>
<p>One last thing &#8212; when looking over the Symphony FAQ yesterday, I found this at the bottom: </p>
<p>&#8220;That said, Symphony is unmistakably designed for developers. [...]  If you&#8217;re looking for an application that takes care of the technical side of things for you, then Symphony is probably not the best choice.&#8221;</p>
<p>It looks to me that, unless Symphony already does *exactly* what you need in terms of collection and creation of data &#8212; so that all you need to do is translate what it hands you into pretty HTML &#8212; you are going to be learning XSL *and* PHP, and you&#8217;ll be writing the hard kind of PHP to get it to do what you need.  I can&#8217;t say that for sure, not having used it, but that&#8217;s the way it sounds to me.  In which case, given what you&#8217;ve said, I&#8217;d advise you to go with WordPress &#8212; there are an *awful* lot of plugins out there that can probably do all of the hard stuff for you, leaving you with relatively simple templating jobs to do in PHP.</p>
<p>Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2521</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Tue, 27 May 2008 12:51:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2521</guid>
		<description>Right. I understand only half of what you&#039;ve written, but I&#039;ll be coming back here to reference your comments once I start learning the language(s). One last question, though: which, in your opinion, is easier to learn - XSLT or PHP?</description>
		<content:encoded><![CDATA[<p>Right. I understand only half of what you&#8217;ve written, but I&#8217;ll be coming back here to reference your comments once I start learning the language(s). One last question, though: which, in your opinion, is easier to learn &#8211; XSLT or PHP?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2511</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Tue, 27 May 2008 03:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2511</guid>
		<description>Well that worked.  Too bad I typed it wrong.  Last try (I promise):

lt xsl:if test=&quot;@attr&quot; gt lt xsl:value-of select=&quot;@attr&quot; / gt lt / xsl:if gt</description>
		<content:encoded><![CDATA[<p>Well that worked.  Too bad I typed it wrong.  Last try (I promise):</p>
<p>lt xsl:if test=&#8221;@attr&#8221; gt lt xsl:value-of select=&#8221;@attr&#8221; / gt lt / xsl:if gt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2510</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Tue, 27 May 2008 03:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2510</guid>
		<description>Fine.  Imagine I&#039;d type the greater than and less than signs.  :-)

lt xsl:if    gt lt xsl:value-of select=&quot;@attr&quot; / gt  lt / xsl:if gt</description>
		<content:encoded><![CDATA[<p>Fine.  Imagine I&#8217;d type the greater than and less than signs.  :-)</p>
<p>lt xsl:if    gt lt xsl:value-of select=&#8221;@attr&#8221; / gt  lt / xsl:if gt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2509</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Tue, 27 May 2008 03:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2509</guid>
		<description>Hmm, looks like the comment system stripped out my XSL sample.  I&#039;ll try again:   </description>
		<content:encoded><![CDATA[<p>Hmm, looks like the comment system stripped out my XSL sample.  I&#8217;ll try again:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2508</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Tue, 27 May 2008 03:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2508</guid>
		<description>Hi Eli,

I haven&#039;t used Symphony, so I can&#039;t really comment.  The website for it certainly looks like the people writing it care about making it good, so it might indeed be great.

But you should be clear: XSL is still programming -- only the &quot;names&quot; are different from what you&#039;d do in your average PHP template.  Instead of writing a &quot;for&quot; loop and printing variables at various places in an otherwise HTML file, you write an XSL stylesheet that contains various XSL templates that are executed when a certain structure is matched in the working data, that select nodes from the source XML and expand elements into a new XML structure (XHTML, for instance). 

Or, to be a bit less obtuse, instead of writing something like &quot;if( $var ) { echo $var; }&quot;, you&#039;d write something like &quot;&quot;.  Mostly what you&#039;ll notice different is that the XSL will take a *lot* more typing to do the same thing.

That said, if you are working with tree-structured data as a source, XSL will end up being *way* easier than walking trees in PHP (I generate my CV in various formats from an XML file and XSL, for instance).  But I&#039;m not sure I hear any significant tree-structured data in what you&#039;re talking about.  It sounds more like you are doing a basic database-backed portal, and that&#039;s what WordPress is good at.  And it also sounds like you have a couple of PHP types already interested, so I think you&#039;ll be well served.

In the end, though, you need to be happy with the site and how it works.  If you&#039;d like an excuse to learn XSL, and this was to be it, then don&#039;t let me discourage you, by any means.  Download Symphony and give it a shot.  I&#039;m curious enough about it to pitch in, if you want.  This is your hobby (I presume), so it should make you happy.  :-)  OTOH, if you were just looking for a quick and easy solution, you should at least have a look at WordPress and what plugins are available for it.  You&#039;ll probably be able to get something up in running in much less time (ie. less than a week).

Regards . . . .</description>
		<content:encoded><![CDATA[<p>Hi Eli,</p>
<p>I haven&#8217;t used Symphony, so I can&#8217;t really comment.  The website for it certainly looks like the people writing it care about making it good, so it might indeed be great.</p>
<p>But you should be clear: XSL is still programming &#8212; only the &#8220;names&#8221; are different from what you&#8217;d do in your average PHP template.  Instead of writing a &#8220;for&#8221; loop and printing variables at various places in an otherwise HTML file, you write an XSL stylesheet that contains various XSL templates that are executed when a certain structure is matched in the working data, that select nodes from the source XML and expand elements into a new XML structure (XHTML, for instance). </p>
<p>Or, to be a bit less obtuse, instead of writing something like &#8220;if( $var ) { echo $var; }&#8221;, you&#8217;d write something like &#8220;&#8221;.  Mostly what you&#8217;ll notice different is that the XSL will take a *lot* more typing to do the same thing.</p>
<p>That said, if you are working with tree-structured data as a source, XSL will end up being *way* easier than walking trees in PHP (I generate my CV in various formats from an XML file and XSL, for instance).  But I&#8217;m not sure I hear any significant tree-structured data in what you&#8217;re talking about.  It sounds more like you are doing a basic database-backed portal, and that&#8217;s what WordPress is good at.  And it also sounds like you have a couple of PHP types already interested, so I think you&#8217;ll be well served.</p>
<p>In the end, though, you need to be happy with the site and how it works.  If you&#8217;d like an excuse to learn XSL, and this was to be it, then don&#8217;t let me discourage you, by any means.  Download Symphony and give it a shot.  I&#8217;m curious enough about it to pitch in, if you want.  This is your hobby (I presume), so it should make you happy.  :-)  OTOH, if you were just looking for a quick and easy solution, you should at least have a look at WordPress and what plugins are available for it.  You&#8217;ll probably be able to get something up in running in much less time (ie. less than a week).</p>
<p>Regards . . . .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2507</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Tue, 27 May 2008 02:24:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2507</guid>
		<description>Thanks Chris. I&#039;d like to ask about Symphony, though - is it any good? Easy to use? I&#039;m not particularly stoked about having to learn PHP and fiddling with Wordpress (doing this blog is pain enough), though if you say it&#039;s the easiest then I guess I&#039;ll give it a go.</description>
		<content:encoded><![CDATA[<p>Thanks Chris. I&#8217;d like to ask about Symphony, though &#8211; is it any good? Easy to use? I&#8217;m not particularly stoked about having to learn PHP and fiddling with WordPress (doing this blog is pain enough), though if you say it&#8217;s the easiest then I guess I&#8217;ll give it a go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Poirier</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2502</link>
		<dc:creator>Chris Poirier</dc:creator>
		<pubDate>Mon, 26 May 2008 19:45:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2502</guid>
		<description>Hi all,

I run Sarah&#039;s website for her, and she told me she was thinking of joining up with your project, so I thought I&#039;d look around.  Having read the thread, I thought I&#039;d toss in my 2 cents on the technical end.  By way of background, I&#039;ve written systems in PHP, Rails, XSL, and a variety of other technologies, and have worked with WordPress and Drupal.  

My feeling is that you&#039;ll be hard-pressed to beat WordPress for flexibility and work-effort to get stuff done.  It rocks.  And it&#039;s built to be modified, so you can do just about anything with it, often for very little work -- especially if you can find a plugin to start from (which is very likely).  It also reliably installs and upgrades with zero effort, which is definitely a big feature.

My personal experience with Rails is that the MVC stuff eventually gets in your way, as it can lead to a problem of too many trees and not enough forest.  Not to mention the fact the you can&#039;t actually separate View and Controller in web stuff, leading to a lot of messy bookkeeping.  Finally, and most unfortunately, the Rails developers keep the API a moving target, which means you may end up having to rewrite anything that isn&#039;t really simple, every time you upgrade the system.  This has been a particular problem for me with the routing system, which translates between URLs and the Ruby code that handles it.  Finding a host that will allow you to avoid that (by locking the Rails version) may prove expensive -- a lot of the cheap hosts insist on upgrading Rails every release.  

Anyway, there&#039;s my 2 cents.  Best of luck with your project!

Chris.</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>I run Sarah&#8217;s website for her, and she told me she was thinking of joining up with your project, so I thought I&#8217;d look around.  Having read the thread, I thought I&#8217;d toss in my 2 cents on the technical end.  By way of background, I&#8217;ve written systems in PHP, Rails, XSL, and a variety of other technologies, and have worked with WordPress and Drupal.  </p>
<p>My feeling is that you&#8217;ll be hard-pressed to beat WordPress for flexibility and work-effort to get stuff done.  It rocks.  And it&#8217;s built to be modified, so you can do just about anything with it, often for very little work &#8212; especially if you can find a plugin to start from (which is very likely).  It also reliably installs and upgrades with zero effort, which is definitely a big feature.</p>
<p>My personal experience with Rails is that the MVC stuff eventually gets in your way, as it can lead to a problem of too many trees and not enough forest.  Not to mention the fact the you can&#8217;t actually separate View and Controller in web stuff, leading to a lot of messy bookkeeping.  Finally, and most unfortunately, the Rails developers keep the API a moving target, which means you may end up having to rewrite anything that isn&#8217;t really simple, every time you upgrade the system.  This has been a particular problem for me with the routing system, which translates between URLs and the Ruby code that handles it.  Finding a host that will allow you to avoid that (by locking the Rails version) may prove expensive &#8212; a lot of the cheap hosts insist on upgrading Rails every release.  </p>
<p>Anyway, there&#8217;s my 2 cents.  Best of luck with your project!</p>
<p>Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2499</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Mon, 26 May 2008 06:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2499</guid>
		<description>I hear you. Will contact Sarah asap. I&#039;ll have to confer with the others on new additions to this project from now on. Hang around, Spotty, I&#039;ll get back to you soon enough.</description>
		<content:encoded><![CDATA[<p>I hear you. Will contact Sarah asap. I&#8217;ll have to confer with the others on new additions to this project from now on. Hang around, Spotty, I&#8217;ll get back to you soon enough.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spotty</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2497</link>
		<dc:creator>Spotty</dc:creator>
		<pubDate>Mon, 26 May 2008 01:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2497</guid>
		<description>Well, I&#039;m interested in helping with the programming of this sort of site too. I&#039;ve toyed with Ruby on Rails before, but I know PHP inside out, I&#039;m also good at designing how things will work together.

Also, I vouch for Sarah too! (she gave me a good, and comprehensive review after all. And gives me a kick in the pants every now and then too.)</description>
		<content:encoded><![CDATA[<p>Well, I&#8217;m interested in helping with the programming of this sort of site too. I&#8217;ve toyed with Ruby on Rails before, but I know PHP inside out, I&#8217;m also good at designing how things will work together.</p>
<p>Also, I vouch for Sarah too! (she gave me a good, and comprehensive review after all. And gives me a kick in the pants every now and then too.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sonja Nitschke</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2496</link>
		<dc:creator>Sonja Nitschke</dc:creator>
		<pubDate>Mon, 26 May 2008 00:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2496</guid>
		<description>Double vouch!</description>
		<content:encoded><![CDATA[<p>Double vouch!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gavin Williams</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2495</link>
		<dc:creator>Gavin Williams</dc:creator>
		<pubDate>Sun, 25 May 2008 20:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2495</guid>
		<description>I vouch for Ms. Sarah Suleski, she writes Alisiyad and she&#039;s awesome.</description>
		<content:encoded><![CDATA[<p>I vouch for Ms. Sarah Suleski, she writes Alisiyad and she&#8217;s awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: srsuleski</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2494</link>
		<dc:creator>srsuleski</dc:creator>
		<pubDate>Sun, 25 May 2008 18:49:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2494</guid>
		<description>I&#039;m fairly useless on any site design or programming front, but I am interested in the reviewing aspect.

I&#039;ve been doing some reading these past couple days about your idea for a filtering website.  It sounds like a promising idea to reach out to those who don&#039;t want to comb through everything that&#039;s listed on Pages Unbound or who are leery of the popular voting system which results in the Hottest Story list.

While limiting who gets to decide on which blooks are included is a fundamental part of this idea -- I do think it&#039;s important to have a good sized panel with diverse taste -- so that you&#039;re highlighting good quality blooks but not just falling into one or two people focusing on stories which appeal to their personal tastes.  I think that would be too far to the other end of the spectrum from PU (where anyone can sign up and review a story which makes it pretty easy to get friends to shower your story with 10s.)

I&#039;m still a little fuzzy on what you mean by editors (possibly because I haven&#039;t read all the comment threads in their entirety) but one of the nice aspects of self publishing online is having complete control over your own work.  Personally I would find trying to edit other people&#039;s webnovels to be a daunting and unappealing task (and that&#039;s assuming that authors would be willing to submit to this in order to have their sites listed).  But I am interested in the prospect of voting on or contributing to discussions with other &quot;panel members&quot; about which sites to include.

As a first time commenter on Novelr I&#039;m probably eliciting a &quot;who the bleep is this?&quot; reaction -- I&#039;m fairly active on the Pages Unbound forum though if you want to check up on me. ;)</description>
		<content:encoded><![CDATA[<p>I&#8217;m fairly useless on any site design or programming front, but I am interested in the reviewing aspect.</p>
<p>I&#8217;ve been doing some reading these past couple days about your idea for a filtering website.  It sounds like a promising idea to reach out to those who don&#8217;t want to comb through everything that&#8217;s listed on Pages Unbound or who are leery of the popular voting system which results in the Hottest Story list.</p>
<p>While limiting who gets to decide on which blooks are included is a fundamental part of this idea &#8212; I do think it&#8217;s important to have a good sized panel with diverse taste &#8212; so that you&#8217;re highlighting good quality blooks but not just falling into one or two people focusing on stories which appeal to their personal tastes.  I think that would be too far to the other end of the spectrum from PU (where anyone can sign up and review a story which makes it pretty easy to get friends to shower your story with 10s.)</p>
<p>I&#8217;m still a little fuzzy on what you mean by editors (possibly because I haven&#8217;t read all the comment threads in their entirety) but one of the nice aspects of self publishing online is having complete control over your own work.  Personally I would find trying to edit other people&#8217;s webnovels to be a daunting and unappealing task (and that&#8217;s assuming that authors would be willing to submit to this in order to have their sites listed).  But I am interested in the prospect of voting on or contributing to discussions with other &#8220;panel members&#8221; about which sites to include.</p>
<p>As a first time commenter on Novelr I&#8217;m probably eliciting a &#8220;who the bleep is this?&#8221; reaction &#8212; I&#8217;m fairly active on the Pages Unbound forum though if you want to check up on me. ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan T Michaels</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2489</link>
		<dc:creator>Allan T Michaels</dc:creator>
		<pubDate>Fri, 23 May 2008 22:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2489</guid>
		<description>I&#039;d also be willing to take part in this new community, in whatever capacity I can help.</description>
		<content:encoded><![CDATA[<p>I&#8217;d also be willing to take part in this new community, in whatever capacity I can help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jz</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2488</link>
		<dc:creator>jz</dc:creator>
		<pubDate>Fri, 23 May 2008 12:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2488</guid>
		<description>I haven&#039;t done anything with Symphony, but it does look interesting. I&#039;d have to look into it further to see if I&#039;d find it easy to work with, but having it use standards (XSLT) is a good thing.

Basically, I&#039;d say your major choice is configurability (Symphony, RoR or other frameworks) vs. stuff with piles of pre-written plugins (Wordpress, Joomla, Drupal...) that may or may not do exactly what you want. 

In my experience, taking the stuff with the plugins is almost always easier (and faster)--up to the point at which you start doing major modifications.  

Thus you&#039;ll have to consider whether available stuff is close enough and you just want to get it done or whether it isn&#039;t and you want to write your own (which is more fun...).</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t done anything with Symphony, but it does look interesting. I&#8217;d have to look into it further to see if I&#8217;d find it easy to work with, but having it use standards (XSLT) is a good thing.</p>
<p>Basically, I&#8217;d say your major choice is configurability (Symphony, RoR or other frameworks) vs. stuff with piles of pre-written plugins (WordPress, Joomla, Drupal&#8230;) that may or may not do exactly what you want. </p>
<p>In my experience, taking the stuff with the plugins is almost always easier (and faster)&#8211;up to the point at which you start doing major modifications.  </p>
<p>Thus you&#8217;ll have to consider whether available stuff is close enough and you just want to get it done or whether it isn&#8217;t and you want to write your own (which is more fun&#8230;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eli James</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2487</link>
		<dc:creator>Eli James</dc:creator>
		<pubDate>Fri, 23 May 2008 08:22:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2487</guid>
		<description>@jz: Corrected. Thanks for spotting that. =) 

I was actually thinking of using &lt;a href=&quot;http://21degrees.com.au/products/symphony/&quot; rel=&quot;nofollow&quot;&gt;Symphony&lt;/a&gt;, because XSLT is supposed to be a lot easier to learn for someone (me) who&#039;s already competent in XML and CSS.  Do you think it&#039;ll be easier to work with?

PS: righto, changed the link for Legion of Nothing. 

@Gavin: thanks. I&#039;ll be getting back to you soon. And yes, reviews are imminent once I&#039;ve finished reading these blooks.

@Nitshke: Thanks. I&#039;ll be in touch.

@Stormy: looks like I got down to reading at the right time, then! =)

@Windvein: Your help would be much appreciated.</description>
		<content:encoded><![CDATA[<p>@jz: Corrected. Thanks for spotting that. =) </p>
<p>I was actually thinking of using <a href="http://21degrees.com.au/products/symphony/" rel="nofollow">Symphony</a>, because XSLT is supposed to be a lot easier to learn for someone (me) who&#8217;s already competent in XML and CSS.  Do you think it&#8217;ll be easier to work with?</p>
<p>PS: righto, changed the link for Legion of Nothing. </p>
<p>@Gavin: thanks. I&#8217;ll be getting back to you soon. And yes, reviews are imminent once I&#8217;ve finished reading these blooks.</p>
<p>@Nitshke: Thanks. I&#8217;ll be in touch.</p>
<p>@Stormy: looks like I got down to reading at the right time, then! =)</p>
<p>@Windvein: Your help would be much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Windvein</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2486</link>
		<dc:creator>Windvein</dc:creator>
		<pubDate>Fri, 23 May 2008 05:06:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2486</guid>
		<description>I echo the squeeing and offer help with content either writing or editing.</description>
		<content:encoded><![CDATA[<p>I echo the squeeing and offer help with content either writing or editing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jz</title>
		<link>http://www.novelr.com/2008/05/22/blooking-has-a-community/comment-page-1#comment-2485</link>
		<dc:creator>jz</dc:creator>
		<pubDate>Thu, 22 May 2008 22:05:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.novelr.com/?p=156#comment-2485</guid>
		<description>Something I just noticed... Your link to Pages Unbound actually goes to &quot;No Man an Island.&quot; Just for what that&#039;s worth.</description>
		<content:encoded><![CDATA[<p>Something I just noticed&#8230; Your link to Pages Unbound actually goes to &#8220;No Man an Island.&#8221; Just for what that&#8217;s worth.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

