Build.
This commit is contained in:
parent
0692d8ff00
commit
47e2ffcfda
247 changed files with 409 additions and 383 deletions
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Site Upgraded to Drupal 7</h1>
|
||||
|
||||
<p class="posted">4th January 2012</p>
|
||||
<p class="posted text-light">4th January 2012</p>
|
||||
|
||||
<p>As the vast majority of the Drupal websites that I currently work on are built on Drupal 7, I thought that it was time that I upgraded this site. Following the <a href="http://drupal.org/node/570162">core upgrade process</a> and the <a href="http://drupal.org/node/1144136">CCK migration process</a>, everything was upgraded smoothly without any issues.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>How to use Authorized Keys to Create a Passwordless SSH Connection</h1>
|
||||
|
||||
<p class="posted">1st February 2012</p>
|
||||
<p class="posted text-light">1st February 2012</p>
|
||||
|
||||
<p>If you're accessing Linux servers or automating tasks between servers, rather than having to enter your user password every time, you can also use SSH public key authentication. This is a simple process that involves creating a local key and storing it within the <em>authorized_keys</em> file on the remote server.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Create an Omega Subtheme with LESS CSS Preprocessor using Omega Tools and Drush</h1>
|
||||
|
||||
<p class="posted">16th April 2012</p>
|
||||
<p class="posted text-light">16th April 2012</p>
|
||||
|
||||
<p>In this tutorial I'll be showing how to create an <a href="http://drupal.org/project/omega">Omega</a> subtheme using the <a href="http://drupal.org/project/omega_tools">Omega Tools</a> module, and have it working with the <a href="http://lesscss.org">LESS CSS preprocessor</a>.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Installing Nagios on CentOS</h1>
|
||||
|
||||
<p class="posted">17th April 2012</p>
|
||||
<p class="posted text-light">17th April 2012</p>
|
||||
|
||||
<p>A great post details that details the steps needed to install <a href="http://nagios.org">Nagios</a> - a popular open source system and network monitoring software application - on CentOS.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Adding Custom Theme Templates in Drupal 7</h1>
|
||||
|
||||
<p class="posted">19th April 2012</p>
|
||||
<p class="posted text-light">19th April 2012</p>
|
||||
|
||||
<p>Today, I had a situation where I was displaying a list of teasers for news article nodes. The article content type had several different fields assigned to it, including main and thumbnail images. In this case, I wanted to have different output and fields displayed when a teaser was displayed compared to when a complete node was displayed.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>How to add a date popup calendar onto a custom form</h1>
|
||||
|
||||
<p class="posted">23rd May 2012</p>
|
||||
<p class="posted text-light">23rd May 2012</p>
|
||||
|
||||
<p>First, I need to download the <a href="http://drupal.org/project/date" title="Date module on Drupal.org">Date</a> module, and make my module dependent on date_popup by adding the following line into my module's .info file.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Checkout a specific revision from SVN from the command line</h1>
|
||||
|
||||
<p class="posted">23rd May 2012</p>
|
||||
<p class="posted text-light">23rd May 2012</p>
|
||||
|
||||
<p>If you're checking out the repository for the first time:</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Forward one domain to another using mod_rewrite and .htaccess</h1>
|
||||
|
||||
<p class="posted">23rd May 2012</p>
|
||||
<p class="posted text-light">23rd May 2012</p>
|
||||
|
||||
<p>Within the mod_rewrite section of your .htaccess file, add the following lines:</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Prevent Apache from displaying text files within a web browser</h1>
|
||||
|
||||
<p class="posted">23rd May 2012</p>
|
||||
<p class="posted text-light">23rd May 2012</p>
|
||||
|
||||
<p>When you download <a href="http://drupal.org/project/drupal">Drupal</a>, there are several text files that are placed in the root of your installation. You don't want or need these to be visible to anyone attempting to view them in a browser - especially <code>CHANGELOG.txt</code> as that includes the exact version of Drupal you are running and could therefore have security implications.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Writing a .info file for a Drupal 7 theme</h1>
|
||||
|
||||
<p class="posted">23rd May 2012</p>
|
||||
<p class="posted text-light">23rd May 2012</p>
|
||||
|
||||
<pre><code class="language-ini">name = My Theme
|
||||
description = A description of my theme
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Dividing Drupal's process and preprocess functions into separate files</h1>
|
||||
|
||||
<p class="posted">24th May 2012</p>
|
||||
<p class="posted text-light">24th May 2012</p>
|
||||
|
||||
<p>If you use a lot of process and preprocess functions within your Drupal theme, then your template.php can get very long and it can become difficult to find a certain piece of code. Following the example of the <a href="http://drupal.org/project/omega" title="The Omega theme on Drupal.org">Omega theme</a>, I've started separating my process and preprocess functions into their own files. For example, mytheme_preprocess_node can be placed within a preprocess/node.inc file, and mytheme_process_page can be placed within process/page.inc.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>My new Drupal modules</h1>
|
||||
|
||||
<p class="posted">12th July 2012</p>
|
||||
<p class="posted text-light">12th July 2012</p>
|
||||
|
||||
<p>After a busy few days, I've released two new contrib Drupal modules:</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Install and Configure the Nomensa Accessible Media Player in Drupal</h1>
|
||||
|
||||
<p class="posted">14th July 2012</p>
|
||||
<p class="posted text-light">14th July 2012</p>
|
||||
|
||||
<p><em>The official documentation for this module is now located at <a href="https://www.drupal.org/node/2383447">https://www.drupal.org/node/2383447</a>. This post was accurate at the time of writing, whereas the documentation page will be kept up to date with any future changes.</em></p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Writing an Article for Linux Journal</h1>
|
||||
|
||||
<p class="posted">27th July 2012</p>
|
||||
<p class="posted text-light">27th July 2012</p>
|
||||
|
||||
<p>I'm absolutely delighted to announce that I'm going to be writing an article for <a href="http://www.linuxjournal.com">Linux Journal</a> magazine's upcoming Drupal special. The article is going to be entitled "Speeding Up Your Drupal Development Using Installation Profiles and Distributions" and will be mentioning existing distributions available on Drupal.org, but mainly focussing on the steps needed to create your own custom distribution. Needless to say, I'm quite excited about it!</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Display a Custom Menu in a Drupal 7 Theme Template File</h1>
|
||||
|
||||
<p class="posted">18th August 2012</p>
|
||||
<p class="posted text-light">18th August 2012</p>
|
||||
|
||||
<p>For reference, this is the code needed to display a menu in a Drupal 7 template file, including the navigation ARIA role.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Reflections on speaking at UnifiedDiff</h1>
|
||||
|
||||
<p class="posted">6th September 2012</p>
|
||||
<p class="posted text-light">6th September 2012</p>
|
||||
|
||||
<p>Yesterday evening I went along and spoke at the <a href="http://www.unifieddiff.co.uk">UnifiedDiff meetup</a> in Cardiff, having offered previously to do a presentation providing an introduction to Drupal.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>My Sublime Text 2 settings</h1>
|
||||
|
||||
<p class="posted">25th October 2012</p>
|
||||
<p class="posted text-light">25th October 2012</p>
|
||||
|
||||
<p><a href="http://www.sublimetext.com/2">Sublime Text 2</a> has been my text editor of choice for the past few months, and I use it at home, in work, and on any virtual machines that I run. So rather than having to manually re-enter my settings each time, I thought that I'd document them here for future reference. These preferences ensure that the code is compliant with <a href="http://drupal.org/coding-standards" title="Drupal coding standards on Drupal.org">Drupal coding standards</a> - using two spaces instead of a tab, no trailing whitespace, blank line at the end of a file etc.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Accessible Bristol site launched</h1>
|
||||
|
||||
<p class="posted">15th November 2012</p>
|
||||
<p class="posted text-light">15th November 2012</p>
|
||||
|
||||
<p>I'm happy to announce that the <a href="http://www.accessiblebristol.org.uk">Accessible Bristol</a> website was launched this week, on Drupal 7. The site has been developed over the past few months, and uses the <a href="http://drupal.org/project/user_relationships">User Relationships</a> and <a href="http://drupal.org/project/privatemsg">Privatemsg</a> modules to provide a community-based platform where people with an interest in accessibility can register and network with each other.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>Open Sublime Text 2 from the Mac OS X Command Line</h1>
|
||||
|
||||
<p class="posted">17th November 2012</p>
|
||||
<p class="posted text-light">17th November 2012</p>
|
||||
|
||||
<p>Paste the following code into the Mac OS X Terminal, assuming that you've installed Sublime Text 2 into the /Applications folder.</p>
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@
|
|||
<main class="col-md-9">
|
||||
<h1>How to use SASS and Compass in Drupal 7 using Sassy</h1>
|
||||
|
||||
<p class="posted">6th December 2012</p>
|
||||
<p class="posted text-light">6th December 2012</p>
|
||||
|
||||
<p>I've recently started using <a href="http://sass-lang.com">SASS</a> rather than LESS to do my CSS preprocessing - namely due to its integration with <a href="http://compass-style.org">Compass</a> and it's built-in CSS3 mixins. There are three modules that provide the ability to use SASS within Drupal:</p>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue