<?xml version="1.0" encoding="utf-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>R-packages &#x2013; /branches/MacGUI-2-x/RDocumentWinCtrl.h</title><description>WebSVN RSS feed &#x2013; R-packages</description><lastBuildDate>Mon, 27 Jul 2026 11:10:50 +0000</lastBuildDate><generator>WebSVN 2.8.7</generator><language>en</language><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=log&amp;max=40&amp;</link><atom:link href="https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=rss" rel="self" type="application/rss+xml" />
<item><pubDate>Tue, 05 Mar 2013 09:58:42 +0000</pubDate><dc:creator>ripley</dc:creator><title>Rev 6453 – branch</title><description>&lt;div&gt;&lt;strong&gt;ripley – 1 file(s) modified&lt;/strong&gt;&lt;br/&gt;branch&lt;/div&gt;+ /branches/MacGUI-2-x &lt;i&gt;(copied from /trunk/Mac-GUI@6452)&lt;/i&gt;&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6453</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6453</guid></item>
<item><pubDate>Tue, 28 Aug 2012 09:02:49 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6245 – • Improved handling of larger documents • Fixed a crash ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 8 file(s) modified&lt;/strong&gt;&lt;br/&gt;• Improved handling of larger documents&lt;br /&gt;
• Fixed a crash if the R script editor has to handle _very_ long lines&lt;/div&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/NSTextView_RAdditions.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/RSymbolTokens.l&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6245</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6245</guid></item>
<item><pubDate>Thu, 02 Feb 2012 14:08:39 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6059 – • further improvements for Format R Code - keep users ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 7 file(s) modified&lt;/strong&gt;&lt;br/&gt;• further improvements for Format R Code&lt;br /&gt;
- keep users empty lines since (but clean them)&lt;br /&gt;
- sped it up a bit&lt;br /&gt;
- fixed mixing indentation of 4 and 2 spaces coming from deparse()&lt;br /&gt;
• avoid re-entering Rd tools or R code formatting methods&lt;br /&gt;
• made deparse&apos;s width.cutoff customizable via Pref key RScriptEditorFormatWidthCutoff; if set to 0 the window&apos;s width will be taken otherwise the user&apos;s setting&lt;/div&gt;~ /trunk/Mac-GUI/NSString_RAdditions.m&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6059</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6059</guid></item>
<item><pubDate>Mon, 30 Jan 2012 14:59:07 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6051 – • In R Script editor pressing ENTER after a simple ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 4 file(s) modified&lt;/strong&gt;&lt;br/&gt;• In R Script editor pressing ENTER after a simple if(), for(), while(), or function() clause or if current line has more opened parenthesis than closed will only indent the next line. This behavior is active for preference setting &quot;Indent new lines&quot;. In addition it can be explicitly disabled if you execute the following command in the Terminal:&lt;br /&gt;
&lt;br /&gt;
defaults write org.R-project.R RScriptEditorIndentNewLineAfterSimpleClause -string NO&lt;br /&gt;
&lt;br /&gt;
• started to implement a &quot;Tidy R Code&quot; function to tidy up and format selected R code or the entire document. The idea is to wrap the selected R code by &quot;dummy&amp;lt;-function(){&quot; and &quot;}&quot; which will be sourced and dumped by a separate R session. Instances of &quot;}\nelse&quot; will be replaced by &quot;} else&quot; to be able to source the tidied R code. The main problem by using the R function &quot;dump()&quot; with &quot;options(keep.source = FALSE)&quot; is that any comments will be removed. To avoid this each comment will be replaced by &quot;if(@_@_@_@the_comment){}&quot; before the code will be sourced. This allows us to keep and indent comments even for simple if() clauses to come e.g. with&lt;br /&gt;
if(a==2)&lt;br /&gt;
	#comment&lt;br /&gt;
	print(a)&lt;br /&gt;
foo(..)&lt;br /&gt;
The only remained problem which has to be solved is the comment after a R expression like:&lt;br /&gt;
print(2)  # print two&lt;br /&gt;
which will be fixed soon.&lt;/div&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6051</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6051</guid></item>
<item><pubDate>Fri, 20 Jan 2012 12:00:07 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6026 – • further work on Rd support: - added to main ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 19 file(s) modified&lt;/strong&gt;&lt;br/&gt;• further work on Rd support:&lt;br /&gt;
- added to main menu: New Rd Document ⌥⌘N&lt;br /&gt;
- added to Rd toolbox:&lt;br /&gt;
-- Insert Function Rd Template ^⌥⌘F (done via prompt())&lt;br /&gt;
-- Insert Data Rd Template ^⌥⌘D (done via prompt())&lt;br /&gt;
-- Check Rd Document ^⌥⌘C&lt;br /&gt;
-- assigned key equivalents to PDF/HTML Preview ^⌥⌘P/^⌥⌘H&lt;br /&gt;
- improved output of possible warnings or errors while Rd check&lt;br /&gt;
-- re-format output for better reading&lt;br /&gt;
-- tries to figure out where the first error/warning appears and jump to it after dismissing the alert&lt;br /&gt;
• minor code improvements and removing of forgotten debug outputs&lt;/div&gt;~ /trunk/Mac-GUI/de.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6026</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6026</guid></item>
<item><pubDate>Tue, 17 Jan 2012 17:50:01 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6010 – • Improved function name parsing for toolbar list: - 3 ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 6 file(s) modified&lt;/strong&gt;&lt;br/&gt;• Improved function name parsing for toolbar list:&lt;br /&gt;
- 3 times faster and much more flexible and precise&lt;br /&gt;
  by using a flex grammar&lt;br /&gt;
- invalid function names were displayed in red&lt;br /&gt;
- trial to avoid listing of function declarations&lt;br /&gt;
  inside argument lists&lt;br /&gt;
- hierarchic indentations for function declarations&lt;br /&gt;
  inside other functions&lt;br /&gt;
- added two pragma marker for structuring the &lt;br /&gt;
  function list (known from C and others):&lt;br /&gt;
  &quot;#pragma mark -&quot; will insert a separator line&lt;br /&gt;
  &quot;#pragma mark foo&quot; will insert &quot;foo&quot; in blue&lt;br /&gt;
  [note: both pragma marker have to be typed at&lt;br /&gt;
  the beginning of a line]&lt;/div&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;+ /trunk/Mac-GUI/RSymbolTokens.h&lt;br /&gt;+ /trunk/Mac-GUI/RSymbolTokens.l&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6010</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6010</guid></item>
<item><pubDate>Mon, 16 Jan 2012 16:14:15 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 6005 – • added &quot;Rd Toolbox&quot; pull down menu to Rd Toolbar</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 10 file(s) modified&lt;/strong&gt;&lt;br/&gt;• added &quot;Rd Toolbox&quot; pull down menu to Rd Toolbar&lt;/div&gt;~ /trunk/Mac-GUI/de.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/RdEditorToolbar.h&lt;br /&gt;~ /trunk/Mac-GUI/RdEditorToolbar.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6005</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=6005</guid></item>
<item><pubDate>Tue, 10 Jan 2012 22:40:50 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 5995 – • further work for Rd support - initial work on ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 9 file(s) modified&lt;/strong&gt;&lt;br/&gt;• further work for Rd support&lt;br /&gt;
- initial work on syntax highlighting&lt;br /&gt;
- applied (un)comment functionality&lt;br /&gt;
- implemented first stage of completion mode for \foo macros&lt;br /&gt;
- improved section parsing&lt;br /&gt;
- improved HTML preview&lt;br /&gt;
• fixed issue for R code completion if a &apos;\&apos; occurs i.e. it has to be escaped&lt;/div&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/RdScriptEditorTokens.h&lt;br /&gt;~ /trunk/Mac-GUI/RdScriptEditorTokens.l&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/CodeCompletion.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5995</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5995</guid></item>
<item><pubDate>Mon, 09 Jan 2012 17:29:12 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 5993 – • initial commit to support &quot;Rd Documention File&quot; editing; not ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 13 file(s) modified&lt;/strong&gt;&lt;br/&gt;• initial commit to support &quot;Rd Documention File&quot; editing; not yet fully implemented but workable&lt;br /&gt;
- Rd files are assigned to R.app&lt;br /&gt;
- Rd file editor has its own toolbar and added &quot;HTML Preview&quot;&lt;br /&gt;
- Rd file will be parsed to build section list for pop-menu in toolbar (same approach as for function list of R files)&lt;br /&gt;
&lt;br /&gt;
... work in progress&lt;/div&gt;~ /trunk/Mac-GUI/HelpManager.h&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.m&lt;br /&gt;~ /trunk/Mac-GUI/Info.plist&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;+ /trunk/Mac-GUI/RdEditorToolbar.h&lt;br /&gt;+ /trunk/Mac-GUI/RdEditorToolbar.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5993</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5993</guid></item>
<item><pubDate>Tue, 10 May 2011 09:06:07 +0000</pubDate><dc:creator>bibiko</dc:creator><title>Rev 5772 – • improved readability of the statusbars - if content won&apos;t ...</title><description>&lt;div&gt;&lt;strong&gt;bibiko – 3 file(s) modified&lt;/strong&gt;&lt;br/&gt;• improved readability of the statusbars&lt;br /&gt;
- if content won&apos;t be show in multiple lines it will be displayed centered otherwise display at least two lines&lt;br /&gt;
- added tooltip&lt;/div&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5772</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5772</guid></item>
<item><pubDate>Thu, 31 Mar 2011 19:50:41 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5732 – merge up to r147 including full l18n update</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 98 file(s) modified&lt;/strong&gt;&lt;br/&gt;merge up to r147 including full l18n update&lt;/div&gt;~ /trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/ColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/EditorPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/MiscPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/QuartzPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/RConsole.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/SyntaxColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/Vignettes.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/EditorPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MiscPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/QuartzPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/RConsole.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/SyntaxColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/Vignettes.xib&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.h&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.m&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/ColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/EditorPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MiscPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/QuartzPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/RConsole.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/SyntaxColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/Vignettes.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/ColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/EditorPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MiscPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/QuartzPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/RConsole.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/SyntaxColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/Vignettes.xib&lt;br /&gt;~ /trunk/Mac-GUI/nib2str&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/ColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/EditorPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/Localizable.strings&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MainMenu.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MiscPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/QuartzPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/RConsole.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/RDocument.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/SyntaxColorsPrefPane.xib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/Vignettes.xib&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/REngine/REngine.m&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/str2nib&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/ColorsPrefPane.de.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/EditorPrefPane.de.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/EditorPrefPane.fr.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/EditorPrefPane.it.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/EditorPrefPane.ja.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/EditorPrefPane.nl.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/MainMenu.de.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/MainMenu.fr.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/MainMenu.it.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/MainMenu.ja.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/MainMenu.nl.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/RDocument.it.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/RDocument.ja.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/RDocument.nl.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.de.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.fr.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.it.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.ja.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SelectEncodingsPanel.nl.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.de.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.fr.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.it.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.ja.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/SyntaxColorsPrefPane.nl.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/Vignettes.de.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/Vignettes.fr.strings&lt;br /&gt;+ /trunk/Mac-GUI/Translated.strings/Vignettes.it.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/Vignettes.ja.strings&lt;br /&gt;~ /trunk/Mac-GUI/Translated.strings/Vignettes.nl.strings&lt;br /&gt;~ /trunk/Mac-GUI/update.strings&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5732</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5732</guid></item>
<item><pubDate>Mon, 21 Mar 2011 15:28:40 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5719 – merge r109</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 31 file(s) modified&lt;/strong&gt;&lt;br/&gt;merge r109&lt;/div&gt;~ /trunk/Mac-GUI/de.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/de.lproj/SelectEncodingsPanel.xib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/EncodingPopupView.xib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/fr.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/it.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/ja.lproj/SelectEncodingsPanel.xib&lt;br /&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MainMenu.xib&lt;br /&gt;+ /trunk/Mac-GUI/nl.lproj/SelectEncodingsPanel.xib&lt;br /&gt;+ /trunk/Mac-GUI/NSTextView_RAdditions.h&lt;br /&gt;+ /trunk/Mac-GUI/NSTextView_RAdditions.m&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;+ /trunk/Mac-GUI/RChooseEncodingPopupAccessory.h&lt;br /&gt;+ /trunk/Mac-GUI/RChooseEncodingPopupAccessory.m&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5719</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5719</guid></item>
<item><pubDate>Tue, 15 Mar 2011 05:55:58 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5708 – fix 10.5 compatibility</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 27 file(s) modified&lt;/strong&gt;&lt;br/&gt;fix 10.5 compatibility&lt;/div&gt;+ /trunk/Mac-GUI/CCComp.h&lt;br /&gt;~ /trunk/Mac-GUI/DataManager.h&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.h&lt;br /&gt;~ /trunk/Mac-GUI/PackageInstaller.h&lt;br /&gt;~ /trunk/Mac-GUI/PackageInstaller.m&lt;br /&gt;~ /trunk/Mac-GUI/PackageManager.h&lt;br /&gt;~ /trunk/Mac-GUI/Preferences.h&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/REditor.h&lt;br /&gt;~ /trunk/Mac-GUI/REditor.m&lt;br /&gt;~ /trunk/Mac-GUI/REditorTextStorage.h&lt;br /&gt;~ /trunk/Mac-GUI/REditorToolbar.h&lt;br /&gt;~ /trunk/Mac-GUI/RRulerView.h&lt;br /&gt;~ /trunk/Mac-GUI/RScriptEditorTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/SearchTable.h&lt;br /&gt;~ /trunk/Mac-GUI/SelectList.h&lt;br /&gt;~ /trunk/Mac-GUI/SelectList.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/SortableDataSource.h&lt;br /&gt;~ /trunk/Mac-GUI/VignettesController.h&lt;br /&gt;~ /trunk/Mac-GUI/VignettesController.m&lt;br /&gt;~ /trunk/Mac-GUI/WSBrowser.h&lt;br /&gt;~ /trunk/Mac-GUI/WSBrowser.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5708</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5708</guid></item>
<item><pubDate>Mon, 14 Mar 2011 16:16:56 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5705 – merge r79 from the new GUI plus bugfixes</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 50 file(s) modified&lt;/strong&gt;&lt;br/&gt;merge r79 from the new GUI plus bugfixes&lt;/div&gt;~ /trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m&lt;br /&gt;~ /trunk/Mac-GUI/DataManager.h&lt;br /&gt;~ /trunk/Mac-GUI/DataManager.m&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/MainMenu.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/de.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;x /trunk/Mac-GUI/English.lproj/MainMenu.nib/classes.nib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/MainMenu.nib/designable.nib&lt;br /&gt;x /trunk/Mac-GUI/English.lproj/MainMenu.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MainMenu.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/fr.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/GUI-tools.R&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.h&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.m&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MainMenu.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/it.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MainMenu.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/ja.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MainMenu.nib/designable.nib&lt;br /&gt;~ /trunk/Mac-GUI/nl.lproj/MainMenu.nib/keyedobjects.nib&lt;br /&gt;+ /trunk/Mac-GUI/NoodleLineNumberView.h&lt;br /&gt;+ /trunk/Mac-GUI/NoodleLineNumberView.m&lt;br /&gt;~ /trunk/Mac-GUI/PackageInstaller.m&lt;br /&gt;~ /trunk/Mac-GUI/PackageManager.h&lt;br /&gt;~ /trunk/Mac-GUI/PackageManager.m&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RConsoleController.m&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/REditorToolbar.m&lt;br /&gt;+ /trunk/Mac-GUI/RegexKitLite.h&lt;br /&gt;+ /trunk/Mac-GUI/RegexKitLite.m&lt;br /&gt;+ /trunk/Mac-GUI/RScriptEditorTextView.h&lt;br /&gt;+ /trunk/Mac-GUI/RScriptEditorTextView.m&lt;br /&gt;+ /trunk/Mac-GUI/RScriptEditorTokens.h&lt;br /&gt;+ /trunk/Mac-GUI/RScriptEditorTokens.l&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.h&lt;br /&gt;~ /trunk/Mac-GUI/RTextView.m&lt;br /&gt;~ /trunk/Mac-GUI/SearchTable.h&lt;br /&gt;~ /trunk/Mac-GUI/SearchTable.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/CodeCompletion.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/CodeCompletion.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5705</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5705</guid></item>
<item><pubDate>Sun, 23 Jan 2011 17:17:16 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5676 – add encoding support</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 11 file(s) modified&lt;/strong&gt;&lt;br/&gt;add encoding support&lt;/div&gt;x /trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib&lt;br /&gt;x /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/R.xcodeproj/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5676</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5676</guid></item>
<item><pubDate>Tue, 22 Apr 2008 22:33:20 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 5089 – register R&apos;s internal Quartz windows correctly</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 5 file(s) modified&lt;/strong&gt;&lt;br/&gt;register R&apos;s internal Quartz windows correctly&lt;/div&gt;+ /trunk/Mac-GUI/QuartzCocoaDocument.h&lt;br /&gt;+ /trunk/Mac-GUI/QuartzCocoaDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5089</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=5089</guid></item>
<item><pubDate>Mon, 20 Jun 2005 16:50:33 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1603 – Added preference for disabling function arguments lookup</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 8 file(s) modified&lt;/strong&gt;&lt;br/&gt;Added preference for disabling function arguments lookup&lt;/div&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/EditorPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/EditorPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1603</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1603</guid></item>
<item><pubDate>Wed, 11 May 2005 22:29:43 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1497 – Added arguments lookup to the editor</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 5 file(s) modified&lt;/strong&gt;&lt;br/&gt;Added arguments lookup to the editor&lt;/div&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1497</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1497</guid></item>
<item><pubDate>Mon, 25 Apr 2005 23:59:08 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1431 – Add support for &apos;plain&apos; mode which overrides preferences. Added proper ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;Add support for &apos;plain&apos; mode which overrides preferences. Added proper init method.&lt;/div&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1431</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1431</guid></item>
<item><pubDate>Mon, 25 Apr 2005 20:44:34 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1426 – Remove redundant local &apos;document&apos; variable; be more verbose; sent explicit ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;Remove redundant local &apos;document&apos; variable; be more verbose; sent explicit close to the document on window close&lt;/div&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1426</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1426</guid></item>
<item><pubDate>Thu, 21 Apr 2005 05:43:12 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1397 – Fixed bugs in editor concerning brace highlighting; switched to NSTextStorage ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 5 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fixed bugs in editor concerning brace highlighting; switched to NSTextStorage backed instead of attrib strings  for performance reasons&lt;/div&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/REditorTextStorage.h&lt;br /&gt;~ /trunk/Mac-GUI/REditorTextStorage.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1397</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1397</guid></item>
<item><pubDate>Tue, 05 Apr 2005 13:09:03 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1343 – fixed: go to function moved the cursor, but didn&apos;t scroll ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;fixed: go to function moved the cursor, but didn&apos;t scroll to that position&lt;/div&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1343</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1343</guid></item>
<item><pubDate>Mon, 04 Apr 2005 19:42:31 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1340 – Added Go To Line capability</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 2 file(s) modified&lt;/strong&gt;&lt;br/&gt;Added Go To Line capability&lt;/div&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1340</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1340</guid></item>
<item><pubDate>Sat, 02 Apr 2005 20:32:26 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1334 – Add toolbar, help search and functions popup to the editor</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 9 file(s) modified&lt;/strong&gt;&lt;br/&gt;Add toolbar, help search and functions popup to the editor&lt;/div&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/R.xcode/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;+ /trunk/Mac-GUI/REditorToolbar.h&lt;br /&gt;+ /trunk/Mac-GUI/REditorToolbar.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1334</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1334</guid></item>
<item><pubDate>Mon, 07 Mar 2005 21:00:59 +0000</pubDate><dc:creator>iacus</dc:creator><title>Rev 1254 – updated copyright info</title><description>&lt;div&gt;&lt;strong&gt;iacus – 72 file(s) modified&lt;/strong&gt;&lt;br/&gt;updated copyright info&lt;/div&gt;~ /trunk/Mac-GUI/COPYRIGHTS&lt;br /&gt;~ /trunk/Mac-GUI/DataManager.h&lt;br /&gt;~ /trunk/Mac-GUI/DataManager.m&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.h&lt;br /&gt;~ /trunk/Mac-GUI/HelpManager.m&lt;br /&gt;~ /trunk/Mac-GUI/PackageInstaller.h&lt;br /&gt;~ /trunk/Mac-GUI/PackageInstaller.m&lt;br /&gt;~ /trunk/Mac-GUI/PackageManager.h&lt;br /&gt;~ /trunk/Mac-GUI/PackageManager.m&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/Preferences.h&lt;br /&gt;~ /trunk/Mac-GUI/Preferences.m&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/ColorsPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/ColorsPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/EditorPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/EditorPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/MiscPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/MiscPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/QuartzPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/QuartzPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/SyntaxColorsPrefPane.h&lt;br /&gt;~ /trunk/Mac-GUI/PrefPanes/SyntaxColorsPrefPane.m&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/QuartzDevice.h&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/QuartzDevice.m&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RDeviceView.h&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RDeviceView.m&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RQuartz.h&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RQuartz.m&lt;br /&gt;~ /trunk/Mac-GUI/RConsole.h&lt;br /&gt;~ /trunk/Mac-GUI/RConsole.m&lt;br /&gt;~ /trunk/Mac-GUI/RConsoleController.h&lt;br /&gt;~ /trunk/Mac-GUI/RConsoleController.m&lt;br /&gt;~ /trunk/Mac-GUI/RConsoleTextStorage.h&lt;br /&gt;~ /trunk/Mac-GUI/RConsoleTextStorage.m&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;~ /trunk/Mac-GUI/REditor.h&lt;br /&gt;~ /trunk/Mac-GUI/REditor.m&lt;br /&gt;~ /trunk/Mac-GUI/REditorTextStorage.h&lt;br /&gt;~ /trunk/Mac-GUI/REditorTextStorage.m&lt;br /&gt;~ /trunk/Mac-GUI/REngine/Rcallbacks.h&lt;br /&gt;~ /trunk/Mac-GUI/REngine/REngine.h&lt;br /&gt;~ /trunk/Mac-GUI/REngine/REngine.m&lt;br /&gt;~ /trunk/Mac-GUI/REngine/Rinit.c&lt;br /&gt;~ /trunk/Mac-GUI/REngine/Rinit.h&lt;br /&gt;~ /trunk/Mac-GUI/REngine/RSEXP.h&lt;br /&gt;~ /trunk/Mac-GUI/REngine/RSEXP.m&lt;br /&gt;~ /trunk/Mac-GUI/RGUI.h&lt;br /&gt;~ /trunk/Mac-GUI/RRulerView.h&lt;br /&gt;~ /trunk/Mac-GUI/RRulerView.m&lt;br /&gt;~ /trunk/Mac-GUI/SearchTable.h&lt;br /&gt;~ /trunk/Mac-GUI/SearchTable.m&lt;br /&gt;~ /trunk/Mac-GUI/SelectList.h&lt;br /&gt;~ /trunk/Mac-GUI/SelectList.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/Authorization.c&lt;br /&gt;~ /trunk/Mac-GUI/Tools/Authorization.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/CodeCompletion.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/CodeCompletion.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/FileCompletion.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/FileCompletion.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/History.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/History.m&lt;br /&gt;~ /trunk/Mac-GUI/Tools/SortableDataSource.h&lt;br /&gt;~ /trunk/Mac-GUI/Tools/SortableDataSource.m&lt;br /&gt;~ /trunk/Mac-GUI/WSBrowser.h&lt;br /&gt;~ /trunk/Mac-GUI/WSBrowser.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1254</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1254</guid></item>
<item><pubDate>Mon, 07 Feb 2005 20:24:04 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1038 – Cleanups; fix bug in saving docs on close [RG]</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 4 file(s) modified&lt;/strong&gt;&lt;br/&gt;Cleanups; fix bug in saving docs on close [RG]&lt;/div&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1038</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1038</guid></item>
<item><pubDate>Sun, 06 Feb 2005 21:15:36 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 1021 – *Added simple line number support in source editor. *Fixed some ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 20 file(s) modified&lt;/strong&gt;&lt;br/&gt;*Added simple line number support in source editor.&lt;br /&gt;
*Fixed some issues around deleteBackward in editor&lt;br /&gt;
*Brace highlighting in editor re-enabled&lt;br /&gt;
*Fixed some minor issues on repositioning and resizing of Quartz&lt;br /&gt;
    windows.&lt;/div&gt;~ /trunk/Mac-GUI/English.lproj/EditorPrefPane.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/QuartzPrefPane.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/QuartzPrefPane.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RQuartz.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RQuartz.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/QuartzDevice.m&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RDeviceView.m&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RQuartz.h&lt;br /&gt;~ /trunk/Mac-GUI/Quartz/RQuartz.m&lt;br /&gt;~ /trunk/Mac-GUI/R.xcode/project.pbxproj&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;+ /trunk/Mac-GUI/RRulerView.h&lt;br /&gt;+ /trunk/Mac-GUI/RRulerView.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1021</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=1021</guid></item>
