<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.deedah.org/w/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://www.deedah.org/w/feed.php">
        <title>Deedah</title>
        <description></description>
        <link>http://www.deedah.org/w/</link>
        <image rdf:resource="http://www.deedah.org/w/lib/tpl/hidden_baboon/images/favicon.ico" />
       <dc:date>2012-02-05T05:32:06+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=knowhow:imagemagick&amp;rev=1328017109&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=knowhow:start&amp;rev=1328016480&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=knowhow:css&amp;rev=1327413110&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=knowhow:dokuwiki_help&amp;rev=1327412028&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=links&amp;rev=1326288984&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=services&amp;rev=1325785698&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.deedah.org/w/doku.php?id=playground:playground&amp;rev=1325687709&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://www.deedah.org/w/lib/tpl/hidden_baboon/images/favicon.ico">
        <title>Deedah</title>
        <link>http://www.deedah.org/w/</link>
        <url>http://www.deedah.org/w/lib/tpl/hidden_baboon/images/favicon.ico</url>
    </image>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=knowhow:imagemagick&amp;rev=1328017109&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-31T13:38:29+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>knowhow:imagemagick</title>
        <link>http://www.deedah.org/w/doku.php?id=knowhow:imagemagick&amp;rev=1328017109&amp;do=diff</link>
        <description>Resizing a whole load of images

From within the folder of images you wish to resize create a folder called “resized” and type the following.
mogrify -resize 800 -format jpg -path ./resized_images  ./*
-resize 800 refers to pixels; you could also type -resize 18%</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=knowhow:start&amp;rev=1328016480&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-31T13:28:00+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>knowhow:start</title>
        <link>http://www.deedah.org/w/doku.php?id=knowhow:start&amp;rev=1328016480&amp;do=diff</link>
        <description>*  dokuwiki
	*  useful css
	*  general webdesign
	*  gimp
	*  imagemagick
	*  php

Adding Keys
ssh-copy-id user_12345678@ssh.website.org

Then login as usual.

Sanity

Go into the necessary folder and type:

~/bin/sanity.pl *

All files in all folders will be renamed.</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=knowhow:css&amp;rev=1327413110&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-24T13:51:50+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>knowhow:css</title>
        <link>http://www.deedah.org/w/doku.php?id=knowhow:css&amp;rev=1327413110&amp;do=diff</link>
        <description>Rounded Corners
#page {
-moz-border-radius: 15px;
border-radius: 15px;
} 

Pseudo Classes with Classes

It's 
a.baboon:hover
not 
a:hover.baboon
E + F
li + strong  { color:#ff0000;}
any strong preceded by a li make red

Useful Links

	*  &lt;http://www.w3.org/TR/CSS2/selector.html&gt;
	*  &lt;http://www.w3schools.com/css/css_pseudo_elements.asp&gt;</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=knowhow:dokuwiki_help&amp;rev=1327412028&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-24T13:33:48+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>knowhow:dokuwiki_help - [Buttons] </title>
        <link>http://www.deedah.org/w/doku.php?id=knowhow:dokuwiki_help&amp;rev=1327412028&amp;do=diff</link>
        <description>Converting a Site to a Dokuwiki Site

Installation &amp; Basics

&lt;http://knowhow.access-space.org/w/doku.php?id=installingdokuwiki&gt;

If I am logged in...
&lt;?php if ($INFO['perm'] &gt; AUTH_READ ){ /*check to see if user is logged in */ ?&gt;

   [stuff for logged in people]

&lt;?php }/* end of stuff only applying to logged in user */?&gt; 
If I am in a certain namespace or on a certain page ...
&lt;?php 
 global $ID;
 if (getNS($ID) != 'art' and getNS($ID) != 'knowhow')
 {
  include 'scroller.php';
}
else	{
includ…</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=links&amp;rev=1326288984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-11T13:36:24+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>links - created</title>
        <link>http://www.deedah.org/w/doku.php?id=links&amp;rev=1326288984&amp;do=diff</link>
        <description>*  &lt;http://re-intrinsics.co.uk&gt;</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=services&amp;rev=1325785698&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-05T17:48:18+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>services</title>
        <link>http://www.deedah.org/w/doku.php?id=services&amp;rev=1325785698&amp;do=diff</link>
        <description>Our dedicated team of monkeys work like Trojans to deliver a level of excellence unparalleled anywhere.

Bespoke CMS Package from £450

	*  customised content management system (cms)
	*  logo design
	*  full tutorial</description>
    </item>
    <item rdf:about="http://www.deedah.org/w/doku.php?id=playground:playground&amp;rev=1325687709&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2012-01-04T14:35:09+00:00</dc:date>
        <dc:creator>steve</dc:creator>
        <title>playground:playground</title>
        <link>http://www.deedah.org/w/doku.php?id=playground:playground&amp;rev=1325687709&amp;do=diff</link>
        <description></description>
    </item>
</rdf:RDF>

