<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://groups.drupal.org" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Beginner Documentation</title>
 <link>http://groups.drupal.org/beginner-documentation</link>
 <description>A group to discuss what and how to create documentation that has meaning for someone new. This is not about support.</description>
 <language>en</language>
<item>
 <title>Scalability Presentation Notes - SFDUG July 2008</title>
 <link>http://groups.drupal.org/node/13432</link>
 <description>&lt;p&gt;I&#039;m posting this as a wiki for others to add notes or links - based on Neil&#039;s presentation we attended.  I would suggest conversation / disagreement / further discussion about the recommendations herein happen &lt;em&gt;elsewhere&lt;/em&gt; - i.e. in the comments, etc.  :-)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Notes on Scalability&lt;/b&gt;&lt;br /&gt;
Neil Drumm&lt;br /&gt;
SF Drupal User&#039;s Group&lt;br /&gt;
July 14, 2008&lt;/p&gt;
&lt;p&gt;&lt;b&gt;OVERVIEW&lt;/b&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Solve the easy problems first.&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;E.g. setting the right Drupal configurations, CSS, etc&lt;/li&gt;
&lt;li&gt;&amp;nbsp;More below&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Buy more hardware&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;It&#039;s cheaper than programmers&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;&amp;nbsp;Solve the hard problems&lt;/li&gt;
&lt;ul&gt;
&lt;li&gt;&amp;nbsp;Hard problems = a few hours to a few days to solve&lt;/li&gt;
&lt;/ul&gt;
&lt;/ol&gt;
&lt;p&gt;Scalability is not just fixing Drupal issues&lt;br /&gt;
- Whole LAMP stack&lt;br /&gt;
- Also CSS, HTML, Javascript problems (what it takes to render a page)&lt;/p&gt;
&lt;p&gt;A Complex Process&lt;br /&gt;
- Find slowest part&lt;br /&gt;
- -(Whether it&#039;s the database or javascript)&lt;br /&gt;
- Fix&lt;br /&gt;
- Repeat&lt;br /&gt;
&lt;i&gt;(Ba-dum tshhhh....)&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;Scaling PHP is always the same&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;You usually start w/ one server&lt;br /&gt;
(or Amazon web services, or VPS &quot;virtual private server&quot;)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Split DB server and web server&lt;br /&gt;
Drupal DB likes to have a lot of RAM&lt;br /&gt;
Apache - take off of DB server&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Add more web servers&lt;br /&gt;
Round robin DNS&lt;br /&gt;
Load balancer&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Eventually DB clustering&lt;br /&gt;
When?&amp;nbsp; Scale example = Drupal.org has DB clustering&lt;br /&gt;
More on clustering below&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;EASY FIXES&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Turn on Drupal caching&lt;br /&gt;
This makes anon page requests = 1 DB query&lt;br /&gt;
Otherwise typical Drupal page request is 60+ DB queries&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&quot;Minimum cache lifetime&quot; setting - make it longer&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Enable block cache (Drupal 6)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Select &quot;Optimize CSS&quot; &amp;amp; &quot;Optimize Javascript&quot; settings (javascript in Drupal 6)&lt;br /&gt;
Merges all various modules&#039;s css and javscript into one file (CSS or javascript)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Watchdog slows down sites; Drupal 6 allows for swapping out with other logging mechanism&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;&quot;Database clustering is not too fun&quot;&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;What you can do instead&lt;br /&gt;
Optimizing MySQL is key&lt;br /&gt;
MySQL default is configured for a laptop (i.e. not for a server)!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;MySQL Report (from hackmysql.com)&lt;br /&gt;
Extensive report, extensive documentation at hackmysql.com&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;MySQLa&lt;br /&gt;
Checks the slow query log file&lt;br /&gt;
Run &quot;Explain&quot; in front of your query (on the command line)&lt;br /&gt;
Returns query plan from MySQL&lt;br /&gt;
Look for:&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;Key column always filled in&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rows should be low&lt;br /&gt;
Dev.mysql.com - explains the this &quot;explain&quot; table&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Devel module can show queries&lt;br /&gt;
Show how long they take&lt;br /&gt;
Can show querys that take longer than a time-set threshold&lt;br /&gt;
Shows how many times that query was called&lt;br /&gt;
These queries will highlight:&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;What is taking a long time&lt;/li&gt;
&lt;li&gt;What is getting queried all the time (i.e. not optimized)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Watch out for:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Views&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Anything executing too many queries&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;E.g. Views calling other views&lt;/li&gt;
&lt;li&gt;Views usually perform 7-8 queries each&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;i&gt;Side conversation:&lt;br /&gt;
Stored procedures are not used in standard Drupal dev (e.g. not in core) because these are implemented differently in different database systems (e.g. MS SQL vs. MySQL vs PostGRES)).&lt;/i&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;PHP / APACHE FIXES&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Install op-code cache&lt;br /&gt;
This is a PHP extension&lt;br /&gt;
Provides a good Apache speed improvement&lt;br /&gt;
E.g. APC or E-excelerator&lt;br /&gt;
Note:&amp;nbsp; Can cause site faults&lt;br /&gt;
But can be configured to automate fixes (i.e. restart Apache)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Optimize calling external web services&lt;br /&gt;
Set up proxy to cache these external services&lt;br /&gt;
&lt;i&gt;E.g. Squid&lt;/i&gt;&lt;br /&gt;
Installing Squid can add a lot of complexity&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;OPTIMIZING FRONT-END&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Test w/ Firebug&lt;br /&gt;
Net tab: shows all requests used to build page&lt;br /&gt;
YSlow (Yahoo add-on):&lt;/li&gt;
&lt;li&gt;Letter grading of various services&lt;/li&gt;
&lt;li&gt;Used for large installations&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Your aim is to reduce HTTP requests&lt;br /&gt;
Javascript profiler (in Firebug) - more JS, slower page load&lt;/p&gt;
&lt;p&gt;&lt;b&gt;MORE COMPLEX FIXES&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Using MemCache&lt;br /&gt;
Caches whole &quot;objects&quot; (user / node object)&lt;br /&gt;
I.e. Caches results of one object = multiple qrys in one&lt;br /&gt;
Used in addition to op-code cache&lt;br /&gt;
Run it as close to web server as possible&lt;br /&gt;
Requires code patch&lt;br /&gt;
Hard to debug&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;DB Clustering&lt;br /&gt;
Structure:&lt;br /&gt;
1st db server - all rights (read and write)&lt;br /&gt;
2nd &quot;slave&quot; db server - only read rights&lt;br /&gt;
&amp;nbsp;(DB clustering ability is built-in to Drupal 6)&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Example:&amp;nbsp; Drupal.org&lt;br /&gt;
2 load balancers, w/ Squid&lt;br /&gt;
3 web servers:&lt;br /&gt;
- DB master - read/write&lt;br /&gt;
- Slaves - search / read only&lt;/p&gt;
&lt;p&gt;&lt;b&gt;OTHER NOTES&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;VPS &quot;virtual private server&quot; recommendations&lt;br /&gt;
Advomatic uses Voxel.net (all Xen machines)&lt;br /&gt;
Groups.drupal.org/highperformance&amp;nbsp; (node/229)&lt;br /&gt;
&lt;i&gt;&quot;Anything with Shack in the name is a bad idea&quot;&lt;/i&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Tag1Consulting.com/drupal&lt;br /&gt;
Drupal performance checklist&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/curriculum&quot;&gt;Curriculum and Training&lt;/a&gt;&lt;/div&gt;</description>
 <group domain="http://groups.drupal.org/bay-area">Bay Area</group>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <group domain="http://groups.drupal.org/curriculum">Curriculum and Training</group>
 <pubDate>Thu, 24 Jul 2008 23:46:33 +0000</pubDate>
 <dc:creator>smokinggoat</dc:creator>
 <guid isPermaLink="false">13432 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Should the Drupal.org Menu-Bar have a Glossary Item, that link to a Glossary and/or Drupal-Dictionary and/or Vocabolary Page?</title>
 <link>http://groups.drupal.org/node/12533</link>
 <description>&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/12533#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Wed, 18 Jun 2008 06:12:28 +0000</pubDate>
 <dc:creator>wolfflow</dc:creator>
 <guid isPermaLink="false">12533 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Article - for a new Drupal Documentation Project</title>
 <link>http://groups.drupal.org/node/12466</link>
 <description>&lt;p&gt;Hi All,&lt;/p&gt;
&lt;p&gt;Just after being denied for the proposal of a new Group entry entitled &quot;Documentation Task Force&quot; i was referred&lt;br /&gt;
that here is the best place for my efforts:&lt;/p&gt;
&lt;p&gt;For those of the Group who does not know my person and motivations, i will suggest to read some posting I already&lt;br /&gt;
have contributed on drupal.org to focus on the big problem to get oriented in the Drupal.org ---- &lt;a href=&quot;http://drupal.org/handbooks&quot;&gt;DRUPAL HANDBOOKS.&lt;/a&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href=&quot;http://drupal.org/node/268264&quot;&gt; Is there a task force that is dedicate to correct or complete ...&lt;/a&gt;
&lt;/ol&gt;
&lt;p&gt;This Article will take me some time to be complete. I thing it&#039;s worth writing it, even if many of you will complain and surely criticize it. Be aware that this article is wroted under the strength of a &lt;strong&gt;no native english&lt;/strong&gt; and I&#039;m going to report here as :&lt;strong&gt; NNE&lt;/strong&gt;. Lets beginn:&lt;/p&gt;
&lt;p&gt;An idiom is a phrase where the words together have a meaning that is different from the dictionary definitions of the individual words, which can make idioms hard for ESL students &lt;em&gt;(Usually refers to developmental-level instruction in English language skills for non-native speakers.)&lt;/em&gt; and learners to understand.&lt;/p&gt;
&lt;p&gt;Well in Italian language exist an old &quot;saying&quot;:&lt;/p&gt;
&lt;p&gt;
&lt;li&gt;Italian language:&lt;em&gt; Analizzare con la lente d&#039;ingrandimento&quot;&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;German language:  Etwas unter der Lupe nehmen &lt;/em&gt;&lt;/li&gt;
&lt;li&gt;English language: &lt;em&gt; &quot;Does not exist?&quot;&lt;/em&gt;&lt;/li&gt;&lt;/p&gt;
&lt;p&gt;Wow ! &lt;em&gt;&quot;a word or phrase that particular people use in particular situations&quot;&lt;/em&gt; like&lt;br /&gt;
          &quot;Take something under the lens&quot; is not in use in the English language?&lt;/p&gt;
