The R Project SVN R-packages

Rev

Hide changed files | Details | Compare with Previous | Blame | RSS feed

Filtering Options

Rev Age Author Path Log message Diff Changes
6453 4892 d 3 h ripley /branches/MacGUI-2-x/ branch  
/branches/MacGUI-2-x
6089 5273 d 22 h urbaneks /trunk/Mac-GUI/ fix to build; enable only active arch in Debug  
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
6060 5288 d 21 h bibiko /trunk/Mac-GUI/ • renamed and added resp. NSString's methods from "runBashCommandWithEnvironment" to "evaluateAsBashCommandWithEnvironment" and "runAsBashCommandWithEnvironment" resp.
- runAs... will run it without returning stdout for speed
- evaluateAs... will run it and return stdout
- added further placeholder methods like runAsBashCommand or runAsBashCommandAndError: etc.
- if no NSError will be passed write stderr to /dev/null
 
/trunk/Mac-GUI/NSString_RAdditions.h
/trunk/Mac-GUI/NSString_RAdditions.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.m
6059 5288 d 23 h bibiko /trunk/Mac-GUI/ • further improvements for Format R Code
- keep users empty lines since (but clean them)
- sped it up a bit
- fixed mixing indentation of 4 and 2 spaces coming from deparse()
• avoid re-entering Rd tools or R code formatting methods
• made deparse's width.cutoff customizable via Pref key RScriptEditorFormatWidthCutoff; if set to 0 the window's width will be taken otherwise the user's setting
 
