Because sharing is good for everyone.

  • Our Designs Have to Reflect Christ

    Interesting Quote from the blog 'Vitamin C':

    How we do this through design is the big question. Our designs have to reflect Christ. We do this through demanding people’s interest, respect, and most importantly their time through our designs. Christ deserves the best designs possible. I don’t know if I speak for all people, but for me to take Church retreats, events, or other ministries serious I want to see that reflected in their designs. If the design is lacking then (in my mind) the retreat must be...

    Continue reading
    View Comments
  • Creating a More Friendly 404 Page

    I finally had a little time today to update the Archdiocese of Saint Louis' 404 Not Found page. Drupal has built-in 404 handling, so I simply created a new node, added in the content of the 404 page in the node body, and went to the 'site information' page to set 404 errors to that node.

    Archdiocese of Saint Louis - 404 Page

    In redesigning the page, I wanted to fulfill two goals:

    1. Make people comfortable, not upset.
      The person just hit a missing page, and this threw them off from whatever they may have expected. Best...
    Continue reading
    View Comments
  • CatholicTuner.com up for sale, Price $0

    Looking for a good Catholic developer to take over Catholictuner.com. FREE as in beer.

    I just don't have the time to work on it anymore.

     

    email me at j o a o @ c a t h o l i c t u n e r . c o m

    Continue reading
    View Comments
  • Resetting Files Table after Drupal 4.7.x -> 6.x Upgrade

    At some point during the upgrade process from Drupal 4.7.11 to 6.16 (through versions of 5.x, with contributed module updates along the way), one of my sites' files tables got screwed up. All the 'filepath' entries were converted to 'filepath' (instead of sites/example.com/files/filename.ext).

    Luckily, since the original 4.7.x version of the site only saved files directly under the 'files' directory, I could write a simple SQL query to update all the filepath entries in the files table:

    UPDATE files SET filepath = CONCAT('sites/reapteam.org/files/',filename);

    I ran that query, and it put...

    Continue reading
    View Comments
  • Vatican Secret Archive is Digitizing to Open FITS Format

    Tip 'o the hat to the Curt Jester, and originally posted on Slashdot:

    "The Vatican Library plans to digtize 80,000 manuscripts and store them in the open data format FITS, originally developed for astronomy and maintained under the IAU. The result is expected to be 40 million pages and 45 petabytes. FITS was chosen because it 'has been used for more than 40 years for the conservation of data concerning spatial missions and, in the past decade, in astrophysics and nuclear medicine. It permits the conservation of...

    Continue reading
    View Comments
  • Franciscan Monks Involved in Drupal Core Development!

    According to Dries Buytaert, a Franciscan Monk was working on Drupal Core at DrupalCon SF last week; he was involved in the core developer's summit with 149 other attendees.

    [At Drupalcon, we] organized a core developer summit with 150 attendees, 16 lightning talks, 11 breakout sessions and 1 Franciscan monk.

    Where are the Jesuits? The Dominicans? Any other orders? In the Archdiocese of Saint Louis, many of the curial websites are running on Drupal. I also hear the Legionaries have a lot of Drupal involvement (for instance, their Familia website).

    Continue reading
    View Comments
  • Speeding up a Site: Quicker 404 Errors for files in Drupal

    On the Archdiocese of Saint Louis website, we moved thousands of files around as part of our site migration from 49 separate Joomla sites to Drupal. Internally, all our file links were updated. However, there are thousands of hotlinks from different websites to the Archdiocesan website (for instance, the blog American Papist hits a missing file of a Church interior about 80 times a day).

    This was creating a lot of overhead for the server, as Drupal would do a full bootstrap, sending out a fully-rendered 404 page on each...

    Continue reading
    View Comments