Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Mac /
PythonLauncher /
Delete
Unzip
Name
Size
Permission
Date
Action
English.lproj
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
FileSettings.h
1.85
KB
-rw-r--r--
2024-03-19 22:46
FileSettings.m
9.44
KB
-rw-r--r--
2024-03-19 22:46
Info.plist.in
2.06
KB
-rw-r--r--
2024-03-19 22:46
Makefile.in
2.85
KB
-rw-r--r--
2024-03-19 22:46
MyAppDelegate.h
290
B
-rw-r--r--
2024-03-19 22:46
MyAppDelegate.m
2.63
KB
-rw-r--r--
2024-03-19 22:46
MyDocument.h
958
B
-rw-r--r--
2024-03-19 22:46
MyDocument.m
4.54
KB
-rw-r--r--
2024-03-19 22:46
PreferencesWindowController.h
1.02
KB
-rw-r--r--
2024-03-19 22:46
PreferencesWindowController.m
2.93
KB
-rw-r--r--
2024-03-19 22:46
doscript.h
228
B
-rw-r--r--
2024-03-19 22:46
doscript.m
1.68
KB
-rw-r--r--
2024-03-19 22:46
factorySettings.plist
2.63
KB
-rw-r--r--
2024-03-19 22:46
main.m
340
B
-rw-r--r--
2024-03-19 22:46
Save
Rename
// // FileSettings.h // PythonLauncher // // Created by Jack Jansen on Sun Jul 21 2002. // Copyright (c) 2002 __MyCompanyName__. All rights reserved. // #import <Foundation/Foundation.h> @protocol FileSettingsSource - (NSString *) interpreter; - (BOOL) honourhashbang; - (BOOL) debug; - (BOOL) verbose; - (BOOL) inspect; - (BOOL) optimize; - (BOOL) nosite; - (BOOL) tabs; - (NSString *) others; - (BOOL) with_terminal; - (NSString *) scriptargs; @end @interface FileSettings : NSObject <FileSettingsSource> { NSString *interpreter; // The pathname of the interpreter to use NSArray *interpreters; // List of known interpreters BOOL honourhashbang; // #! line overrides interpreter BOOL debug; // -d option: debug parser BOOL verbose; // -v option: verbose import BOOL inspect; // -i option: interactive mode after script BOOL optimize; // -O option: optimize bytecode BOOL nosite; // -S option: don't import site.py BOOL tabs; // -t option: warn about inconsistent tabs NSString *others; // other options NSString *scriptargs; // script arguments (not for preferences) BOOL with_terminal; // Run in terminal window FileSettings *origsource; NSString *prefskey; } + (id)getDefaultsForFileType: (NSString *)filetype; + (id)getFactorySettingsForFileType: (NSString *)filetype; + (id)newSettingsForFileType: (NSString *)filetype; - (id)initForFileType: (NSString *)filetype; - (id)initForFSDefaultFileType: (NSString *)filetype; - (id)initForDefaultFileType: (NSString *)filetype; - (void)updateFromSource: (id <FileSettingsSource>)source; - (NSString *)commandLineForScript: (NSString *)script; - (void)applyValuesFromDict: (NSDictionary *)dict; - (void)reset; - (NSArray *) interpreters; @end