<?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>Developer&#039;s Page</title>
		<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page</link>
		<description>Posts in the discussion thread &quot;Developer&#039;s Page&quot; - For new site ideas</description>
				<copyright></copyright>
		<lastBuildDate>Fri, 12 Jun 2026 16:48:17 +0000</lastBuildDate>
		
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472786</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472786</link>
				<description></description>
				<pubDate>Tue, 15 Mar 2016 02:34:33 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Putting a div or span for each line would be sufficient, but again, this would need to be a manual process.</p> <p>Although, I did <a href="http://publicvar.wikidot.com/program:code-highlight" target="_blank">write a program</a> a year ago that does exactly this. It isn't very practical to have to go and use it every time you wanted a code block, but it gets the job done. For TI-Basic, you would use the &quot;None&quot; option.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472671</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472671</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 22:12:45 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It might also be a good idea to have the colons in the box with the numbers so that they aren't part of the code. Adding a colon at the beginning of each line is not really necessary, and makes it difficult to paste the code into an editor.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472660</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472660</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 21:40:59 +0000</pubDate>
				<wikidot:authorName>Trenly</wikidot:authorName>				<wikidot:authorUserId>1905506</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I see. Hmm. Obviously css can detect &lt;div&gt; elements, so what if you had it so that each line in a code box was a seprate &lt;div class=codeline&gt; inside the &lt;div class=code&gt;?</p> <p>I am not very familiar with what is and isnt possible with the wikidot engine.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472639</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472639</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 20:45:32 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Unfortunately, we're not allowed to insert javascript freely.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472564</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472564</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 16:30:37 +0000</pubDate>
				<wikidot:authorName>Trenly</wikidot:authorName>				<wikidot:authorUserId>1905506</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Although you cant control how the box is rendered, would you be able to use javascript to interpert the code and then send it to css?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472512</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472512</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 14:11:58 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>CSS is only able to detect HTML tags (like &lt;p&gt; or &lt;br /&gt;) and not specific characters. Unfortunately, we are restricted to fiddling with CSS since we cannot control how Wikidot (our web platform) renders code blocks.</p> <p>The newlines were needed to achieve the effect since the ::before pseudo-element (the thing which allows us to write line numbers) only works for container-elements. The &lt;p&gt; is a container-element, and this means it can contain stuff like words. These are achieved by separating paragraphs with new lines. The &lt;br /&gt; element, however, is not a container element; it simply tells the Browser to put a line break. If you put adjacent lines, then &lt;br /&gt; is written instead.</p> <p>Requiring newlines is not exactly practical for forum posts, especially since most people are going to use the <tt><span style="white-space: pre-wrap;">[[code]]</span></tt> block anyways. This rule could reasonably be imposed on wiki pages, though (albeit, it would require quite a bit of transition). I think the primary problem with this idea, however, is that copying and pasting will preserve those new lines. Perhaps this would interfere with some emulators or code editors.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472384</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472384</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 04:55:51 +0000</pubDate>
				<wikidot:authorName>Trenly</wikidot:authorName>				<wikidot:authorUserId>1905506</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Perhaps the easiest way to do this is not detecting returns, but the character &quot;:&quot;? It would work similar to a table, but the &quot;:&quot; would add a line number to that line.</p> <div class="code"> <pre><code>:Line 1 Line 2 :Line 3 :Line 4</code></pre></div> <br /> Would output: <div class="code"> <pre><code>1 :Line 1 Line 2 2 :Line 3 3 :Line 4</code></pre></div> <br /> This could also be made so a code block automativally puts in the &quot;:&quot; after every return, similar to when a user types in a bulleted or numeric list. <hr /> <p>If this wasnt clear, let me know and I can try to explain better</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472356</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472356</link>
				<description></description>
				<pubDate>Mon, 14 Mar 2016 03:30:46 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I think it is a step in the right direction, but the need to add additional space between the lines manually is a major disadvantage. I attempted to edit the [[module CSS]] block, but the changes didn't appear to affect anything on the page.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2472027</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2472027</link>
				<description></description>
				<pubDate>Sun, 13 Mar 2016 13:39:42 +0000</pubDate>
				<wikidot:authorName>Trenly</wikidot:authorName>				<wikidot:authorUserId>1905506</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I like it</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2471810</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2471810</link>
				<description></description>
				<pubDate>Sun, 13 Mar 2016 03:45:18 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I asked another TI|BD admin Timothy Foster about adding line numbers to code boxes, and this is what he told me:</p> <blockquote> <p>The line numbers are possible, though the native code block does not make it easy. To get line numbers to work like people want it, code would need to use [[div class=&quot;code&quot;]] rather than [[code]]. Furthermore, each line would need to be separated with an entire blank space. The result can be seen <a href="http://tibasicdev.wikidot.com/tmp">here</a>.</p> </blockquote> <p>What do you guys think? Does this work for you guys?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2468612</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2468612</link>
				<description></description>
				<pubDate>Mon, 07 Mar 2016 05:05:16 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>You should also be able to select and copy the code without selecting the numbers.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2468577</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2468577</link>
				<description></description>
				<pubDate>Mon, 07 Mar 2016 03:37:13 +0000</pubDate>
				<wikidot:authorName>Michael2_3B</wikidot:authorName>				<wikidot:authorUserId>1974546</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Agreed, line numbers would look good, but they obviously need to be separated from the code somehow. Like if the code was in the light gray boxes and the line number was to the left like you have shown, but within a dark gray box or something, so that there is an obvious difference between the line numbers and the code.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2468561</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2468561</link>
				<description></description>
				<pubDate>Mon, 07 Mar 2016 02:49:41 +0000</pubDate>
				<wikidot:authorName>Trenly</wikidot:authorName>				<wikidot:authorUserId>1905506</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I agree, it would be nice to have a button that would bring up a popup window of the enitre code box, as 20 lines can be shorter than a certain routine that I want to get the full understanding of (and therefore am constantly cross referencing lines).</p> <p>I also think that it would be cool to have line numbers; perhaps something like the following (Since the lines start with &quot;:&quot; anyways on ti-83+, 84, 84+, 84+CSE; not sure about nspire)</p> <div class="code"> <pre><code>1 : 2 : 3 :</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2468176</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2468176</link>
				<description></description>
				<pubDate>Sun, 06 Mar 2016 05:52:23 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Another nice feature would be the ability to expand the code boxes to see the entire program at once. Additionally, formatting like superscript and bold does not work within a code box.</p> <p>EDIT: It would also be cool if the code boxes had line numbers because it is often useful to reference a particular line in the code.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466796</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466796</link>
				<description></description>
				<pubDate>Thu, 03 Mar 2016 07:51:14 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I re-added the character boxes across the site, so it should be good to go.</p> <p>I agree that it would be best to constrain the screenshot image width to match the sidebar width, but I don't think the command template currently supports that. I'm not sure how much work is involved in adding that, but I will look into it.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466688</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466688</link>
				<description></description>
				<pubDate>Thu, 03 Mar 2016 03:29:16 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I could manually scale the screenshots to the proper dimensions, but it seems like it would be better to constrain the image width to the width of the sidebar area. However, not scaling the images will encourage people to reduce the resolution, which may save storage space.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466676</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466676</link>
				<description></description>
				<pubDate>Thu, 03 Mar 2016 02:40:29 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>We used to have the character box across the whole site, so that should be doable.</p> <p>As far as scaling the screenshots goes, what do you have in mind?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466370</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466370</link>
				<description></description>
				<pubDate>Wed, 02 Mar 2016 13:38:34 +0000</pubDate>
				<wikidot:authorName>Michael2_3B</wikidot:authorName>				<wikidot:authorUserId>1974546</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Looks good, thanks :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466259</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466259</link>
				<description></description>
				<pubDate>Wed, 02 Mar 2016 07:47:49 +0000</pubDate>
				<wikidot:authorName>jonbush</wikidot:authorName>				<wikidot:authorUserId>1872270</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Higher resolution screenshots from the CE are not properly scaled. See <a href="http://tibasicdev.wikidot.com/wait">Wait</a>.</p> <p>It would also be nice to have the character palette when editing pages outside the forum.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466211</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466211</link>
				<description></description>
				<pubDate>Wed, 02 Mar 2016 05:21:19 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I just added the CSS styles, so the code box now has a scrollbar when the code goes over 300px in height.</p> <p>Are there any other things that need tweaking?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466150</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466150</link>
				<description></description>
				<pubDate>Wed, 02 Mar 2016 03:12:36 +0000</pubDate>
				<wikidot:authorName>Michael2_3B</wikidot:authorName>				<wikidot:authorUserId>1974546</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Awesome! And I don't know how to express the max height exactly, but I think any more than maybe 20 lines of code should require the scroll bar/scroll feature. Any less and it will just act normally, of course (no need for scroll bar).</p> <p>Here's what 20 lines of code would look like:</p> <div class="code"> <pre><code>1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20</code></pre></div> <p>Sound good? Or do you think maybe more?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2466138</guid>
				<title>Re: Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2466138</link>
				<description></description>
				<pubDate>Wed, 02 Mar 2016 02:44:00 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I think that change just involves adding a couple CSS properties to the site stylesheet, so it should be pretty easy to implement. How tall do you want the code box to be?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-2461681</guid>
				<title>Code Boxes</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-2461681</link>
				<description></description>
				<pubDate>Tue, 23 Feb 2016 03:15:08 +0000</pubDate>
				<wikidot:authorName>Michael2_3B</wikidot:authorName>				<wikidot:authorUserId>1974546</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Can we make it so that code boxes are like the ones on Cemetech? This would be so that you can scroll through the code in a smaller box without it taking up more of the actual page space, which can actually be kind of annoying sometimes.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1832695</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1832695</link>
				<description></description>
				<pubDate>Wed, 14 Aug 2013 18:08:03 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>This topic seems to have died out&#8230; Did something happen to it?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1703486</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1703486</link>
				<description></description>
				<pubDate>Tue, 05 Feb 2013 14:24:41 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I found out how to nest ListPages (:</p> <p>I'll see if I can use it to implement the most recent post thing once my classes are finished.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1703463</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1703463</link>
				<description></description>
				<pubDate>Tue, 05 Feb 2013 13:46:22 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yes, that's a good idea.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1703385</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1703385</link>
				<description></description>
				<pubDate>Tue, 05 Feb 2013 09:07:38 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I guess it is what it is&#8230;</p> <p>When you add support for distinguishing between different member types, I think you should also add support for different community roles as well (see <a href="http://tibasicdev.wikidot.com/forum/t-620306/community-roles">community roles</a> thread).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1702337</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1702337</link>
				<description></description>
				<pubDate>Mon, 04 Feb 2013 02:09:18 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I changed it; I think it looks slightly better.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1702250</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1702250</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 23:39:41 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That's a whole lot easier to read!</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701779</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701779</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 04:50:58 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>@Mr Dino: I'm using something called Wikidot Data Forms, which is an alternative to the normal editing box you see when editing a page. It allows you to put multiple boxes that can do multiple things, hence the attachment form. For some reason, though, Wikidot has made it so you cannot preview a data form page, and they also (reasonably) have it set so that the formatting buttons do not appear.</p> <p>@Boba Foxx: You are right; the reply box is a different page in an iframe.</p> <p>@burr: I wish it were; unfortunately, that requires nesting ListPages modules, which is impossible. I was only able to get the most recent thread to work on the main board because each row is its own ListPages module, which I was only able to do because I knew exactly what categories to display. The number of threads is dynamic, so I cannot employ the same solution.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701761</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701761</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 04:14:05 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Another thing that would also be nice is to list the most recent post from each thread. Is that possible to implement?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701735</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701735</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 03:07:14 +0000</pubDate>
				<wikidot:authorName>Boba Foxx</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>It looks a little funky to me, although firebug says the css sheet is hosted on wikidot, so that's probably why.<br /> Looks pretty neat to me, although a tad bit cramped on the index. The reply box thing is a little odd in my opinion, since it seems like it it's a window from another page displayed in a frame.<br /> Other than that, I like it a little better than the current forum.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701726</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701726</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 02:31:14 +0000</pubDate>
				<wikidot:authorName>Mr Dino</wikidot:authorName>				<wikidot:authorUserId>836455</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Yeah, the new forums are better, I'm just not used to them yet. :P<br /> I think the only things the old forums had that's better is the previewing and formatting buttons. Can you explain why we can't have them if we have forum attatchments?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701719</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701719</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 02:11:49 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I can put the buttons and previewing back (maybe previewing&#8230; depends on how the iframe behaves) at the expense of the new adding attachments feature. Currently, there is already a link to a pinned styling thread on the side bar, though I could put a collapsible block that shows a cheat sheet near the reply box.</p> <p>This forum will remain up until the community decides that the new forum ought to be adopted; once a decision is made, one will stay and one will go, since having both simultaneously is redundant.</p> <p>At the current moment, the trade off is this:</p> <ul> <li>New Forum <ul> <li>Can sort threads by category</li> <li>Can tag threads with specific keywords (like &quot;movement&quot;, &quot;axe&quot;, &quot;opcodes&quot;, etc.)</li> <li>Can flag threads which have been overlooked (at the moment, can only be flagged by the thread-creator and moderators&#8230; effectively a stronger bump)</li> <li>Can attach files to specific posts</li> <li>Looks cooler (in my opinion), or at the very least can be customized to essentially any look</li> <li>Distinguishes members from mods and admins (will implement; I know how)</li> <li>Can see who's been active on the forums</li> </ul> </li> <li>Current Forum <ul> <li>Has the formatting buttons</li> <li>Can preview posts</li> <li>Making a post jumps to the post you just made (I tried doing this on the new forum, but for some reason when I add an anchor to the URL, the page does not refresh)</li> <li>Can fold posts (who even does this&#8230;?)</li> <li>Can be manipulated from the Site Manager (which really doesn't affect anyone)</li> </ul> </li> </ul> <p>So it is up to the community to weigh the pros and cons. In terms of usability, I can put previewing back but only at the expense of the attachments. In terms of aesthetics, I can format the forum to be virtually anything. In terms of organization, the new forum has more options.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701698</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701698</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 01:34:08 +0000</pubDate>
				<wikidot:authorName>Mr Dino</wikidot:authorName>				<wikidot:authorUserId>836455</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hmmm&#8230; Not sure I like the new layout; it feels a bit awkward. This is mainly because it's new and I don't like change; I'll get used to it eventually&#8230; Sorry for being the negative one.<br /> Is there <strong>any</strong> way you can get previewing, the buttons, and the wizards working? I know you already said no, but&#8230; Wishful thinking&#8230; Perhaps post a link to the forum styling page where people make new posts? Or a popup, similar to the CHAR box in these forums.<br /> This forum will still remain, though, right? If you add a &quot;Recent Posts&quot; box somewhere on the home page so that both forums are accessible, I could slowly get used to it.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701684</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701684</link>
				<description></description>
				<pubDate>Sun, 03 Feb 2013 00:41:11 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>It would look like this (click to enlarge):</p> <a href="http://tibasicdev.wikidot.com/local--files/board:_main/tibd_boardBorders.png"><img src="http://tibasicdev.wikidot.com/local--files/board:_main/tibd_boardBorders.png" width="500px" alt="tibd_boardBorders.png" class="image" /></a> <p>EDIT: Except the &quot;Threads&quot; header box wouldn't be bordered&#8230;</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701622</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701622</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 22:45:17 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I don't know&#8230; The words and lines on the Forum:Home page all seem a bit fuzzy to read. Could grey lines be added to border each category row?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701619</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701619</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 22:38:07 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Could you be more specific?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701615</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701615</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 22:21:47 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Also, the color contrast on Fourm:Home is a bit hard to read with (just trying to help).</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701597</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701597</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 21:52:42 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Oh, that. Sorry, I never use it, so I accidentally forgot. I placed it back in, but it says <a href="http://tibasicdev.wikidot.com/goto">Goto</a> instead.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701591</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701591</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 21:32:41 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <img src="http://tibasicdev.wdfiles.com/local--files/forum%3Athread/Screen%20Shot%202013-02-02%20at%204.26.51%20PM.png" alt="Screen%20Shot%202013-02-02%20at%204.26.51%20PM.png" class="image" />
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701588</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701588</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 21:21:29 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Jumping to a post? Where is this option?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701586</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701586</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 21:16:08 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Wait- is that the way the forum will actually <em>look</em> or is it just a simplified? What happened to the part about jumping to a post?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701579</guid>
				<title>Re: New Forums</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701579</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 21:05:15 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That requires changing Wikidot's code itself, so sorry, I couldn't do that.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701571</guid>
				<title>Re: New Forums</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701571</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 20:49:44 +0000</pubDate>
				<wikidot:authorName>simonalford42</wikidot:authorName>				<wikidot:authorUserId>1455624</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Could you add something so that you can type replacements for such symbols and then it will replace those with the correct symbols? For example, if I typed in 5-&gt;A, once I posted it it would show up as 5→A *trying to think of a time when you would type -&gt; without meaning an arrow*</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701547</guid>
				<title>Re: New Forums</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701547</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 19:28:06 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I really wish there were a way to do that, but unfortunately there is not ): I've been looking for a way to implement that kind of functionality for a while now.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701494</guid>
				<title>Re: New Forums</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701494</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 17:29:02 +0000</pubDate>
				<wikidot:authorName>simonalford42</wikidot:authorName>				<wikidot:authorUserId>1455624</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>One thing that would be REALLY nice for me. Is it possible to make it so that instead of highlighting and copy-pasting the calculator symbols, you click the desired symbol and it shows up in the writing box?</p> <p>The new forums look very good to me so far :)</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1701476</guid>
				<title>New Forums</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1701476</link>
				<description></description>
				<pubDate>Sat, 02 Feb 2013 16:47:03 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I have finished the <a href="http://tibasicdev.wikidot.com/board:_main">New Forum System</a> enough for testing. Please see how you like it!</p> <p>A few things you will notice:</p> <ul> <li>You cannot preview a post. This is due to the Wikidot coding I'm using. However, sacrificing this functionality means being able to make attachments and having the integrated char box.</li> <li>The syntax buttons do not show anymore. All of the relevant styling can be found <a href="http://tibasicdev.wikidot.com/post:48">here</a>.</li> <li>Everyone has the member type &quot;Member Type&quot;. I still haven't quite figured out how I want to code this; it isn't easy.</li> <li>I'm still figuring out how this is going to affect unregistered users (sorry Boba Foxx&#8230;), but I have ideas on making it work.</li> </ul> <p>Please provide feedback so the system can better fit the needs of the community.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698939</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698939</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 17:22:54 +0000</pubDate>
				<wikidot:authorName>Boba Foxx</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>I know, but would it be at all possible to route those requests through the tibasicdev sub-domain? My problem is that I'm behind a web filter, and for whatever reason, this specific subdomain is not block, but wikidot is, so I cannot log in.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698922</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698922</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 17:07:51 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>When you log in, you are actually logging in to Wikidot, not TI|BD. Therefore, you must login through their domain.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698879</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698879</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 16:20:12 +0000</pubDate>
				<wikidot:authorName>Boba Foxx</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Would it be at all possible to have an embedded login on this site, rather than redirecting to the wikidot.com domain? Or does wikidot have some policy that all logins have to be routed through their domain.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698872</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698872</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 16:13:12 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>@burr</p> <p>I don't know; hopefully I'll have it done this weekend if I do not run into too many issues. College soaks up a lot of my time, though.</p> <p>@Xeda</p> <p>Precisely. I figured it would be much more organized than what we have now.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698719</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698719</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 11:34:14 +0000</pubDate>
				<wikidot:authorName>Xeda Elnara</wikidot:authorName>				<wikidot:authorUserId>595803</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That sounds excellent and I like the idea to have one attachment to a post. So, we can attach a .zip with all the stuff that we want to a specific post, that way it isn't just all mixed with the file attachments?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698583</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698583</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 04:41:48 +0000</pubDate>
				<wikidot:authorName>burr</wikidot:authorName>				<wikidot:authorUserId>740</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>That sounds good&#8230; What is your timeline for having a demo of the new forum ready?</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698426</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698426</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 01:28:45 +0000</pubDate>
				<wikidot:authorName>Timothy Foster</wikidot:authorName>				<wikidot:authorUserId>197988</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I think the flagging idea would have the same effect you hope to achieve with this. If we implemented anything like this, only one category would be needed: difficult. Easy and intermediate questions will probably be addressed and solved relatively quickly, whereas difficult questions will be known to be so when a majority of the active members struggle answering it. Such a question would need further review, hence the flags.</p> <p>Currently, here is what I will implement:</p> <ul> <li>Ability to flag threads which will make them priority over other posts (useful if a thread gets lost in time or needs more time to review)</li> <li>Ability to categorize threads with keywords that are more descriptive than the category to which the thread belongs</li> <li>Display whether a member is a moderator, admin, or something else.</li> <li>Integrated CHAR box</li> <li>Ability to attach one file to a post.</li> </ul> <p>I get the sense that about half the members are satisfied with the current system and the other half favor a new one. Therefore, I will make the new one and put it up to trial instead of immediately implementing it. My goal is to make it as easy to make posts as it is in the current forum while simply adding new optional features.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698412</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698412</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 01:10:42 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <blockquote> <p>&quot;Never stop improving.&quot;</p> </blockquote> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698411</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698411</link>
				<description></description>
				<pubDate>Wed, 30 Jan 2013 01:10:23 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I figure that if we are going to make changes with all of these ideas, we might as well do them all at once, so go ahead and get out all of the ideas you have.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698245</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698245</link>
				<description></description>
				<pubDate>Tue, 29 Jan 2013 22:16:34 +0000</pubDate>
				<wikidot:authorName>simonalford42</wikidot:authorName>				<wikidot:authorUserId>1455624</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>I feel like this all isn't really worth it. I mean I know lots of communities whose forums are just like ours and work fine&#8230; If the question doesn't get answered then just ask it again, in my opinion.<br /> I mean, all this stuff does sound quite nice, but if none of it gets implemented I think we'd be fine.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698242</guid>
				<title>(no title)</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698242</link>
				<description></description>
				<pubDate>Tue, 29 Jan 2013 22:11:49 +0000</pubDate>
				<wikidot:authorName>Boba Foxx</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>If you keep asking for stuff we'll never get anything &gt;.&gt;</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://tibasicdev.wikidot.com/forum/t-613850#post-1698218</guid>
				<title>Re: Developer&#039;s Page</title>
				<link>http://tibasicdev.wikidot.com/forum/t-613850/developer-s-page#post-1698218</link>
				<description></description>
				<pubDate>Tue, 29 Jan 2013 21:45:11 +0000</pubDate>
								<wikidot:authorUserId>1494467</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>Hey, I just had an idea related to the flag one: what if you could sort posts by how difficult the question is and store it like a flag?</p> <blockquote> <p>This is:</p> </blockquote> <div class="code"> <pre><code>[[tabview]] [[None]] [No specific label given or a non-question post.] [[/tab]] [[Green]] A basic question [[/tab]] [[Yellow]] An intermediate question. [[/tab]] [[Red]] A difficult question. [[/tab]] [[/tabview]]</code></pre></div> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>