<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>pnotepad.org forums &#187; Tag: feature request - Recent Posts</title>
		<link>http://pnotepad.org/forums/tags/feature-request</link>
		<description>Programmer&#039;s Notepad Forums</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 12:23:54 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.3</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://pnotepad.org/forums/search.php</link>
		</textInput>
		<atom:link href="http://pnotepad.org/forums/rss/tags/feature-request" rel="self" type="application/rss+xml" />

		<item>
                        <title>Feature Request:  click in margin to toggle bookmark - like in np++ (simon)</title>
			<link>http://pnotepad.org/forums/topic/5173#post-7710</link>
			<pubDate>Thu, 03 Mar 2011 23:35:29 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">7710@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Thanks, I think there is already a feature request for this, and should get to it at some point. Note that it's easy to toggle bookmarks by pressing Ctrl-F2.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request:  click in margin to toggle bookmark - like in np++ (BGM)</title>
			<link>http://pnotepad.org/forums/topic/5173#post-7671</link>
			<pubDate>Mon, 14 Feb 2011 15:47:15 +0000</pubDate>
			<dc:creator>BGM</dc:creator>
			<guid isPermaLink="false">7671@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;current version:  pn v2.2.0.2240-ellington&#60;br /&#62;
I would like to click in margin to toggle bookmark - like in np++.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files feature request (simon)</title>
			<link>http://pnotepad.org/forums/topic/4797#post-7045</link>
			<pubDate>Tue, 08 Jun 2010 09:49:16 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">7045@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Ah, that's an approach I hadn't thought of. It would be a shame to not support multi-line search but it might be a good halfway house until I can devote proper time to it.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files feature request (mac3n)</title>
			<link>http://pnotepad.org/forums/topic/4797#post-7037</link>
			<pubDate>Mon, 07 Jun 2010 17:47:31 +0000</pubDate>
			<dc:creator>mac3n</dc:creator>
			<guid isPermaLink="false">7037@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;That accounts for most editors not supporting REs in find-in-files, and most tools that do, not supporting multi-line matches. They split the files into lines, then do a match on each line. It also makes it possible to assume the searched string fits in memory (unless you have lines &#38;gt;2GB).
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files feature request (simon)</title>
			<link>http://pnotepad.org/forums/topic/4797#post-7030</link>
			<pubDate>Mon, 07 Jun 2010 08:46:40 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">7030@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;@mac3n Nice, thanks for sharing!&#60;/p&#62;
&#60;p&#62;The main thing that's stopped me from supporting regular expressions for find in files so far is that I still want to be able to indicate line numbers for matches. However, most regular expression libraries parse in terms of stream indexes meaning I need to provide some form of extra step to work out the line numbers.&#60;/p&#62;
&#60;p&#62;It's possible a short-term fix could be to switch to offsets when using regular expressions.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files feature request (mac3n)</title>
			<link>http://pnotepad.org/forums/topic/4797#post-6931</link>
			<pubDate>Fri, 04 Jun 2010 21:07:49 +0000</pubDate>
			<dc:creator>mac3n</dc:creator>
			<guid isPermaLink="false">6931@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;There are external programs that do regular-expression searches on files. I use one from active-state perl. It shouldn't be hard to find one. I have noticed that even editors that support regular expressions tend not to support them for find-in-files.&#60;/p&#62;
&#60;p&#62;Because I do a lot of this, I recently built some tools to index c-tags and identifiers into a sqlite3 database, which I use from PN2. Since sqlite queries include some pattern matching, the tools allow me to say something like&#60;br /&#62;
 D:\pn-projects\DEFS.db &#34;select * from refsview where word glob '*DATA*MEMORY' order by path&#34; &#34;?(?) : ?&#34;&#60;/p&#62;
&#60;p&#62;The restriction is that I only index identifiers, so patterns are limited to an identifier and they use glob syntax. The advantage is that a database lookup is considerably faster than a scan of several thousand files.&#60;/p&#62;
&#60;p&#62;I have the tools up on &#38;lt;http://sites.google.com/site/macthenaief/Home/cindex&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files feature request (stier08)</title>
			<link>http://pnotepad.org/forums/topic/4797#post-6930</link>
			<pubDate>Thu, 03 Jun 2010 10:43:04 +0000</pubDate>
			<dc:creator>stier08</dc:creator>
			<guid isPermaLink="false">6930@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Add regular expression support for searching in files&#60;/p&#62;
&#60;p&#62;I'm using pnotepad for several years have been missing this feature all the time.&#60;/p&#62;
&#60;p&#62;Thanks in advance.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Sorting text (Czakalli)</title>
			<link>http://pnotepad.org/forums/topic/1136#post-3153</link>
			<pubDate>Tue, 16 Mar 2010 14:45:07 +0000</pubDate>
			<dc:creator>Czakalli</dc:creator>
			<guid isPermaLink="false">3153@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Great, exatly what i needed. Thanks for your help. Cheers.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Sorting text (simon)</title>
			<link>http://pnotepad.org/forums/topic/1136#post-3146</link>
			<pubDate>Tue, 16 Mar 2010 07:14:07 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">3146@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;please try &#60;a href=&#34;http://untidy.net/blog/2010/03/12/programmers-notepad-2-1-3-released/&#34;&#62;PN 2.1.3&#60;/a&#62; with the &#60;a href=&#34;http://untidy.net/blog/2009/11/19/announcing-pnotepad-plugins-and-textutil-0-1/&#34;&#62;TextUtil&#60;/a&#62; extension.&#60;/p&#62;
&#60;p&#62;Let me know how you get on!&#60;/p&#62;
&#60;p&#62;Simon.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Sorting text (Czakalli)</title>
			<link>http://pnotepad.org/forums/topic/1136#post-3144</link>
			<pubDate>Mon, 15 Mar 2010 11:50:54 +0000</pubDate>
			<dc:creator>Czakalli</dc:creator>
			<guid isPermaLink="false">3144@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;i've been using PN for almost 2 years now and i have to say its a great tool, i'm very pleased with it and i've been recomending to all my friends (I should definitely donate smth.)&#60;/p&#62;
&#60;p&#62;I would like the feature of sorting the text alphabeticaly, best would be only the selected part of text, but wouln't mind if its done for the whole file, (can always open a new temporary tab)&#60;/p&#62;
&#60;p&#62;I know this is not much needed while programing, but i use PN to open everything i can. I have to open exel to sort and from there back to PN, why not do it directly here. &#60;/p&#62;
&#60;p&#62;Shouldn't be too difficult for you guys.&#60;/p&#62;
&#60;p&#62;Thanks again!&#60;br /&#62;
Cheers
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature suggestion: Add new folder (simon)</title>
			<link>http://pnotepad.org/forums/topic/705#post-2585</link>
			<pubDate>Fri, 20 Nov 2009 10:54:22 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">2585@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Can you explain further what you mean? Do you mean in the projects view, the file browser view or somewhere else?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature suggestion: Add new folder (reboltutorial)</title>
			<link>http://pnotepad.org/forums/topic/705#post-2558</link>
			<pubDate>Tue, 03 Nov 2009 20:14:53 +0000</pubDate>
			<dc:creator>reboltutorial</dc:creator>
			<guid isPermaLink="false">2558@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Would be great if one could create a new folder near open folder item.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Local script repository instead of global? (simon)</title>
			<link>http://pnotepad.org/forums/topic/515#post-1792</link>
			<pubDate>Tue, 27 Jan 2009 11:25:44 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1792@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Yes, I'll be looking into this. There's a bug here you can track: &#60;a href=&#34;http://code.google.com/p/pnotepad/issues/detail?id=309&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/pnotepad/issues/detail?id=309&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Ideally all user bits should be stored outside of Program Files, to meet with Windows guidelines.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Local script repository instead of global? (momobaxter)</title>
			<link>http://pnotepad.org/forums/topic/515#post-1791</link>
			<pubDate>Mon, 26 Jan 2009 21:13:10 +0000</pubDate>
			<dc:creator>momobaxter</dc:creator>
			<guid isPermaLink="false">1791@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Is it possible to request that a local user script repository also exist if it doesn't already?  When writing scripts it would be great to be able to save a script in %APPDATA%/Programmer's Notepad/scripts instead of the global scripts root folder.  &#60;/p&#62;
&#60;p&#62;Is this already possible?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature suggestion: macros (zman123)</title>
			<link>http://pnotepad.org/forums/topic/478#post-1692</link>
			<pubDate>Tue, 04 Nov 2008 17:49:31 +0000</pubDate>
			<dc:creator>zman123</dc:creator>
			<guid isPermaLink="false">1692@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Thank you for the response.  I'll check out PyPN when I get a chance.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature suggestion: macros (simon)</title>
			<link>http://pnotepad.org/forums/topic/478#post-1691</link>
			<pubDate>Tue, 04 Nov 2008 08:59:36 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1691@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Working on it :)&#60;/p&#62;
