Changeset 3608fc1574e39ca5e0c46c377e1a16fb5198264e
- Timestamp:
- 09/09/07 23:12:29
(1 year ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1189372349 +0000
- git-parent:
[29d954bbbff786220e11642f0ac6a79d59648a0d]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1189372349 +0000
- Message:
luameta.c: Fix a message
vlclua.c: get rid of an empty module and fix descriptions
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| ra9a8900 |
r3608fc1 |
|
| 181 | 181 | else |
|---|
| 182 | 182 | { |
|---|
| 183 | | msg_Err( p_this, "Lua playlist script %s: " |
|---|
| | 183 | msg_Err( p_this, "Lua art fetcher script %s: " |
|---|
| 184 | 184 | "didn't return a string", psz_filename ); |
|---|
| 185 | 185 | } |
|---|
| r16f32e1 |
r3608fc1 |
|
| 44 | 44 | |
|---|
| 45 | 45 | vlc_module_begin(); |
|---|
| 46 | | add_shortcut( "lua" ); |
|---|
| | 46 | add_shortcut( "luameta" ); |
|---|
| | 47 | set_shortname( N_( "Lua Meta" ) ); |
|---|
| | 48 | set_description( _("Fetch metadata using lua scripts") ); |
|---|
| | 49 | set_capability( "meta fetcher", 10 ); |
|---|
| | 50 | set_callbacks( E_(FindMeta), NULL ); |
|---|
| 47 | 51 | add_submodule(); |
|---|
| 48 | | add_shortcut( "luameta" ); |
|---|
| 49 | | set_shortname( N_( "Lua Meta" ) ); |
|---|
| 50 | | set_description( _("Fetch Artwork using lua scripts") ); |
|---|
| 51 | | set_capability( "meta fetcher", 10 ); |
|---|
| 52 | | set_callbacks( E_(FindMeta), NULL ); |
|---|
| 53 | | add_submodule(); |
|---|
| 54 | | set_capability( "art finder", 10 ); |
|---|
| 55 | | set_callbacks( E_(FindArt), NULL ); |
|---|
| | 52 | set_shortname( N_( "Lua Art" ) ); |
|---|
| | 53 | set_description( _("Fetch artwork using lua scripts") ); |
|---|
| | 54 | set_capability( "art finder", 10 ); |
|---|
| | 55 | set_callbacks( E_(FindArt), NULL ); |
|---|
| 56 | 56 | add_submodule(); |
|---|
| 57 | 57 | add_shortcut( "luaplaylist" ); |
|---|
| 58 | 58 | set_category( CAT_INPUT ); |
|---|
| 59 | 59 | set_subcategory( SUBCAT_INPUT_DEMUX ); |
|---|
| 60 | | |
|---|
| 61 | 60 | set_shortname( _("Lua Playlist") ); |
|---|
| 62 | 61 | set_description( _("Lua Playlist Parser Interface") ); |
|---|