User login

May Western Mass Drupal Meetup Notes

Here is a breif outline of what I went over

Feed API module
http://drupal.org/project/feedapi

http://dhakimzadeh.com as a use case
setting up feeds
-linking to content types
-mapping fields
-views integration
setting up a point and click blog site with google reader, and things like it

other features on http://dhakimzadeh.com
- jquery image resizing (code for that is below)
you basically just make a plugin with the code below in a js file, and then use the call to use it
place the following in a file called jquery.maxside.widthremix.js

jQuery.fn.maxSide = function(settings) {
// if no paramaters supplied...
settings = jQuery.extend({
maxSide: 100
}, settings);
return this.each(function(){
var maximum = settings.maxSide;
var thing = jQuery(this);
var thewidth = thing.width();
            var theheight = thing.height();

if (thewidth >= theheight) {
                if (thewidth >= maximum) {
                    thing.attr({
                        width: maximum
                    });
                }
            }

});
};

now you can use the following call to use it

$(".node .content img").maxSide({ maxSide: "515" });

webform theming
http://drupal.org/project/webform

the webform form tpl
the webform email tpl
- the markup field
how to do the specific fields
more instructions in the THEMING.txt file in the webform module dir, check it out

theming popups
http://drupal.org/project/popups
http://drupal.org/project/popups_reference

the files
adding to info
the css
accepts cufon

DBScripts
the module - http://drupal.org/project/dbscripts
the DCDC session vid - http://dc2009.drupalcon.org/session/staging-and-deployment-panel-discussion

Resolution

Searched words: 
western mass drupal meetup amherst college

Comments

Thanks

Thanks for posting that. It was a great presentation!

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.