<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Web site content (new threads)</title>
		<link>http://rogallo.co.uk/forum/c-6001/web-site-content</link>
		<description>Threads in the forum category &quot;Web site content&quot; - Specifically for discussion of the content held on this web site.</description>
				<copyright></copyright>
		<lastBuildDate>Thu, 02 Sep 2010 23:17:06 +0000</lastBuildDate>
		
					<item>
				<guid>http://rogallo.co.uk/forum/t-113138</guid>
				<title>Forums and stuff</title>
				<link>http://rogallo.co.uk/forum/t-113138/forums-and-stuff</link>
				<description>Hi All, I’m sorry but I disagree with all this splitting up into small groups</description>
				<pubDate>Sun, 14 Dec 2008 23:26:14 +0000</pubDate>
				<wikidot:authorName>Phil Chett</wikidot:authorName>				<wikidot:authorUserId>4297</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hi All, I’m sorry but I disagree with all this splitting up into small groups for this and that, we have a forum and a good web site thanks to those that have provided it. What are we trying to prove here, that by making ourselves spread over a wider area we can bitch about this and that? Sorry I do not get the point, we are a small community as it is, I’m all in favour of promoting our sport, but having multiple points of contact/discussion is just going to drive people into clicky groups…count me out.</p> <p><strong>Regards Will Greenwood.</strong></p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-33782</guid>
				<title>phase one lock down</title>
				<link>http://rogallo.co.uk/forum/t-33782/phase-one-lock-down</link>
				<description>Being as there are a few now signed up</description>
				<pubDate>Fri, 04 Jan 2008 17:43:16 +0000</pubDate>
				<wikidot:authorName>Phil Chett</wikidot:authorName>				<wikidot:authorUserId>4297</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have locked the site down a bit to stop anon edits and entries.<br /> Later i will be locking it down even more to members only editing, but first i would like to see a few more names in the members list</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-33698</guid>
				<title>Converting Excell files to wikidot</title>
				<link>http://rogallo.co.uk/forum/t-33698/converting-excell-files-to-wikidot</link>
				<description>Putting &quot;results&quot; tables onto the wiki is a pain in the arse.</description>
				<pubDate>Fri, 04 Jan 2008 02:24:09 +0000</pubDate>
				<wikidot:authorName>Phil Chett</wikidot:authorName>				<wikidot:authorUserId>4297</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>And untill "the gods" come up with something better, then we have to make do with what we have.</p> <p>The easiest way i have come across to date is by using a converter.</p> <p>So here is an idiots guide. Written by an idiot.</p> <h1><span>1 Generate your excell file</span></h1> <p>eg:-<br /> <img src="http://bhgc.wikidot.com/local--files/pics/ScreenHunter_006.jpg" alt="ScreenHunter_006.jpg" class="image" /></p> <h1><span>Get the excell converter loaded.</span></h1> <p>to do this, whilst on your excell sheet hit <strong>ALT and F8</strong><br /> you will get a pop up like this.</p> <img src="http://bhgc.wikidot.com/local--files/pics/ScreenHunter_005.jpg" alt="ScreenHunter_005.jpg" class="image" /> <p>stick something in the macroname box (anything will do)<br /> <strong>Create</strong> should now highlight. hit it</p> <p>the box will expand.<br /> remove the:</p> <div class="code"> <pre> <code>Sub e() End Sub</code> </pre></div> <h2><span>Next, copy and paste from the code in the box below, when you hit "<span style="text-decoration: underline;">show me the code</span>"</span></h2> <h3><span>Code</span></h3> <div class="collapsible-block"> <div id="collapsible-block-0-folded"><a href="javascript:;" >+ show me the code</a></div> <div id="collapsible-block-0-unfolded" style="display:none"> <div><a href="javascript:;" >- hide the code</a></div> <div id="collapsible-block-0-content"> <div class="code"> <pre> <code>Option Explicit Public Sub ExcelToWikidot() ' 'ExcelToWikidot 'Version 2.1.007 du 04/11/2007 'Author gerdami 'Credits: ' McGimpsey and Associates, for the idea: http://www.mcgimpsey.com/excel/udfs/multicat.html ' David McRitchie, for the colors: http://www.mvps.org/dmcritchie/excel/colors.htm#hexconv ' John Walkenbach, for the split function: http://j-walk.com/ss/excel/tips/tip93.htm ' Chip Pearson, for the Conditional Formatting Colors: http://www.cpearson.com/excel/CFColors.htm Dim aRange, rCell As Range Dim nRows, nCols, i, j, x As Long Dim sAlign, sBackgroundColor, sCell, sWdLf, xColor As String Dim xString As Variant sWdLf = " _" 'sWdLf = " _" &amp; vbLf Set aRange = Selection.CurrentRegion nRows = aRange.Rows.Count nCols = aRange.Columns.Count 'Sheets.Add.Name = "Wikidot" ... test whether Wikidot sheet exists and delete TODO ! Sheets.Add ActiveCell.Value = "[[table style=""width: 100%; border-collapse: collapse; border:2px solid""]]" 'ActiveCell.Value = "[[table]]" ActiveCell.Offset(1, 0).Activate For i = 1 To nRows ActiveCell.Value = "[[row]]" ActiveCell.Offset(1, 0).Activate For j = 1 To nCols Set rCell = aRange.Cells(i, j) sCell = Trim(aRange.Cells(i, j).Text) 'remove spaces before and after text sCell = Application.WorksheetFunction.Substitute(sCell, vbLf, sWdLf) 'replace char(010) by " _" 'ActiveCell.Value = ActiveCell.Value &amp; "[[cell]]" '[[cell style is build piece by piece ActiveCell.Value = ActiveCell.Value &amp; "[[cell style=""border:1px solid silver; " Select Case rCell.HorizontalAlignment Case Is = xlGeneral sAlign = "" Case Is = xlCenter sAlign = "text-align: center; " Case Is = xlLeft sAlign = "text-align: left; " Case Is = xlRight sAlign = "text-align: right; " End Select ActiveCell.Value = ActiveCell.Value &amp; sAlign ' background-color ' xColor = Right("000000" &amp; Hex(rCell.Interior.Color), 6) 'David Mc ' xColor = Right("000000" &amp; Hex(ColorOfCF(rCell, 0)), 6) 'Chip Pearson xColor = Right("000000" &amp; Hex(ConditionalColor(rCell, "interior")), 6) ' xColor = "#" &amp; Right(xColor, 2) &amp; Mid(xColor, 3, 2) &amp; Left(xColor, 2) If xColor &lt;&gt; "#FFFFFF" Then sBackgroundColor = " background-color: " &amp; xColor &amp; ";" Else sBackgroundColor = "" End If ActiveCell.Value = ActiveCell.Value &amp; sBackgroundColor ActiveCell.Value = ActiveCell.Value &amp; """]]" If Len(sCell) &gt; 0 Then 'Wikidot does not like empty cells: v2.1.007 'cell emphasis is applied piece by piece If rCell.Font.Bold = True Then sCell = "**" &amp; sCell &amp; "**" If rCell.Font.Italic = True Then sCell = "//" &amp; sCell &amp; "//" If rCell.Font.Strikethrough = True Then sCell = "--" &amp; sCell &amp; "--" If rCell.Font.Superscript = True Then sCell = "^^" &amp; sCell &amp; "^^" If rCell.Font.Subscript = True Then sCell = ",," &amp; sCell &amp; ",," If rCell.Font.Underline = xlUnderlineStyleNone Then Else sCell = "__" &amp; sCell &amp; "__" ' font colors ' http://www.mvps.org/dmcritchie/excel/colors.htm#hexconv ' xColor = Right("000000" &amp; Hex(rCell.Font.Color), 6) ' http://www.cpearson.com/excel/CFColors.htm ' xColor = Right("000000" &amp; Hex(ColorOfCF(rCell, 1)), 6) xColor = Right("000000" &amp; Hex(ConditionalColor(rCell, "font")), 6) xColor = "#" &amp; Right(xColor, 2) &amp; Mid(xColor, 3, 2) &amp; Left(xColor, 2) If xColor &lt;&gt; "#000000" Then sCell = "#" &amp; xColor &amp; "|" &amp; sCell &amp; "##" ActiveCell.Value = ActiveCell.Value &amp; sCell Else ' Len(sCell) = zero then nothing End If ActiveCell.Value = ActiveCell.Value &amp; "[[/cell]]" ' With the above I have all cells in one row, with the split function, ' I will split the cells containing the Wikidot linefeed " _" ' http://j-walk.com/ss/excel/tips/tip93.htm xString = Split(ActiveCell.Text, sWdLf) For x = 0 To UBound(xString) ActiveCell.Value = xString(x) If x &lt;&gt; UBound(xString) Then ActiveCell.Value = ActiveCell.Value &amp; sWdLf ActiveCell.Offset(1, 0).Activate ' I have currently a side effect: one cell per line ' but I will keep it for readibility Next x Next j 'ActiveCell.Offset(1, 0).Activate ActiveCell.Value = "[[/row]]" ActiveCell.Offset(1, 0).Activate Next i ActiveCell.Value = "[[/table]]" Selection.CurrentRegion.Select End Sub ''''''''''''''''''''''''''''''''' Function ConditionalColor(rg As Range, FormatType As String) As Long 'http://www.vbaexpress.com/kb/getarticle.php?kb_id=190 'Returns the color (either font or interior) of the first cell in range rg. If no _ conditional format conditions apply, then returns the regular color of the cell. _ FormatType is either "Font" or "Interior" Dim cel As Range Dim tmp As Variant Dim boo As Boolean Dim frmla As String, frmlaR1C1 As String, frmlaA1 As String Dim i As Long ' Application.Volatile 'This statement required if Conditional Formatting for rg is determined by the _ value of other cells Set cel = rg.Cells(1, 1) Select Case Left(LCase(FormatType), 1) Case "f" 'Font color ConditionalColor = cel.Font.Color Case Else 'Interior or highlight color ConditionalColor = cel.Interior.Color End Select If cel.FormatConditions.Count &gt; 0 Then 'On Error Resume Next With cel.FormatConditions For i = 1 To .Count 'Loop through the three possible format conditions for each cell frmla = .Item(i).Formula1 If Left(frmla, 1) = "=" Then 'If "Formula Is", then evaluate if it is True 'Conditional Formatting is interpreted relative to the active cell. _ This cause the wrong results if the formula isn't restated relative to the cell containing the _ Conditional Formatting--hence the workaround using ConvertFormula twice in a row. _ If the function were not called using a worksheet formula, you could just activate the cell instead. frmlaR1C1 = Application.ConvertFormula(frmla, xlA1, xlR1C1, , ActiveCell) frmlaA1 = Application.ConvertFormula(frmlaR1C1, xlR1C1, xlA1, xlAbsolute, cel) boo = Application.Evaluate(frmlaA1) Else 'If "Value Is", then identify the type of comparison operator and build comparison formula Select Case .Item(i).Operator Case xlEqual ' = x frmla = cel &amp; "=" &amp; .Item(i).Formula1 Case xlNotEqual ' &lt;&gt; x frmla = cel &amp; "&lt;&gt;" &amp; .Item(i).Formula1 Case xlBetween 'x &lt;= cel &lt;= y frmla = "AND(" &amp; .Item(i).Formula1 &amp; "&lt;=" &amp; cel &amp; "," &amp; cel &amp; "&lt;=" &amp; .Item(i).Formula2 &amp; ")" Case xlNotBetween 'x &gt; cel or cel &gt; y frmla = "OR(" &amp; .Item(i).Formula1 &amp; "&gt;" &amp; cel &amp; "," &amp; cel &amp; "&gt;" &amp; .Item(i).Formula2 &amp; ")" Case xlLess ' &lt; x frmla = cel &amp; "&lt;" &amp; .Item(i).Formula1 Case xlLessEqual ' &lt;= x frmla = cel &amp; "&lt;=" &amp; .Item(i).Formula1 Case xlGreater ' &gt; x frmla = cel &amp; "&gt;" &amp; .Item(i).Formula1 Case xlGreaterEqual ' &gt;= x frmla = cel &amp; "&gt;=" &amp; .Item(i).Formula1 End Select boo = Application.Evaluate(frmla) 'Evaluate the "Value Is" comparison formula End If If boo Then 'If this Format Condition is satisfied On Error Resume Next Select Case Left(LCase(FormatType), 1) Case "f" 'Font color tmp = .Item(i).Font.Color Case Else 'Interior or highlight color tmp = .Item(i).Interior.Color End Select If Err = 0 Then ConditionalColor = tmp Err.Clear On Error GoTo 0 Exit For 'Since Format Condition is satisfied, exit the inner loop End If Next i End With End If End Function</code> </pre></div> </div> </div> </div> <p>Then Hit <strong>ALT</strong> and <strong>F4</strong><br /> which will return you to you sheet</p> <h2><span>Make the table pretty</span></h2> <p>eg:<img src="http://bhgc.wikidot.com/local--files/pics/ScreenHunter_007.jpg" alt="ScreenHunter_007.jpg" class="image" /></p> <p><span style="text-decoration: underline;"><strong>select the whole table</strong></span><br /> then Hit <strong>Alt F8</strong></p> <p>which will give you</p> <img src="http://bhgc.wikidot.com/local--files/pics/ScreenHunter_008.jpg" alt="ScreenHunter_008.jpg" class="image" /> <p>Hit <strong>RUN</strong></p> <p>A new sheet will appear with a load of horrid yukky code in column A.</p> <h3><span>Copy that code</span></h3> <p>And <strong>PASTE</strong> it into your wiki page.</p> <p>And low and behold, you should get something like</p> <table style="width: 100%; border-collapse: collapse; border:2px solid"> <tr> <td style="border:1px solid silver; background-color: #FFFF00;"></td> <td style="border:1px solid silver; background-color: #FFFF00;"><span style="color: #0070C0;">t1</span></td> <td style="border:1px solid silver; background-color: #FFFF00;"><span style="color: #0070C0;">t2</span></td> <td style="border:1px solid silver; background-color: #FFFF00;"><span style="color: #0070C0;">t3</span></td> <td style="border:1px solid silver; background-color: #FFFF00;"><span style="color: #0070C0;">t4</span></td> </tr> <tr> <td style="border:1px solid silver; background-color: #92D050;"><strong>john</strong></td> <td style="border:1px solid silver; text-align: center;">1</td> <td style="border:1px solid silver; text-align: center;">2</td> <td style="border:1px solid silver; text-align: center;">3</td> <td style="border:1px solid silver; text-align: center;">4</td> </tr> <tr> <td style="border:1px solid silver; background-color: #92D050;"><strong>paul</strong></td> <td style="border:1px solid silver; text-align: center;">5</td> <td style="border:1px solid silver; text-align: center;">6</td> <td style="border:1px solid silver; text-align: center;">7</td> <td style="border:1px solid silver; text-align: center;">8</td> </tr> <tr> <td style="border:1px solid silver; background-color: #92D050;"><strong>ringo</strong></td> <td style="border:1px solid silver; text-align: center;">9</td> <td style="border:1px solid silver; text-align: center;">a</td> <td style="border:1px solid silver; text-align: center;">b</td> <td style="border:1px solid silver; text-align: center;">c</td> </tr> <tr> <td style="border:1px solid silver; background-color: #92D050;"><strong>george</strong></td> <td style="border:1px solid silver; text-align: center;">d</td> <td style="border:1px solid silver; text-align: center;">e</td> <td style="border:1px solid silver; text-align: center;">f</td> <td style="border:1px solid silver; text-align: center;">g</td> </tr> </table> <h1><span>Spanners in the workscan be caused by</span></h1> <ul> <li>Not selecting the whole table</li> <li>Blank lines</li> <li>trying to do two differnt "styles" of tables on the same sheet.</li> <li>other things that i haven't fully determined…. yet.</li> </ul> <p>Have fun</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-33484</guid>
				<title>adding picture</title>
				<link>http://rogallo.co.uk/forum/t-33484/adding-picture</link>
				<description></description>
				<pubDate>Wed, 02 Jan 2008 19:33:16 +0000</pubDate>
				<wikidot:authorName>tony_moore</wikidot:authorName>				<wikidot:authorUserId>63711</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>ok I'm no oil painting but I would like to add a mugshot but can't see how. I've tried to use the image wizard, attached file but get this message… Sorry, no images attached to this page found. Any help much appreciated</p> <p>Tony</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-33251</guid>
				<title>Editing Sandbox ticklist</title>
				<link>http://rogallo.co.uk/forum/t-33251/editing-sandbox-ticklist</link>
				<description>Hangs if you don&#039;t do it right. HTML is a PITA.</description>
				<pubDate>Mon, 31 Dec 2007 15:59:20 +0000</pubDate>
				<wikidot:authorName>wikischmiki</wikidot:authorName>				<wikidot:authorUserId>63144</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Tried editing the tick list and my first two attempts to save changes made in the HTML resulted in a hang with a perpetual "Saving page ….." pop-up.</p> <p>Eventually got it to save by choosing "Save and Continue" rather than "Save" AND entering something in the "Short description of changes" box - not sure which made the difference.</p> <p>(Editing the raw HTML is an enormous PITA).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-33116</guid>
				<title>Logging In takes ages</title>
				<link>http://rogallo.co.uk/forum/t-33116/logging-in-takes-ages</link>
				<description>Some time, when you log in, it &quot;hangs&quot;</description>
				<pubDate>Sun, 30 Dec 2007 12:22:25 +0000</pubDate>
				<wikidot:authorName>Phil Chett</wikidot:authorName>				<wikidot:authorUserId>4297</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have noticed this on occasions, admittedly more than i would like.<br /> I have found that if it takes more than say 5 sec, refreshing the browser, will sort the problem.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://rogallo.co.uk/forum/t-21495</guid>
				<title>Front page.</title>
				<link>http://rogallo.co.uk/forum/t-21495/front-page</link>
				<description>which do you prefer?</description>
				<pubDate>Mon, 01 Oct 2007 10:49:40 +0000</pubDate>
				<wikidot:authorName>Phil Chett</wikidot:authorName>				<wikidot:authorUserId>4297</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p><a href="http://bhgc.wikidot.com/">http://bhgc.wikidot.com/</a></p> <p>or</p> <p><a href="http://bhgc.wikidot.com/start%20blog">http://bhgc.wikidot.com/start%20blog</a><br /> (note: a bit more to do here, like adding the pics.. but it will give you an idea.</p> <p>Or something completely different ?</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>