User login

Public

Page Rendering in Drupal 7 presentation, Moshe Weitzman, transcript

Page Rendering in Drupal 7, presentation by Moshe Weitzman at DrupalCon Paris 2009. Transcript.

Changes you can make with this rendering system that was hard with D6 but trivial in D7.

Hally Turner's The Business of Drupal: How to Get Started and Build Your Drupal Empire

recommended:
Liza Kindred
Jeannie Finks
Jingsheng Wang, Great Brewers, Beercloud app

George Matthes, Digital Rhino

Pick one thing that you kick ass at. Stick to that one thing, own that one thing, be the best at that one good thing. Focus on what you're good at, and what you're not good at, outsource.

DigitalRhino: We are dev. We don't pretend to be design or anything else.

Delegation. Don't be afraid to give it up, let it go.

Project management is key.

Hiring rock stars.

fruitless bactracing of clearing the theme registry

Rebuilding the theme registry

we know to do this it has to call hook_theme()

gp "module_implements('theme'" .
./includes/theme.inc:516: foreach (module_implements('theme') as $module) {

That's in the function

When There's Not a Module For That: Drupal 7 Module Development presentation

You won't understand everything about module development this hour, or this week, this month, this year, or this decade.

That's why the approach here is to learn how to learn.

Warm-up

Who has built a site with Drupal, whether any custom coding was involved or not?

Who has made a module?

Who has made a module for Drupal 7?

Who has touched template.php, node.tpl.php or such in a theme?

Who has programmed in something else?

Bringing Modern CSS to Internet Explorer

http://selectivizr.com/

CSS3 selectors for IE

selectivizr is a JavaScript utility that emulates CSS3 pseudo-classes and attribute selectors in Internet Explorer 6-8. Simply include the script in your pages and selectivizr will do the rest.

http://css3pie.com

PIE makes Internet Explorer 6-8 capable of rendering several of the most useful CSS3 decoration features.

Indent lines in Vim

To indent a set of eight lines in vim, from the first one, in normal (esc) mode:

8>>

To indent a curly braces block, go to a curly brace and:

>%

To mark and indent (using 'm' as the marking letter, the first m is the marking command):

Enter mm at the top of block to indent, go down to the end of what needs to be indented, and type >'m

Syndicate content