&lt;p&gt;From the Google Translation tool (english --&amp;gt; german) I got this:&lt;/p&gt;
&lt;li&gt;Take something under the lens  ----&amp;gt;  Nehmen Sie etwas UNTER DER LUPE&lt;/li&gt;&lt;/p&gt;
&lt;p&gt;From the Google Translation tool (english --&amp;gt; Italian) I got this:&lt;/p&gt;
&lt;li&gt;Take something under the lens  ----&amp;gt; Prendere qualcosa sotto la lente&lt;/li&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That is exactly what I&#039;m going to do with the Drupal.org first &lt;a href=&quot;http://drupal.org/handbooks&quot;&gt;Documentation Page&lt;/a&gt;&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
The Drupal.org staff, that here I just will report as &lt;strong&gt;&quot;STAFF&quot;&lt;/strong&gt; named this page &lt;strong&gt;HANDBOOKS&lt;/strong&gt;. Lets go shortly to the english definition of a &quot;Handbook&quot; provided by Google &lt;em&gt;(the define tool)&lt;/em&gt;:&lt;/p&gt;
&lt;ol&gt;
&lt;em&gt; I chose 4 of the many definitions you get:&lt;/em&gt;&lt;br /&gt;
&amp;nbsp;&lt;/p&gt;
&lt;li&gt;A reference manual usually consulted for quick fact-finding or for a concise and authoritative survey of a topic.&lt;/li&gt;
&lt;li&gt;A collection of informational pieces on one or more subjects, arranged for the quick location of facts.&lt;/li&gt;
&lt;li&gt;A reference book that provides concise, useful data and other information on a specific subject.&lt;/li&gt;
&lt;li&gt;A handbook is a small manual, reference work, or other collection of instructions, intended to provide ready reference. A vade mecum (lat. &quot;go with me&quot;) or pocket reference is intended to be carried at all times. ...&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;So let us now resume the basically principle and definition that might be applyed for defining a&lt;br /&gt;
possible new Drupal Documentation project. Despite the fact: that a small amount of knowledge can cause people to think they are more expert than they really are, i will list my short personal opinions about the DRUPAL HANDBOOKS page here.&lt;/p&gt;
&lt;p&gt;Preface:&lt;/p&gt;
&lt;p&gt;We all know &lt;em&gt; if not I will go to reply and report for those who does&#039;t &lt;/em&gt;, internet special arguments related Communities tend to build their own slangs. I would try to theorize that the word &quot;Slang&quot; can be compared easily to the word &quot;Idiom&quot;, just to simplify the range of concepts I&#039;m trying to focus on here.&lt;/p&gt;
&lt;p&gt;The first misstake that the writer of this page did is viewable at the first sentence:&lt;/p&gt;
&lt;li&gt;
&lt;em&gt;The Drupal handbooks offer a reference for those interested in Drupal whether novice or experienced, users or developers. &lt;/em&gt;&lt;/li&gt;
&lt;p&gt;&lt;strong&gt;Novice ?&lt;/strong&gt; &amp;amp; &lt;strong&gt;Experienced ?&lt;/strong&gt; together?&lt;br /&gt;
What for a gambling. That is one basically reason IMO because it comes to a such chaos of documentation on Drupal.org.&lt;br /&gt;
The next sentence shows up where the invitation and suggestion to collaborate to this project&lt;br /&gt;
lost control.&lt;/p&gt;
&lt;li&gt;All content is supplied by volunteers, please contribute where you see a need &lt;/li&gt;&lt;/p&gt;
&lt;p&gt;Volonteers can be any kind of visitors with different language, different level of knowledge about theirs language, different level of knowledge about Drupal and finally different level of personal pragmatism &lt;em&gt;(the doctrine that truth is the practical efficacy of an idea.)&lt;/em&gt; applyied in writing their documentation contributions.&lt;/p&gt;
&lt;p&gt;.....to be continued.&lt;/p&gt;
&lt;p&gt;Every comment and suggestions are very much appreciate!&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/12466#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/472">project</category>
 <category domain="http://groups.drupal.org/taxonomy/term/115">proposal</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Mon, 16 Jun 2008 08:55:18 +0000</pubDate>
 <dc:creator>wolfflow</dc:creator>
 <guid isPermaLink="false">12466 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Is GFDL Compatible with GPL?</title>
 <link>http://groups.drupal.org/node/10596</link>
 <description>&lt;p&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/GNU_Free_Documentation_License&quot; title=&quot;http://en.wikipedia.org/wiki/GNU_Free_Documentation_License&quot;&gt;http://en.wikipedia.org/wiki/GNU_Free_Documentation_License&lt;/a&gt; says that GFDL is the counterpart for documentation to &lt;a href=&quot;http://en.wikipedia.org/wiki/Gpl&quot; title=&quot;http://en.wikipedia.org/wiki/Gpl&quot;&gt;http://en.wikipedia.org/wiki/Gpl&lt;/a&gt;, so I&#039;m wondering if they are compatible, and if documentation published under GFDL may be packaged with modules in the Drupal.org repository?&lt;/p&gt;