<item><pubDate>Wed, 12 Jan 2005 14:09:56 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 903 – Fixed doc saving</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 6 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fixed doc saving&lt;/div&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=903</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=903</guid></item>
<item><pubDate>Tue, 11 Jan 2005 20:48:20 +0000</pubDate><dc:creator>urbaneks</dc:creator><title>Rev 898 – Fixed undo issues and NSRunStorage exceptions; Added Rcommand doc type, ...</title><description>&lt;div&gt;&lt;strong&gt;urbaneks – 25 file(s) modified&lt;/strong&gt;&lt;br/&gt;Fixed undo issues and NSRunStorage exceptions; Added Rcommand doc type, corresponding RConsole classes and NIB; Use own text storage components for the documents and console&lt;/div&gt;+ /trunk/Mac-GUI/English.lproj/RConsole.nib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/RConsole.nib/classes.nib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/RConsole.nib/info.nib&lt;br /&gt;+ /trunk/Mac-GUI/English.lproj/RConsole.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib&lt;br /&gt;~ /trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib&lt;br /&gt;~ /trunk/Mac-GUI/Info.plist&lt;br /&gt;~ /trunk/Mac-GUI/NEWS&lt;br /&gt;~ /trunk/Mac-GUI/PreferenceKeys.h&lt;br /&gt;~ /trunk/Mac-GUI/R.xcode/project.pbxproj&lt;br /&gt;+ /trunk/Mac-GUI/RConsole.h&lt;br /&gt;+ /trunk/Mac-GUI/RConsole.m&lt;br /&gt;+ /trunk/Mac-GUI/RConsoleController.h&lt;br /&gt;+ /trunk/Mac-GUI/RConsoleController.m&lt;br /&gt;+ /trunk/Mac-GUI/RConsoleTextStorage.h&lt;br /&gt;+ /trunk/Mac-GUI/RConsoleTextStorage.m&lt;br /&gt;~ /trunk/Mac-GUI/RController.h&lt;br /&gt;~ /trunk/Mac-GUI/RController.m&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.h&lt;br /&gt;~ /trunk/Mac-GUI/RDocument.m&lt;br /&gt;+ /trunk/Mac-GUI/RDocumentWinCtrl.h&lt;br /&gt;+ /trunk/Mac-GUI/RDocumentWinCtrl.m&lt;br /&gt;+ /trunk/Mac-GUI/REditorTextStorage.h&lt;br /&gt;+ /trunk/Mac-GUI/REditorTextStorage.m&lt;br /&gt;</description><link>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=898</link><guid>https://svn.r-project.org/browse/R-packages/branches/MacGUI-2-x/RDocumentWinCtrl.h?op=revision&amp;rev=898</guid></item>
</channel></rss>