<?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; Recent Topics</title>
		<link>http://pnotepad.org/forums/</link>
		<description>Programmer&#039;s Notepad Forums</description>
		<language>en-US</language>
		<pubDate>Wed, 08 Feb 2012 22:38:40 +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/topics" rel="self" type="application/rss+xml" />

		<item>
                        <title>PyPN for Python 2.7 (tanveer)</title>
			<link>http://pnotepad.org/forums/topic/7452#post-10631</link>
			<pubDate>Wed, 01 Feb 2012 02:08:13 +0000</pubDate>
			<dc:creator>tanveer</dc:creator>
			<guid isPermaLink="false">10631@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
I find the installer for PyPN for Python 2.6 but there is no installer for Python 2.7. Is this intentional or unsupported on 2.7?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>auto-indent Python code (bhengh)</title>
			<link>http://pnotepad.org/forums/topic/5441#post-8288</link>
			<pubDate>Thu, 01 Sep 2011 18:44:01 +0000</pubDate>
			<dc:creator>bhengh</dc:creator>
			<guid isPermaLink="false">8288@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I would like to use Programmer's Notepad to write Python apps.  Is there anyway to get Programmer's Notepad to auto-indent after a block statement?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Find in Files / Find Results (Rehnn)</title>
			<link>http://pnotepad.org/forums/topic/7451#post-10630</link>
			<pubDate>Tue, 31 Jan 2012 16:20:37 +0000</pubDate>
			<dc:creator>Rehnn</dc:creator>
			<guid isPermaLink="false">10630@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;If I do a &#34;Find in Files&#34; search for a string the &#34;Find Results&#34; dialogue box appears. Every time I click on a result a new tab opens in the main editor window.&#60;br /&#62;
For example... If the text &#34;print_hello()&#34; appears three times in the file lcd.c, if I double click each result in the &#34;Find Results&#34; windows, three copies of the the file lcd.c are opened.&#60;br /&#62;
What is worse if the text &#34;print_hello()&#34; appears Once  in the file driver.c, if I double click this result multiple times then multiple copies of this file are opened in the main editor window.&#60;/p&#62;
&#60;p&#62;Is there a way to stop PN opening multiple copies of the same file when doing a &#34;Find in Files&#34;?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>A couple schemedef questions (re: preprocessor, comments) (Roody)</title>
			<link>http://pnotepad.org/forums/topic/7438#post-10606</link>
			<pubDate>Sat, 21 Jan 2012 20:37:15 +0000</pubDate>
			<dc:creator>Roody</dc:creator>
			<guid isPermaLink="false">10606@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi, I use a somewhat obscure text adventure language called Hugo that has some funny syntax, and now I'm trying to make a PN schemedef file to suit it.&#60;/p&#62;
&#60;p&#62;First off, is there any way to terminate the preprocessor coloring before the end of line? I've played around with some methods but nothing has worked.&#60;/p&#62;
&#60;p&#62;Secondly, is there a way to use regular expression for comment definitions? Hugo uses &#34;!&#34; for single line comments, and &#34;!\&#34; to begin blocks and &#34;\!&#34; to end blocks. Right now, they aren't coexisting happily.&#60;/p&#62;
&#60;p&#62;Thanks for any help!
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Technical questions about extensions (jalopeura)</title>
			<link>http://pnotepad.org/forums/topic/7446#post-10619</link>
			<pubDate>Sat, 28 Jan 2012 15:25:18 +0000</pubDate>
			<dc:creator>jalopeura</dc:creator>
			<guid isPermaLink="false">10619@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'm working on an extension, and I have a few questions.&#60;/p&#62;