/trunk/Mac-GUI/NSString_RAdditions.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RTextView.m
6058 5289 d 18 h bibiko /trunk/Mac-GUI/ • added NSString method runBashCommandWithEnvironment:atCurrentDirectoryPath:error: to be able to run any bash command(s) including code of other scripting languages like Python, Perl, etc (by specifying the magic header #!...)
- example: NSString *d = [@"date" runBashCommandWithEnvironment:nil atCurrentDirectoryPath:nil error:nil];
will run the command 'date' in a separate bash shell and set d to the current date.
- any of these called bash commands can be cancelled by pressing ⌘+. (Apple standard)
• applied above mentioned method to decouple editing stuff from REngine for checking Rd docs, converting Rd doc into HTML/PDF, and formatting R code since it's not a good idea to disturb a running R command in the RConsole while editing a doc. Furthermore now if the checking of a Rd doc freezes the user can simply press ⌘+. to cancel that separate task
• improved Format R code
• fixed some minor stuff for deleting temporary files
 
/trunk/Mac-GUI/NSString_RAdditions.h
/trunk/Mac-GUI/NSString_RAdditions.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.m
6048 5293 d 18 h bibiko /trunk/Mac-GUI/ • improved \section and \subsection display in section list
- now the section list shows the (sub)section argument i.e. the section name
• fixed tiny issue to replace the temp file name in error messages while rd checking
 
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RdScriptEditorTokens.l
6034 5299 d 2 h bibiko /trunk/Mac-GUI/ • for Rd files do not show "Check successful" alert for Preview HTML/PDF  
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
6026 5302 d 1 h bibiko /trunk/Mac-GUI/ • further work on Rd support:
- added to main menu: New Rd Document ⌥⌘N
- added to Rd toolbox:
-- Insert Function Rd Template ^⌥⌘F (done via prompt())
-- Insert Data Rd Template ^⌥⌘D (done via prompt())
-- Check Rd Document ^⌥⌘C
-- assigned key equivalents to PDF/HTML Preview ^⌥⌘P/^⌥⌘H
- improved output of possible warnings or errors while Rd check
-- re-format output for better reading
-- tries to figure out where the first error/warning appears and jump to it after dismissing the alert
• minor code improvements and removing of forgotten debug outputs
 
/trunk/Mac-GUI/English.lproj/MainMenu.xib
/trunk/Mac-GUI/English.lproj/RDocument.xib
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/de.lproj/MainMenu.xib
/trunk/Mac-GUI/de.lproj/RDocument.xib
/trunk/Mac-GUI/fr.lproj/MainMenu.xib
/trunk/Mac-GUI/fr.lproj/RDocument.xib
/trunk/Mac-GUI/it.lproj/MainMenu.xib
/trunk/Mac-GUI/it.lproj/RDocument.xib
/trunk/Mac-GUI/ja.lproj/MainMenu.xib
/trunk/Mac-GUI/ja.lproj/RDocument.xib
/trunk/Mac-GUI/nl.lproj/MainMenu.xib
/trunk/Mac-GUI/nl.lproj/RDocument.xib
6006 5305 d 16 h bibiko /trunk/Mac-GUI/ • placed validateToolbarItem: to the item's target in order to be called  
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/REditorToolbar.h
/trunk/Mac-GUI/REditorToolbar.m
/trunk/Mac-GUI/RdEditorToolbar.h
/trunk/Mac-GUI/RdEditorToolbar.m
6004 5305 d 22 h bibiko /trunk/Mac-GUI/ • improved Rd syntax highlighting
• implemented PDF Preview of current Rd file
 
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RdScriptEditorTokens.l
5997 5311 d 0 h bibiko /trunk/Mac-GUI/ • further work on Rd file support
- some improvement for saving files, esp. for changing file types from R to Rd e.g.
• corrected misspelled 'Secction'
 
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RdEditorToolbar.m
5995 5311 d 14 h bibiko /trunk/Mac-GUI/ • further work for Rd support
- initial work on syntax highlighting
- applied (un)comment functionality
- implemented first stage of completion mode for \foo macros
- improved section parsing
- improved HTML preview
• fixed issue for R code completion if a '\' occurs i.e. it has to be escaped
 
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/RdScriptEditorTokens.h
/trunk/Mac-GUI/RdScriptEditorTokens.l
/trunk/Mac-GUI/Tools/CodeCompletion.m
5993 5312 d 19 h bibiko /trunk/Mac-GUI/ • initial commit to support "Rd Documention File" editing; not yet fully implemented but workable
- Rd files are assigned to R.app
- Rd file editor has its own toolbar and added "HTML Preview"
- Rd file will be parsed to build section list for pop-menu in toolbar (same approach as for function list of R files)

... work in progress
 
/trunk/Mac-GUI/RdEditorToolbar.h
/trunk/Mac-GUI/RdEditorToolbar.m
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/HelpManager.m
/trunk/Mac-GUI/Info.plist
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
5741 5589 d 21 h urbaneks /trunk/Mac-GUI/ merge up to r158  
/trunk/Mac-GUI/English.lproj/EditorPrefPane.xib
/trunk/Mac-GUI/PrefPanes/PrefWindowController.m
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RScriptEditorTokens.l
5719 5606 d 21 h urbaneks /trunk/Mac-GUI/ merge r109  
/trunk/Mac-GUI/English.lproj/EncodingPopupView.xib
/trunk/Mac-GUI/English.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/NSTextView_RAdditions.h
/trunk/Mac-GUI/NSTextView_RAdditions.m
/trunk/Mac-GUI/RChooseEncodingPopupAccessory.h
/trunk/Mac-GUI/RChooseEncodingPopupAccessory.m
/trunk/Mac-GUI/de.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/fr.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/it.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/ja.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/nl.lproj/SelectEncodingsPanel.xib
/trunk/Mac-GUI/English.lproj/MainMenu.xib
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/de.lproj/MainMenu.xib
/trunk/Mac-GUI/fr.lproj/MainMenu.xib
/trunk/Mac-GUI/it.lproj/MainMenu.xib
/trunk/Mac-GUI/ja.lproj/MainMenu.xib
/trunk/Mac-GUI/nl.lproj/MainMenu.xib
5707 5613 d 15 h urbaneks /trunk/Mac-GUI/ merge r82  
/trunk/Mac-GUI/AMPrefs/AMPrefPaneIconView.m
/trunk/Mac-GUI/AMPrefs/AMPreferencePane.m
/trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m
/trunk/Mac-GUI/PrefPanes/ColorsPrefPane.m
/trunk/Mac-GUI/PrefPanes/EditorPrefPane.m
/trunk/Mac-GUI/PrefPanes/MiscPrefPane.m
/trunk/Mac-GUI/PrefPanes/QuartzPrefPane.m
/trunk/Mac-GUI/PrefPanes/SyntaxColorsPrefPane.m
/trunk/Mac-GUI/Preferences.m
/trunk/Mac-GUI/Quartz/devQuartz.c
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RConsoleTextStorage.m
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/REditor.h
/trunk/Mac-GUI/REditorTextStorage.m
/trunk/Mac-GUI/REditorToolbar.h
/trunk/Mac-GUI/REngine/Rcallbacks.m
/trunk/Mac-GUI/RRulerView.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/Tools/CodeCompletion.m
/trunk/Mac-GUI/Tools/FileCompletion.m
/trunk/Mac-GUI/Tools/GlobalExHandler.m
/trunk/Mac-GUI/Tools/History.m
/trunk/Mac-GUI/Tools/PDFImageView.m
/trunk/Mac-GUI/Tools/SortableDataSource.h
/trunk/Mac-GUI/Tools/SortableDataSource.m
/trunk/Mac-GUI/WSBrowser.h
/trunk/Mac-GUI/WSBrowser.m
5705 5613 d 21 h urbaneks /trunk/Mac-GUI/ merge r79 from the new GUI plus bugfixes  
/trunk/Mac-GUI/English.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/NoodleLineNumberView.h
/trunk/Mac-GUI/NoodleLineNumberView.m
/trunk/Mac-GUI/RScriptEditorTextView.h
/trunk/Mac-GUI/RScriptEditorTextView.m
/trunk/Mac-GUI/RScriptEditorTokens.h
/trunk/Mac-GUI/RScriptEditorTokens.l
/trunk/Mac-GUI/RegexKitLite.h
/trunk/Mac-GUI/RegexKitLite.m
/trunk/Mac-GUI/English.lproj/MainMenu.nib/classes.nib
/trunk/Mac-GUI/English.lproj/MainMenu.nib/info.nib
/trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m
/trunk/Mac-GUI/DataManager.h
/trunk/Mac-GUI/DataManager.m
/trunk/Mac-GUI/English.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib
/trunk/Mac-GUI/GUI-tools.R
/trunk/Mac-GUI/HelpManager.h
/trunk/Mac-GUI/HelpManager.m
/trunk/Mac-GUI/PackageInstaller.m
/trunk/Mac-GUI/PackageManager.h
/trunk/Mac-GUI/PackageManager.m
/trunk/Mac-GUI/PreferenceKeys.h
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RConsoleController.m
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
/trunk/Mac-GUI/REditorToolbar.m
/trunk/Mac-GUI/RTextView.h
/trunk/Mac-GUI/RTextView.m
/trunk/Mac-GUI/SearchTable.h
/trunk/Mac-GUI/SearchTable.m
/trunk/Mac-GUI/Tools/CodeCompletion.h
/trunk/Mac-GUI/Tools/CodeCompletion.m
/trunk/Mac-GUI/de.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/de.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/fr.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/fr.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/it.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/it.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/ja.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/ja.lproj/MainMenu.nib/keyedobjects.nib
/trunk/Mac-GUI/nl.lproj/MainMenu.nib/designable.nib
/trunk/Mac-GUI/nl.lproj/MainMenu.nib/keyedobjects.nib
5676 5663 d 20 h urbaneks /trunk/Mac-GUI/ add encoding support  
/trunk/Mac-GUI/English.lproj/RDocument.nib/designable.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/classes.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/info.nib
/trunk/Mac-GUI/English.lproj/RDocument.nib/keyedobjects.nib
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/R.xcodeproj/project.pbxproj
/trunk/Mac-GUI/RDocument.h
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.h
/trunk/Mac-GUI/RDocumentWinCtrl.m
4330 7021 d 22 h goedman /trunk/Mac-GUI/ Moved winctr workaround into RDocumentController.windowWillClose  
/trunk/Mac-GUI/AMPrefs/AMPreferenceWindowController.m
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/Quartz/RQuartz.m
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.m
3159 7371 d 10 h urbaneks /trunk/Mac-GUI/ Clean up document handling; add hack for windows not closing properly; add window focus tracking in RDocumentController and use it to jump to windows by document type  
/trunk/Mac-GUI/Info.plist
/trunk/Mac-GUI/NEWS
/trunk/Mac-GUI/Quartz/RQuartz.h
/trunk/Mac-GUI/Quartz/RQuartz.m
/trunk/Mac-GUI/RController.h
/trunk/Mac-GUI/RController.m
/trunk/Mac-GUI/RDocument.m
/trunk/Mac-GUI/RDocumentController.h
/trunk/Mac-GUI/RDocumentController.m
/trunk/Mac-GUI/RDocumentWinCtrl.m

Show All