<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to feature-requests</title><link>https://sourceforge.net/p/codepress/feature-requests/</link><description>Recent changes to feature-requests</description><atom:link href="https://sourceforge.net/p/codepress/feature-requests/feed.rss" rel="self"/><language>en</language><lastBuildDate>Mon, 24 Jan 2011 21:05:49 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/codepress/feature-requests/feed.rss" rel="self" type="application/rss+xml"/><item><title>Smarty Syntax</title><link>https://sourceforge.net/p/codepress/feature-requests/88/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Support Smarty 3 Template engine syntax&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">M4d3L</dc:creator><pubDate>Mon, 24 Jan 2011 21:05:49 -0000</pubDate><guid>https://sourceforge.netdae9c95ed92070bf2b4afa640355e74270ae675b</guid></item><item><title>Bash support</title><link>https://sourceforge.net/p/codepress/feature-requests/87/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Bash-Script syntax highlighting support for CodePress.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Torsten Amshove</dc:creator><pubDate>Thu, 15 Jul 2010 13:30:26 -0000</pubDate><guid>https://sourceforge.net3a9c402e5f27c059e2c1da00f9e7eefe44161b19</guid></item><item><title>ColdFusion support</title><link>https://sourceforge.net/p/codepress/feature-requests/86/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;ColdFusion syntax highlighting support for CodePress.&lt;/p&gt;
&lt;p&gt;Unzip the attached file into your CodePress installation directory, overwriting "codepress.js" (it might be wise to rename this file to "codepress.ORIGINAL.js" for backup). Ensure the "coldfusion.css" and "coldfusion.js" files are placed in your CodePress "languages" directory.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">suspiria</dc:creator><pubDate>Sun, 28 Feb 2010 07:40:28 -0000</pubDate><guid>https://sourceforge.netfb340c337d7b95f684b31937d5f1f2df3da5e23b</guid></item><item><title>Add language support for CFML (ColdFusion)</title><link>https://sourceforge.net/p/codepress/feature-requests/85/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;The CFML language (although shunned by many0 is becoming ever more popular and I think it would be nice to have a support for that.&lt;/p&gt;
&lt;p&gt;CFML follows very similar rules to HTML in terms of its formatting so surely it wouldn't be that hard. The return on investment for you is a huge sense of support from the ColdFusion community - not only Adobe's ColdFusion engine, but open source projects like Blue Dragon and Railo.&lt;/p&gt;
&lt;p&gt;These engines combined have hundreds of thousands of developers around the world - so it makes sense!&lt;/p&gt;
&lt;p&gt;Good luck and thanks for a great piece of hard work!&lt;/p&gt;
&lt;p&gt;Mikey.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 12 Feb 2010 10:04:09 -0000</pubDate><guid>https://sourceforge.net9ab3e082c1e45ff3f837cf5cc70b971ec9d86c64</guid></item><item><title>Fix for problems with CodePress and SilverStripe</title><link>https://sourceforge.net/p/codepress/feature-requests/84/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I use CodePress in Silverstripe and SilverStripe adds some parameters (i don't know why!) to script file names, i.e.:&lt;/p&gt;
&lt;p&gt;&amp;lt;script type="text/javascript" src="http://localhost/workspace/silverstripe_local/code_page/3dparty/codepress/codepress.js?m=1242801432"&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;CodePress don't find other JS-Files then because of the following line to get the file path:&lt;/p&gt;
&lt;p&gt;CodePress.path = s[i].src.replace('codepress\.js','');&lt;/p&gt;
&lt;p&gt;To fix that, you can maybe replace it by the following line:&lt;/p&gt;
&lt;p&gt;CodePress.path = s[i].src.replace(/codepress\.js.*/,'');&lt;/p&gt;
&lt;p&gt;Greetings, Paul&lt;/p&gt;&lt;/div&gt;</description><pubDate>Wed, 20 May 2009 06:45:07 -0000</pubDate><guid>https://sourceforge.net797d0c2cff7c8d8aff1ab7b05d0a8b523abe24fd</guid></item><item><title>add language support for C, C++, Python</title><link>https://sourceforge.net/p/codepress/feature-requests/83/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;adding language support for c, c++ and python&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 03 Apr 2009 15:08:16 -0000</pubDate><guid>https://sourceforge.netcc1b1075a4e081bfce999a0d300d6dd78c3fc492</guid></item><item><title>Select All (spent three days on this)</title><link>https://sourceforge.net/p/codepress/feature-requests/82/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;How do I make a "select all" code?&lt;/p&gt;
&lt;p&gt;I want to do this as a first step to create a " real-time search in code" function. &lt;/p&gt;
&lt;p&gt;I have managed to place the curse in the editor with the command "profilecode.contentWindow.focus();"&lt;br /&gt;
where "profilecode" is the id of the textarea. &lt;/p&gt;
&lt;p&gt;But "profilecode.contentWindow.select();" dose not work, to select all text. Surly because the textarea gets disabled.&lt;/p&gt;
&lt;p&gt;How do I solve this? Thanks in advance. &lt;br /&gt;
&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ami Ima</dc:creator><pubDate>Thu, 26 Mar 2009 18:25:50 -0000</pubDate><guid>https://sourceforge.net2c38446bbc12b469e4c517c45d0c9ccd02c6e984</guid></item><item><title>Object Pascal Language Support</title><link>https://sourceforge.net/p/codepress/feature-requests/81/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I implemented Object Pascal Language support, please add this to CodePress&lt;/p&gt;
&lt;p&gt;pascal.css&lt;/p&gt;
&lt;p&gt;/* CodePress color styles for Pascal, by Wanderlan Santos dos Anjos */&lt;br /&gt;
b{color:blue;font-weight:bold} /* reserved words */&lt;br /&gt;
a{color:green;font-weight:bold} /* numbers */&lt;br /&gt;
i,i b,i a{color:magenta;font-style:italic} /* comments */&lt;br /&gt;
s,s b,s a,s i{color:red;font-weight:normal} /* strings */&lt;br /&gt;
u,u b,u a{color:green;font-weight:bold} /* directives */&lt;/p&gt;
&lt;p&gt;pascal.js&lt;br /&gt;
// CodePress regex for Object Pascal(Delphi or FPC)&lt;br /&gt;
// by Wanderlan Santos dos Anjos&lt;br /&gt;
Language.syntax=[&lt;br /&gt;
// Strings&lt;br /&gt;
{input:/\'(.*?)(\'|&amp;lt;br&amp;gt;|&amp;lt;\/br&amp;gt;|&amp;lt;\/P&amp;gt;|\n)/gi,output:"&amp;lt;s&amp;gt;'$1'&amp;lt;/s&amp;gt;"},&lt;br /&gt;
// Reserved words   {input:/\b(absolute|abstract|and|array|as|asm|begin|case|cdecl|class|const|constructor|destructor|div|do|downto|else|end|except|exports|external|file|finalization|finally|for|forward|function|goto|if|implementation|in|index|inherited|initialization|inline|interface|is|label|library|mod|nil|not|object|of|on|or|out|operator|override|packed|pascal|procedure|program|property|private|protected|published|public|raise|record|register|reintroduce|repeat|resourcestring|safecall|set|shl|shr|stdcall|string|then|threadvar|to|try|type|unit|until|uses|var|virtual|while|with|xor)\b/gi,output:'&amp;lt;b&amp;gt;$1&amp;lt;/b&amp;gt;'},&lt;br /&gt;
// Numbers&lt;br /&gt;
{input:/\b([+-]?[\d\.]+)\b/g,output:'&amp;lt;a&amp;gt;$1&amp;lt;/a&amp;gt;'},&lt;br /&gt;
// Hexa numbers&lt;br /&gt;
{input:/\b($[\dABCDEF]+)\b/gi,output:'&amp;lt;a&amp;gt;$1&amp;lt;/a&amp;gt;'},&lt;br /&gt;
// Chars hexa&lt;br /&gt;
{input:/\b(#$[\dABCDEF]+)\b/gi,output:'&amp;lt;s&amp;gt;$1&amp;lt;/s&amp;gt;'},&lt;br /&gt;
// Chars&lt;br /&gt;
{input:/\b(#\d+)\b/g,output:'&amp;lt;s&amp;gt;$1&amp;lt;/s&amp;gt;'},&lt;br /&gt;
// Comments //&lt;br /&gt;
{input:/([^:]|^)\/\/(.*?)(&amp;lt;br&amp;gt;|&amp;lt;\/br&amp;gt;|&amp;lt;\/P&amp;gt;|\n)/g,output:'$1&amp;lt;i&amp;gt;//$2&amp;lt;/i&amp;gt;$3'},&lt;br /&gt;
// Comments (**)&lt;br /&gt;
{input:/\(\*(.*?)\*\)/g,output:'&amp;lt;i&amp;gt;(*$1*)&amp;lt;/i&amp;gt;'},&lt;br /&gt;
// Comments {}&lt;br /&gt;
{input:/\{(.*?)\}/g,output:'&amp;lt;i&amp;gt;{$1}&amp;lt;/i&amp;gt;'},&lt;br /&gt;
// Directives {$}&lt;br /&gt;
{input:/\{\$(.*?)\}/g,output:'&amp;lt;u&amp;gt;{$$$1}&amp;lt;/u&amp;gt;'}]&lt;br /&gt;
Language.snippets=[]&lt;br /&gt;
Language.complete=[&lt;br /&gt;
{input:'\'',output:'\'$0\''},&lt;br /&gt;
{input:'(',output:'\($0\)'},&lt;br /&gt;
{input:'[',output:'\[$0\]'},&lt;br /&gt;
{input:'begin',output:'{\n\t$0\nend;'}]&lt;br /&gt;
Language.shortcuts=[]&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Thu, 27 Nov 2008 17:22:03 -0000</pubDate><guid>https://sourceforge.neteed67759d90f5cba61da2da124ca7c7db1fe637f</guid></item><item><title>Re-color after moving cursor</title><link>https://sourceforge.net/p/codepress/feature-requests/80/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Example: comment out a line by putting // at the beginning, then use the arrow keys or keyboard to switch to another line. Nothing happens. You have to type a space or something on the line to get it to recolor. At the very least, the up/down arrow keys and clicking with the mouse should cause the coloring to activate.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 21 Nov 2008 23:39:17 -0000</pubDate><guid>https://sourceforge.netb2231773cdae5075169736e99b4821333ae7bfb9</guid></item><item><title>Keyboard Features</title><link>https://sourceforge.net/p/codepress/feature-requests/79/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Codepress is awesome, it just needs two helpful features.&lt;/p&gt;
&lt;p&gt;1.)Tabbing enabled&lt;br /&gt;
2.)Keeping the cursor on the same column after hitting enter.&lt;/p&gt;
&lt;p&gt;After that CodePress can't be any better.&lt;/p&gt;
&lt;p&gt;Great job guys!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Mon, 10 Nov 2008 07:42:15 -0000</pubDate><guid>https://sourceforge.netba9ebbfa26e53236f8a2077780096d1cd54239b2</guid></item></channel></rss>