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
188ad538
Commit
188ad538
authored
Jun 09, 2014
by
Felix Paul Kühne
Browse files
Updated WiFi file transport feature name
parent
54d03c5a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Resources/en.lproj/Localizable.strings
View file @
188ad538
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
Resources/web/index.html
View file @
188ad538
...
...
@@ -2,7 +2,7 @@
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
WiFi Upload/Download
</title>
<title>
%%WEBINTF_TITLE%%
</title>
<link
rel=
"stylesheet"
href=
"style.css"
>
<script
type=
"text/javascript"
src=
"jquery-1.10.1.min.js"
></script>
<script
type=
"text/javascript"
src=
"jquery.ui.widget.js"
></script>
...
...
Resources/web/style.css
View file @
188ad538
...
...
@@ -61,7 +61,7 @@ div.main.drop {
}
.nav
:before
{
content
:
"%%
HTTP_UPLOAD
%%"
;
content
:
"%%
WEBINTF_TITLE
%%"
;
font-family
:
"Raleway"
,
"Helvetica Neue"
;
font-size
:
36px
;
line-height
:
60px
;
...
...
Sources/VLCHTTPConnection.m
View file @
188ad538
...
...
@@ -113,6 +113,7 @@
}
NSDictionary
*
replacementDict
=
@{
@"FILES"
:
fileList
,
@"WEBINTF_TITLE"
:
NSLocalizedString
(
@"WEBINTF_TITLE"
,
nil
),
@"WEBINTF_DROPFILES"
:
NSLocalizedString
(
@"WEBINTF_DROPFILES"
,
nil
),
@"WEBINTF_DROPFILES_LONG"
:
NSLocalizedString
(
@"WEBINTF_DROPFILES_LONG"
,
nil
),
@"WEBINTF_DOWNLOADFILES"
:
NSLocalizedString
(
@"WEBINTF_DOWNLOADFILES"
,
nil
),
...
...
@@ -123,7 +124,7 @@
separator:
@"%%"
replacementDictionary:
replacementDict
];
}
else
if
([
relativePath
isEqualToString
:
@"/style.css"
])
{
NSDictionary
*
replacementDict
=
@{
@"
HTTP_UPLOAD
"
:
NSLocalizedString
(
@"
HTTP_UPLOAD
"
,
nil
)};
NSDictionary
*
replacementDict
=
@{
@"
WEBINTF_TITLE
"
:
NSLocalizedString
(
@"
WEBINTF_TITLE
"
,
nil
)};
return
[[
HTTPDynamicFileResponse
alloc
]
initWithFilePath
:[
self
filePathForURI
:
path
]
forConnection:
self
separator:
@"%%"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment