Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
84980a68
Commit
84980a68
authored
Mar 03, 2004
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac: -> 0.7.2-cvs
* modules/control/http.c: added a playlist.uri field.
parent
423b23ba
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
configure.ac
configure.ac
+3
-3
doc/intf-http.txt
doc/intf-http.txt
+2
-1
modules/control/http.c
modules/control/http.c
+3
-1
share/http/index.html
share/http/index.html
+2
-1
No files found.
configure.ac
View file @
84980a68
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.18
8 2004/03/03 13:24:31
fenrir Exp $
dnl $Id: configure.ac,v 1.18
9 2004/03/03 14:22:47
fenrir Exp $
AC_INIT(vlc,0.7.
1
)
AC_INIT(vlc,0.7.
2-cvs
)
CONFIGURE_LINE="$0 $*"
CODENAME="Bond"
...
...
@@ -13,7 +13,7 @@ AC_CANONICAL_SYSTEM
dnl XXX: we don't put any flags here, because automake 1.5 doesn't support
dnl them. And we need the comma otherwize automake will choke on it.
AM_INIT_AUTOMAKE(vlc,0.7.
1
)
AM_INIT_AUTOMAKE(vlc,0.7.
2-cvs
)
AM_CONFIG_HEADER(config.h)
dnl
...
...
doc/intf-http.txt
View file @
84980a68
...
...
@@ -324,7 +324,8 @@ variable will be displayed (instead of it name).
- current : 1 if currently selected else 0
- index : the index value (to be used for example for the
"delete" control command.
- name
- name : the name of the item (it is equal to uri most of the time).
- uri : the URI of the item
- group : the group number
- "informations" : Create informations for the current playing
...
...
modules/control/http.c
View file @
84980a68
...
...
@@ -2,7 +2,7 @@
* http.c : http mini-server ;)
*****************************************************************************
* Copyright (C) 2001-2004 VideoLAN
* $Id: http.c,v 1.5
4 2004/03/03 13:26:50
fenrir Exp $
* $Id: http.c,v 1.5
5 2004/03/03 14:22:47
fenrir Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Laurent Aimar <fenrir@via.ecp.fr>
...
...
@@ -843,6 +843,8 @@ static mvar_t *mvar_PlaylistSetNew( char *name, playlist_t *p_pl )
mvar_AppendNewVar
(
itm
,
"name"
,
p_pl
->
pp_items
[
i
]
->
psz_name
);
mvar_AppendNewVar
(
itm
,
"uri"
,
p_pl
->
pp_items
[
i
]
->
psz_uri
);
sprintf
(
value
,
"%d"
,
p_pl
->
pp_items
[
i
]
->
i_group
);
mvar_AppendNewVar
(
itm
,
"group"
,
value
);
...
...
share/http/index.html
View file @
84980a68
...
...
@@ -113,7 +113,8 @@
<vlc
id=
"if"
param1=
"pl.current"
/>
<b>
<vlc
id=
"end"
/>
<a
href=
"?control=play&item=<vlc id="
value
"
param1=
"pl.index"
/>
">
<vlc
id=
"value"
param1=
"pl.index"
/>
-
<vlc
id=
"value"
param1=
"pl.name"
/></a>
<a
href=
"?control=play&item=<vlc id="
value
"
param1=
"pl.index"
/>
">
<vlc
id=
"value"
param1=
"pl.index"
/>
-
<vlc
id=
"value"
param1=
"pl.uri"
/><vlc
id=
"if"
param1=
"pl.uri value pl.name value strcmp"
/>
(
<vlc
id=
"value"
param1=
"pl.name"
/>
)
<vlc
id=
"end"
/></a>
<vlc
id=
"if"
param1=
"pl.current"
/>
</b>
<vlc
id=
"end"
/>
...
...
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