&#60;p&#62;First, all the interfaces have a destructor in the class definition. One group of them by their nature seem to be singleton objects, and therefore I shouldn't ever delete them (IPN, IOptions, etc.). Another group is things I define my own descendant class for, and therefore I should create and destroy them myself (event sinks, for example).&#60;/p&#62;
&#60;p&#62;However, there are two groups I'm not sure about. One of them is things like IDocument. Are these pointers to copies of objects that I take ownership of, or are they pointers to the same objects the main program is using, and therefore the main program retains ownership?&#60;/p&#62;
&#60;p&#62;The other group (well, a group of one) is MenuItems, which I pass to the main program via AddPluginMenuItems. Does the main program take ownership of this, or should I delete it when the plugin exits?&#60;/p&#62;
&#60;p&#62;Most of the strings passed back and forth seem to be either const'ed or passed via PN::BaseString. I assume that any const char*/wchar_t* I pass to the main program are copied if necessary, and thus I can safely free them after the call. Similarly, if I get them from the main program, I assume I have to copy them if I want to keep them around.&#60;/p&#62;
&#60;p&#62;There are, however, three examples of non-const wchar_t* being returned. On two of those, there is a comment indicating that I should use PN::ReleaseString when I'm done with it. Am I correct in my assumption that the other one should be treated the same way? The method in question is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;virtual wchar_t* InputBox(const wchar_t* title, const wchar_t* caption) = 0;&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>PN on Linux (Ubuntu) (Patabugen)</title>
			<link>http://pnotepad.org/forums/topic/4903#post-7080</link>
			<pubDate>Wed, 23 Jun 2010 11:32:56 +0000</pubDate>
			<dc:creator>Patabugen</dc:creator>
			<guid isPermaLink="false">7080@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hey All,&#60;/p&#62;
&#60;p&#62;I know there's been a few mentions of PN on Linux before, and I also know that Simon has no intention of specifically supporting it.&#60;/p&#62;
&#60;p&#62;However it does run under WinE and I am very grateful for it! there are millions of editors on Linux but none fit my working style quite like PN does and I have yet to find a native one I like. It's also nice to be able to use the same app wherever I am.&#60;/p&#62;
&#60;p&#62;It does crash once or twice a day, usually something to do with closing tabs. But it's getting more predictable as I use it more.&#60;/p&#62;
&#60;p&#62;Just wondered if anyone else used PN under Linux? And whether you had similar problems (or have fixed them!).&#60;/p&#62;
&#60;p&#62;I'm on Ubuntu 10.04.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Creating a new scheme in PN portable (prgcoder)</title>
			<link>http://pnotepad.org/forums/topic/7445#post-10617</link>
			<pubDate>Fri, 27 Jan 2012 06:17:17 +0000</pubDate>
			<dc:creator>prgcoder</dc:creator>
			<guid isPermaLink="false">10617@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi All, &#38;lt;first post&#38;gt;&#60;br /&#62;
