Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC-iOS
Commits
3d9c4731
Commit
3d9c4731
authored
Oct 22, 2013
by
Felix Paul Kühne
Browse files
Replace Frenchisms with kind-of proper English
parent
40d94f7d
Changes
6
Hide whitespace changes
Inline
Side-by-side
AspenProject/VLCConstants.h
View file @
3d9c4731
...
...
@@ -36,9 +36,9 @@
#define kVLCRecentURLs @"recent-urls"
#define kVLCPrivateWebStreaming @"private-streaming"
#define kVLCServe
urFTP @"serveur-ftp
"
#define kVLCLogin
FTP
@"login
-ftp
"
#define kVLCPassword
FTP @"pass-ftp
"
#define kVLC
FTP
Serve
r @"ftp-server
"
#define kVLC
FTP
Login @"
ftp-
login"
#define kVLC
FTP
Password
@"ftp-pass
"
#define kSupportedFileExtensions @"\\.(3gp|3gp|3gp2|3gpp|amv|asf|avi|axv|divx|dv|flv|f4v|gvi|gxf|m1v|m2p|m2t|m2ts|m2v|m4v|mks|mkv|moov|mov|mp2v|mp4|mpeg|mpeg1|mpeg2|mpeg4|mpg|mpv|mt2s|mts|mxf|nsv|nuv|oga|ogg|ogm|ogv|ogx|spx|ps|qt|rec|rm|rmvb|tod|ts|tts|vob|vro|webm|wm|wmv|wtv|xesc)$"
#define kSupportedSubtitleFileExtensions @"\\.(cdg|idx|srt|sub|utf|ass|ssa|aqt|jss|psb|rt|smi|txt|smil)$"
...
...
AspenProject/VLCDownloadViewController.h
View file @
3d9c4731
...
...
@@ -21,7 +21,7 @@
@property
(
nonatomic
,
strong
)
IBOutlet
UIButton
*
cancelButton
;
@property
(
nonatomic
,
strong
)
IBOutlet
UILabel
*
currentDownloadLabel
;
@property
(
nonatomic
,
strong
)
IBOutlet
UIActivityIndicatorView
*
activityIndicator
;
@property
(
weak
,
nonatomic
)
IBOutlet
UILabel
*
progressP
ou
rcent
;
@property
(
weak
,
nonatomic
)
IBOutlet
UILabel
*
progressP
e
rcent
;
@property
(
weak
,
nonatomic
)
IBOutlet
UILabel
*
speedRate
;
@property
(
weak
,
nonatomic
)
IBOutlet
UILabel
*
timeDL
;
...
...
AspenProject/VLCDownloadViewController.m
View file @
3d9c4731
...
...
@@ -191,13 +191,13 @@
[
UIApplication
sharedApplication
].
networkActivityIndicatorVisible
=
YES
;
self
.
currentDownloadLabel
.
text
=
_humanReadableFilename
;
self
.
progressView
.
progress
=
0
.;
[
self
.
progressP
ou
rcent
setText
:
@"0%%"
];
[
self
.
progressP
e
rcent
setText
:
@"0%%"
];
[
self
.
speedRate
setText
:
@"0 Kb/s"
];
[
self
.
timeDL
setText
:
@"00:00:00"
];
self
.
currentDownloadLabel
.
hidden
=
NO
;
self
.
progressView
.
hidden
=
NO
;
self
.
cancelButton
.
hidden
=
NO
;
[
self
.
progressP
ou
rcent
setHidden
:
NO
];
[
self
.
progressP
e
rcent
setHidden
:
NO
];
[
self
.
speedRate
setHidden
:
NO
];
[
self
.
timeDL
setHidden
:
NO
];
_startDL
=
[
NSDate
timeIntervalSinceReferenceDate
];
...
...
@@ -211,7 +211,7 @@
self
.
currentDownloadLabel
.
hidden
=
YES
;
self
.
progressView
.
hidden
=
YES
;
self
.
cancelButton
.
hidden
=
YES
;
[
self
.
progressP
ou
rcent
setHidden
:
YES
];
[
self
.
progressP
e
rcent
setHidden
:
YES
];
[
self
.
speedRate
setHidden
:
YES
];
[
self
.
timeDL
setHidden
:
YES
];
_currentDownloadType
=
0
;
...
...
@@ -228,7 +228,7 @@
-
(
void
)
progressUpdatedTo
:(
CGFloat
)
percentage
receivedDataSize
:(
CGFloat
)
receivedDataSize
expectedDownloadSize
:(
CGFloat
)
expectedDownloadSize
{
[
self
.
progressP
ou
rcent
setText
:[
NSString
stringWithFormat
:
@"%.1f%%"
,
percentage
*
100
]];
[
self
.
progressP
e
rcent
setText
:[
NSString
stringWithFormat
:
@"%.1f%%"
,
percentage
*
100
]];
[
self
.
timeDL
setText
:[
self
calculateRemainingTime
:
receivedDataSize
expectedDownloadSize
:
expectedDownloadSize
]];
[
self
.
speedRate
setText
:[
self
calculateSpeedString
:
receivedDataSize
]];
...
...
AspenProject/VLCLocalServerListViewController.m
View file @
3d9c4731
...
...
@@ -79,13 +79,9 @@
[
self
performSelectorInBackground
:
@selector
(
_startUPNPDiscovery
)
withObject
:
nil
];
// Active le Pull down to refresh
refreshControl
=
[[
UIRefreshControl
alloc
]
init
];
// call the refresh function
[
refreshControl
addTarget
:
self
action
:
@selector
(
handleRefresh
)
forControlEvents
:
UIControlEventValueChanged
];
[
self
.
tableView
addSubview
:
refreshControl
];
}
-
(
void
)
viewWillDisappear
:(
BOOL
)
animated
...
...
AspenProject/VLCNetworkLoginViewController.m
View file @
3d9c4731
...
...
@@ -13,7 +13,7 @@
@interface
VLCNetworkLoginViewController
()
<
UITableViewDataSource
,
UITableViewDelegate
,
UITextFieldDelegate
>
{
NSMutableArray
*
_saveServe
u
r
;
NSMutableArray
*
_saveServer
;
NSMutableArray
*
_saveLogin
;
NSMutableArray
*
_savePass
;
}
...
...
@@ -25,7 +25,7 @@
{
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
NSDictionary
*
loginDefaults
=
@{
kVLCServe
urFTP
:
@[],
kVLCLogin
FTP
:
@[],
kVLCServe
urFTP
:
@[]};
NSDictionary
*
loginDefaults
=
@{
kVLC
FTP
Serve
r
:
@[],
kVLC
FTP
Login
:
@[],
kVLC
FTP
Serve
r
:
@[]};
[
defaults
registerDefaults
:
loginDefaults
];
}
...
...
@@ -64,9 +64,9 @@
self
.
navigationController
.
navigationBar
.
translucent
=
NO
;
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
_saveServe
u
r
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLCServe
urFTP
]];
_saveLogin
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLCLogin
FTP
]];
_savePass
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLCPassword
FTP
]];
_saveServer
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLC
FTP
Serve
r
]];
_saveLogin
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLC
FTP
Login
]];
_savePass
=
[
NSMutableArray
arrayWithArray
:[
defaults
objectForKey
:
kVLC
FTP
Password
]];
[
super
viewWillAppear
:
animated
];
...
...
@@ -109,13 +109,13 @@
}
-
(
IBAction
)
saveFTP
:(
id
)
sender
{
[
_saveServe
u
r
addObject
:
self
.
serverAddressField
.
text
];
[
_saveServer
addObject
:
self
.
serverAddressField
.
text
];
[
_saveLogin
addObject
:
self
.
usernameField
.
text
];
[
_savePass
addObject
:
self
.
passwordField
.
text
];
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveServe
u
r
]
forKey
:
kVLCServe
urFTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveLogin
]
forKey
:
kVLCLogin
FTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_savePass
]
forKey
:
kVLCPassword
FTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveServer
]
forKey
:
kVLC
FTP
Serve
r
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveLogin
]
forKey
:
kVLC
FTP
Login
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_savePass
]
forKey
:
kVLC
FTP
Password
];
[
defaults
synchronize
];
[
self
.
historyLogin
reloadData
];
}
...
...
@@ -150,7 +150,7 @@
-
(
NSInteger
)
tableView
:(
UITableView
*
)
tableView
numberOfRowsInSection
:(
NSInteger
)
section
{
return
_saveServe
u
r
.
count
;
return
_saveServer
.
count
;
}
-
(
UITableViewCell
*
)
tableView
:(
UITableView
*
)
tableView
cellForRowAtIndexPath
:(
NSIndexPath
*
)
indexPath
...
...
@@ -165,7 +165,7 @@
}
NSInteger
row
=
indexPath
.
row
;
cell
.
textLabel
.
text
=
[
_saveServe
u
r
[
row
]
lastPathComponent
];
cell
.
textLabel
.
text
=
[
_saveServer
[
row
]
lastPathComponent
];
cell
.
detailTextLabel
.
text
=
_saveLogin
[
row
];
return
cell
;
...
...
@@ -186,21 +186,21 @@
-
(
void
)
tableView
:(
UITableView
*
)
tableView
commitEditingStyle
:(
UITableViewCellEditingStyle
)
editingStyle
forRowAtIndexPath
:(
NSIndexPath
*
)
indexPath
{
if
(
editingStyle
==
UITableViewCellEditingStyleDelete
)
{
[
_saveServe
u
r
removeObjectAtIndex
:
indexPath
.
row
];
[
_saveServer
removeObjectAtIndex
:
indexPath
.
row
];
[
_saveLogin
removeObjectAtIndex
:
indexPath
.
row
];
[
_savePass
removeObjectAtIndex
:
indexPath
.
row
];
[
tableView
reloadData
];
NSUserDefaults
*
defaults
=
[
NSUserDefaults
standardUserDefaults
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveServe
u
r
]
forKey
:
kVLCServe
urFTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveLogin
]
forKey
:
kVLCLogin
FTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_savePass
]
forKey
:
kVLCPassword
FTP
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveServer
]
forKey
:
kVLC
FTP
Serve
r
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_saveLogin
]
forKey
:
kVLC
FTP
Login
];
[
defaults
setObject
:[
NSArray
arrayWithArray
:
_savePass
]
forKey
:
kVLC
FTP
Password
];
[
defaults
synchronize
];
}
}
-
(
void
)
tableView
:(
UITableView
*
)
tableView
didSelectRowAtIndexPath
:(
NSIndexPath
*
)
indexPath
{
[
self
.
serverAddressField
setText
:
_saveServe
u
r
[
indexPath
.
row
]];
[
self
.
serverAddressField
setText
:
_saveServer
[
indexPath
.
row
]];
[
self
.
usernameField
setText
:
_saveLogin
[
indexPath
.
row
]];
[
self
.
passwordField
setText
:
_savePass
[
indexPath
.
row
]];
...
...
Resources/VLCDownloadViewController.xib
View file @
3d9c4731
<?xml version="1.0" encoding="UTF-8"?>
<archive
type=
"com.apple.InterfaceBuilder3.CocoaTouch.XIB"
version=
"8.00"
>
<data>
<int
key=
"IBDocument.SystemTarget"
>
1296
</int>
<string
key=
"IBDocument.SystemVersion"
>
12E55
</string>
<string
key=
"IBDocument.InterfaceBuilderVersion"
>
3084
</string>
<string
key=
"IBDocument.AppKitVersion"
>
1187.39
</string>
<string
key=
"IBDocument.HIToolboxVersion"
>
626.00
</string>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.PluginVersions"
>
<string
key=
"NS.key.0"
>
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
</string>
<string
key=
"NS.object.0"
>
2083
</string>
</object>
<array
key=
"IBDocument.IntegratedClassDependencies"
>
<string>
IBProxyObject
</string>
<string>
IBUIActivityIndicatorView
</string>
<string>
IBUIButton
</string>
<string>
IBUIImageView
</string>
<string>
IBUILabel
</string>
<string>
IBUIProgressView
</string>
<string>
IBUITableView
</string>
<string>
IBUITextField
</string>
<string>
IBUIView
</string>
</array>
<array
key=
"IBDocument.PluginDependencies"
>
<string>
com.apple.InterfaceBuilder.IBCocoaTouchPlugin
</string>
</array>
<object
class=
"NSMutableDictionary"
key=
"IBDocument.Metadata"
>
<string
key=
"NS.key.0"
>
PluginDependencyRecalculationVersion
</string>
<integer
value=
"1"
key=
"NS.object.0"
/>
</object>
<array
class=
"NSMutableArray"
key=
"IBDocument.RootObjects"
id=
"1000"
>
<object
class=
"IBProxyObject"
id=
"372490531"
>
<string
key=
"IBProxiedObjectIdentifier"
>
IBFilesOwner
</string>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
<object
class=
"IBProxyObject"
id=
"975951072"
>
<string
key=
"IBProxiedObjectIdentifier"
>
IBFirstResponder
</string>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
<object
class=
"IBUIView"
id=
"191373211"
>
<reference
key=
"NSNextResponder"
/>
<int
key=
"NSvFlags"
>
274
</int>
<array
class=
"NSMutableArray"
key=
"NSSubviews"
>
<object
class=
"IBUIView"
id=
"234033301"
>
<reference
key=
"NSNextResponder"
ref=
"191373211"
/>
<int
key=
"NSvFlags"
>
290
</int>
<array
class=
"NSMutableArray"
key=
"NSSubviews"
>
<object
class=
"IBUIImageView"
id=
"433654949"
>
<reference
key=
"NSNextResponder"
ref=
"234033301"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrameSize"
>
{320, 101}
</string>
<reference
key=
"NSSuperview"
ref=
"234033301"
/>
<reference
key=
"NSNextKeyView"
ref=
"205664075"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<object
class=
"NSCustomResource"
key=
"IBUIImage"
id=
"348971812"
>
<string
key=
"NSClassName"
>
NSImage
</string>
<string
key=
"NSResourceName"
>
menuBtnBck.png
</string>
</object>
</object>
<object
class=
"IBUITextField"
id=
"205664075"
>
<reference
key=
"NSNextResponder"
ref=
"234033301"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{10, 15}, {195, 30}}
</string>
<reference
key=
"NSSuperview"
ref=
"234033301"
/>
<reference
key=
"NSNextKeyView"
ref=
"325478617"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<int
key=
"IBUIContentVerticalAlignment"
>
0
</int>
<string
key=
"IBUIText"
/>
<int
key=
"IBUIBorderStyle"
>
3
</int>
<object
class=
"NSColor"
key=
"IBUITextColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MAA
</bytes>
<object
class=
"NSColorSpace"
key=
"NSCustomColorSpace"
id=
"913995005"
>
<int
key=
"NSID"
>
2
</int>
</object>
</object>
<bool
key=
"IBUIClearsOnBeginEditing"
>
YES
</bool>
<bool
key=
"IBUIAdjustsFontSizeToFit"
>
YES
</bool>
<float
key=
"IBUIMinimumFontSize"
>
17
</float>
<object
class=
"IBUITextInputTraits"
key=
"IBUITextInputTraits"
>
<int
key=
"IBUIAutocorrectionType"
>
1
</int>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
<object
class=
"NSCustomResource"
key=
"IBUIBackground"
>
<string
key=
"NSClassName"
>
NSImage
</string>
<string
key=
"NSResourceName"
>
input.png
</string>
</object>
<int
key=
"IBUIClearButtonMode"
>
2
</int>
<object
class=
"IBUIFontDescription"
key=
"IBUIFontDescription"
id=
"328285726"
>
<int
key=
"type"
>
1
</int>
<double
key=
"pointSize"
>
14
</double>
</object>
<object
class=
"NSFont"
key=
"IBUIFont"
id=
"825639518"
>
<string
key=
"NSName"
>
Helvetica
</string>
<double
key=
"NSSize"
>
14
</double>
<int
key=
"NSfFlags"
>
16
</int>
</object>
</object>
<object
class=
"IBUIButton"
id=
"209774297"
>
<reference
key=
"NSNextResponder"
ref=
"234033301"
/>
<int
key=
"NSvFlags"
>
289
</int>
<string
key=
"NSFrame"
>
{{213, 11}, {97, 39}}
</string>
<reference
key=
"NSSuperview"
ref=
"234033301"
/>
<reference
key=
"NSNextKeyView"
ref=
"1066205493"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<int
key=
"IBUIContentHorizontalAlignment"
>
0
</int>
<int
key=
"IBUIContentVerticalAlignment"
>
0
</int>
<string
key=
"IBUINormalTitle"
>
Télécharger
</string>
<object
class=
"NSColor"
key=
"IBUIHighlightedTitleColor"
id=
"1064176833"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MQA
</bytes>
</object>
<object
class=
"NSColor"
key=
"IBUINormalTitleColor"
>
<int
key=
"NSColorSpace"
>
1
</int>
<bytes
key=
"NSRGB"
>
MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
</bytes>
</object>
<object
class=
"NSColor"
key=
"IBUINormalTitleShadowColor"
id=
"433689442"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC41AA
</bytes>
</object>
<object
class=
"NSCustomResource"
key=
"IBUINormalBackgroundImage"
>
<string
key=
"NSClassName"
>
NSImage
</string>
<string
key=
"NSResourceName"
>
menuButton.png
</string>
</object>
<object
class=
"IBUIFontDescription"
key=
"IBUIFontDescription"
id=
"896947105"
>
<int
key=
"type"
>
2
</int>
<double
key=
"pointSize"
>
15
</double>
</object>
<object
class=
"NSFont"
key=
"IBUIFont"
id=
"621582664"
>
<string
key=
"NSName"
>
Helvetica-Bold
</string>
<double
key=
"NSSize"
>
15
</double>
<int
key=
"NSfFlags"
>
16
</int>
</object>
</object>
<object
class=
"IBUILabel"
id=
"325478617"
>
<reference
key=
"NSNextResponder"
ref=
"234033301"
/>
<int
key=
"NSvFlags"
>
274
</int>
<string
key=
"NSFrame"
>
{{10, 49}, {300, 50}}
</string>
<reference
key=
"NSSuperview"
ref=
"234033301"
/>
<reference
key=
"NSNextKeyView"
ref=
"209774297"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<int
key=
"IBUIContentMode"
>
7
</int>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<string
key=
"IBUIText"
>
Enter any HTTP address to download the file to your $DEVICE.
</string>
<object
class=
"NSColor"
key=
"IBUITextColor"
>
<int
key=
"NSColorSpace"
>
1
</int>
<bytes
key=
"NSRGB"
>
MC43NDY1OTE5OTYyIDAuNzQ2NTkxOTk2MiAwLjc0NjU5MTk5NjIAA
</bytes>
</object>
<nil
key=
"IBUIHighlightedColor"
/>
<int
key=
"IBUIBaselineAdjustment"
>
0
</int>
<float
key=
"IBUIMinimumFontSize"
>
9
</float>
<int
key=
"IBUINumberOfLines"
>
0
</int>
<int
key=
"IBUITextAlignment"
>
1
</int>
<reference
key=
"IBUIFontDescription"
ref=
"328285726"
/>
<reference
key=
"IBUIFont"
ref=
"825639518"
/>
<double
key=
"preferredMaxLayoutWidth"
>
300
</double>
</object>
</array>
<string
key=
"NSFrameSize"
>
{320, 101}
</string>
<reference
key=
"NSSuperview"
ref=
"191373211"
/>
<reference
key=
"NSNextKeyView"
ref=
"433654949"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<object
class=
"NSColor"
key=
"IBUIBackgroundColor"
id=
"130677336"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC42NjY2NjY2NjY3AA
</bytes>
</object>
<object
class=
"IBUISimulatedSizeMetrics"
key=
"IBUISimulatedDestinationMetrics"
id=
"211842947"
>
<string
key=
"IBUISimulatedSizeMetricsClass"
>
IBUISimulatedFreeformSizeMetricsSentinel
</string>
<string
key=
"IBUIDisplayName"
>
Freeform
</string>
</object>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
<object
class=
"IBUIView"
id=
"1066205493"
>
<reference
key=
"NSNextResponder"
ref=
"191373211"
/>
<int
key=
"NSvFlags"
>
290
</int>
<array
class=
"NSMutableArray"
key=
"NSSubviews"
>
<object
class=
"IBUIImageView"
id=
"1005679980"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{0, -15}, {320, 105}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"761747136"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<reference
key=
"IBUIImage"
ref=
"348971812"
/>
</object>
<object
class=
"IBUILabel"
id=
"761747136"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
-2147483358
</int>
<string
key=
"NSFrame"
>
{{11, 9}, {280, 17}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"250280512"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<int
key=
"IBUIContentMode"
>
7
</int>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<string
key=
"IBUIText"
>
Current Download.mpg
</string>
<object
class=
"NSColor"
key=
"IBUITextColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MC43MgA
</bytes>
</object>
<nil
key=
"IBUIHighlightedColor"
/>
<int
key=
"IBUIBaselineAdjustment"
>
0
</int>
<reference
key=
"IBUIFontDescription"
ref=
"328285726"
/>
<reference
key=
"IBUIFont"
ref=
"825639518"
/>
<bool
key=
"IBUIAdjustsFontSizeToFit"
>
NO
</bool>
</object>
<object
class=
"IBUIProgressView"
id=
"802027691"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
-2147483358
</int>
<string
key=
"NSFrame"
>
{{11, 63}, {299, 9}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"831264216"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<float
key=
"IBUIProgress"
>
0.5
</float>
</object>
<object
class=
"IBUIButton"
id=
"250280512"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
-2147483359
</int>
<string
key=
"NSFrame"
>
{{283, 5}, {29, 31}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"114365069"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<int
key=
"IBUIContentHorizontalAlignment"
>
0
</int>
<int
key=
"IBUIContentVerticalAlignment"
>
0
</int>
<reference
key=
"IBUIHighlightedTitleColor"
ref=
"1064176833"
/>
<object
class=
"NSColor"
key=
"IBUINormalTitleColor"
>
<int
key=
"NSColorSpace"
>
1
</int>
<bytes
key=
"NSRGB"
>
MC4xOTYwNzg0MzQ2IDAuMzA5ODAzOTMyOSAwLjUyMTU2ODY1NgA
</bytes>
</object>
<reference
key=
"IBUINormalTitleShadowColor"
ref=
"433689442"
/>
<object
class=
"NSCustomResource"
key=
"IBUINormalImage"
>
<string
key=
"NSClassName"
>
NSImage
</string>
<string
key=
"NSResourceName"
>
DeleteButton.png
</string>
</object>
<reference
key=
"IBUIFontDescription"
ref=
"896947105"
/>
<reference
key=
"IBUIFont"
ref=
"621582664"
/>
</object>
<object
class=
"IBUIActivityIndicatorView"
id=
"385572310"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
-2147483355
</int>
<string
key=
"NSFrame"
>
{{142, 26}, {37, 37}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"797274929"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<int
key=
"IBUIStyle"
>
0
</int>
</object>
<object
class=
"IBUILabel"
id=
"114365069"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{11, 40}, {95, 15}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"385572310"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<int
key=
"IBUIContentMode"
>
7
</int>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<string
key=
"IBUIText"
>
0 Kb/s
</string>
<object
class=
"NSColor"
key=
"IBUITextColor"
id=
"539451"
>
<int
key=
"NSColorSpace"
>
6
</int>
<string
key=
"NSCatalogName"
>
System
</string>
<string
key=
"NSColorName"
>
selectedInactiveColor
</string>
<reference
key=
"NSColor"
ref=
"130677336"
/>
</object>
<nil
key=
"IBUIHighlightedColor"
/>
<int
key=
"IBUIBaselineAdjustment"
>
0
</int>
<int
key=
"IBUITextAlignment"
>
1
</int>
<reference
key=
"IBUIFontDescription"
ref=
"328285726"
/>
<reference
key=
"IBUIFont"
ref=
"825639518"
/>
<bool
key=
"IBUIAdjustsFontSizeToFit"
>
NO
</bool>
</object>
<object
class=
"IBUILabel"
id=
"402231619"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{234, 40}, {66, 15}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"802027691"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<int
key=
"IBUIContentMode"
>
7
</int>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<string
key=
"IBUIText"
>
00:00:00
</string>
<reference
key=
"IBUITextColor"
ref=
"539451"
/>
<nil
key=
"IBUIHighlightedColor"
/>
<int
key=
"IBUIBaselineAdjustment"
>
0
</int>
<int
key=
"IBUITextAlignment"
>
1
</int>
<reference
key=
"IBUIFontDescription"
ref=
"328285726"
/>
<reference
key=
"IBUIFont"
ref=
"825639518"
/>
<bool
key=
"IBUIAdjustsFontSizeToFit"
>
NO
</bool>
</object>
<object
class=
"IBUILabel"
id=
"797274929"
>
<reference
key=
"NSNextResponder"
ref=
"1066205493"
/>
<int
key=
"NSvFlags"
>
290
</int>
<string
key=
"NSFrame"
>
{{132, 40}, {56, 15}}
</string>
<reference
key=
"NSSuperview"
ref=
"1066205493"
/>
<reference
key=
"NSNextKeyView"
ref=
"402231619"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<bool
key=
"IBUIOpaque"
>
NO
</bool>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<int
key=
"IBUIContentMode"
>
7
</int>
<bool
key=
"IBUIUserInteractionEnabled"
>
NO
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<string
key=
"IBUIText"
>
0%
</string>
<reference
key=
"IBUITextColor"
ref=
"539451"
/>
<nil
key=
"IBUIHighlightedColor"
/>
<int
key=
"IBUIBaselineAdjustment"
>
0
</int>
<int
key=
"IBUITextAlignment"
>
1
</int>
<reference
key=
"IBUIFontDescription"
ref=
"328285726"
/>
<reference
key=
"IBUIFont"
ref=
"825639518"
/>
<bool
key=
"IBUIAdjustsFontSizeToFit"
>
NO
</bool>
</object>
</array>
<string
key=
"NSFrame"
>
{{0, 105}, {320, 90}}
</string>
<reference
key=
"NSSuperview"
ref=
"191373211"
/>
<reference
key=
"NSNextKeyView"
ref=
"1005679980"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<reference
key=
"IBUIBackgroundColor"
ref=
"130677336"
/>
<reference
key=
"IBUISimulatedDestinationMetrics"
ref=
"211842947"
/>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
<object
class=
"IBUITableView"
id=
"831264216"
>
<reference
key=
"NSNextResponder"
ref=
"191373211"
/>
<int
key=
"NSvFlags"
>
274
</int>
<string
key=
"NSFrame"
>
{{0, 203}, {320, 180}}
</string>
<reference
key=
"NSSuperview"
ref=
"191373211"
/>
<string
key=
"NSReuseIdentifierKey"
>
_NS:9
</string>
<object
class=
"NSColor"
key=
"IBUIBackgroundColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MCAwLjYxAA
</bytes>
<reference
key=
"NSCustomColorSpace"
ref=
"913995005"
/>
</object>
<bool
key=
"IBUIClipsSubviews"
>
YES
</bool>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
<bool
key=
"IBUIAlwaysBounceVertical"
>
YES
</bool>
<bool
key=
"IBUIShowsVerticalScrollIndicator"
>
NO
</bool>
<int
key=
"IBUISeparatorStyle"
>
1
</int>
<object
class=
"NSColor"
key=
"IBUISeparatorColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MCAwLjYxAA
</bytes>
<reference
key=
"NSCustomColorSpace"
ref=
"913995005"
/>
</object>
<int
key=
"IBUISectionIndexMinimumDisplayRowCount"
>
0
</int>
<bool
key=
"IBUIShowsSelectionImmediatelyOnTouchBegin"
>
YES
</bool>
<float
key=
"IBUIRowHeight"
>
44
</float>
<float
key=
"IBUISectionHeaderHeight"
>
22
</float>
<float
key=
"IBUISectionFooterHeight"
>
22
</float>
</object>
</array>
<string
key=
"NSFrameSize"
>
{320, 383}
</string>
<reference
key=
"NSSuperview"
/>
<reference
key=
"NSNextKeyView"
ref=
"234033301"
/>
<object
class=
"NSColor"
key=
"IBUIBackgroundColor"
>
<int
key=
"NSColorSpace"
>
3
</int>
<bytes
key=
"NSWhite"
>
MAA
</bytes>
</object>
<reference
key=
"IBUISimulatedDestinationMetrics"
ref=
"211842947"
/>
<string
key=
"targetRuntimeIdentifier"
>
IBCocoaTouchFramework
</string>
</object>
</array>
<object
class=
"IBObjectContainer"
key=
"IBDocument.Objects"
>
<array
class=
"NSMutableArray"
key=
"connectionRecords"
>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBCocoaTouchOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
view
</string>
<reference
key=
"source"
ref=
"372490531"
/>
<reference
key=
"destination"
ref=
"191373211"
/>
</object>
<int
key=
"connectionID"
>
3
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBCocoaTouchOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
downloadsTable
</string>
<reference
key=
"source"
ref=
"372490531"
/>
<reference
key=
"destination"
ref=
"831264216"
/>
</object>
<int
key=
"connectionID"
>
75
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBCocoaTouchOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
downloadButton
</string>
<reference
key=
"source"
ref=
"372490531"
/>
<reference
key=
"destination"
ref=
"209774297"
/>
</object>
<int
key=
"connectionID"
>
76
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBCocoaTouchOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
urlField
</string>
<reference
key=
"source"
ref=
"372490531"
/>
<reference
key=
"destination"
ref=
"205664075"
/>
</object>
<int
key=
"connectionID"
>
77
</int>
</object>
<object
class=
"IBConnectionRecord"
>
<object
class=
"IBCocoaTouchOutletConnection"
key=
"connection"
>
<string
key=
"label"
>
progressView
</string>
<reference
key=
"source"
ref=
"372490531"
/>
<reference
key=
"destination"
ref=
"802027691"
/>
</object>
<int
key=
"connectionID"
>
87
</int>
</object>
<object
class=
"IBConnectionRecord"
>