&#60;p&#62;Until you can automatically record macros, you can use the PyPN plugin to let you run Python code to script PN. Scripts can be given keyboard shortcuts too:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pnotepad.org/docs/howto/install_pypn&#34; rel=&#34;nofollow&#34;&#62;http://pnotepad.org/docs/howto/install_pypn&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature suggestion: macros (zman123)</title>
			<link>http://pnotepad.org/forums/topic/478#post-1687</link>
			<pubDate>Mon, 03 Nov 2008 19:16:13 +0000</pubDate>
			<dc:creator>zman123</dc:creator>
			<guid isPermaLink="false">1687@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I like the program overall, but I think there is one feature it could really use: a macro system, or some way of recording and playing back sequences of typing and commands within the program.  I would really like it if they are accessible via keyboard shortcuts like in Crimson Editor.&#60;/p&#62;
&#60;p&#62;I tried using the &#34;request a feature&#34; command, but it doesn't seem to be working.  When I tried to submit my request, I got a strange error.&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Change to File&#039;s directory (simon)</title>
			<link>http://pnotepad.org/forums/topic/447#post-1583</link>
			<pubDate>Fri, 25 Jul 2008 13:00:26 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1583@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Yes, PN already sets the directory to that of the current file when you open a file, it could do so as well for save - although this can be annoying when trying to move a lot of files this way. Please file a request:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://code.google.com/p/pnotepad/issues/entry&#34; rel=&#34;nofollow&#34;&#62;http://code.google.com/p/pnotepad/issues/entry&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Change to File&#039;s directory (jdearden)</title>
			<link>http://pnotepad.org/forums/topic/447#post-1571</link>
			<pubDate>Wed, 23 Jul 2008 01:46:57 +0000</pubDate>
			<dc:creator>jdearden</dc:creator>
			<guid isPermaLink="false">1571@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'd like to see an menu item to change to the directory of the current file.  When I start PN2, it remembers the last directory it was used in, which is good.  But I often change to another directory and start working on stuff there.  If I make a new file and save it, PN2 starts the save-as dialog with it pointing to the directory I started in.  It never fails that I don't notice and save a bunch of files in the wrong directory.&#60;/p&#62;
