<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Grantovich.net &#187; content management</title>
	<atom:link href="http://grantovich.net/posts/tag/content-management/feed/" rel="self" type="application/rss+xml" />
	<link>http://grantovich.net</link>
	<description>Updated with astounding infrequency</description>
	<lastBuildDate>Tue, 29 Jun 2010 01:38:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Dokumenting with DokuWiki</title>
		<link>http://grantovich.net/posts/2009/06/dokumenting-with-dokuwiki/</link>
		<comments>http://grantovich.net/posts/2009/06/dokumenting-with-dokuwiki/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 02:34:18 +0000</pubDate>
		<dc:creator>Grantovich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[dokuwiki]]></category>
		<category><![CDATA[webs]]></category>
		<category><![CDATA[wikis]]></category>

		<guid isPermaLink="false">http://grantovich.net/?p=328</guid>
		<description><![CDATA[At my current summer co-op, I&#8217;ve been tasked with setting up a wiki on the company intranet to make a variety of internal documentation more accessible, editable, and revision-trackable. As far as wikis go, MediaWiki tends to be the default choice; it&#8217;s reliable, extensible, and has vastly greater mindshare than any other wiki platform thanks to the omnipresent [...]]]></description>
			<content:encoded><![CDATA[<p>At my current summer co-op, I&#8217;ve been tasked with setting up a wiki on the company intranet to make a variety of internal documentation more accessible, editable, and revision-trackable. As far as wikis go, <a href="http://www.mediawiki.org/">MediaWiki</a> tends to be the default choice; it&#8217;s reliable, extensible, and has vastly greater mindshare than any other wiki platform thanks to the omnipresent hive-mind of infallible factoids<sup style="color: #002bb8;">[citation needed]</sup> that is Wikipedia.</p>
<p>Figuring that MediaWiki was probably overkill for this project, I struck out in search of something that would be easier to install and configure for me, and easier for non-technical users to maintain. What I found was <a href="http://www.dokuwiki.org/dokuwiki">DokuWiki</a>, a somewhat minimalistic wiki platform that explicitly aims to fulfill the documentation needs of &#8220;developer teams, workgroups, and small companies.&#8221; Perfect!</p>
<p>As I soon discovered, one of DokuWiki&#8217;s distinguishing features is that it does <em>not</em> make use of a database for storage, as so many other wikis and content management systems do. This makes installation incredibly simple right off the bat: Just drop the files in a directory on your web server and go. All of your pages are stored as plain text files (e.g. another_wiki_page.txt)  in a directory hierarchy that matches the hierarchy of &#8220;namespaces&#8221; you create on the wiki. In this way, your content remains organized and perfectly readable even when you take the wiki software out of the equation.</p>
<p>For the most part, DokuWiki&#8217;s <a href="http://www.dokuwiki.org/syntax">syntax</a> is pleasant and sensical. Instead of MediaWiki&#8217;s odd multiple-single-quotes scheme, you have //slashes// for emphasis and **asterisks** for strong emphasis, which feels more intuitive. Instead of MediaWiki&#8217;s bizarre syntax differences between internal and external links, DokuWiki treats them all the same: [[link_target|Link Text]]. But then again, there are some strange and arbitrary syntax decisions on DokuWiki&#8217;s side, like the fact that the largest headings are surrounded by ======Six Equals Signs======, and the number of equals signs goes <em>down</em> by one for each sub-heading level. Weird, though I suppose it&#8217;s in the name of plain-text readability.</p>
<p>Uploading images and other files to DokuWiki is a breeze, thanks to a pop-up media manager that includes a multi-file Flash uploader and can insert wiki-links to your files with a click. Nifty media icons abound in DokuWiki&#8217;s output, with PDF files, Word documents, and more each getting their own instantly-recognizable icons. External links and email addresses also get unique icons, making them stand out nicely on the page. The &#8220;pretty by default&#8221; approach extends to text, which gets automatic curly quotes and various other typographic entities in much the same way that WordPress output does.</p>
<p>Given that I&#8217;m using DokuWiki for documentation on a company intranet, I would be remiss if I didn&#8217;t mention what an absolute cakewalk it is to integrate your own authentication scheme into it. If you already have a table of users in a database somewhere, as I did, you can set up DokuWiki to authenticate against it in the time it takes you to write a couple of SQL queries. There are other built-in authentication modules you can use, and if none of them meet your needs, writing your own is surprisingly easy (and well-documented) if you have a decent knowledge of PHP. There is also a fairly comprehensive ACL system that becomes much more useful if you set up your authentication scheme to provide &#8220;groups&#8221; to DokuWiki, or if you&#8217;re using the built-in mechanism.</p>
<p>One downside I&#8217;ve encountered in terms of usability is DokuWiki&#8217;s strict adherence to a particular naming convention for both page names and media file names: Only lowercase letters, periods, dashes, and underscores are permitted. The aesthetics of this decision leave something to be desired, especially since the name of the page you&#8217;re on is (at least in the default theme) displayed at the top in very large text, and <strong>probably:looks:ugly_as_sin</strong>. I&#8217;m not sure why capital letters and spaces are disallowed, since they are both quite safe to put in a filename. You can set an option to superficially replace the ugly page names with the contents of the first heading on the page in question, but this just makes the page&#8217;s &#8220;real name&#8221; harder to discover when you have to link to it, and the visual duplication of the page title and the first heading is far from nice-looking.</p>
<p>Thankfully, DokuWiki presents itself very well in all other aspects, and the overall package has so many good things going for it that I can&#8217;t help but give it my recommendation. If you want a lightweight, documentation-oriented wiki that feels almost as slick as WordPress but gives off a more techy vibe, DokuWiki can definitely take you there.</p>
]]></content:encoded>
			<wfw:commentRss>http://grantovich.net/posts/2009/06/dokumenting-with-dokuwiki/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress from Drupal</title>
		<link>http://grantovich.net/posts/2009/05/wordpress-from-drupal/</link>
		<comments>http://grantovich.net/posts/2009/05/wordpress-from-drupal/#comments</comments>
		<pubDate>Wed, 13 May 2009 04:49:34 +0000</pubDate>
		<dc:creator>Grantovich</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[content management]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[webs]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://grantovich.net/?p=209</guid>
		<description><![CDATA[I&#8217;ve been working with Drupal for several years now, and in fact the latest iteration of the CSH public web site (of which I am the webmaster) is built with it. However, when it came time to decide what kind of framework would power Grantovich.net, I chose WordPress. This was partially because I wanted to get some [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with <a href="http://drupal.org/">Drupal</a> for several years now, and in fact the latest iteration of the <a href="http://www.csh.rit.edu/">CSH public web site</a> (of which I am the webmaster) is built with it. However, when it came time to decide what kind of framework would power Grantovich.net, I chose <a href="http://wordpress.org/">WordPress</a>. This was partially because I wanted to get some exposure to other popular content management systems, but mostly because I wanted something that I could just drop into my server and start blogging with, and WordPress&#8217;s vaunted ease-of-use seemed to fit the bill.</p>
<p>Now, to be fair, Drupal and WordPress are in two completely different categories, at least to start out with. WordPress is advertised and works best as a blogging system, and you have to do some hacking to expand its functionality beyond that. Drupal is a sort of uber-extensible CMS <em>framework</em> that does almost nothing useful out of the box, and you have to do some hacking to transform it into a blogging system or an online store or whatever else you want.</p>
<p>Nevertheless, in the few weeks I&#8217;ve been using WordPress, I&#8217;ve noticed a few things that really impressed me, and made me wish I had the same features in Drupal. This is not to detract from Drupal&#8217;s sheer power as a do-anything CMS, but I have often found it lacking in usability (<a href="http://drupal.org/node/418560">and apparently I&#8217;m not alone</a>). At any rate, here are some of those nifty features:</p>
<ul>
<li><strong>Fully-integrated WYSIWYG editing out of the box.</strong> This is really something that&#8217;s important to get right if your content is being edited by &#8220;regular people&#8221;, and it&#8217;s also an area where Drupal falls flat on its face. By default, Drupal just gives you a plaintext input box and expects you to start typing HTML into it. You can download modules that plug in various generic WYSIWYG editors, but installation is awkward and integration is lacking.</li>
<li><strong>Integrated one-click plugin installation and updating.</strong> To install a WordPress plugin, all you have to do is find it with the integrated plugin browser, and click the Install button. The plugin is automagically transferred to your server and unpacked, and it&#8217;s just one more click to activate it. Upgrading a plugin to a new version is similarly a one-click process. With Drupal, it&#8217;s all manual: Download the module tarball from the Drupal web site, unpack it, FTP into your server, transfer the files over, and activate the module. And you have to do this <em>every time a new version of the module comes out</em>. Gets kind of irritating when you have more than a dozen modules installed, which is probably the minimum number you need to do anything useful in the first place. Sadly, this rigamarole is necessary for WordPress themes as well, but that&#8217;s apparently being worked on, and you only really install themes once.</li>
<li><strong>Built-in editors for everything.</strong> Want to tweak your theme&#8217;s stylesheet? Don&#8217;t waste time SSHing into your server, just hit the Editor link and you&#8217;re already there. Anything you could want to change on the server is available through the web interface. Admittedly, fewer things in Drupal actually require you to edit files on the server, but I&#8217;m surprised they haven&#8217;t done something like this already, since the coding effort required is small.</li>
<li><strong>Decent image handling out of the box.</strong> I say &#8220;decent&#8221; because the way WordPress does it is far from perfect, but at least you can upload media files to a designated directory on the server, and insert them inline into your content with only minor fiddling, all without installing any plugins. Drupal doesn&#8217;t provide anything like this unless you install half a dozen modules, none of which are quite able to cooperate perfectly, and all of which are guaranteed to require several hours of tedious and/or non-intuitive configuration. Which brings me to my final point about WordPress&#8230;</li>
<li><strong>Most things are obvious, intuitive, and painless.</strong> It&#8217;s hard to explain this one since it&#8217;s more of a feeling than anything else, but it pervades the entire WordPress core. When I want to do something with this web site, I log in and &#8220;just do it&#8221;. The entire interface is so slick and easy-to-use that I never stop for a moment and wonder why I&#8217;m doing something the way I&#8217;m doing it. It all just makes sense. And it&#8217;s all buttery-smooth thanks to the pervasive AJAX effects and excellent use of color and typography on the backend (in fact, I find myself wishing I had a front-end theme that captured the feel of the admin interface!). Of course, part of this comes from the fact that WordPress is laser-focused on providing a great blogging platform, thereby achieving a level of coherence and integrated features that Drupal, which tries to be all things to all people, could never match. Still, it makes Drupal look positively clunky by comparison. To this day, whenever I log into the CSH web site with a task to do, I experience a brief moment of confusion as I wonder whether the module I&#8217;m looking for decided to vomit its settings page into &#8221;Content management&#8221;, &#8220;Site building&#8221;, or &#8220;Site configuration&#8221; (or maybe it&#8217;s a secondary tab in a sub-page of one of those categories&#8230;).</li>
</ul>
<p>Well, that&#8217;s enough of me ragging on Drupal. As I said before, it&#8217;s really an amazingly powerful framework, and for things much more complex than a personal blog, it&#8217;s still my CMS of choice. I just think that, in terms of usability, it could do worse than to take a few cues from WordPress. (Incidentally, I&#8217;ve discovered a number of WordPress annoyances as well in the past few weeks, but those will have to wait for another day.)</p>
]]></content:encoded>
			<wfw:commentRss>http://grantovich.net/posts/2009/05/wordpress-from-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