&lt;p&gt;Thanks,&lt;br /&gt;
Aaron Winborn&lt;br /&gt;
&lt;a href=&quot;http://aaronwinborn.com/&quot; title=&quot;http://aaronwinborn.com/&quot;&gt;http://aaronwinborn.com/&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/legal&quot;&gt;Legal&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/10596#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <group domain="http://groups.drupal.org/drupal-for-good">Drupal for Good</group>
 <group domain="http://groups.drupal.org/legal">Legal</group>
 <pubDate>Thu, 10 Apr 2008 00:57:21 +0000</pubDate>
 <dc:creator>aaron</dc:creator>
 <guid isPermaLink="false">10596 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Few Documentation Clarification Requested -- Languages</title>
 <link>http://groups.drupal.org/node/8403</link>
 <description>&lt;p&gt;I really dont know the answer to this, and I notice its not in the Language Documentation.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://drupal.org/node/11130&quot; title=&quot;http://drupal.org/node/11130&quot;&gt;http://drupal.org/node/11130&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://drupal.org/node/31714&quot; title=&quot;http://drupal.org/node/31714&quot;&gt;http://drupal.org/node/31714&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Neither one talks about if HTML is allowed or converted.  It would be nice if this was mentioned.  Even if its a Comment, that would be great.  Can the Translations group please answer if you need to put HTML within the translations .po file, and/or the Admin interface... and then can we make changes/Comments to the appropriate documentation.  There is a few places in both documents this information should/could go... anyone have suggestions...&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/translations&quot;&gt;Translations&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/8403#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <group domain="http://groups.drupal.org/translations">Translations</group>
 <pubDate>Wed, 23 Jan 2008 20:01:23 +0000</pubDate>
 <dc:creator>GreenJelly</dc:creator>
 <guid isPermaLink="false">8403 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Sessions on Getting Help From The Community Wanted For Drupalcon 2008</title>
 <link>http://groups.drupal.org/node/8289</link>
 <description>&lt;p&gt;My name is Matthew Pare and I&#039;m a Co-Chair for the &quot;&lt;a href=&quot;http://boston2008.drupalcon.org/community-and-core-track-description&quot;&gt;Community and Core&lt;/a&gt;&quot; track for &lt;a href=&quot;http://boston2008.drupalcon.org/&quot;&gt;Drupalcon Boston 2008&lt;/a&gt;. Over the last couple of weeks we have been planning and brainstorming to make &lt;a href=&quot;http://boston2008.drupalcon.org/&quot;&gt;Drupalcon Boston 2008&lt;/a&gt; the best Drupalcon to date! One of our recommended track session topics is &quot;Getting Help From The Community&quot; and since your viewing this post on the &lt;a href=&quot;http://groups.drupal.org/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt; group I thought you would be excellent candidates for submitting sessions on the topic.&lt;/p&gt;
