Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
deb75d71
Commit
deb75d71
authored
Mar 07, 2004
by
Xavier Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No commit message
No commit message
parent
9474462d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
modules/control/http.c
modules/control/http.c
+6
-2
share/http/index.html
share/http/index.html
+1
-0
No files found.
modules/control/http.c
View file @
deb75d71
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* http.c : http mini-server ;)
* http.c : http mini-server ;)
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001-2004 VideoLAN
* Copyright (C) 2001-2004 VideoLAN
* $Id
: http.c,v 1.55 2004/03/03 14:22:47 fenrir Exp
$
* $Id$
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Laurent Aimar <fenrir@via.ecp.fr>
* Laurent Aimar <fenrir@via.ecp.fr>
...
@@ -1798,7 +1798,11 @@ static void MacroDo( httpd_file_sys_t *p_args,
...
@@ -1798,7 +1798,11 @@ static void MacroDo( httpd_file_sys_t *p_args,
{
{
playlist_SortAuthor
(
p_sys
->
p_playlist
,
i_order
);
playlist_SortAuthor
(
p_sys
->
p_playlist
,
i_order
);
msg_Dbg
(
p_intf
,
"requested playlist sort by author (%d)"
,
i_order
);
msg_Dbg
(
p_intf
,
"requested playlist sort by author (%d)"
,
i_order
);
}
}
else
if
(
!
strcmp
(
type
,
"Shuffle"
)
)
{
playlist_Sort
(
p_sys
->
p_playlist
,
SORT_RANDOM
,
ORDER_NORMAL
);
msg_Dbg
(
p_intf
,
"requested playlist shuffle"
);
}
break
;
break
;
}
}
...
...
share/http/index.html
View file @
deb75d71
...
@@ -96,6 +96,7 @@
...
@@ -96,6 +96,7 @@
<option
value=
"title"
>
title
</option>
<option
value=
"title"
>
title
</option>
<option
value=
"group"
>
group
</option>
<option
value=
"group"
>
group
</option>
<option
value=
"author"
>
author
</option>
<option
value=
"author"
>
author
</option>
<option
value=
"Shuffle"
>
Shuffle
</option>
</select>
with
</select>
with
<select
name=
"order"
>
<select
name=
"order"
>
<option
value=
"0"
>
normal order
</option>
<option
value=
"0"
>
normal order
</option>
...
...
Write
Preview
Markdown
is supported
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