Argument Node Created

Field Edit Comment Post Date

So much options with no javascript :)

Page Add Filter

Adding one of zillion filters (No javascript enabled browser)

Edit a view

When editing a view without javascript one get this.

Views Add

When adding a views on has to decide what this view is about. What content do you want to display. Is it basically a node? Or a term. The basic idea is "What is your primary table". And is it possible to grab all related content with it?
free form: 

Presentation

What is a (web)page? A page contains some designated content and some blocks spread around that content. And how do views fix in? We will walk through the attached mindmap.
Now it becomes messy :( ... how to explain the walk trough?!?
../all/modules/drush/drush --uri=drupaljam.demo sql cli
select path from menu_router;

Generate content

  1. Generate vocabularies and terms using admin/generate/taxonomy
  2. Generate users using admin/generate/user
  3. Generate nodes using admin/generate/content
    • 5 group nodes
    • 5 pages with terms
    • 50 stories with terms and comments and
    • 20 events with terms and comments
  4. Add a queue using admin/content/nodequeue
  5. Generate queue assignments using admin/content/generate_nodequeue

Enable and configure modules


cd sites/default

Preparation

We need drush, drupal and a few modules. You can download the http://build2be.com/sites/build2be.com/files/db.dump.tar.gz and http://build2be.com/sites/build2be.com/files/drupaljam.build2be.com.tar.gz The end result will be all the green enabled modules in the picture below.

Create and Fill the database

Just follow README.mysql.txt

mysqladmin -u root -p create drupaljam_demo
mysql -u root -p 
> GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON drupaljam_demo.* TO 'drupaljam_demo'@'localhost' IDENTIFIED BY 'drupaljam_demo';

Prepare settings.php

mv default.settings.php settings.php 
chmod 777 settings.php

Add the site to apache (my steps)

cd /etc/apache2/sites-available/
cp drupaljam.dev drupaljam.demo
vi drupaljam.demo
a2ensite drupaljam.demo
vi /etc/hosts
# add 127.0.0.3 drupal.demo

free form: