<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="https://build2be.com"  xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>build2be/com/e - developing</title>
 <link>https://build2be.com/category/developing</link>
 <description></description>
 <language>en</language>
<item>
 <title>Internet Explorer blues</title>
 <link>https://build2be.com/content/internet-explorer-blues</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;Just build a new theme with zen. It all went smooth. But being more a techy then a designer I only tested with FireFox, Gnome Web Browser (Gecko 1.8), Opera, Safari and forgot IE 6 which I have through ie4linux. Guess what ... it broke with IE 6.&lt;/p&gt;
&lt;p&gt;Yes I know ... IE is out there for real so you better test. But it is a drag for sure. The designer uses IE 7 where it looks ok. So maybe in the near future we are saved a drag or two :-)&lt;/p&gt;
&lt;p&gt;- IE is out there: &lt;a href=&quot;http://www.w3schools.com/browsers/browsers_stats.asp&quot;&gt;http://www.w3schools.com/browsers/browsers_stats.asp&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Thu, 20 Mar 2008 08:49:08 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">42 at https://build2be.com</guid>
 <comments>https://build2be.com/content/internet-explorer-blues#comments</comments>
</item>
<item>
 <title>Goal Groups</title>
 <link>https://build2be.com/content/goal-groups</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;What are Goal Groups?&lt;/p&gt;
&lt;p&gt;I did not know this term. But it makes sense to group your site visitors.&lt;/p&gt;
&lt;p&gt;Some pointers:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://groups.drupal.org/node/3761#comment-18895&quot;&gt;http://groups.drupal.org/node/3761#comment-18895&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://expressionengine.com/&quot;&gt;http://expressionengine.com/&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Fri, 14 Mar 2008 16:32:37 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">33 at https://build2be.com</guid>
 <comments>https://build2be.com/content/goal-groups#comments</comments>
</item>
<item>
 <title>Building a my groups block</title>
 <link>https://build2be.com/content/building-my-groups-block</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;How does one build a &#039;my groups&#039; block? I thought it would be an out of the box thingy. But it is not.

On the channel the answer was DIY. So this is what I build.

The code patterns below are the same. The use cases differently.
&lt;ol&gt;
&lt;li&gt;Show my groups&lt;/li&gt;
&lt;li&gt;Add special node type immediately to a group. This is for speed&lt;/li&gt;
&lt;li&gt;Generate a node and redirect elsewhere. This is for speed and timeing usage.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;My Groups&lt;/h3&gt;
This is just looping through the group ids of the current user.

&lt;?php
global $user; 

$items= array();
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Tue, 11 Mar 2008 09:44:46 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">31 at https://build2be.com</guid>
 <comments>https://build2be.com/content/building-my-groups-block#comments</comments>
</item>
<item>
 <title>project dependency management</title>
 <link>https://build2be.com/content/project-dependency-management</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;This is a tricky part of package management. I have no ready solution apart from &#039;have a look at debian packagemanagement&#039;.&lt;/p&gt;
&lt;p&gt;For installation the dependencies attribute of a module should contain a version expression. In example &lt;code&gt;dependencies: token (&amp;lt;= 1.4)&lt;/code&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 09:59:30 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">22 at https://build2be.com</guid>
 <comments>https://build2be.com/content/project-dependency-management#comments</comments>
</item>
<item>
 <title>project provides</title>
 <link>https://build2be.com/content/project-provides</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;It would be neat to have a listing of all projects providing their modules. This would solve the problem with ie google_analytics project providing the googleanalytics.module.&lt;/p&gt;
&lt;p&gt;In example the &lt;strong&gt;new file with extension proj&lt;/strong&gt; google_analytics.proj would contains&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;provides = googleanalytics&lt;/code&gt;&lt;/pre&gt;&lt;br /&gt;
and annotate.proj&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;provides = annotate, annotate_ed, annotate_bl&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;On the modules page this would show up as is &lt;strong&gt;views_ui missing (provided by views)&lt;/strong&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 09:16:44 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">19 at https://build2be.com</guid>
 <comments>https://build2be.com/content/project-provides#comments</comments>
</item>
<item>
 <title>module dependency management</title>
 <link>https://build2be.com/content/module-dependency-management</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;I don&#039;t like the idea that dependencies are not handled in a unified way. By that I mean that both module.inc and update.php code is written to handle module status. There should be a central library handling their dependencies. When we handle this in a unified way installing a big project like ubercart is easy.&lt;/p&gt;
&lt;p&gt;When installing/enabling a module it is important to know what this module is dependent of. Ie uc_cart is dependent of uc_order. See ie &lt;a href=&quot;http://build2be.com/sites/build2be.com/files/ubercart.neato.png&quot;&gt;http://build2be.com/sites/build2be.com/files/ubercart.neato.png&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 08:55:21 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">17 at https://build2be.com</guid>
 <comments>https://build2be.com/content/module-dependency-management#comments</comments>
