<?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>Cyberborean Chronicles &#187; CMS</title>
	<atom:link href="http://blog.cyberborean.org/tag/cms/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.cyberborean.org</link>
	<description>by Alex Alishevskikh</description>
	<lastBuildDate>Wed, 18 Jan 2012 07:52:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>All you need is Drupal</title>
		<link>http://blog.cyberborean.org/2006/08/23/all-you-need-is-drupal</link>
		<comments>http://blog.cyberborean.org/2006/08/23/all-you-need-is-drupal#comments</comments>
		<pubDate>Wed, 23 Aug 2006 10:48:27 +0000</pubDate>
		<dc:creator>Alex Alishevskikh</dc:creator>
				<category><![CDATA[Essays]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[taxonomy]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">https://cyberborean.wordpress.com/2006/08/23/all-you-need-is-drupal/</guid>
		<description><![CDATA[It&#8217;s commonly called &#8220;CMS&#8221; but as deeper you&#8217;re digging into it, it&#8217;s getting clear that it is something greater than the &#8220;Content Management System&#8221;. Or perhaps, that the &#8220;Content Management&#8221; is something greater than we used to think. Actually, Drupal&#8217;s darned flexibility allows to do a lot of things which would need the application servers [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s commonly called &#8220;CMS&#8221; but as deeper you&#8217;re digging into it, it&#8217;s getting clear that it is something greater than the &#8220;Content Management System&#8221;. Or perhaps, that the &#8220;Content Management&#8221; is something greater than we used to think. Actually, Drupal&#8217;s darned flexibility allows to do a lot of things which would need the application servers and all that stuff. And in the simplest case, it will need no programming &#8211; you can build for instance, a simple database application (like a products directory etc) or even a light CRM/ERP for your intranet as just a specialized Drupal configuration.<br />
<span id="more-126"></span></p>
<p>There is a case study: our <a href="http://www.rusmeco.net">RUSMECO</a> project, among many other things, includes development of so-called &#8220;Brokerage Area&#8221; &#8211; an open-access database of the people, organizations, products and services which are related together by many ways. Our <a href="http://rusmeco.ru">main collaboration portal</a> is based on Drupal so it was obvious that reusing the same platform for BA development advantages in all senses. We have investigating which Drupal features might fit our solution &#8211; and found all what we needed.</p>
<h3>Flexinode</h3>
<p>All content objects in Drupal are treated as an abstraction of the &#8220;nodes&#8221;. There are various types of nodes (pages, stories, forum posts, blog posts etc) which differ by their fields and provided by the core or additional modules. But there is also a mechanism of creating new custom types of nodes (so-called &#8220;flexinode&#8221;) with arbitrary sets of the data fields. So, you can define your own structured data types right into the Drupal administrative interface without writing any PHP code and creating new database tables. The user interface (the forms)  for nodes will be built automatically and can be adjusted later (for instance, the fields order and grouping). These new types will be fully integrated into the core content framework &#8211; in fact, they will be the same content objects as the core types and all Drupal functions (the search, categorization, multilingual translation, workflow, access management and so on) will work with them.</p>
<p>In our case, we needed four content types: Member, Company, Product and Service profiles. It is only pity that the built-in system user profile <em>is not a node</em> (though it have a customizable set of the fields), so we left there only a bare minimum of fields (only username, email and password, in fact) and defined a separate Member profile (CV) node type for those who wants to tell more about herself.</p>
<h3>Taxonomies</h3>
<p>Taxonomies (or, controlled vocabularies) is a standard Drupal way for nodes classification and organization. They are the sets of categories or <em>terms</em> which can be organized hierarchically, related each other and grouped into the <em>vocabularies</em>. Depending on your IA, they can serve as traditional content sections, the &#8220;tags&#8221; or &#8220;labels&#8221; in faceted classification system or as thesauri of interrelated terms. The categories can be also related with the content types, so that the nodes of a specific type can be qualified as the members by specific categories only, or be included in a category by default.</p>
<p>Along with predefined categories, it is possible to define new ones (in selected vocabularies) on-the-fly, together with creation of new nodes. For instance, an user who is filling her product profile out, is able to create the new product category at one time.</p>
<h3>I18N</h3>
<p>Our solution had to be bilingual (en/ru) &#8211; it was a principal requirement. It concerns not only an interface, but also that it should be possible to create the translations of the nodes in alternate language. For instance, an user should be able to create two versions of a profile and when another user coming to see it, she would get a variant for her current language (selected in the top panel).</p>
<p>The features of Drupal i18n module enable to do so. What&#8217;s more, it is possible also for categories to be translated, so that the user sees all categories in her current language and when she is in a category, all nodes there are in that language too.</p>
<h3>Modules</h3>
<p>And after all, if you&#8217;re well sure Drupal lacks some functionality, you can remember your own PHP and SQL experience and write some code. For instance, you would be needed for a custom sophisticated query iinterface for your database. But you probably will not have to write a lot &#8211; as all infrastructural aspects (such as templating etc) are already implemented in <a href="http://api.drupal.org/">Drupal API</a>, you&#8217;ll need to implement only your specific functions.</p>
<p>The specific pieces of Drupal functionality are called &#8220;the modules&#8221;. In fact, the Drupal core is only the component framework and almost all its functions are implemented as the pluggable modules. So, to extend it with your custom functions there is no a better way than develop your own module. It&#8217;s pretty easy &#8211; a module is simply a PHP file containing the conventionally named functions (aka &#8220;hooks&#8221;). These functions may define what should be displayed in a module page, module blocks (in left and right columns), module settings page, how the module will be integrated into the navigation menus and configuration interface and so on.</p>
<p>For to start with modules development, consider to read <a href="http://drupal.org/node/17914">this tutorial</a>.</p>
<h3>Reading on subject</h3>
<ul>
<li><a href="http://drupal.org/handbook/is-drupal-right-for-you">Is Drupal right for you?</a></li>
<li><a href="http://drupal.org/node/20350">Rolling your own system vs. using Drupal</a></li>
<li><a href="http://drupal.org/node/49297" rel="nofollow">Drupal for Information Architects: an overview of configurability</a></li>
<li><a href="http://drupal.org/node/77487" rel="nofollow">The Road to Drupal Hell</a></li>
</ul>
<p>&#8230; more on the <a href="http://drupal.org/handbooks">Drupal site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyberborean.org/2006/08/23/all-you-need-is-drupal/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[Tools:] CMSMatrix.org</title>
		<link>http://blog.cyberborean.org/2006/01/12/tools-cmsmatrixorg</link>
		<comments>http://blog.cyberborean.org/2006/01/12/tools-cmsmatrixorg#comments</comments>
		<pubDate>Thu, 12 Jan 2006 12:55:11 +0000</pubDate>
		<dc:creator>Alex Alishevskikh</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://cyberborean.wordpress.com/2006/01/12/tools-cmsmatrixorg/</guid>
		<description><![CDATA[The great tool if you are looking for a Content Management solution for your needs. This on-line catalog currently overviews about 500 CMS alternatives and compares them on about 150 parameters in the categories: System Requirements Security Support Ease of Use Management Interoperability Flexibility Performance Built-in Applications Commerce Just select the products of your interest [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://www.cmsmatrix.org">great tool</a> if you are looking for a Content Management solution for your needs. <span id="more-40"></span>This on-line catalog currently overviews about 500 CMS alternatives and compares them on about 150 parameters in the categories:</p>
<ul>
<li>System Requirements
</li>
<li>Security</li>
<li>Support</li>
<li>Ease of Use</li>
<li>Management</li>
<li>Interoperability</li>
<li>Flexibility</li>
<li>Performance</li>
<li>Built-in Applications</li>
<li>Commerce</li>
</ul>
<p>Just select the products of your interest and click &#8220;Compare&#8221;. You will get a matrix of comparing the selected alternatives to evaluate their strengths and weaks. You can also read the detailed description of each product, vote for them, see the best rated software and discuss it on the forum.</p>
<p>We at <a href="http://www.rusmeco.net">Rusmeco</a> now are in development of requirements for a collaboration platform for SME&#8217;s and are looking for platform alternatives, so it makes a lot of help for us.</p>
<p>If you are developer of CMS which is still not listed there, do add your project ASAP!</p>
<p>[other <a href="/tag/technology/tools">Things That Just Work</a>, <a href="/tag/links">Links</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cyberborean.org/2006/01/12/tools-cmsmatrixorg/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