&lt;h3&gt;How To Submit Your Session&lt;/h3&gt;
&lt;p&gt;We have several &lt;a href=&quot;http://boston2008.drupalcon.org/community-and-core-track-description&quot;&gt;recommended topics for Community and Core&lt;/a&gt; sessions but now its your turn to &lt;a href=&quot;http://boston2008.drupalcon.org/node/add/session&quot;&gt;&lt;strong&gt;submit your session&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Visit &lt;a href=&quot;http://boston2008.drupalcon.org/&quot;&gt;boston2008.drupalcon.org&lt;/a&gt; to learn more about Drupalcon Boston 2008, &lt;a href=&quot;http://boston2008.drupalcon.org/user/register&quot;&gt;register to attend&lt;/a&gt;,  &lt;a href=&quot;http://boston2008.drupalcon.org/sessions&quot;&gt;&lt;strong&gt;view already submitted sessions&lt;/strong&gt;&lt;/a&gt;, and even &lt;a href=&quot;http://boston2008.drupalcon.org/node/add/session&quot;&gt;&lt;strong&gt;submit your own session&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Save the Date&lt;/h3&gt;
&lt;p&gt;Drupalcon Boston 2008 takes place from &lt;strong&gt;March 3, 2008 to March 6, 2008&lt;/strong&gt; in Boston Convention and Expo Center. In addition, there will also be a Drupal Code Sprint on March 7.&lt;/p&gt;
&lt;h3&gt;Useful Links&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;http://boston2008.drupalcon.org/node/add/session&quot;&gt;Submit a Session&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://boston2008.drupalcon.org/sessions&quot;&gt;View already registered sessions&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://boston2008.drupalcon.org/logistics-and-accommodations&quot;&gt;Logistics and Accommodations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://boston2008.drupalcon.org/conference-program-tracks-and-sessions&quot;&gt;Conference Program, Tracks, and Sessions&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://boston2008.drupalcon.org/business-and-marketing-track-descriptions&quot;&gt;Business and marketing track&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://boston2008.drupalcon.org/design-and-user-experience-track-descriptions&quot;&gt;Design and user experience track&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://boston2008.drupalcon.org/site-building-track-descriptions&quot;&gt;Site building track&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://boston2008.drupalcon.org/community-and-core-track-description&quot;&gt;Community and core&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Please submit your session proposals as soon as possible and I hope to see you all in Boston real soon.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;br&gt;&lt;br /&gt;
-mpare&lt;br&gt;&lt;br /&gt;
&lt;em&gt;DON&#039;T MISS EARTH&#039;S LARGEST GATHERING OF DRUPAL PROFESSIONALS!&lt;br /&gt;
Drupalcon Boston 2008 - March 3-6, 2008&lt;br /&gt;
Learn more at &lt;a href=&quot;http://boston2008.drupalcon.org&quot; title=&quot;http://boston2008.drupalcon.org&quot;&gt;http://boston2008.drupalcon.org&lt;/a&gt;&lt;br&gt;&lt;/em&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/8289#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/247">drupalcon</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Sat, 19 Jan 2008 00:39:03 +0000</pubDate>
 <dc:creator>mpare</dc:creator>
 <guid isPermaLink="false">8289 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Mentoring</title>
 <link>http://groups.drupal.org/node/4245</link>
 <description>&lt;p&gt;Check out this suggestion: &lt;a href=&quot;http://drupal.org/node/147183&quot; title=&quot;http://drupal.org/node/147183&quot;&gt;http://drupal.org/node/147183&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/4245#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/2206">Beginners</category>
 <category domain="http://groups.drupal.org/taxonomy/term/2207">Mentoring</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Sun, 27 May 2007 13:37:53 +0000</pubDate>
 <dc:creator>NancyDru</dc:creator>
 <guid isPermaLink="false">4245 at http://groups.drupal.org</guid>
</item>
<item>
 <title>URL Modules</title>
 <link>http://groups.drupal.org/node/2920</link>
 <description>&lt;p&gt;I&#039;ve put this together for URLs &amp;amp; and Clean URLs. I&#039;d like to see any other add-on modules under it as well following the same WHEWF (What, How, Example, Why, Further reading.) I will be working on PathAuto tomorrow. I have to stop doing this stuff or I&#039;m never going to get my site up LOL.&lt;/p&gt;
&lt;p&gt;URL = Uniform Resource Locator. The text you see, or type in your browser address bar. i.e., &lt;a href=&quot;http://www.example.com&quot; title=&quot;http://www.example.com&quot;&gt;http://www.example.com&lt;/a&gt; http:// is the protocol your browser uses to find &lt;a href=&quot;http://www.example.com&quot; title=&quot;www.example.com&quot;&gt;www.example.com&lt;/a&gt; which is where the data lives.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Administer &amp;gt;&amp;gt; Site Configuration &amp;gt;&amp;gt; Clean URLs&lt;/em&gt;&lt;br /&gt;
If you are able to, enabling this option allows for &lt;strong&gt;Clean URLs&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;WHAT&lt;br /&gt;
This module (core) allows you to enable &lt;strong&gt;Clean URLs&lt;/strong&gt;. A clean URL doesn&#039;t have ?q= in the address bar of your browser. With clean URLs you instead get text.&lt;/p&gt;
&lt;p&gt;EXAMPLE&lt;br /&gt;
The URL to the Create Content link &lt;em&gt;without&lt;/em&gt; clean URLs would be: &lt;a href=&quot;http://www.example.com/?q=node/add&quot; title=&quot;http://www.example.com/?q=node/add&quot;&gt;http://www.example.com/?q=node/add&lt;/a&gt;&lt;br /&gt;
The link or address &lt;em&gt;with&lt;/em&gt; clean URLs it would be: &lt;a href=&quot;http://www.example.com/node/add&quot; title=&quot;http://www.example.com/node/add&quot;&gt;http://www.example.com/node/add&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;HOW&lt;br /&gt;
Enable this from: &lt;em&gt;Administer &amp;gt;&amp;gt; Site configuration &amp;gt;&amp;gt; Clean URLs&lt;/em&gt; your server must be able to allow them. If you fail the test that is offered see &lt;a href=&quot;http://drupal.org/node/15365&quot;&gt;Clean URLs&lt;/a&gt; for further information.&lt;/p&gt;
&lt;p&gt;WHY&lt;br /&gt;
Why would you want to enable this? It&#039;s much easier to type an address. Your links will look better, and are easier to read and share, and search engines have an easier time with them.&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2920#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1573">Documentation</category>
 <category domain="http://groups.drupal.org/taxonomy/term/1585">URL Modules</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Fri, 23 Feb 2007 22:18:39 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2920 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Terminology</title>
 <link>http://groups.drupal.org/node/2917</link>
 <description>&lt;p&gt;I finished up the Drupal Simply page (what, how, why with suggested additional reading) today over at the dojo site and promoted it to a book. However when I was re-reading it and trying for beginner eyes I began to wonder if people would understand the words &lt;em&gt;display engine&lt;/em&gt; and tried to find what Drupalers called it and couldn&#039;t find anything other then Theme. Does anyone know what this part of the system is called other then Theme? I am going to replace display engine with theme engine, but wondered if there was something else it was called.&lt;/p&gt;