</item>
<item>
 <title>Module management in Drupal</title>
 <link>https://build2be.com/content/module-management-drupal</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;The title of this page should be project management because Drupal uses projects for delivering modules.

A companion video shows the Drupal 5.x situation. Using drush, my drush_mm patch and update status to manage and install modules command line. This video shows better dependency checking than currently available in D7. As I hope is clear I want to contribute to implement this into D7.

&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 03 Mar 2008 08:19:10 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">16 at https://build2be.com</guid>
 <comments>https://build2be.com/content/module-management-drupal#comments</comments>
</item>
<item>
 <title>graphviz or hypergraph</title>
 <link>https://build2be.com/content/graphviz-or-hypergraph</link>
 <description>&lt;div class=&quot;field field-name-field-images field-type-image field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;a href=&quot;/content/graphviz-or-hypergraph&quot;&gt;&lt;img class=&quot;img-responsive&quot; src=&quot;https://build2be.com/sites/build2be.com/files/styles/medium/public/neato.png?itok=cXlMY-Dm&quot; width=&quot;185&quot; height=&quot;220&quot; alt=&quot;Dependency graph&quot; title=&quot;Image generated with neato&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;When making these images about modules i use graphviz to render them. But just ran into http://drupal.org/project/hypergraph which looks great.

So I have to study this one!

Commands to render a .dot file are ie with non overlapping nodes
&lt;pre&gt;&lt;code&gt;neato -Goverlap=false -o my.neato.png -T png my.dot&lt;/code&gt;&lt;/pre&gt;

or for a top down graph.
&lt;pre&gt;&lt;code&gt;dot -T png -o my.dot.png my.dot&lt;/code&gt;&lt;/pre&gt;

The attached image is an installation with the jstools, cck, views, drush, og in order to get faster user experiences.

&lt;a href=&quot;/sites/build2be.com/files/neato.png&quot;&gt;View the full image&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 25 Feb 2008 13:16:00 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">12 at https://build2be.com</guid>
 <comments>https://build2be.com/content/graphviz-or-hypergraph#comments</comments>
</item>
<item>
 <title>Questions, Quizes and Answers</title>
 <link>https://build2be.com/content/questions-quizes-and-answers</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;For interviewing or interogating people it is nice to have a prepared list of questions. What module to use?&lt;/p&gt;
&lt;p&gt;I know of these modules.&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/answer&quot;&gt;http://drupal.org/project/answer&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/quiz&quot;&gt;http://drupal.org/project/quiz&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/webform&quot;&gt;http://drupal.org/project/webform&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 25 Feb 2008 13:13:07 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">11 at https://build2be.com</guid>
 <comments>https://build2be.com/content/questions-quizes-and-answers#comments</comments>
</item>
<item>
 <title>In search of modules for faster user experience</title>
 <link>https://build2be.com/content/search-modules-faster-user-experience</link>
 <description>&lt;div class=&quot;field field-name-body field-type-text-with-summary field-label-hidden&quot;&gt;&lt;div class=&quot;field-items&quot;&gt;&lt;div class=&quot;field-item even&quot;&gt;&lt;p&gt;What modules does one need to get faster user experience? This probably leads to using ajax.&lt;/p&gt;
&lt;p&gt;One of my thought is some node/%/edit&#039;s one one page. Preferably on tabs too!&lt;/p&gt;
&lt;p&gt;Just browsing the categories &lt;a href=&quot;http://drupal.org/project/Modules/category/101&quot;&gt;http://drupal.org/project/Modules/category/101&lt;/a&gt; (javascript utilities) and content at &lt;a href=&quot;http://drupal.org&quot;&gt;http://drupal.org&lt;/a&gt; is still overwhelming.&lt;/p&gt;
&lt;p&gt;Here is a listing with just some modules.&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/ajaxtable&quot;&gt;http://drupal.org/project/ajaxtable&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/autosave&quot;&gt;http://drupal.org/project/autosave&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/block_refresh&quot;&gt;http://drupal.org/project/block_refresh&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/compact_forms&quot;&gt;http://drupal.org/project/compact_forms&lt;/a&gt;&lt;br /&gt;
- &lt;a href=&quot;http://drupal.org/project/cck_fieldgroup_tabs&quot;&gt;http://drupal.org/project/cck_fieldgroup_tabs&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Mon, 25 Feb 2008 13:00:12 +0000</pubDate>
 <dc:creator>clemens</dc:creator>
 <guid isPermaLink="false">10 at https://build2be.com</guid>
 <comments>https://build2be.com/content/search-modules-faster-user-experience#comments</comments>
</item>
</channel>
</rss>
