<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Robin Monks » Drupal</title>
	
	<link>http://robinmonks.com</link>
	<description>Logical &amp; interesting</description>
	<lastBuildDate>Wed, 02 May 2012 14:46:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/drupalfiles" /><feedburner:info uri="drupalfiles" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Installing Drush on a Shared DreamHost Account</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/H7DAd106cpg/</link>
		<comments>http://robinmonks.com/2012/02/installing-drush-on-a-shared-dreamhost-account/#comments</comments>
		<pubDate>Sat, 25 Feb 2012 02:47:13 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[DreamHost]]></category>
		<category><![CDATA[drush]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[shared hosting]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=1376</guid>
		<description><![CDATA[One of the easiest and most convenient ways to get your hands on Drupal is on a shared hosting environment. It&#8217;s pretty much where everyone is going to start from unless you happen to have a giant long-term budget for your own hardware. You have a number of options when it comes to hosting and [...]]]></description>
			<content:encoded><![CDATA[<p>One of the easiest and most convenient ways to get your hands on Drupal is on a shared hosting environment. It&#8217;s pretty much where everyone is going to start from unless you happen to have a giant long-term budget for your own hardware.</p>
<p>You have a number of options when it comes to hosting and at one time or another I&#8217;ve tried a lot of them. Three companies that have managed to keep me the happiest though are <a href="https://customers.asmallorange.com/aff.php?aff=7178">A Small Orange</a> (use coupon <strong>15-off</strong> to get 15% off), <a href="http://www.dreamhost.com/r.cgi?309747">DreamHost</a> and MediaTemple. I&#8217;ve found DreamHost in particular to be pretty impressive when it comes to hosting a lot of one-off sites on my very inexpensive shared plan. I even use it when rapid prototyping for clients.</p>
<p>The best part though is that with DreamHost I can use SSH and Drush the way I normally would like to on a dedicated or virtual server. Set up is a bit more complex than normal, but, once it&#8217;s set up for your user it&#8217;s smooth sailing.</p>
<p>Before you can do any of this, you will need to make sure you enable SSH for the user you assigned to the &nbsp;domain you want to use Drush with. You can find these options under the Manage Users section of the DreamHost panel. From there open up your favorite SSH client and log into your site (PuTTY works well on Windows, you can just run ssh from the command line on Mac or Linux).</p>
<p>Since you&#8217;re in a locked-down shared hosting environment, you obviously can&#8217;t make system-wide changes. The easiest way to install Drush is though Pear. Pear, by default, wants to make system-wide changes. Since we can&#8217;t do that in a shared environment, our first order of business will be to set up a new instance of pear just for our user.</p>
<p>Once logged in, and in your user&#8217;s home folder, run:<br />
<code>pear config-create ${HOME} ${HOME}/.pearrc<br />
pear install -o PEAR</code></p>
<p>Now you have your own instance of pear, but you still can&#8217;t use it yet. To fix this, we will edit our .bash_profile and add in the path to the most recent PHP version DreamHost provides, as well as adding in our pear directory early on in this user&#8217;s PATH.</p>
<p>Open ~/.bash_profile in your favorite editor:<br />
<code>nano ~/.bash_profile</code></p>
<p>And add these lines at the bottom of the file:<br />
<code>export PHP_PEAR_PHP_BIN=/usr/local/php53/bin/php<br />
export PATH=${HOME}/pear:/usr/local/php53/bin:${PATH}</code></p>
<p>Finally, re-load the file so the changes will take effect immediately:<br />
<code>. ~/.bash_profile</code></p>
<p>Now we have the newest version of PHP and our custom version of pear available to us, to check this out, you can run these commands:<br />
<code>which php<br />
which pear</code></p>
<p>Pretty cool, eh? Lastly, just run the usual install command for drush to install it:<br />
<code>pear channel-discover pear.drush.org<br />
pear install drush/drush</code></p>
<p>Now you can use drush from any site under this user as you would anywhere else (try running `drush help` for some cool examples). You can repeat this process for any other SSH users on your account. A one line <em>tl;dr</em> version of this process is included below for your automated and repetitive pleasure. Enjoy!</p>
<p><strong>tl;dr</strong>: Get drush running on DreamHost by running this line in SSH:<br />
<code>pear config-create ${HOME} ${HOME}/.pearrc;pear install -o PEAR;echo "export PHP_PEAR_PHP_BIN=/usr/local/php53/bin/php" &gt;&gt; ~/.bash_profile;echo 'export PATH=${HOME}/pear:/usr/local/php53/bin:${PATH}' &gt;&gt; ~/.bash_profile;. ~/.bash_profile;pear channel-discover pear.drush.org;pear install drush/drush</code></p>
<div class="woo-sc-box note   ">
<p><a href="http://robinmonks.com">Robin Monks</a> has a passion for openness and freedom in technology and he&#8217;s spent the last 8 years of his life developing, supporting and maintaining open source software.&nbsp;He&#8217;s part of the panel of Drupal community experts who authored&nbsp;<a href="http://definitivedrupal.org/book/porting-modules-drupal-7">The Definitive Guide to Drupal 7</a>&nbsp;and currently provides&nbsp;independent&nbsp;consulting services. Reach him&nbsp;at&nbsp;<strong>1-855-PODHURL</strong>.</div>

<p><a href="http://feedads.g.doubleclick.net/~a/hYsLn3HD7rfbyx0pxyKZrtllP-M/0/da"><img src="http://feedads.g.doubleclick.net/~a/hYsLn3HD7rfbyx0pxyKZrtllP-M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/hYsLn3HD7rfbyx0pxyKZrtllP-M/1/da"><img src="http://feedads.g.doubleclick.net/~a/hYsLn3HD7rfbyx0pxyKZrtllP-M/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/H7DAd106cpg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2012/02/installing-drush-on-a-shared-dreamhost-account/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2012/02/installing-drush-on-a-shared-dreamhost-account/</feedburner:origLink></item>
		<item>
		<title>Productivity in Drupal’s Development (part 1 of n)</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/bzIm6Em_uLM/</link>
		<comments>http://robinmonks.com/2011/07/productivity-in-drupals-development-1-of-n/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 00:39:36 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Cycles]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Drivers]]></category>
		<category><![CDATA[Intelligence]]></category>
		<category><![CDATA[Mozilla]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=1120</guid>
		<description><![CDATA[Some of you may recall that a couple of years ago (wow, that long?) I wrote an article on this blog entitled &#8220;Artificial Intelligence and Repetitive Tasks in a CMS&#8221; describing some of the biggest causes of grief I had when using Drupal (and other online presence/communication creators). I felt it was time for another [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may recall that a couple of years ago (wow, that long?) I wrote an article on this blog entitled &#8220;<a title="Artificial Intelligence and Repetitive Tasks in a CMS" href="http://robinmonks.com/2008/12/16/artificial-intelligence-and-repetitive-tasks-in-a-cms/">Artificial Intelligence and Repetitive Tasks in a CMS</a>&#8221; describing some of the biggest causes of grief I had when using Drupal (and other online presence/communication creators). I felt it was time for another one of these posts in the same style to critique and give suggestions again. This time, not on Drupal as software, but on the Drupal development process. Also note, I love Drupal and make my living from it, all of this is meant to be constructive.</p>
<h3>&#8220;Drupal&#8221; isn&#8217;t Drupal.</h3>
<p>If you&#8217;ve used Drupal for any length of time you know this is true &#8212; namely, the &#8220;Drupal&#8221; you talk about, use and recommend isn&#8217;t the Drupal people go to http://drupal.org and download on their server. I&#8217;ve been there before when I made the mistake of touting how wonderful Drupal was, and seen the inevitable conclusion by the person I told this to.</p>
<p>They downloaded the Drupal archive, extracted on their web server, set it up, and came back to me. They thought it was crap. Heck, the out of box experience for Drupal *IS* horrible. Of course I explained that &#8220;Oh, no, you want to disable overlay, install admin_menu, install views, grab a theme from here,&#8230;.&#8221; My friend, heard this:</p>
<div id="attachment_1121" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-1121 " title="&quot;The Four Subspaces&quot;" src="http://robinmonks.com/wp-content/uploads/2011/07/600px-The_four_subspaces.svg1_-300x225.png" alt="" width="300" height="225" /><p class="wp-caption-text">Called &quot;the four subspaces&quot; on Wikipedia commons, I don&#39;t want to know what it means.</p></div>
<p>See, the Drupal that people love and enjoy isn&#8217;t easy to get. Even though we all tout Drupal as everything but a sugar substitute, getting your hands on that &#8220;Drupal&#8221; joy is nearly impossible without having done it before. Oh, and, profiles are wonderful, but not all that useful because of how the rest of the development cycle works:</p>
<p>Month 0: Drupal is released<br />
Month 3: Most modules become stable<br />
Month 6-eternity: Views, Chaos Tools and Panels become stable<br />
Month 10: Oh, Drupal has BlahShiney API that is AWESOME!<br />
Month 12: A useful profile is actually released in a beta<br />
Month 14: Useful profile&#8217;s author forgets about it due to work/classes.<br />
Month 18: Drupal &lt;next version&gt; Beta/RC is out!<br />
Month 18: &#8220;You should wait for/use the beta of Drupal , which has KitchenSink API by instead of using &#8221;<br />
Month 20: Useful profiles for &lt;current version&gt; actually become stable.<br />
Month 22-24: Drupal &lt;next version&gt; released, see Month 0.</p>
<p><div id="attachment_1122" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-1122" title="8_toxiccyclespread_v3[1]" src="http://robinmonks.com/wp-content/uploads/2011/07/8_toxiccyclespread_v31-300x182.jpg" alt="" width="300" height="182" /><p class="wp-caption-text">An editorial design on toxic water by Yesenia Rivero</p></div>I think, bearing in mind a few objections here and there and the odd &#8220;but we totally fixed this for real this time, again, honest&#8221; comment, everyone can relate to this timeline. There is a simple solution for this; but it would need Dries to backtrack his State of Drupal speech and give up on rapid core overhauls.</p>
<p>You see, Mozilla has had this problem before. Mozilla browsers are simply too big for any one person to handle entirely. Because of that, they are split into a series of modular components with a manager (or maybe several co-managers) overseeing patches and the development cycle for that component. These people are called &#8220;drivers&#8221; and it&#8217;s their job to keep development moving, organize with each other and the higher overall project leaders on how to keep their teams moving in the right direction, and to all freeze their codebases in preparation for major launch events.</p>
<p>Some of that terminology probably feels familiar to those who use Drupal. Now, let&#8217;s think of how we could apply this logic to how Drupal develops.</p>
<p>Drupal [Distribution] becomes a stable distribution that has Drupal Core and the top 10 or so most common modules that the community needs to actually launch a good Drupal site. Drupal is a launching pad to great web applications (yeah, yeah; it can be a framework, but let&#8217;s focus on the idea of a launching pad distribution that is Drupal&#8217;s bread and butter). Drupal core would be split into the required components, with all the optional components separated out, along with these 10 or so critical contrib modules to become this base distribution.</p>
<div id="attachment_1123" class="wp-caption alignleft" style="width: 310px"><a href="http://robinmonks.com/wp-content/uploads/2011/07/21UZO7quSPL1.jpg"><img class="size-medium wp-image-1123" title="blue screwdriver" src="http://robinmonks.com/wp-content/uploads/2011/07/21UZO7quSPL1-300x63.jpg" alt="" width="300" height="63" /></a><p class="wp-caption-text">Luxurious blue screwdriver from Amazon</p></div>
<p>Each of these components has a driver, someone who looks after their component, as well as co-drivers who might only be focused on improvements for a certain version or adding new features. This group of people talk regularly to coordinate efforts and are steered by the distribution&#8217;s (Drupal&#8217;s) driver (Dries or someone else who manages a specific release).</p>
<p>Minor changes and improvements can be signed off on completely by the component driver without going up the food-chain. Major changes or features get pushed to the distribution driver, both for a &#8220;yeah, this is a good idea&#8221; and a &#8220;yeah, this is ready to commit.&#8221; This lets key people stay focused on their component and improving it, and keeps being a Drupal release coordinator from turning into a full-time job/life (btw, Angie, you&#8217;re awesome to have done that and making it look easy).</p>
<p>This distribution driver sets the timeline for a release, and all the componet drivers also enforce that timeline for their branch. As critical points in the timeline draw close, they will switch new features to a new version, and only focus on improvements for the current (we&#8217;re familiar with this now in core).</p>
<p>When version freezes occur, they occur across all components and the result is a coordinated release of Drupal that it actually &#8220;Drupal,&#8221; the cool experience we want to share and not &#8220;Drupal&#8221; the &#8220;oh, this is crappy&#8221; at-first-look framework. Effectively, this means having active &#8220;maintainers&#8221; with commit authority across all parts of Drupal core. This removes strain from distributions drivers (maintainers) and allows people to be specialized. Also, synchronicity between Drupal core and the most critical modules so Drupal the framework and Drupal the handy distribution people depend on can be both generally expected at predictable times.</p>
<p>This organized and controlled distribution could be considered, to steal from operating systems, ring 0. Everything in this is critical to Drupal Distribution. The next most popular modules in contrib, as well as sponsored projects could form the basis for components in ring 1; less controlled but still given some attention to have ready for releases and security. Ring 2 would be what we all consider the jungle of contrib as it stands now, with only perhaps some reputation changes that folks are already talking about anyways, and I won&#8217;t get into.</p>
<p>Feedback and conversation is very welcome, but before you comment please note: I know parts of this have been discussed, and parts of it may even be attempted as due course; so please don&#8217;t comment with, &#8220;but we&#8217;re already doing x part of this, so y and z are invalid.&#8221; Also, any assumptions that I know what happens on all of groups.drupal.org or in back-channel developer discussions should be reconsidered before commenting.</p>
<p>P.S.: Remember Mozilla? They became so caught up in looking busy with new version numbers that they started to release minor fixes and improvements as major releases (6 and 7 instead of 5.1, 5.2). Let&#8217;s avoid that, shall we?</p>

<p><a href="http://feedads.g.doubleclick.net/~a/RxtFi7QHidEbeC50dr5UiEvrZCE/0/da"><img src="http://feedads.g.doubleclick.net/~a/RxtFi7QHidEbeC50dr5UiEvrZCE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RxtFi7QHidEbeC50dr5UiEvrZCE/1/da"><img src="http://feedads.g.doubleclick.net/~a/RxtFi7QHidEbeC50dr5UiEvrZCE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/bzIm6Em_uLM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2011/07/productivity-in-drupals-development-1-of-n/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2011/07/productivity-in-drupals-development-1-of-n/</feedburner:origLink></item>
		<item>
		<title>What, no bit.ly Drupal module? Bam! Now there is.</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/sVEms9Fs5fs/</link>
		<comments>http://robinmonks.com/2011/01/what-no-bit-ly-drupal-module-bam-now-there-is/#comments</comments>
		<pubDate>Sat, 08 Jan 2011 01:12:47 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[bit.ly]]></category>
		<category><![CDATA[Module]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=920</guid>
		<description><![CDATA[If you ever wanted to allow your site’s users to be able to generate bit.ly URLs cleanly from within Drupal? Well, now you can! The newly written bit.ly module provides OAuth access to allow visitors to sign into their bit.ly accounts, acquire their API keys, and create links in their names’ as well as retrieve [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever wanted to allow your site’s users to be able to generate bit.ly URLs cleanly from within Drupal? <a href="http://drupal.org/project/bitly">Well, now you can!</a> The newly written bit.ly module provides OAuth access to allow visitors to sign into their bit.ly accounts, acquire their API keys, and create links in their names’ as well as retrieve statistical account data.</p>
<p>More is to be done with the module to intergrate with longer-standing modules in the Drupal ecosystem, such as <a href="http://drupal.org/project/shorten">shorten</a>. Patches and/or suggestions for additional features are appreciated.</p>
<p>If you’re feeling adventurous, you can also go ahead and download development versions or fork your own repo from this module’s <a href="https://github.com/mozillamonks/bit.ly-for-Drupal">github repository</a>.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/F30OVDRzxgMkvWCn2-zkEyADSuo/0/da"><img src="http://feedads.g.doubleclick.net/~a/F30OVDRzxgMkvWCn2-zkEyADSuo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/F30OVDRzxgMkvWCn2-zkEyADSuo/1/da"><img src="http://feedads.g.doubleclick.net/~a/F30OVDRzxgMkvWCn2-zkEyADSuo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/sVEms9Fs5fs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2011/01/what-no-bit-ly-drupal-module-bam-now-there-is/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2011/01/what-no-bit-ly-drupal-module-bam-now-there-is/</feedburner:origLink></item>
		<item>
		<title>Drupal without Drupal – Looking for suggestions on how to dummy-fy the Drupal UI.</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/HeyBFEbRAqQ/</link>
		<comments>http://robinmonks.com/2010/11/drupal-without-drupal-looking-for-suggestions-how-how-to-dummy-fy-the-drupal-ui/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 22:44:59 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Languages]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=842</guid>
		<description><![CDATA[Over the past several years that I&#8217;ve been working with Drupal as a vendor I&#8217;ve become enamored by its power, its flexibility, its support and perhaps most of all with its awesome community.  There is one thing however I&#8217;ve personally never quite gotten around.  End Users. See, the sad thing is most people I&#8217;ve met are&#8230;well&#8230;dummies.  The [...]]]></description>
			<content:encoded><![CDATA[<p>Over the past several years that I&#8217;ve been working with Drupal as a vendor I&#8217;ve become enamored by its power, its flexibility, its support and perhaps most of all with its awesome community.  There is one thing however I&#8217;ve personally never quite gotten around.  End Users.</p>
<p>See, the sad thing is most people I&#8217;ve met are&#8230;well&#8230;dummies.  The kind of people who are so tech illiterate they have no idea how illiterate they are.  And, typically I have to support these technological nincompoops.  So, I want to appeal to the <a class="zem_slink" title="Drupal" rel="homepage" href="http://www.drupal.org">Drupal community</a> that is so great and so awesome, and ask how the other site providers among us deal with making Drupal &#8212; especially the content creation side &#8212; less &#8220;Drupal&#8221; for end users.</p>
<p>Less Drupal as in, no non-sense UI with few to no options.  Very task oriented and much less &#8220;powerful&#8221;, but much more self-describing.  Does anyone have any idea on how to do this with existing modules, themes, whathaveyou?  And, I promise when the dust settles to write another post documenting everything on simplifying the Drupal interface.  Deal?  Deal <img src='http://robinmonks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

<p><a href="http://feedads.g.doubleclick.net/~a/Asut-qrqeQq2dh091nIelS7IbZM/0/da"><img src="http://feedads.g.doubleclick.net/~a/Asut-qrqeQq2dh091nIelS7IbZM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/Asut-qrqeQq2dh091nIelS7IbZM/1/da"><img src="http://feedads.g.doubleclick.net/~a/Asut-qrqeQq2dh091nIelS7IbZM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/HeyBFEbRAqQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2010/11/drupal-without-drupal-looking-for-suggestions-how-how-to-dummy-fy-the-drupal-ui/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2010/11/drupal-without-drupal-looking-for-suggestions-how-how-to-dummy-fy-the-drupal-ui/</feedburner:origLink></item>
		<item>
		<title>Version 1.6 of Add Another Module for Drupal Released</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/y8RDIRWmu18/</link>
		<comments>http://robinmonks.com/2010/04/version-1-6-of-add-another-module-for-drupal-released/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 17:01:28 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Content Management]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[WWW]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=323</guid>
		<description><![CDATA[Add another module has been recently updated with another new time-saving feature; you can now display &#8220;Add another&#8221; tabs on certain node types.  I&#8217;m also taking the time to think of what else can be done to make the usual node creation workflow easier for end users. I&#8217;ll be looking for suggestions on how to improve the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://robinmonks.com/wp-content/uploads/2010/04/Untitled_91.png"><img class="alignright size-medium wp-image-324" title="Add Another 6.x-1.6" src="http://robinmonks.com/wp-content/uploads/2010/04/Untitled_91-300x153.png" alt="" width="300" height="153" /></a><a href="http://drupal.org/project/addanother">Add another</a> module has been recently updated with another new time-saving feature; you can now display &#8220;Add another&#8221; tabs on certain node types.  I&#8217;m also taking the time to think of what else can be done to make the usual node creation workflow easier for end users.</p>
<p>I&#8217;ll be looking for suggestions on how to improve the UI and workflow of node submissions and add another module as focus turns to version 2.x.  2.x will released for <a class="zem_slink" title="Drupal" rel="homepage" href="http://drupal.org">Drupal</a> 6.x and 7.x in the next month; and will move the workflow settings to the content type edit pages, rather than a separate settings page.   The 7.x version will also include a &#8220;Save and Add another&#8221; button, somewhat similar to submit again, and include integration with <a href="http://drupal.org/project/node_clone">node clone</a>.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://r.zemanta.com/?u=http%3A//www.infoworld.com/d/applications/drupal-upgrade-be-slower-more-scalable-239%3Fsource%3Drss_infoworld_news&amp;a=16784509&amp;rid=76b04d67-14c5-4fd4-b385-7bbfe68eaa85&amp;e=2ad8cb66fb51578a739445496015baa2">Drupal upgrade to be slower but more scalable</a> (infoworld.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/76b04d67-14c5-4fd4-b385-7bbfe68eaa85/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=76b04d67-14c5-4fd4-b385-7bbfe68eaa85" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

<p><a href="http://feedads.g.doubleclick.net/~a/HBrrVTZkYWjLRPgPqP4wjFlFsn4/0/da"><img src="http://feedads.g.doubleclick.net/~a/HBrrVTZkYWjLRPgPqP4wjFlFsn4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/HBrrVTZkYWjLRPgPqP4wjFlFsn4/1/da"><img src="http://feedads.g.doubleclick.net/~a/HBrrVTZkYWjLRPgPqP4wjFlFsn4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/y8RDIRWmu18" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2010/04/version-1-6-of-add-another-module-for-drupal-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2010/04/version-1-6-of-add-another-module-for-drupal-released/</feedburner:origLink></item>
		<item>
		<title>Microsoft’s Browser Selection + User Ignorance Lets Google’s Chrome “cheat”?</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/_uvOlZsWk70/</link>
		<comments>http://robinmonks.com/2010/02/microsofts-browser-selection-user-ignorance-lets-googles-chrome-cheat/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 21:11:41 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Watchful Eye]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Mozilla Firefox]]></category>
		<category><![CDATA[Mozilla Foundation]]></category>
		<category><![CDATA[Web browser]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=310</guid>
		<description><![CDATA[Michael B. from the Mozilla Marketing list recently posted an hypothesis on why Google Chrome may suddenly start taking a much larger chunk out of the browser market now that Microsoft's browser selection screens are appearing in the EU.  "I've a hypothesis to explain Chrome's recent and sudden surge of usage share the last couple months. Let me first say that almost every time I ever ask what web browser someone uses, the answer I get is Google...."]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="display: block; float: right; width: 260px; margin: 1em;">
<div>
<dl class="wp-caption alignright" style="width: 260px;">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/company/google"><img title="Image representing Google as depicted in Crunc..." src="http://robinmonks.com/wp-content/uploads/2010/02/29578v7-max-250x250.jpg" alt="Image representing Google as depicted in Crunc..." width="250" height="99" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>Michael B. from the <a class="zem_slink" title="Mozilla Foundation" rel="geolocation" href="http://maps.google.com/maps?ll=37.38792,-122.08284&amp;spn=0.01,0.01&amp;q=37.38792,-122.08284 (Mozilla%20Foundation)&amp;t=h">Mozilla</a> Marketing list <a href="http://groups.google.com/group/mozilla.marketing/browse_thread/thread/08470a720c0c3d1e#">recently posted an hypothesis</a> on why Google Chrome may suddenly start taking a much larger chunk out of the browser market now that Microsoft&#8217;s <a href="http://robinmonks.com/2010/02/21/europeans-get-a-taste-of-the-browser-choice-screen/">browser selection screens</a> are appearing in the EU.</p>
<blockquote><p>I&#8217;ve a hypothesis to explain Chrome&#8217;s recent and sudden surge of usage share the last couple months. Let me first say that almost every time I ever ask what web browser someone uses, the answer I get is Google. After I explain that Google is a search engine, not a web browser they usually tell me that they have no idea. I later find out that they are either using Internet Explorer or Firefox. Enter Microsoft&#8217;s new browser ballot into the equation. Instead of just saying &#8220;Chrome,&#8221; Google&#8217;s web browser says &#8220;Google&#8221; and then says &#8220;chrome&#8221; in smaller letter. People are asked what web browser they want so they think, I want to search with Google of course so they choose Chrome. If this is the case, it might be a problem that should be addressed.</p></blockquote>
<p>Perhaps user ignorance on what a browser actually is will give Google a major boost.  Because, admittedly, even my own father reference to Internet Explorer as &#8220;my internet&#8221;.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://boycottnovell.com/2010/02/21/web-browser-search-bar-snag/">Microsoft&#8217;s Ballot Screen is a Farce, Decoy</a> (boycottnovell.com)</li>
<li class="zemanta-article-ul-li"><a href="http://go.theregister.com/feed/www.theregister.co.uk/2010/02/23/google_to_end_you_tube_ie6_support/">YouTube&#8217;s IE6 support dies on March 13</a> (go.theregister.com)</li>
<li class="zemanta-article-ul-li"><a href="http://robbiz1978.blogspot.com/2010/02/chrome-usage-up.html">Chrome usage up</a> (robbiz1978.blogspot.com)</li>
</ul>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/a96060a1-3975-4062-9c41-14cef59800f3/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=a96060a1-3975-4062-9c41-14cef59800f3" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

<p><a href="http://feedads.g.doubleclick.net/~a/knQZ8YIcTWBijScDpmP_vTiKNuI/0/da"><img src="http://feedads.g.doubleclick.net/~a/knQZ8YIcTWBijScDpmP_vTiKNuI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/knQZ8YIcTWBijScDpmP_vTiKNuI/1/da"><img src="http://feedads.g.doubleclick.net/~a/knQZ8YIcTWBijScDpmP_vTiKNuI/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/_uvOlZsWk70" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2010/02/microsofts-browser-selection-user-ignorance-lets-googles-chrome-cheat/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2010/02/microsofts-browser-selection-user-ignorance-lets-googles-chrome-cheat/</feedburner:origLink></item>
		<item>
		<title>Europeans Get a Taste of the Browser Choice Screen</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/vQaZXI7Sj24/</link>
		<comments>http://robinmonks.com/2010/02/europeans-get-a-taste-of-the-browser-choice-screen/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 14:59:31 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Free Software]]></category>
		<category><![CDATA[Policy and Law]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Web browser]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[Windows Update]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=305</guid>
		<description><![CDATA[We might finally get more people off of IE, FINALLY. It might seem like a minor thing, but it isn’t. Microsoft has been fined billions over browser choice (or lack thereof) in Windows, and the solution that finally satisfied EU regulators was a browser choice screen, which would let users choose a web browser rather [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Microsoft Browser Choice Screen" src="http://mashable.com/wp-content/uploads/2010/02/ie_browser_choice_260.jpg" alt="Microsoft Browser Choice Screen" width="260" height="195" />We might finally get more people off of IE, FINALLY.</p>
<blockquote><p>It might seem like a minor thing, but it isn’t.</p>
<p>Microsoft has been fined billions over browser choice (or lack thereof) in Windows, and the solution that finally satisfied EU regulators was a browser choice screen, which would let users choose a <a class="zem_slink" title="Web browser" rel="wikipedia" href="http://en.wikipedia.org/wiki/Web_browser">web browser</a> rather then having Internet Explorerinstalled as the default.</p>
<p>Now, Microsoft has posted images of what the browser choice screen will probably look like.</p>
<p>Here’s how it will work: The user will be presented with five major browsers, randomly ordered. He will also be able to choose several additional browsers, which are also randomly ordered. Once you install a browser, you’ll get a shortcut of that browser on your desktop, while Internet Explorer will be unpinned from the taskbar.</p>
<p>Since Windows 7 has been available on the European market for quite a while now, one may ask why (and how) is this happening so late? Since Microsoft needed some time to implement the browser choice solution, it will now use Windows Update to provide the browser choice screen to European users who are using Internet Explorer as their default browser. Better late than never, huh?</p>
<p>More precisely, testing of the browser choice screen begins next week in the UK, Belgium and France, where users will be able to download the software update from Windows Update if they like. A phased rollout of the update will happen across Europe starting with March 1.</p></blockquote>
<p>via <a href="http://mashable.com/2010/02/19/browser-choice-screen/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Mashable+%28Mashable%29&amp;utm_content=Google+Reader">Europeans Get a Taste of the Browser Choice Screen</a>.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/d47fb6e5-f587-4ded-88f5-65c8d3575af4/"><img class="zemanta-pixie-img" style="border: none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=d47fb6e5-f587-4ded-88f5-65c8d3575af4" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

<p><a href="http://feedads.g.doubleclick.net/~a/ESNl_JnZvnRP6-yV7TYel_NNcAM/0/da"><img src="http://feedads.g.doubleclick.net/~a/ESNl_JnZvnRP6-yV7TYel_NNcAM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ESNl_JnZvnRP6-yV7TYel_NNcAM/1/da"><img src="http://feedads.g.doubleclick.net/~a/ESNl_JnZvnRP6-yV7TYel_NNcAM/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/vQaZXI7Sj24" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2010/02/europeans-get-a-taste-of-the-browser-choice-screen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2010/02/europeans-get-a-taste-of-the-browser-choice-screen/</feedburner:origLink></item>
		<item>
		<title>Web 2.0 MacGyver</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/6FqVQBVZcW8/</link>
		<comments>http://robinmonks.com/2010/02/web-2-0-macgyver/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:35:38 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Action and Adventure]]></category>
		<category><![CDATA[Cascading Style Sheets]]></category>
		<category><![CDATA[Data Formats]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[MacGyver]]></category>
		<category><![CDATA[Markup Languages]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Television]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=275</guid>
		<description><![CDATA[Image via Wikipedia TV shows like MacGyver and Junk Yard Wars, as well as real world survival and minimalist training [even camping] tell us that it&#8217;s cool to take bits of whatever is lying around, and jury-rig it into something useful, and potentially vital to our survival.  Today as I was thinking about the plethora [...]]]></description>
			<content:encoded><![CDATA[<div class="zemanta-img" style="margin: 1em; display: block;">
<div>
<dl class="wp-caption alignright" style="width: 310px;">
<dt class="wp-caption-dt"><a href="http://en.wikipedia.org/wiki/Image:MacGyver_intro.jpg"><img title="MacGyver" src="http://robinmonks.com/wp-content/uploads/2010/02/300px-MacGyver_intro.jpg" alt="MacGyver" width="300" height="231" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution" style="font-size: 0.8em;">Image via <a href="http://en.wikipedia.org/wiki/Image:MacGyver_intro.jpg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>TV shows like MacGyver and Junk Yard Wars, as well as real world survival and minimalist training [even camping] tell us that it&#8217;s cool to take bits of whatever is lying around, and jury-rig it into something useful, and potentially vital to our survival.  Today as I was thinking about the plethora of hacks we need to do something insanely simple&#8230;like&#8230;embed a flash video and have it work properly in all browsers. This made me realize, anyone who does web development or design is a fly-by-the-seat-of-our-pants, certified, Web 2.0 MacGyver.</p>
<p>We use CSS hacks to get things to look right in IE, load extra images or add a wack of useless tags to get rounded corners to work.  And, don&#8217;t think HTML5 is going to save our butt, it won&#8217;t.  We&#8217;ll need to make videos in 2 different formats and nest three different video and embed tags and hacks for it to work (<a href="http://camendesign.com/code/video_for_everybody#video-code" target="_blank">seriously</a>).  Worse, one of those formats we&#8217;ll <a href="http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing" target="_blank">need to license</a> and pay for (or, as is the online way, hope we don&#8217;t get caught for not).</p>
<p>So, developers, hold your heads high; we&#8217;re holding the world together with duct tape and paperclips, and we make it look easy.</p>
<div class="zemanta-pixie" style="margin-top: 10px; height: 15px;"><a class="zemanta-pixie-a" title="Reblog this post [with Zemanta]" href="http://reblog.zemanta.com/zemified/ed792889-3dfd-4017-8a9e-bc8b1c7159d4/"><img class="zemanta-pixie-img" style="border: medium none; float: right;" src="http://img.zemanta.com/reblog_c.png?x-id=ed792889-3dfd-4017-8a9e-bc8b1c7159d4" alt="Reblog this post [with Zemanta]" /></a><span class="zem-script more-related pretty-attribution"><script src="http://static.zemanta.com/readside/loader.js" type="text/javascript"></script></span></div>

<p><a href="http://feedads.g.doubleclick.net/~a/zD2yz25fNL3uBKhVGRd-7xK5dcQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/zD2yz25fNL3uBKhVGRd-7xK5dcQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zD2yz25fNL3uBKhVGRd-7xK5dcQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/zD2yz25fNL3uBKhVGRd-7xK5dcQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/6FqVQBVZcW8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2010/02/web-2-0-macgyver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2010/02/web-2-0-macgyver/</feedburner:origLink></item>
		<item>
		<title>WordPress Upgrade: I could cry</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/xOaZ3uI8W7c/</link>
		<comments>http://robinmonks.com/2009/02/wordpress-upgrade-i-could-cry/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 11:54:54 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=247</guid>
		<description><![CDATA[[This whole post is written tounge-in-cheek.  Please don't flame/bash/perl or python the author.] I just did an upgrade from WordPress 2.7 to 2.7.1, and it was completely done in under 5 seconds. Didn&#8217;t need to connect to SSH, didn&#8217;t need to connect to FTP. I click two buttons and my blog was running the latest [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: right; "><em>[This whole post is written tounge-in-cheek.  Please don't flame/bash/perl or python the author.]</em></p>
<p>I just did an upgrade from WordPress 2.7 to 2.7.1, and it was completely done in under 5 seconds.  Didn&#8217;t need to connect to SSH, didn&#8217;t need to connect to FTP.  I click two buttons and my blog was running the latest and greatest WordPress.</p>
<p><strong>Why are they allowed to make it this simple?</strong></p>
<p>This kind of proceedure should be hard, time-consuming; and most of all full of stress.  Why, if this keeps up, I&#8217;ll be out of a job.  So, with that in mind:</p>
<p><strong>Drupal must never become this simple.</strong></p>
<p>All of us that work that Drupal consultanting circut need to rise up and make sure that Drupal never becomes this simple, easy or friendly to use.  Why, it could ruin the entire Drupal eco-system.</p>
<p>Now I&#8217;ve got to run, just noticed I need to upgrade a wordpress plugin&#8230;I&#8217;m sure that&#8217;ll take all of 2 seconds too <img src='http://robinmonks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>

<p><a href="http://feedads.g.doubleclick.net/~a/dTW6d4lIhI09OTDS-PYrvVMintU/0/da"><img src="http://feedads.g.doubleclick.net/~a/dTW6d4lIhI09OTDS-PYrvVMintU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dTW6d4lIhI09OTDS-PYrvVMintU/1/da"><img src="http://feedads.g.doubleclick.net/~a/dTW6d4lIhI09OTDS-PYrvVMintU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/xOaZ3uI8W7c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2009/02/wordpress-upgrade-i-could-cry/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2009/02/wordpress-upgrade-i-could-cry/</feedburner:origLink></item>
		<item>
		<title>Admin Role: Another Drupal Module That Just Makes Sense!</title>
		<link>http://feedproxy.google.com/~r/drupalfiles/~3/NpQG0jwTF18/</link>
		<comments>http://robinmonks.com/2009/01/admin-role-another-drupal-module-that-just-makes-sense/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 01:25:56 +0000</pubDate>
		<dc:creator>Robin Monks</dc:creator>
				<category><![CDATA[Drupal]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Module]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://robinmonks.com/?p=235</guid>
		<description><![CDATA[If you&#8217;ve been using Drupal for any amount of time you&#8217;ve probably ran into the problem of needing to go to the access page each time you enable a module to ensure the admin users have permission to make full use of it. &#160;This is a module that I was planning to write, but then [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" align="right" title="Admin Role Screenshot" src="http://drupal.org/files/images/Admin%20Role%20screenshot.png" alt="" width="417" height="196">If you&#8217;ve been using Drupal for any amount of time you&#8217;ve probably ran into the problem of needing to go to the access page each time you enable a module to ensure the admin users have permission to make full use of it. &nbsp;This is a module that I was planning to write, but then I discovered&nbsp;<a title="View user profile." href="http://drupal.org/user/68912">JacobSingh</a>&nbsp;had already made it;&nbsp;Admin Role is another Drupal module that everyone needs, because it solves this basic but anonying&#8211;and sometimes time-consuming&#8211;problem. &nbsp;</p>
<p>Admin Role creates an &#8220;Administrator&#8221; user role, that it then manages to ensure that this role always has all permissions. &nbsp; &nbsp;Admin Role is a light and very clean module available for both Drupal 5.x and Drupal 6.x sites. &nbsp;You can pick up the latest versions by visiting its <a href="http://drupal.org/project/adminrole">project page</a>&nbsp;at drupal.org.</p>
<h6 class="zemanta-related-title" style="font-size: 1em;">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://robinmonks.com/2009/01/11/add-another-a-new-drupal-module-that-just-makes-sense/">Add Another: A New Drupal Module That Just Makes Sense</a></li>
<li class="zemanta-article-ul-li"><a href="http://coldacid.net/blog/2009/01/12/new-tweetbacks-drupal-release">New Tweetbacks for Drupal release</a></li>
<li class="zemanta-article-ul-li"><a href="http://emeetingplace.com/mymoney/?p=632">Using Views 2 and Drupal 6 to Create a Related Pages Block | Drupal Easy</a></li>
</ul>
<div class="zemanta-pixie" style="margin-top:10px;height:15px"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/01f2f774-2d64-4b4c-bc60-0ffbe5eae173/" title="Zemified by Zemanta"><img class="zemanta-pixie-img" src="http://img.zemanta.com/reblog_c.png?x-id=01f2f774-2d64-4b4c-bc60-0ffbe5eae173" alt="Reblog this post [with Zemanta]" style="border:none;float:right"></a></div>

<p><a href="http://feedads.g.doubleclick.net/~a/zjBisVI9Od_zb0Fbw810whu8_As/0/da"><img src="http://feedads.g.doubleclick.net/~a/zjBisVI9Od_zb0Fbw810whu8_As/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zjBisVI9Od_zb0Fbw810whu8_As/1/da"><img src="http://feedads.g.doubleclick.net/~a/zjBisVI9Od_zb0Fbw810whu8_As/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/drupalfiles/~4/NpQG0jwTF18" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://robinmonks.com/2009/01/admin-role-another-drupal-module-that-just-makes-sense/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://robinmonks.com/2009/01/admin-role-another-drupal-module-that-just-makes-sense/</feedburner:origLink></item>
	</channel>
</rss>

