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" });
- cufon - for fonts, see http://agaric.com/note/taking-it-level-with-cufon
- facebook connect - http://drupal.org/project/fbconnect
- twitter - http://drupal.org/project/twitter
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
Comments
Thanks
Thanks for posting that. It was a great presentation!
Post new comment