<?xml version="1.0" encoding="UTF-8"?> <rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:media="http://search.yahoo.com/mrss/"
><channel><title>CoPress &#187; Minnesota Daily</title> <atom:link href="http://www.copress.org/tag/minnesota-daily/feed/" rel="self" type="application/rss+xml" /><link>http://www.copress.org</link> <description>Building a Better Technical Ecosystem for Student News Organizations</description> <lastBuildDate>Mon, 08 Mar 2010 18:46:04 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.1</generator> <image><title>CoPress</title> <url>http://www.copress.org/media/2009/01/copress_100x100_notrans.png</url><link>http://www.copress.org</link> <width>100</width> <height>100</height> <description>Building a Better Technical Ecosystem for Student News Organizations</description> </image> <copyright>2006-2007 </copyright> <managingEditor>website@copress.org (CoPress)</managingEditor> <webMaster>website@copress.org (CoPress)</webMaster> <image> <url>http://host.copresshosting.com/~copress/main/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url><title>CoPress &#187; Minnesota Daily</title><link>http://www.copress.org</link> <width>144</width> <height>144</height> </image> <itunes:subtitle></itunes:subtitle> <itunes:summary>Building a better technical ecosystem for student news organizations</itunes:summary> <itunes:keywords></itunes:keywords> <itunes:category text="Society &amp; Culture" /> <itunes:author>CoPress</itunes:author> <itunes:owner> <itunes:name>CoPress</itunes:name> <itunes:email>website@copress.org</itunes:email> </itunes:owner> <itunes:block>no</itunes:block> <itunes:explicit>no</itunes:explicit> <itunes:image href="http://host.copresshosting.com/~copress/main/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" /> <item><title>Iterative Drupal Development with the Minnesota Daily</title><link>http://www.copress.org/2009/10/06/iterative-drupal-development-with-the-minnesota-daily/</link> <comments>http://www.copress.org/2009/10/06/iterative-drupal-development-with-the-minnesota-daily/#comments</comments> <pubDate>Tue, 06 Oct 2009 23:00:09 +0000</pubDate> <dc:creator>Son Huynh</dc:creator> <category><![CDATA[Reports from the Field]]></category> <category><![CDATA[cck]]></category> <category><![CDATA[Drupal]]></category> <category><![CDATA[imagecache]]></category> <category><![CDATA[Minnesota Daily]]></category> <category><![CDATA[mndaily.com]]></category><guid
isPermaLink="false">http://www.copress.org/?p=2665</guid> <description><![CDATA[Recently, the Minnesota Daily launched a new version of its Web site, mndaily.com. We launched our first version last year, and that was the first time we had used Drupal, a powerful open-source content management system (CMS). Although this new version is still built on Drupal, we have made significant improvements by taking much more [...]]]></description> <content:encoded><![CDATA[<p>Recently, the Minnesota Daily launched a new version of its Web site, <a
href="http://www.mndaily.com" target="_blank">mndaily.com</a>. We launched our first version last year, and that was the first time we had used <a
href="http://drupal.org" target="_blank">Drupal</a>, a powerful open-source content management system (CMS). Although this new version is still built on Drupal, we have made significant improvements by taking much more advantage of Drupal&#8217;s powerful features.<br
/> <a
href="http://www.mndaily.com"><img
class="aligncenter size-full wp-image-2709" title="The front page of mndaily.com, a college news site running on Drupal." src="http://www.copress.org/media/2009/10/News-mndaily.com-Serving-the-University-of-Minnesota-Community-Since-1900-20091006.png" alt="The front page of mndaily.com, a college news site running on Drupal." /></a><br
/> <span
id="more-2665"></span><br
/><h3>Background</h3><p>Before we started using a CMS, we were using a custom framework that we built using PHP, HTML and other Web technologies. In 2008, we decided our site was overdue for a redesign. In the process of planning the redesign, we made the decision to move to a CMS. We chose Drupal because we had someone that had experience in Drupal and we thought that Drupal looked like it would be a powerful CMS that would do everything we needed. As it turns out, Drupal <em>is</em> a powerful CMS and it <em>did</em> everything that we needed.</p><h3>What&#8217;s good about Drupal</h3><p>I would have to say that one of the key advantages of Drupal is its vast collection of modules, extensions that you can download and install. They provide extra functionality/features and they range from a wide variety of services. For almost everything we wanted to do on the site, we were able to find a module for. There are also plenty of modules that provide integration with third-party services like Google Analytics, forum software, etc. On the rare occasion that we couldn&#8217;t find a module we were happy with, we were able to write our own module or slightly modify one that already existed. Drupal provides a framework for doing both.</p><p>The other key advantage of Drupal would have to be its theme layer. When I say theme layer, I don&#8217;t just mean the themes that you can download to change how your site looks; I mean the way in which the HTML gets rendered. How the theme layer works is before something gets rendered, it will go through some sort of preprocessing. Preprocessing allows you to control when, where and how something gets rendered. The preprocessing process (try saying that ten times fast) is generally used to process dynamic data and content. Once the preprocessing is done, it will pass all the data and content to templates.</p><p>Drupal follows a structure when trying to find templates. It will first look for specific templates (templates that was made for displaying a specific item) and will look for more general templates until it finds one. In this way, you can create specific templates for individual cases and use general templates for everything else. The theme layer is kind of hard to explain and it gets some getting used to. Note that you can set where and how it looks for templates during the preprocessing. This way you can tell Drupal to use a certain template without it needing to search for one.</p><h3>How we use Drupal</h3><p>I won&#8217;t go over every aspect of how we used Drupal in this post but I will mention some key functionality that we use.</p><h4>ImageCache</h4><p><a
href="http://drupal.org/project/imagecache" target="_blank">ImageCache </a>is a wonderful and powerful module that we use widely for this new version. ImageCache essentially lets you display photos in different sizes.</p><p>Before we started using ImageCache, we were using a module that created several different sizes (that we defined) of every photo we uploaded. There are several problems to this. For one, it only gave us the option of defining about five different sizes. This was a serious limitation as we found that we wanted a lot of different sizes depending on the page and the place. Second, every photo that we uploaded was recreated in all these different sizes. Most of the time, we only used one size and didn&#8217;t use the rest. This wasted a lot of disk space and processing power as we didn&#8217;t really need those extra sizes.</p><p>ImageCache provided a solution to all those problems. With ImageCache, we could define presets that defined the size and even the method at which the photo would get re-sized. So we could have a particular image scaled down if we wanted to keep its aspect ratio or we could have it get cropped <em>and</em> scaled when we wanted to re-size the image but force a particular aspect ratio. Every preset created another copy of the photo with the specifications defined. ImageCache lets you define as many presets as you want and you can choose from several methods to let you manipulate photos. To display a photo on a page, you tell the preprocessing where the image is and what preset you want to use.</p><p>The best thing about ImageCache is that the image only gets created if it&#8217;s being displayed for the first time, meaning that every photo size which exists is being used at least once. This way we can preserve disk space. ImageCache also lets you &#8220;flush&#8221; all the photos for a particular preset. This means that all the photos for that preset will be deleted. Why is deleting photos useful? For most news sites, there are plenty of old stories that probably never get read; most of these stories probably have photos. These photos are just taking up space and if they&#8217;re rarely going to be displayed, why keep them around? When an old story does get viewed, ImageCache will automatically recreate the photos for that story and store them. This is possible because the original photo is always preserved.</p><p>If you navigate around mndaily.com, you&#8217;ll find that there are a lot of photos that get displayed in a lot of different sizes. For example, an A&amp;E story that appears on the <a
href="http://www.mndaily.com" target="_blank">front page</a> in the A&amp;E section also gets displayed on the <a
href="http://www.mndaily.com/ae">A&amp;E page</a>. Both images that get displayed along with the story are different sizes and when you click on the story, there is the same photo in yet another size. All those photos are generated using ImageCache. When the time comes — say, three months later — we can flush the images but they will be recreated automatically if someone ever views the story again.</p><h4>Theming the site</h4><p>We heavily and extensively use templates and preprocessing for theming our site (as shown by the unique designs for the different sections). We didn&#8217;t really do anything different from what we did before except customize the templates a lot more. Drupal allows great flexibility in theming and lets you create templates for almost anything on the site. We just took further advantage of that to create custom designs for the different sections.</p><p>We also extensively use two modules: <a
href="http://drupal.org/project/views" target="_blank">Views </a>and <a
href="http://drupal.org/project/cck" target="_blank">Content Construction Kit (CCK)</a>. CCK is used to create the different kinds of content on the site. We don&#8217;t just have one generic form for creating everything. Rather, we use specific forms that can display specific fields which apply to the type of content we&#8217;re creating. For example, while articles have fields for the reporter and the story text, a slideshow has fields for the images. Having these custom forms and fields is all done by CCK.</p><p>Views lets you pick the content to display on the site. Almost all content on mndaily.com is displayed using Views. With Views, you can pick the type of content that you want to display and run it through any filters (like by sections) and sort it by date. Views and CCK are extremely powerful modules that are probably used by almost every Drupal site.</p><h3>Conclusion</h3><p>Drupal is definitely a powerful CMS. I haven&#8217;t personally used any other software such as WordPress or Joomla but I have read many comparisons. For the most part, many say that Drupal provides a lot of flexibility and customization but it it is very hard to use compared to other software. Both points are definitely true. We had some trouble getting used to Drupal when we launched our redesign in 2008. This resulted in an incomplete site with bugs and errors. After using Drupal for an entire year, however, we have learned a lot and were able to launch the second version of the site with much success. Drupal definitely has a huge learning curve but once you know and understand Drupal, you have the ability to do a lot of cool things in a shorter time span.</p><p>For more information about the Minnesota Daily&#8217;s improved Web site, <a
href="http://www.mndaily.com/blogs/tech-corner/2009/09/14/mndailycom-past-and-present">view this blog post on mndaily.com</a>.</p><p><em>Son Huyhn is Online Manager for <a
href="http://www.mndaily.com/">mndaily.com</a>, the Web site of the Minnesota Daily at the <a
href="http://www.umn.edu/">University of Minnesota</a>. Follow Son on Twitter at <a
href="http://twitter.com/shuynh21">@shuynh21</a> or email him at <a
href="mailto:shuynh@mndaily.com">shuynh@mndaily.com</a>.</em></p> ]]></content:encoded> <wfw:commentRss>http://www.copress.org/2009/10/06/iterative-drupal-development-with-the-minnesota-daily/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>More ideas for the fall from CM Life and mndaily.com, and WordCamp Portland</title><link>http://www.copress.org/2009/09/19/more-ideas-for-the-fall-from-cm-life-and-mndaily-com-and-wordcamp-portland/</link> <comments>http://www.copress.org/2009/09/19/more-ideas-for-the-fall-from-cm-life-and-mndaily-com-and-wordcamp-portland/#comments</comments> <pubDate>Sat, 19 Sep 2009 21:09:13 +0000</pubDate> <dc:creator>Daniel Bachhuber</dc:creator> <category><![CDATA[We Clicked On]]></category> <category><![CDATA[CM Life]]></category> <category><![CDATA[commenting]]></category> <category><![CDATA[community management]]></category> <category><![CDATA[Minnesota Daily]]></category> <category><![CDATA[WordCamp Portland]]></category> <category><![CDATA[WordPress]]></category><guid
isPermaLink="false">http://www.copress.org/?p=2619</guid> <description><![CDATA[Recommended links for the weekend: According to Mathew Ingram, Communities Editor for The Globe and Mail newspaper in Toronto, there are things commenters can actually be useful for: fact-checking, new angles to stories, and market research. &#8220;The surest way to improve the tone of the debate in forums or comments is to get involved in them.&#8221; [...]]]></description> <content:encoded><![CDATA[<p>Recommended links for the weekend:</p><ul><li>According to Mathew Ingram, Communities Editor for The Globe and Mail newspaper in Toronto, there are <a
href="http://www.niemanlab.org/2009/09/newspapers-get-the-kind-of-communities-they-deserve/">things commenters can actually be useful for</a>: fact-checking, new angles to stories, and market research. &#8220;The surest way to improve the tone of the debate in forums or comments is to get involved in them.&#8221;</li><li>Ten points for each of <a
href="http://www.brianmanzullo.com/2009/09/four-goals/">Brian Manzullo&#8217;s five goals for the CM Life website this fall</a>. Other student newspapers should follow his lead and share lessons learned from the experiments. Building &#8220;Hot Topic&#8221; landing pages is one of the ways you can change up how news is presented, and educate readers with better context.</li><li>Son Hunyh <a
href="http://www.mndaily.com/blogs/tech-corner/2009/09/14/mndailycom-past-and-present">walks through some of the design considerations</a> of relaunching mndaily.com. In my opinion, the category and landing pages are amongst the best in the nation.</li><li>If you on the web today or Sunday, <a
href="http://www.wordcampportland.org/">WordCamp Portland</a> is <a
href="http://search.twitter.com/search?q=%23wcpdx">all over Twitter</a> and <a
href="http://live.blazestreaming.com/wcpdx/">livestreaming</a> too. There was a <a
href="http://www.danielbachhuber.com/2009/09/19/wcpdx-speed-up-wordpress/">great session this morning on speeding up WordPress</a> and Matt Mullenweg showed up at lunch to answer questions from the attendees. WordPress and WordPress MU <a
href="http://twitter.com/lorelleonwp/status/4109536909">might become the same software in version 3.0</a>, and BackPress, an abstraction of the WordPress admin, is <a
href="http://twitter.com/danielbachhuber/status/4109553879">being used by Automattic in a few projects</a> but has no timeline for release.</li></ul><p>Add your links to the mix by <a
href="http://www.publish2.com/newsgroups/copress-network/">joining the CoPress Newsgroup</a> on Publish2.</p> ]]></content:encoded> <wfw:commentRss>http://www.copress.org/2009/09/19/more-ideas-for-the-fall-from-cm-life-and-mndaily-com-and-wordcamp-portland/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>This Week in CoPress: Minnesota Daily redesign</title><link>http://www.copress.org/2009/09/01/this-week-in-copress-minnesota-daily-redesign/</link> <comments>http://www.copress.org/2009/09/01/this-week-in-copress-minnesota-daily-redesign/#comments</comments> <pubDate>Tue, 01 Sep 2009 23:59:37 +0000</pubDate> <dc:creator>Vanessa Bezic</dc:creator> <category><![CDATA[This Week in CoPress]]></category> <category><![CDATA[Drupal]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Facebook Connect]]></category> <category><![CDATA[Minnesota Daily]]></category> <category><![CDATA[podcasts]]></category> <category><![CDATA[website launches]]></category> <category><![CDATA[website redesigns]]></category><guid
isPermaLink="false">http://www.copress.org/?p=2386</guid> <description><![CDATA[After three months of hard work, the Minnesota Daily has a brand new design to improve its layout and usability. Son Huynh gives us his take on theming Drupal, changing a paper’s workflow and reorganizing news content. In addition, just last March, the Minnesota Daily teamed up with developers from NewsCloud to create a Facebook application as [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.mndaily.com/multimedia"><img
class="alignnone size-full wp-image-2400" title="Brand new multimedia section for the Minnesota Daily" src="http://www.copress.org/media/2009/09/20090901mndailymultimedia_h600.jpg" alt="Brand new multimedia section for the Minnesota Daily" /></a></p><p>After three months of hard work, the <a
href="http://www.mndaily.com/">Minnesota Daily</a> has a brand new design to improve its layout and usability. Son Huynh gives us his take on theming Drupal, changing a paper’s workflow and reorganizing news content.</p><p>In addition, just last March, the Minnesota Daily teamed up with developers from <a
href="http://apps.facebook.com/newscloud/?p=profile&amp;memberid=0&amp;_fb_fromhash=d258d738a2d134a9c23ac289655fdbc8">NewsCloud</a> to create a Facebook application as part of a not-for-profit research <a
href="http://apps.facebook.com/mndaily/?p=consent&amp;_fb_fromhash=d258d738a2d134a9c23ac289655fdbc8">study</a> sponsored by the <a
href="http://www.knightfoundation.org/">Knight Foundation</a> to find new ways of engaging young people in news readership and community engagement. As an incentive, the Minnesota Daily hosts challenges and implemented a point system to reward active readers with prizes for their participation (such as posting on the Facebook page, tweeting, following the paper on Twitter).</p><p>Son also talks about the challenges of building an online community around the paper and his plans to revamp the app by adding <a
href="http://developers.facebook.com/connect.php">Facebook Connect</a>, so users can access the paper while being logged on to Facebook, and a selection on the paper&#8217;s site to better connect student groups and campus events. The newest version of the Minnesota Daily is set to launch on Sept 8th. Be sure to check out the new <a
href="http://www.mndaily.com/multimedia">multimedia section</a>, which was in part inspired by <a
href="http://www.theonion.com/content/index">the Onion</a>.</p><p>Have feedback for the Minnesota Daily? Leave a comment or email Son at shuynh [at] mndaily [dot] com.</p> ]]></content:encoded> <wfw:commentRss>http://www.copress.org/2009/09/01/this-week-in-copress-minnesota-daily-redesign/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <enclosure
url="http://www.copress.org/podpress_trac/feed/2386/0/copress20090901minndaily.mp3" length="15484664" type="audio/mpeg" /> <itunes:duration>0:32:07</itunes:duration> <itunes:subtitle>After three months of hard work, the Minnesota Daily has a brand new design to improve its layout and usability. Son Huynh gives us his take on ...</itunes:subtitle> <itunes:summary>After three months of hard work, the Minnesota Daily has a brand new design to improve its layout and usability. Son Huynh gives us his take on theming Drupal, changing a paper’s workflow and reorganizing news content.In addition, just last March, the Minnesota Daily teamed up with developers from NewsCloud to create a Facebook application as part of a not-for-profit research study sponsored by the Knight Foundation to find new ways of engaging young people in news readership and community engagement. As an incentive, the Minnesota Daily hosts challenges and implemented a point system to reward active readers with prizes for their participation (such as posting on the Facebook page, tweeting, following the paper on Twitter).Son also talks about the challenges of building an online community around the paper and his plans to revamp the app by adding Facebook Connect, so users can access the paper while being logged on to Facebook, and a selection on the paper's site to better connect student groups and campus events. The newest version of the Minnesota Daily is set to launch on Sept 8th. Be sure to check out the new multimedia section, which was in part inspired by the Onion.Have feedback for the Minnesota Daily? Leave a comment or email Son at shuynh [at] mndaily [dot] com.</itunes:summary> <itunes:keywords></itunes:keywords> <itunes:author>website@copress.org</itunes:author> <itunes:explicit>no</itunes:explicit> <itunes:block>no</itunes:block> </item> <item><title>Tomorrow on This Week in CoPress: Previewing the Minnesota Daily&#8217;s Redesign</title><link>http://www.copress.org/2009/08/29/tomorrow-on-this-week-in-copress-previewing-the-minnesota-dailys-redesign/</link> <comments>http://www.copress.org/2009/08/29/tomorrow-on-this-week-in-copress-previewing-the-minnesota-dailys-redesign/#comments</comments> <pubDate>Sun, 30 Aug 2009 00:00:13 +0000</pubDate> <dc:creator>Greg Linch</dc:creator> <category><![CDATA[This Week in CoPress]]></category> <category><![CDATA[Drupal]]></category> <category><![CDATA[Facebook]]></category> <category><![CDATA[Minnesota Daily]]></category> <category><![CDATA[mndaily]]></category> <category><![CDATA[podcasts]]></category> <category><![CDATA[website redesigns]]></category><guid
isPermaLink="false">http://www.copress.org/?p=2376</guid> <description><![CDATA[&#8216;Tis the season for college media makeovers, and this week we&#8217;ll be discussing the soon-to-launch redesign of the Minnesota Daily — and getting a sneak peek. Last fall they switched to Drupal for their content management system and now they&#8217;re looking to build on that with a fresh coat of paint. Listen live as Online Manager Son [...]]]></description> <content:encoded><![CDATA[<p>&#8216;Tis the season for college media makeovers, and this week we&#8217;ll be discussing the soon-to-launch redesign of the <a
href="http://www.mndaily.com/" target="_blank">Minnesota Daily</a> — and getting a sneak peek. Last fall they switched to <a
href="http://drupal.org/" target="_blank">Drupal</a> for their content management system and now they&#8217;re looking to build on that with a fresh coat of paint.</p><p><a
href="http://www.blogtalkradio.com/CoPress/2009/08/30/This-Week-in-CoPress-Episode-2-Season-2" target="_blank">Listen live</a> as Online Manager Son Hunyh and others from the Daily&#8217;s staff discuss the redesign and their ideas and plans for this year, including tactics to increase readership engagement. Be sure to join our live text chat below and call in to give feedback.</p><p>If you&#8217;re not able to listen live, please add your question as a comment.</p><p><strong>When: </strong>Sunday, Aug. 30 at 5 p.m. ET</p><p><strong>Where: </strong>BlogTalkRadio (or listen here with the embedded player)</p><p><span
id="more-2376"></span></p><p><strong>Call-in number: </strong><span
style="background-color: #ffffff;">(347) 843-4589<br
/> </span></p><p><object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500" height="415" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param
name="src" value="http://widget.meebo.com/mcr.swf?id=sIoBOXPKVq" /><embed
type="application/x-shockwave-flash" width="500" height="415" src="http://widget.meebo.com/mcr.swf?id=sIoBOXPKVq"></embed></object><a
class="mcrmeebo" href="http://www.meebo.com/rooms/" target="_BLANK"><img
style="border:0px" src="http://widget.meebo.com/b.gif" alt="Create a Meebo Chat Room" width="500" height="45" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.copress.org/2009/08/29/tomorrow-on-this-week-in-copress-previewing-the-minnesota-dailys-redesign/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>This Week in CoPress: College Newspapers and the Switch to Drupal</title><link>http://www.copress.org/2009/04/15/this-week-in-copress-college-newspapers-and-the-switch-to-drupal/</link> <comments>http://www.copress.org/2009/04/15/this-week-in-copress-college-newspapers-and-the-switch-to-drupal/#comments</comments> <pubDate>Wed, 15 Apr 2009 18:00:14 +0000</pubDate> <dc:creator>Emily Kostic</dc:creator> <category><![CDATA[This Week in CoPress]]></category> <category><![CDATA[Daily Illini]]></category> <category><![CDATA[Drupal]]></category> <category><![CDATA[Minnesota Daily]]></category> <category><![CDATA[Technician Online]]></category> <category><![CDATA[website launches]]></category><guid
isPermaLink="false">http://www.copress.org/?p=1616</guid> <description><![CDATA[Hosts: Greg Linch and Emily Kostic Guests: Steve Contorno, former editor in chief of the University of Illinois&#8217;s The Daily Illini and Zach Valentire, the Webmaster of the Minnesota Daily. Dreier Carr, the photo editor of The Technician at North Carolina State. Summary: Greg and Emily discuss the power of Drupal and the creation of [...]]]></description> <content:encoded><![CDATA[<p><strong>Hosts:</strong> <a
href="http://www.greglinch.com/">Greg Linch</a> and <a
href="http://www.emilykostic.com/">Emily Kostic</a></p><p><strong>Guests:</strong> Steve Contorno, former editor in chief of the University of Illinois&#8217;s <a
href="http://www.dailyillini.com/">The Daily Illini</a> and Zach Valentire, the Webmaster of the <a
href="http://www.mndaily.com/">Minnesota Daily</a>. Dreier Carr, the photo editor of <a
href="http://www.technicianonline.com/">The Technician</a> at North Carolina State.</p><p><strong>Summary:</strong> Greg and Emily discuss the power of Drupal and the creation of <a
href="http://www.dailyillini.com/">The Daily Illini</a>&#8216;s own CMS on Drupal with Contorno.  The former Editor in Chief continues the conversation by passing on tips to college publications considering Drupal. Valentire and Carr discuss the popularity of Drupal and how it&#8217;s no longer something you can ignore. The three editors analyze how the switch can be made, how Drupal can be incorporated into your college newspaper&#8217;s workflow, and each of their staffs&#8217; responses to the switch.</p><p><strong>Related blog post:</strong> <a
href="http://www.copress.org/2009/04/08/a-brand-new-drupally-daily-illini/">A Brand New Drupally Daily Illini</a></p><p><strong>Subscribe:</strong> <a
href="http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=299105930">iTunes</a> | <a
href="http://feeds.copress.org/copress/twic">RSS</a></p> ]]></content:encoded> <wfw:commentRss>http://www.copress.org/2009/04/15/this-week-in-copress-college-newspapers-and-the-switch-to-drupal/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <enclosure
url="http://www.copress.org/podpress_trac/feed/1616/0/copress20090413drupaldevelopment.mp3" length="32944354" type="audio/mpeg" /> <itunes:duration>0:43:26</itunes:duration> <itunes:subtitle>Hosts: Greg Linch and Emily KosticGuests: Steve Contorno, former editor in chief of the University of Illinois's The Daily Illini and Zach Valentire, the Webmaster ...</itunes:subtitle> <itunes:summary>Hosts: Greg Linch and Emily KosticGuests: Steve Contorno, former editor in chief of the University of Illinois's The Daily Illini and Zach Valentire, the Webmaster of the Minnesota Daily. Dreier Carr, the photo editor of The Technician at North Carolina State.Summary: Greg and Emily discuss the power of Drupal and the creation of The Daily Illini's own CMS on Drupal with Contorno.  The former Editor in Chief continues the conversation by passing on tips to college publications considering Drupal. Valentire and Carr discuss the popularity of Drupal and how it's no longer something you can ignore. The three editors analyze how the switch can be made, how Drupal can be incorporated into your college newspaper's workflow, and each of their staffs' responses to the switch.Related blog post: A Brand New Drupally Daily IlliniSubscribe: iTunes &#124; RSS</itunes:summary> <itunes:keywords></itunes:keywords> <itunes:author>website@copress.org</itunes:author> <itunes:explicit>no</itunes:explicit> <itunes:block>no</itunes:block> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 21/55 queries in 0.024 seconds using disk

Served from: www.copress.org @ 2012-02-08 22:46:42 -->