&lt;p&gt;Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2917#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1573">Documentation</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Fri, 23 Feb 2007 18:52:00 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2917 at http://groups.drupal.org</guid>
</item>
<item>
 <title>What I&#039;d like to see</title>
 <link>http://groups.drupal.org/node/2891</link>
 <description>&lt;p&gt;I&#039;ve spent my hour and now have to move on to paying work ;-) lol what I like to see simplified is:&lt;br /&gt;
Node, what is it and what does it do for you?&lt;br /&gt;
Taxonomy, what does it do for you? Also need to cover that it&#039;s under Category in the Admin area&lt;br /&gt;
Breadcrumb, what is it and what does it do for you?&lt;br /&gt;
Creating content. How, and what you can do with it after it&#039;s created.&lt;/p&gt;
&lt;p&gt;I personally still need to get much clearer on menus, and Taxonomy vs CCK fields. I&#039;m thinking one is more about structure (Taxonomy) and the other is more about presentation (CCK), but I&#039;d like to get my personal understanding nailed on on that.&lt;/p&gt;
&lt;p&gt;I also want to make sure were not recreating the wheel, so need cross ref what already exists on the site.&lt;/p&gt;
&lt;p&gt;Rock on!&lt;br /&gt;
Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2891#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1573">Documentation</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Wed, 21 Feb 2007 19:35:24 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2891 at http://groups.drupal.org</guid>
</item>
<item>
 <title>viewfield module</title>
 <link>http://groups.drupal.org/node/2890</link>
 <description>&lt;p&gt;This module allows someone to include on a page of content (node) a search&lt;br /&gt;
and display of additional content from a preexisting view.&lt;/p&gt;
&lt;p&gt;e.g., you have a content type for CD’s, they include a CCK field for artists. You could create a content type for the artist and include on that content type a viewfield allowing Drupal to find and present any of the CD content types that belong to that artist so you would end up with a content page view of:&lt;/p&gt;
&lt;p&gt;Artist information &amp;lt;~~ This would come from the other fields that were on the created content.&lt;br /&gt;
A listing of all CD’s that this artist in on. &amp;lt;~~ This would come from the viewfield module.&lt;/p&gt;
&lt;p&gt;Needed:&lt;br /&gt;
CCK, Views, Viewfield&lt;br /&gt;
Create:&lt;br /&gt;
CD Content type with a CCK Field for Artists&lt;br /&gt;
View of CD by Artist&lt;br /&gt;
Artists Content type with a View Field Field&lt;/p&gt;
&lt;p&gt;If someone has this module installed could you share a bit of the real process&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2890#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1574">module</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Wed, 21 Feb 2007 19:29:04 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2890 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Using drupaldojo.org</title>
 <link>http://groups.drupal.org/node/2889</link>
 <description>&lt;p&gt;Thanks to Drupal Dojo, we can use the &lt;a href=&quot;http://www.drupaldojo.org&quot; title=&quot;www.drupaldojo.org&quot;&gt;www.drupaldojo.org&lt;/a&gt; to hash out the working and how to present the book (pages). Once we have something here, we can move it to the Wiki so that anyone can offer edits. Once something is in solid form we can add it to the Book. Please post here 1st so people know something has been added and also this is also were we can attract newer members so we need to stay within &lt;em&gt;Drupal&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2889#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1573">Documentation</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Wed, 21 Feb 2007 19:03:02 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2889 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Just came over</title>
 <link>http://groups.drupal.org/node/2878</link>
 <description>&lt;p&gt;Hi all add1sun, invited me over to co-habitat with ya all on the drupaldojo.org I&#039;m not sure how this will fit in as I&#039;m aiming for simplification vs technical information. I&#039;d love to play around and hopefully others will fix what I&#039;m missing and will give feedback. I&#039;ve just started over at &lt;a href=&quot;http://groups.drupal.org/beginner-documentation&quot; title=&quot;http://groups.drupal.org/beginner-documentation&quot;&gt;http://groups.drupal.org/beginner-documentation&lt;/a&gt; so I&#039;m not sure who else is going to play with me, but I&#039;ll keep plugging along.&lt;/p&gt;