&#60;p&#62;Old PFE is the only program I know of that had this feature, and it's handy as can be.&#60;/p&#62;
&#60;p&#62;I use AutoCAD at work, and it's bad about thinking I'm still working in the directory I started it in.&#60;/p&#62;
&#60;p&#62;Thanks for the great program.  I tried Dev-C++ because it automatically builds the makefile dependencies, but I'm back to PN2.&#60;/p&#62;
&#60;p&#62;John
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (simon)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1492</link>
			<pubDate>Sun, 15 Jun 2008 22:16:24 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1492@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;For the next release, Find Next in currently open files and Find in Files across those same files is now implemented.&#60;/p&#62;
&#60;p&#62;I've also just re-implemented Mark All. Currently it doesn't set bookmarks, it just highlights all instances. I was thinking of adding Bookmark All as a separate command. Thoughts?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (horus)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1485</link>
			<pubDate>Fri, 13 Jun 2008 05:58:25 +0000</pubDate>
			<dc:creator>horus</dc:creator>
			<guid isPermaLink="false">1485@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I was also looking for why the &#34;mark all&#34; button is greyed out and I've found this discussion.&#60;br /&#62;
&#34;mark all&#34; could/should trigger on the bookmark of the matched line to make it visually easier to spot them, if the styling is in collision with the text mark.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (simon)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1441</link>
			<pubDate>Mon, 02 Jun 2008 08:22:55 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1441@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Mark should be coming back now Scintilla has support for text marks that don't collide with the text styling information.&#60;/p&#62;