I am having some problems trying to create a scheme for Ingres and/or OpenRoad.&#60;br /&#62;
I am using the portable version of PN (nice).&#60;br /&#62;
I see in the forum some talk of .schemedef files - i do not see any of these in the portable version.&#60;br /&#62;
I have tried copying existing .scheme files and associated them through the Tools &#38;gt; Options &#38;gt; Files &#38;gt; Add button, but no luck.&#60;/p&#62;
&#60;p&#62;Any pointers would be greatly appreciated.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Andy.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Possible to open a document with all folds collapsed? (maxmanley)</title>
			<link>http://pnotepad.org/forums/topic/7435#post-10603</link>
			<pubDate>Fri, 20 Jan 2012 11:23:19 +0000</pubDate>
			<dc:creator>maxmanley</dc:creator>
			<guid isPermaLink="false">10603@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Currently when I open a document all folds are expanded.  Is it possible to have it opened with the folds colla[sed?  Maybe a command-line switch or something?&#60;/p&#62;
&#60;p&#62;Thanks in advance for any assistance.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Convert portable  &#34;classic&#34; ? what to do? (jwka)</title>
			<link>http://pnotepad.org/forums/topic/7433#post-10601</link>
			<pubDate>Thu, 19 Jan 2012 16:40:44 +0000</pubDate>
			<dc:creator>jwka</dc:creator>
			<guid isPermaLink="false">10601@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I have used the &#34;clasic&#34; install so far but now I need to replicate the settings etc. between some PC's and I guess the easiest way to do so is using the portable version?&#60;/p&#62;
&#60;p&#62;Can anyone direct me as how to bring my settings (especially the color schemes and textclips) from my classic installation to the portable one?&#60;/p&#62;
&#60;p&#62;Thanks in advance&#60;br /&#62;
jwka
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>RegEx in PN  - Example (NickDMax)</title>
			<link>http://pnotepad.org/forums/topic/7416#post-10559</link>
			<pubDate>Wed, 11 Jan 2012 02:51:44 +0000</pubDate>
			<dc:creator>NickDMax</dc:creator>
			<guid isPermaLink="false">10559@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;So I was thinking about this &#60;a href=&#34;http://untidy.net/blog/2011/05/18/regular-expressions-and-scripts-worked-example/&#34;&#62;RegEx/Script example from the Untidy blog&#60;/a&#62; and I thought: &#34;Can that be one in 1 RegEx?&#34;&#60;/p&#62;
&#60;p&#62;The answer is of course: Yes - but would you really want to.&#60;/p&#62;
&#60;p&#62;Search: ^(?:(?!LogStep).*(?:\r\n)+)&#124;(?:LogStep\(\s*&#34;([^&#34;]+)&#34;\s*\).*(\r\n)(\r\n)*)&#60;br /&#62;
Replace: \1\2&#60;/p&#62;
&#60;p&#62;hit &#38;lt;Replace All&#38;gt;&#60;/p&#62;
&#60;p&#62;This is a pretty complex RegEx so lets break it up. The overall structure is A&#124;B&#60;/p&#62;
&#60;p&#62;A: RegEx to match the rest of a line NOT BEGINNING with &#34;LogStep&#34;&#60;br /&#62;
B: RegEx to match the rest of a line that DOES begin with &#34;LogStep&#34; - capture the text (and a CRLF new line)&#60;/p&#62;
&#60;p&#62;The whole thing is wrapped in a the expression: ^(?:A&#124;B)&#60;/p&#62;
&#60;p&#62;where ^ asserts the beginning of a line, and (?: ) is a non-capture group - that is it treated as a group but not captured into \1 or \2 etc. - this outer non-capture group creates separation. Without it our expression would need to be: ^A&#124;^B&#60;/p&#62;
&#60;p&#62;Since the expression A contains no capture groups BUT the overall expression DOES contain capture 2 capture groups \1 and \2 will be empty when expression A matches. When B matches \1 is the text inside of the quotation marks, and \2 is a crlf (\r\n) pair.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>AutoIt3 - Updated au3.scheme file (2012, v3.3.8.0) (ascend4nt)</title>
			<link>http://pnotepad.org/forums/topic/7351#post-10483</link>
			<pubDate>Thu, 05 Jan 2012 07:41:02 +0000</pubDate>
			<dc:creator>ascend4nt</dc:creator>
			<guid isPermaLink="false">10483@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Since the au3.scheme file on the Add-Ons page is outdated, and I've been using Programmer's Notepad 2 to do some script editing, I decided to update the scheme so that syntax highlighting works as it does in SciTE.&#60;/p&#62;
&#60;p&#62;Here's a link to the updated au3.scheme file:&#60;br /&#62;
&#60;a href=&#34;https://sites.google.com/site/ascend4ntscode/autoit3-syntax-highlighters/au3.scheme?attredirects=0&#38;#038;d=1&#34; rel=&#34;nofollow&#34;&#62;https://sites.google.com/site/ascend4ntscode/autoit3-syntax-highlighters/au3.scheme?attredirects=0&#38;#038;d=1&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Just put that in the 'schemes' folder and restart the program.&#60;/p&#62;
&#60;p&#62;Thanks for this great program!&#60;br /&#62;
Ascend4nt
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Polish translation is ready (maroQ)</title>
			<link>http://pnotepad.org/forums/topic/7233#post-10348</link>
			<pubDate>Wed, 28 Dec 2011 20:12:22 +0000</pubDate>
			<dc:creator>maroQ</dc:creator>
			<guid isPermaLink="false">10348@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I have written translation to Polish language and I have add it in here: &#60;a href=&#34;https://code.google.com/p/pnotepad/issues/detail?id=1539&#38;#038;thanks=1539&#38;#038;ts=1325102927&#34; rel=&#34;nofollow&#34;&#62;https://code.google.com/p/pnotepad/issues/detail?id=1539&#38;#038;thanks=1539&#38;#038;ts=1325102927&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Plz let me know when you will add it to Programmers Notepad.&#60;/p&#62;
&#60;p&#62;I'm using Programmers Notepad right now so if there will be any translation problem I will try to solve it :D
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Scintilla document functions/methods not mapped in PyPN (Nux)</title>
			<link>http://pnotepad.org/forums/topic/5483#post-8400</link>
			<pubDate>Sat, 15 Oct 2011 20:07:59 +0000</pubDate>
			<dc:creator>Nux</dc:creator>
			<guid isPermaLink="false">8400@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Simon could you add some note on top of &#60;a href=&#34;http://pnotepad.org/docs/pypn_api_pages&#34;&#62;PyPN API Description&#60;/a&#62; that methods of scintilla module not mapped/implemented in PyPN can still be used with SendMessage function like this:&#60;br /&#62;
&#60;code&#62;pn.CurrentDoc().SendMessage(methodCode, firstArgument, secondArgument)&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;And that codes of methods can be found at:&#60;br /&#62;
&#60;a href=&#34;http://scintilla.hg.sourceforge.net/hgweb/scintilla/scintilla/file/tip/include/Scintilla.iface&#34; rel=&#34;nofollow&#34;&#62;http://scintilla.hg.sourceforge.net/hgweb/scintilla/scintilla/file/tip/include/Scintilla.iface&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I think it might save some time for others.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Vertical line indicator (paulbohmer)</title>
			<link>http://pnotepad.org/forums/topic/6545#post-9574</link>
			<pubDate>Tue, 06 Dec 2011 09:41:27 +0000</pubDate>
			<dc:creator>paulbohmer</dc:creator>
			<guid isPermaLink="false">9574@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi all&#60;br /&#62;
Is there a way to display a column no or vertical line indicator as a toolbar ?&#60;br /&#62;
Thanx great tool
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>auto-close tags (metaphor)</title>
			<link>http://pnotepad.org/forums/topic/6972#post-10020</link>
			<pubDate>Sun, 18 Dec 2011 19:40:14 +0000</pubDate>
			<dc:creator>metaphor</dc:creator>
			<guid isPermaLink="false">10020@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi there, thanks for the program first of all.&#60;/p&#62;
&#60;p&#62;I just installed it and find a feature that auto-closes tags, like for instance typing a &#38;lt; and instantly getting a &#38;gt;. It is very useful&#60;/p&#62;
&#60;p&#62;Sorry if this has been brought up before but couldn't find it.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Build PN2.3 with Visual Studio 2010 Express (NickDMax)</title>
			<link>http://pnotepad.org/forums/topic/6964#post-10011</link>
			<pubDate>Sun, 18 Dec 2011 15:25:04 +0000</pubDate>
			<dc:creator>NickDMax</dc:creator>
			<guid isPermaLink="false">10011@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;So I finally managed to compile PN (2.3) using VS Express. So I thought I would write up my experience to help others out. Sorry I don't have a nice step-by-step guide but I was not keeping careful notes and don't have time to work though it carefully. &#60;/p&#62;
&#60;p&#62;Now the big challenge here is that PN uses the Windows Template Library (WTL) which is an open source project based upon the Microsoft proprietary Active Template Library (ATL). If you have the professional version of Visual Studio (C++) then everything is sunshine and rainbows because VS comes with ATL.&#60;/p&#62;
&#60;p&#62;However, if you only have the express version that things are more complicated because it does not ship with ATL. The good news is that Microsoft makes ATL 7.1 available via the &#60;a href=&#34;http://www.microsoft.com/download/en/details.aspx?id=11800&#34;&#62;Windows Driver Kit&#60;/a&#62;. This version requires a couple of tweaks to work but luckily others have been working though using WDK ATL -- I used &#60;a&#62;this blog post&#60;/a&#62; on building Google Chrome with VS2008Express to get started.&#60;/p&#62;
&#60;p&#62;I downloaded and installed and registered the Windows platform SDK&#60;br /&#62;
I downloaded and installed WDK 7.1 (also contains ATL 7.1)&#60;br /&#62;
I applied a &#60;a href=&#34;https://gist.github.com/227555&#34;&#62;patch to altstdthink.h&#60;/a&#62; (see item #7 in the blog)&#60;br /&#62;
I download and built Boost 1.48.&#60;/p&#62;
&#60;p&#62;Updated the paths in the pn project and built it.&#60;/p&#62;
&#60;p&#62;At this point when I built PN I had a lot of warnings for the form:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;warning LNK4254: section &#38;#039;ATLP&#38;#039; (50000040) merged into &#38;#039;.rdata&#38;#039; (40000040) with different attributes&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and used &#60;a href=&#34;http://atlserver.codeplex.com/workitem/12158&#34;&#62;this link&#60;/a&#62; for a little modification to atlisapi.h which seems to have fixed the issue.&#60;/p&#62;
&#60;p&#62;So after that I compiled pn.exe and had some issues running it but once I compiled the projects pn + the scintilla the program ran beautifully :)&#60;/p&#62;
&#60;p&#62;So if you are using VS2010 Express you can build PN! Might have some issues but you can work though them.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>how can i compare two documents (dejagames)</title>
			<link>http://pnotepad.org/forums/topic/6564#post-9595</link>
			<pubDate>Tue, 06 Dec 2011 19:34:06 +0000</pubDate>
			<dc:creator>dejagames</dc:creator>
			<guid isPermaLink="false">9595@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I have 2 text files and need the manner of find the differences between them. Thanks
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>API Creation (NickDMax)</title>
			<link>http://pnotepad.org/forums/topic/6855#post-9888</link>
			<pubDate>Wed, 14 Dec 2011 21:29:13 +0000</pubDate>
			<dc:creator>NickDMax</dc:creator>
			<guid isPermaLink="false">9888@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I have been slowly updating a PN2 API file and at some point PN2 seems to have cached the file and does not recognize any of the updates I have painstakingly added. So the file in &#60;/p&#62;
&#60;p&#62;&#60;code&#62;C:\Program Files (x86)\Programmer&#38;#039;s Notepad\schemes&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;is complete. But changes to these file are no longer reflected within PN. Could this be Windows 7 Trickery? My next step I suppose is to try the file on another computer but I am really confused on why: #1 This file is not being picked up. #2 Where the older version of the file is coming from.&#60;/p&#62;
&#60;p&#62;Note that I have verified that there are no XML errors in the file. I have also checked the %AppData%\Echo Software\PN2 directory and there does not seem to be anything related in that directory.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>How can i print with the &#34;Show Indentation Guids&#34; line (BlaxA)</title>
			<link>http://pnotepad.org/forums/topic/6716#post-9747</link>
			<pubDate>Sat, 10 Dec 2011 10:33:55 +0000</pubDate>
			<dc:creator>BlaxA</dc:creator>
			<guid isPermaLink="false">9747@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hi&#60;/p&#62;
&#60;p&#62;This is a great editor, i love to work with it.&#60;/p&#62;
&#60;p&#62;The thing is, when im working with the editor, i find the &#34;Show Indentation Guids&#34; line very helpful.&#60;br /&#62;
If you print now the docunment the &#34;Show Indentation Guids&#34; lines are gone on the paper.&#60;br /&#62;
Is there a way to print them?&#60;/p&#62;
&#60;p&#62;Alex
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>IRIS mote programming issue (RudraP)</title>
			<link>http://pnotepad.org/forums/topic/6401#post-9402</link>
			<pubDate>Fri, 02 Dec 2011 14:19:23 +0000</pubDate>
			<dc:creator>RudraP</dc:creator>
			<guid isPermaLink="false">9402@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I'm trying to install the basic Blink app on the Memsic's IRIS mote using MIB520 programmer board. Following is the result that I get in Cygwin:&#60;/p&#62;
&#60;p&#62;mib510 COM3 iris.srec&#60;br /&#62;
COM3&#60;br /&#62;
&#38;lt;Date and Parameters here&#38;gt;&#60;br /&#62;
Reading EEPROM...&#60;br /&#62;
Avrdude for port 'COM3' failed:1&#60;/p&#62;
&#60;p&#62;Even if I try the Programmer's Notepad to do the same I get the error:&#60;br /&#62;
Command:   make iris reinstall mib510 COM3&#60;br /&#62;
Cygwin:    C:\Crossbow\cygwin\bin&#60;br /&#62;
Directory: C:\Crossbow\cygwin\opt\MoteWorks\apps\tutorials\lesson_1\&#60;br /&#62;
&#34;/opt/MoteWorks/tools/bin/ide.pl 'make iris reinstall mib510 COM3' 'C:\Crossbow\cygwin\opt\MoteWorks\apps\tutorials\lesson_1\'&#34;&#60;br /&#62;
#############################&#60;br /&#62;
ide.pl Ver:$Id: ide.pl,v 1.1.2.1 2006/05/29 07:22:52 lwei Exp $&#60;br /&#62;
Executing: /opt/MoteWorks/apps/tutorials/lesson_1/ bash -c &#34;make iris reinstall mib510 COM3&#34;&#60;br /&#62;
/opt/MoteWorks/make/avr/mib510.extra:5: *** MIB510 must be defined, try &#34;make iris help&#34;.  Stop.&#60;/p&#62;
&#60;p&#62;What seems to be the problem here.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Search function problem (dab4ma)</title>
			<link>http://pnotepad.org/forums/topic/5573#post-8531</link>
			<pubDate>Fri, 28 Oct 2011 07:13:04 +0000</pubDate>
			<dc:creator>dab4ma</dc:creator>
			<guid isPermaLink="false">8531@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I've problem with Search-in-files function. It don't work. Only work simple search function in current document.&#60;br /&#62;
Maybe it's a problem with open/stopped services of the OS (MS Vista 32)? Which services must work to allow realise the search-in-files function?&#60;/p&#62;
&#60;p&#62;After upgrade of PN it still don't work.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Is there a way to have print dialog without going through Preferences? (zeynel)</title>
			<link>http://pnotepad.org/forums/topic/5974#post-8965</link>
			<pubDate>Sat, 12 Nov 2011 22:52:33 +0000</pubDate>
			<dc:creator>zeynel</dc:creator>
			<guid isPermaLink="false">8965@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I tend to print mostly in landscape (but not always) it would be nice if print dialogue had the option of &#34;landscape&#34; without going through &#34;Preferences&#34;. Is this possible?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>New style preset and text clips. (someguy_oninternet)</title>
			<link>http://pnotepad.org/forums/topic/5971#post-8962</link>
			<pubDate>Sat, 12 Nov 2011 21:23:23 +0000</pubDate>
			<dc:creator>someguy_oninternet</dc:creator>
			<guid isPermaLink="false">8962@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Hello.  I would like to donate a new style preset and some text clips. You can download them (pn_styles_and_clips.zip) from &#60;a href=&#34;http://wfurl.com/16ca6f9&#34; rel=&#34;nofollow&#34;&#62;http://wfurl.com/16ca6f9&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Simply unzip it in the pnotepad folder, preserving folders.  The clips will be placed in the folders used by the portable install of pn.  You may need to move them if using the standard install.&#60;/p&#62;
&#60;p&#62;The style preset uses the Solarized palette created by Ethan Schoonover (more info at ethanschoonover.com/solarized) It is called CalmSea and is aimed at C/C++ programmers. I have also included a correct version of the &#34;Solarized (Light).xml&#34; as the one packaged with pn is wrong.&#60;/p&#62;
&#60;p&#62;I highly recommend using the superb monospace font &#34;Anonymous Pro&#34; with CalmSea.  It is free and can be found at &#60;a href=&#34;http://www.ms-studio.com/FontSales/anonymouspro.html&#34; rel=&#34;nofollow&#34;&#62;http://www.ms-studio.com/FontSales/anonymouspro.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There are two text clips files.  The first is a beautified and updated version of cstandard.clips that fixes 4 clips:&#60;/p&#62;
&#60;p&#62;The for clip now sets the start and end conditions separately.&#60;/p&#62;
&#60;p&#62;The if clip now positions the caret in the body after setting the condition.&#60;/p&#62;
&#60;p&#62;The switch clip now provides a &#34;default:&#34; block.&#60;/p&#62;
&#60;p&#62;The case clip no longer indents an extra tab.&#60;/p&#62;
&#60;p&#62;In addition to those fixes, the new cstandard.clips standardizes where the caret is placed after clip insertion. (It also changes the brace style, but that can be easily changed back if you'd prefer.)&#60;/p&#62;
&#60;p&#62;The second clips file (documented.clips) contains several (~30) documentation clips.  Most are Doxygen-style, but a few are generic code sectioning lines. There are (generally) two versions of each of the clips: block comment (/** */) and single-line (///).  All documentation commands used are accepted by Doxygen 1.7.5.1.&#60;/p&#62;
&#60;p&#62;Lastly, there is a file (doctest.h) that includes examples of many of the documentation clips.  It may be run through Doxygen as-is.&#60;/p&#62;
&#60;p&#62;I spent a couple days fine-tuning the style preset and all the clips, so there should be no surprises.  I hope everyone enjoys these and I look forward to the next release of pn. ^_^b
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>What is the maximum file size PN can handle? (Lucyfr)</title>
			<link>http://pnotepad.org/forums/topic/5703#post-8671</link>
			<pubDate>Tue, 01 Nov 2011 10:07:05 +0000</pubDate>
			<dc:creator>Lucyfr</dc:creator>
			<guid isPermaLink="false">8671@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I can't find the answer anywhere! Thanks :)
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>WM_QUERYENDSESSION handling can lead to loose unsaved data? (sevec)</title>
			<link>http://pnotepad.org/forums/topic/5493#post-8430</link>
			<pubDate>Mon, 24 Oct 2011 12:45:38 +0000</pubDate>
			<dc:creator>sevec</dc:creator>
			<guid isPermaLink="false">8430@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I edited the file in pnotepad and by accident pressed switch-off button. However, although the file was not saved, pnotepad didn't decline and quit and windows then shutdown normally. Autosave is still not available in pnotepad so I've lost several hours of work. Is it common?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>new HTML page (CNT)</title>
			<link>http://pnotepad.org/forums/topic/5423#post-8254</link>
			<pubDate>Sat, 27 Aug 2011 15:38:07 +0000</pubDate>
			<dc:creator>CNT</dc:creator>
			<guid isPermaLink="false">8254@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;&#38;lt;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#38;gt;&#60;br /&#62;
&#38;lt;head&#38;gt;&#60;br /&#62;
    &#38;lt;title&#38;gt;Untitled Page&#38;lt;/title&#38;gt;&#60;br /&#62;
&#38;lt;/head&#38;gt;&#60;br /&#62;
&#38;lt;body&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/body&#38;gt;&#60;br /&#62;
&#38;lt;/html&#38;gt;&#60;/p&#62;
&#60;p&#62;The above is what editors start with NEW HTML page. Doesn't PN 2.2 have that feature? I am trying out PN... hoping there would be &#34;autocomplete&#34; (but not?).&#60;/p&#62;
&#60;p&#62;Chuck
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Record layout assist tool (muradkhan)</title>
			<link>http://pnotepad.org/forums/topic/5496#post-8446</link>
			<pubDate>Tue, 25 Oct 2011 16:59:32 +0000</pubDate>
			<dc:creator>muradkhan</dc:creator>
			<guid isPermaLink="false">8446@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Does anyone know if its possible to have notepad become aware of mouse position, do a lookup in a record layout file (or in memory) and highlight the bounding box of the field the mouse is positioned over?&#60;/p&#62;
&#60;p&#62;I'm working with a file of fixed length records, and trying to validate data location and content. It would be nice if I could open the data file in PN and as I move the mouse to different parts of a line, have the current field highlighted and a tooltip give me the name of the field and it's expected type (which would be declared in the associated record layout file)
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Autocomplete/tooltips of users functions (brzi)</title>
			<link>http://pnotepad.org/forums/topic/5489#post-8421</link>
			<pubDate>Sun, 23 Oct 2011 12:43:32 +0000</pubDate>
			<dc:creator>brzi</dc:creator>
			<guid isPermaLink="false">8421@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;Is there such an option?&#60;/p&#62;
&#60;p&#62;Example:&#60;/p&#62;
&#60;p&#62;function test ( $arg = 1 ) {&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;And then to have test appear in dropdown menu when starting to type its name, and to have a tooltip upon typing 'test(', just like it is for normal php functions?
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Another New User Questions (John Ev)</title>
			<link>http://pnotepad.org/forums/topic/5484#post-8402</link>
			<pubDate>Tue, 18 Oct 2011 14:03:48 +0000</pubDate>
			<dc:creator>John Ev</dc:creator>
			<guid isPermaLink="false">8402@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;First let me say that I have only recently switched to pnotepad (from Notepad++) and I am very impressed: both by pnotepad and the forums.&#60;br /&#62;
And I have searched the forum on my queries.&#60;br /&#62;
My queries are I hope simple ones and mainly due to me setting up pnotepad for all my existing programs.&#60;br /&#62;
I am on 2.3.4.&#60;br /&#62;
1. I have created a number of projects (individual programs) under a Project Group but whenever I open pnotepad all the projects are shown with with their files uncollapsed (if thats the word) e.g.&#60;br /&#62;
Project&#60;br /&#62;
  file 1&#60;br /&#62;
  file 2&#60;br /&#62;
  ...&#60;br /&#62;
  file n&#60;br /&#62;
This is after having collapsed them all before exiting.&#60;br /&#62;
As I have a lot of small projects (programs) I was hoping to include them in just a few project groups.&#60;br /&#62;
2. Is a similar query. Having selected all the files I want from a project I can open them all on a right click. I have set Use Maximised New Doument Windows and so I get tabs across the top. How do I close all the windows for the project in one go (a right click on a tab and Close All closes everything including all the projects and the project group).&#60;br /&#62;
Thats it.&#60;br /&#62;
I program in C using lcc as a compiler/linker driven now from pnotepad - if anyone wants help setting up such a system please ask.
&#60;/p&#62;</description>
		</item>
		<item>
                        <title>Why are syntax highligting (scheme) files copied for every user? (horus)</title>
			<link>http://pnotepad.org/forums/topic/5482#post-8399</link>
			<pubDate>Thu, 13 Oct 2011 12:29:51 +0000</pubDate>
			<dc:creator>horus</dc:creator>
			<guid isPermaLink="false">8399@http://pnotepad.org/forums/</guid>
			<description>&#60;p&#62;I've found that those syntax highlighting (scheme) files are copied in every user's local profile directory.&#60;/p&#62;
&#60;p&#62;Isn't it better that a user-specific scheme file is created *only* when he has made change to *one* scheme?  Moreover, it seems that scheme files in user's profile directory *hide out* newer scheme files in PN2' installation folder (am I correct?)&#60;/p&#62;
&#60;p&#62;I mean, I'm thinking like in object-oriented programming:&#60;br /&#62;
 You have a parent object (or class) in which there's a defined attribute.&#60;br /&#62;
 And then you have a child object.  If the child object doesn't redefined the attribute's value, the attribute takes the value defined by the parent object.&#60;/p&#62;
&#60;p&#62;Isn't this more logical?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