&lt;p&gt;Not sure if you want to add a book, or if I should just start up in the wiki area.&lt;/p&gt;
&lt;p&gt;Thanks for the invite!&lt;br /&gt;
Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/drupal-dojo&quot;&gt;Drupal Dojo&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2878#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1329">documentation</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <group domain="http://groups.drupal.org/drupal-dojo">Drupal Dojo</group>
 <pubDate>Wed, 21 Feb 2007 01:46:35 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2878 at http://groups.drupal.org</guid>
</item>
<item>
 <title>CCK Widget</title>
 <link>http://groups.drupal.org/node/2876</link>
 <description>&lt;p&gt;What is a CCK Widget?&lt;/p&gt;
&lt;p&gt;The final user form (create content) for inputting data (site content) is created using widgets. The admin creates a content type or node (user form), by adding fields via CCK. The admin chooses what widget (field container) to use to collect that data (content). e.g. you want the user to put a number in the field so you select the integer/text widget. Each data type, and the way it can be entered is a widget.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;I&#039;m not sure if this is a correct explanation, I&#039;ve asked over at the CCK group but haven&#039;t received a response so anyone has a comment, or feels this is still confusing please share&lt;/em&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2876#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1561">CCK</category>
 <category domain="http://groups.drupal.org/taxonomy/term/1562">widget</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Tue, 20 Feb 2007 21:19:49 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2876 at http://groups.drupal.org</guid>
</item>
<item>
 <title>What does Taxonomy allow you to do?</title>
 <link>http://groups.drupal.org/node/2875</link>
 <description>&lt;p&gt;Taxonomy is the parent term for: Categories, Vocabulary, Terms, &amp;amp; Tags. &lt;em&gt;Is there any other word we need to add?&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;That&#039;s all I got right now, can anyone else add something here?&lt;/em&gt;&lt;br /&gt;
&lt;em&gt;Why is it a good thing? What does it allow you to do? Why do you want to use it? In what ways do you want to use it?&lt;/em&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2875#comments</comments>
 <category domain="http://groups.drupal.org/taxonomy/term/1560">Taxonomy</category>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Tue, 20 Feb 2007 20:00:11 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2875 at http://groups.drupal.org</guid>
</item>
<item>
 <title>What we can do and possibly how to do it</title>
 <link>http://groups.drupal.org/node/2863</link>
 <description>&lt;p&gt;I&#039;d like to see some clarifying information presented at the main site, but think it might be better to hash out some of the terms before asking to make it live. I&#039;d love it if they allowed a Beginner Book as I don&#039;t think it really fits anywhere else but we can deal with that later.&lt;/p&gt;
&lt;p&gt;It appears that we are going to have to use &lt;strong&gt;Story&lt;/strong&gt; and comments as the Wiki nor the Story shows revisions made so everything will have to be done in comments which only Story has.&lt;/p&gt;
&lt;p&gt;If you&#039;ve crafted something you feel explains a piece of Drupal please share it, then we can talk about it and get it submitted.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;br /&gt;
Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2863#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Mon, 19 Feb 2007 21:16:20 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2863 at http://groups.drupal.org</guid>
</item>
<item>
 <title>Very basic understanding of Drupal and how it works</title>
 <link>http://groups.drupal.org/node/2862</link>
 <description>&lt;p&gt;I need an over simplification to get my head around what I am creating with Drupal. I&#039;d appreciate it if someone lets me know if I&#039;m wrong. Without going into the actual technology and mechanics or what additional modules can do.&lt;/p&gt;