&#60;p&#62;The latest release adds support for doing Find in Files across all open files (see the Find where box).
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (espresso)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1435</link>
			<pubDate>Sun, 01 Jun 2008 16:30:34 +0000</pubDate>
			<dc:creator>espresso</dc:creator>
			<guid isPermaLink="false">1435@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;another great feature would be highlight (or mark) the results in the text so that we could easily spot it. i see the &#34;mark&#34; button under Find tab but greyed out...&#60;/p&#62;
&#60;p&#62;Thanks,
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (airdrik)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1368</link>
			<pubDate>Tue, 29 Apr 2008 20:05:13 +0000</pubDate>
			<dc:creator>airdrik</dc:creator>
			<guid isPermaLink="false">1368@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I would personally prefer they add a more practical (in my opinion, at least): &#34;find in opened files&#34; since I use that frequently when I am using an editor (which I generally use for editing misc. files in a non-project-oriented manner).&#60;/p&#62;
&#60;p&#62;As for searching other directories, I think that is leaving the scope of what a text/code editor is for, and that system search/index tools are better suited to such tasks.  &#60;/p&#62;
&#60;p&#62;Another thing that seems to be broken is the 'mark all occurrences' button.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (broodley)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1366</link>
			<pubDate>Fri, 25 Apr 2008 03:44:51 +0000</pubDate>
			<dc:creator>broodley</dc:creator>
			<guid isPermaLink="false">1366@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Another Find/Find in Files feature which would make me go from really liking this tool to loving it, would be if it stored the last x directories and file types you searched for.  (Currently when you hit the drop down it displays &#34;Current File, Current Folder, and Current Project Folder&#34; adding the last several directories the user actually searched in would make my work much more efficient.  Thanks again for a great product!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: more &#34;Find&#34; options (onega)</title>
			<link>http://pnotepad.org/forums/topic/388#post-1362</link>
			<pubDate>Thu, 24 Apr 2008 04:59:03 +0000</pubDate>
			<dc:creator>onega</dc:creator>
			<guid isPermaLink="false">1362@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Dear author,&#60;br /&#62;
The Find box is missing &#34;Count&#34; feature which is popular in other editor. It seems that &#34;Find Results&#34; window is not working.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Feature Request: Load large text file asynchronously (onega)</title>
			<link>http://pnotepad.org/forums/topic/387#post-1361</link>
			<pubDate>Thu, 24 Apr 2008 04:51:16 +0000</pubDate>
			<dc:creator>onega</dc:creator>
			<guid isPermaLink="false">1361@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I have some large text files, size can be 100Mb to &#38;gt; 4G. All the editors I tried (Notepad++, notepad2, etc) all spends about 30 seconds to load 160MB file. Can you load large file asynchronously and using a sliding window to display the file instead of loading the whole file into memory? Imagine how google earth is working, it can only display a small portion at a time, but user can scroll to anywhere she/he likes. Of course search/find should be done on the whole file anyway.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>feature request tags to clipboard (sagedavis)</title>
			<link>http://pnotepad.org/forums/topic/349#post-1248</link>
			<pubDate>Wed, 12 Mar 2008 17:04:01 +0000</pubDate>
			<dc:creator>sagedavis</dc:creator>
			<guid isPermaLink="false">1248@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Great idea, I shall take a look at doxygen.&#60;br /&#62;
Thanks&#60;br /&#62;
Sage
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>feature request tags to clipboard (simon)</title>
			<link>http://pnotepad.org/forums/topic/349#post-1243</link>
			<pubDate>Wed, 12 Mar 2008 09:31:58 +0000</pubDate>
			<dc:creator>simon</dc:creator>
			<guid isPermaLink="false">1243@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'll keep it in mind while I work on the next version. Out of interest, have you looked at tools like doxygen? Similar tools exist for most languages, and often have an XML output. This would generate something like what you're looking for.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>feature request tags to clipboard (sagedavis)</title>
			<link>http://pnotepad.org/forums/topic/349#post-1232</link>
			<pubDate>Tue, 11 Mar 2008 04:12:13 +0000</pubDate>
			<dc:creator>sagedavis</dc:creator>
			<guid isPermaLink="false">1232@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;as mentioned in my first post,&#60;br /&#62;
I am working on creating documentation for a large project.&#60;br /&#62;
This project was inherited, and I find myself endlessly scrubbing through code trying to find things. What makes it worse is that they are using classes that are included 3 pages deep and the include files can come from one of 8 locations, including the current document location, which makes for some very interesting searching around.&#60;/p&#62;
&#60;p&#62;At any rate, something that would help me greatly for this and other future projects is if in the &#34;tag&#34; window, I could highlight all of the classes copy to clip board and paste them into excell (each class would be a new row in excel).&#60;br /&#62;
I use excel to build my sql statement to insert into my database.&#60;/p&#62;
&#60;p&#62;Anyway, you could right click on variable, classes, or functions and where the contextual menu pops up with &#34;collapse all&#34; you would also have a &#34;copy group&#34;.&#60;/p&#62;
&#60;p&#62;This would also work if you right click on a single item, you would have the option of copying the item to the clip board.&#60;/p&#62;
&#60;p&#62;Expanding on that, perhaps allowing the ability to multi select the functions, would be helpful.&#60;/p&#62;
&#60;p&#62;I know that this wouldn't be easy, but I am requesting it anyway.&#60;/p&#62;
&#60;p&#62;Another idea that would make my life probably more easy than it should be, would be to be able to simply extract the list as an xml file which would reas something like&#60;br /&#62;
[code]&#60;br /&#62;
&#38;lt;class&#38;gt;&#60;br /&#62;
 &#38;lt;item&#38;gt;&#60;br /&#62;
  clsmyfirstclass&#60;br /&#62;
 &#38;lt;/item&#38;gt;&#60;br /&#62;
 &#38;lt;item&#38;gt;&#60;br /&#62;
  clsmyclass2&#60;br /&#62;
 &#38;lt;/item&#38;gt;&#60;br /&#62;
&#38;lt;/class&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;function&#38;gt;&#60;br /&#62;
 &#38;lt;item&#38;gt;&#60;br /&#62;
  fnmyFunction&#60;br /&#62;
 &#38;lt;/item&#38;gt;&#60;br /&#62;
 &#38;lt;item&#38;gt;&#60;br /&#62;
  fnNewFunction&#60;br /&#62;
 &#38;lt;/item&#38;gt;&#60;br /&#62;
&#38;lt;/function&#38;gt;&#60;/p&#62;
&#60;p&#62;[/code]&#60;/p&#62;
&#60;p&#62;Just a thought,&#60;br /&#62;
Thanks again for such a wonderful program
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

