Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

Commit c3569df

Browse files
committed
initial commit
0 parents  commit c3569df

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+10982
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
build/**/*

English.lproj/InfoPlist.strings

92 Bytes
Binary file not shown.

English.lproj/LocationSheet.xib

Lines changed: 1092 additions & 0 deletions
Large diffs are not rendered by default.

English.lproj/MainMenu.xib

Lines changed: 1855 additions & 0 deletions
Large diffs are not rendered by default.

English.lproj/PasswordSheet.xib

Lines changed: 519 additions & 0 deletions
Large diffs are not rendered by default.

English.lproj/WelcomeView.xib

Lines changed: 402 additions & 0 deletions
Large diffs are not rendered by default.

Info.plist

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>English</string>
7+
<key>NSAppleScriptEnabled</key>
8+
<true/>
9+
<key>OSAScriptingDefinition</key>
10+
<string>OneWay.sdef</string>
11+
<key>CFBundleExecutable</key>
12+
<string>${EXECUTABLE_NAME}</string>
13+
<key>CFBundleIconFile</key>
14+
<string>OneWay.icns</string>
15+
<key>CFBundleIdentifier</key>
16+
<string>com.onewayapp.${PRODUCT_NAME:identifier}</string>
17+
<key>CFBundleInfoDictionaryVersion</key>
18+
<string>6.0</string>
19+
<key>CFBundleName</key>
20+
<string>${PRODUCT_NAME}</string>
21+
<key>CFBundlePackageType</key>
22+
<string>APPL</string>
23+
<key>CFBundleSignature</key>
24+
<string>????</string>
25+
<key>NSMainNibFile</key>
26+
<string>MainMenu</string>
27+
<key>NSPrincipalClass</key>
28+
<string>NSApplication</string>
29+
<key>SUFeedURL</key>
30+
<string>http://onewayapp.com/update</string>
31+
<key>SUEnableAutomaticChecks</key>
32+
<string>YES</string>
33+
<key>SUPublicDSAKeyFile</key>
34+
<string>dsa_public.pem</string>
35+
<key>CFBundleVersion</key>
36+
<string>0.0.1</string>
37+
<key>OWVersionRequiresFinderRestart</key>
38+
<string>YES</string>
39+
</dict>
40+
</plist>

OneWay.sdef

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE dictionary SYSTEM "file://localhost/System/Library/DTDs/sdef.dtd">
3+
<dictionary title="OneWay Dictionary">
4+
<suite name="Standard Suite" code="????" description="Common classes and commands for most applications.">
5+
<cocoa name="NSCoreSuite"/>
6+
<command name="count" code="corecnte" description="Return the number of elements of a particular class within an object.">
7+
<cocoa class="NSCountCommand"/>
8+
<direct-parameter description="the object whose elements are to be counted" type="specifier"/>
9+
<parameter name="each" code="kocl" description="The class of objects to be counted." type="type" optional="yes">
10+
<cocoa key="ObjectClass"/>
11+
</parameter>
12+
<result description="the number of elements" type="integer"/>
13+
</command>
14+
<command name="delete" code="coredelo" description="Delete an object.">
15+
<cocoa class="NSDeleteCommand"/>
16+
<direct-parameter description="the object to delete" type="specifier"/>
17+
</command>
18+
<command name="exists" code="coredoex" description="Verify if an object exists.">
19+
<cocoa class="NSExistsCommand"/>
20+
<direct-parameter description="the object in question" type="specifier"/>
21+
<result description="true if it exists, false if not" type="boolean"/>
22+
</command>
23+
<command name="make" code="corecrel" description="Make a new object.">
24+
<cocoa name="Create" class="NSCreateCommand"/>
25+
<parameter name="new" code="kocl" description="The class of the new object." type="type">
26+
<cocoa key="ObjectClass"/>
27+
</parameter>
28+
<parameter name="at" code="insh" description="The location at which to insert the object." type="location specifier" optional="yes">
29+
<cocoa key="Location"/>
30+
</parameter>
31+
<parameter name="with data" code="data" description="The initial data for the object." type="any" optional="yes">
32+
<cocoa key="ObjectData"/>
33+
</parameter>
34+
<parameter name="with properties" code="prdt" description="The initial values for properties of the object." type="record" optional="yes">
35+
<cocoa key="KeyDictionary"/>
36+
</parameter>
37+
<result description="to the new object" type="specifier"/>
38+
</command>
39+
</suite>
40+
<suite name="OneWay Suite" code="oWAS" description="The OneWay suite">
41+
<class name="application" code="capp" description="An application&apos;s top level scripting object.">
42+
<cocoa class="NSApplication"/>
43+
<element description="The saved FTP/SFTP locations" type="location">
44+
<cocoa key="savedLocations"/>
45+
</element>
46+
<property name="name" code="pnam" description="The name of the application." type="text" access="r"/>
47+
<property name="frontmost" code="pisf" description="Is this the frontmost (active) application?" type="boolean" access="r">
48+
<cocoa key="isActive"/>
49+
</property>
50+
<property name="version" code="vers" description="The version of the application." type="text" access="r"/>
51+
</class>
52+
<class name="location" code="oLOC" description="A saved FTP/SFTP location." plural="locations">
53+
<cocoa class="Location"/>
54+
<property name="name" code="pnam" description="The location name." type="text">
55+
<cocoa key="name"/>
56+
</property>
57+
<property name="hostname" code="pHST" description="The location hostname." type="text"/>
58+
<responds-to command="queue transfer">
59+
<cocoa method="queueTransfer:"/>
60+
</responds-to>
61+
</class>
62+
<command name="queue transfer" code="oWASTRNS" description="Start a file transfer.">
63+
<direct-parameter description="The saved FTP/SFTP location" type="location"/>
64+
<parameter name="with files" code="oFIL" description="A list of files to transfer">
65+
<cocoa key="theFiles"/>
66+
<type type="text" list="yes"/>
67+
</parameter>
68+
</command>
69+
<command name="queue new transfer" code="oWASNEWT" description="Start a file transfer to a new location.">
70+
<cocoa class="QueueNewScriptCommand"/>
71+
<direct-parameter description="A list of files to transfer.">
72+
<type type="text" list="yes"/>
73+
</direct-parameter>
74+
</command>
75+
</suite>
76+
</dictionary>

OneWay.xcodeproj/TemplateIcon.icns

51.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)