&lt;p&gt;Drupal provides a engine to show content and a way to hold that content.&lt;/p&gt;
&lt;p&gt;How the content is held is based on tables, which creates a database.&lt;/p&gt;
&lt;p&gt;When you create a piece of content it is put into this table.&lt;/p&gt;
&lt;p&gt;Information can be pulled out of this table based on:&lt;br /&gt;
Content Type (Page, story, blog, book), Content Title (Title given when it&#039;s created), &amp;amp; Taxonomy (Category&amp;gt;Vocabulary&amp;gt;Term).&lt;/p&gt;
&lt;p&gt;How the content is seen is based on the display engine (Theme, blocks, and all that php stuff)&lt;/p&gt;
&lt;p&gt;Having different content types allows for grouping and a way to apply how it looks as well as who has access to it, so in a sense they are like another way to &quot;tag&quot; an item. It gives the &quot;engine&quot; a way to pull the data.&lt;/p&gt;
&lt;p&gt;Titles &amp;amp; Taxonomy allow for the same.&lt;/p&gt;
&lt;p&gt;This data is contained in various tables and cross applied creating a complex database in which to query from.&lt;/p&gt;
&lt;p&gt;Nothing exists anywhere as a page of information, like in a book, or on a static web site, but is created as a page by the display engine.&lt;/p&gt;
&lt;p&gt;For simplicity this is a basic idea of what is happening.&lt;/p&gt;
&lt;p&gt;Heading:&lt;br /&gt;
Content Type - Content Title - Taxonomy - Content&lt;br /&gt;
Items in bold can be pulled from to create the view&lt;/p&gt;
&lt;p&gt;Data:&lt;br /&gt;
Story - Mary had a little Lamb - Child, lamb - Mary had a little lamb who&#039;s fleece was white as snow.&lt;br /&gt;
Story - Jack and the Bean Stalk - Child, beans - There once was a boy named Jack...&lt;br /&gt;
Page - What you need to know about beans - Information, beans - Beans can be a great source of protein, but you need to know the type...&lt;/p&gt;
&lt;p&gt;The display engine can be told to display all Content Types, or Titles, or Taxonomy Terms as links to the data. These links are something like a search where you search based on one of those data types and the display engine presents you with the data that includes the &quot;type&quot; you clicked on, taking if from the table giving you what exists in that &quot;row&quot; (what data fits the query).&lt;br /&gt;
If you were looking at what types of content existed the display engine based on the question (query) would be able to present:&lt;br /&gt;
Story&lt;br /&gt;
Page&lt;br /&gt;
These would be links because they are main data types that can be pulled on or queried.&lt;/p&gt;
&lt;p&gt;When you click on an individual link presented in that search or query the engine then is directed to show only the data that exists for that specific heading type. Displayed again how it was told to display it.&lt;br /&gt;
Stories:&lt;br /&gt;
Mary had a little Lamb&lt;br /&gt;
Jack and the Bean Stalk&lt;/p&gt;
&lt;p&gt;And then the display engine could be told how to display a single view of a single story:&lt;/p&gt;
&lt;p&gt;Mary had a little Lamb (title) Child Lamb (terms)&lt;br /&gt;
Mary had a little lamb who&#039;s fleece was white as snow (content)&lt;/p&gt;
&lt;p&gt;Without the display engine the content wouldn&#039;t have design or meaning, without the table there wouldn&#039;t be a way to pull the information in various ways or forms. Together they give you the ability to effect both.&lt;/p&gt;
&lt;p&gt;Comments?&lt;/p&gt;
&lt;p&gt;Shari&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2862#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Mon, 19 Feb 2007 21:05:33 +0000</pubDate>
 <dc:creator>WebWeaver64@drupal.org</dc:creator>
 <guid isPermaLink="false">2862 at http://groups.drupal.org</guid>
</item>
<item>
 <title>holy cow</title>
 <link>http://groups.drupal.org/node/2859</link>
 <description>&lt;p&gt;see this massive new handbook section:  &lt;a href=&quot;http://drupal.org/node/120612&quot; title=&quot;http://drupal.org/node/120612&quot;&gt;http://drupal.org/node/120612&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2859#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Mon, 19 Feb 2007 20:14:35 +0000</pubDate>
 <dc:creator>pwolanin</dc:creator>
 <guid isPermaLink="false">2859 at http://groups.drupal.org</guid>
</item>
<item>
 <title>one resource</title>
 <link>http://groups.drupal.org/node/2855</link>
 <description>&lt;p&gt;I just came across this post which contains a CC-licensed beginner&#039;s guide for 4.7 (I&#039;m not sure who the corresponding Drupal user is):&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://smokinggoat.wordpress.com/2007/02/16/another-drupal-user-guide/&quot; title=&quot;http://smokinggoat.wordpress.com/2007/02/16/another-drupal-user-guide/&quot;&gt;http://smokinggoat.wordpress.com/2007/02/16/another-drupal-user-guide/&lt;/a&gt;&lt;/p&gt;
&lt;div class=&quot;og_rss_groups&quot;&gt;&lt;a href=&quot;/beginner-documentation&quot;&gt;Beginner Documentation&lt;/a&gt;&lt;/div&gt;</description>
 <comments>http://groups.drupal.org/node/2855#comments</comments>
 <group domain="http://groups.drupal.org/beginner-documentation">Beginner Documentation</group>
 <pubDate>Mon, 19 Feb 2007 14:59:30 +0000</pubDate>
 <dc:creator>pwolanin</dc:creator>
 <guid isPermaLink="false">2855 at http://groups.drupal.org</guid>
</item>
</channel>
</rss>
