Changeset 7d7455f975099d001fe218fd925b20a40e3e422e
- Timestamp:
- 11/24/07 19:59:50
(10 months ago)
- Author:
- Antoine Cellerier <dionoea@videolan.org>
- git-committer:
- Antoine Cellerier <dionoea@videolan.org> 1195930790 +0000
- git-parent:
[90fbce432ea7d4af4dee348cced870fed584c371]
- git-author:
- Antoine Cellerier <dionoea@videolan.org> 1195930790 +0000
- Message:
Changes to the lua module's declaration: add luahttp alias and don't make it accept the luameta alias for all capabilities.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| re10d431 |
r7d7455f |
|
| 52 | 52 | |
|---|
| 53 | 53 | vlc_module_begin(); |
|---|
| 54 | | add_shortcut( "luameta" ); |
|---|
| 55 | | set_shortname( N_( "Lua Meta" ) ); |
|---|
| 56 | | set_description( _("Fetch metadata using lua scripts") ); |
|---|
| 57 | | set_capability( "meta fetcher", 10 ); |
|---|
| 58 | | set_callbacks( E_(FindMeta), NULL ); |
|---|
| | 54 | add_submodule(); |
|---|
| | 55 | add_shortcut( "luameta" ); |
|---|
| | 56 | set_shortname( N_( "Lua Meta" ) ); |
|---|
| | 57 | set_description( _("Fetch metadata using lua scripts") ); |
|---|
| | 58 | set_capability( "meta fetcher", 10 ); |
|---|
| | 59 | set_callbacks( E_(FindMeta), NULL ); |
|---|
| 59 | 60 | add_submodule(); |
|---|
| 60 | 61 | set_shortname( N_( "Lua Art" ) ); |
|---|
| … | … | |
| 78 | 79 | add_shortcut( "luatelnet" ); |
|---|
| 79 | 80 | /* add_shortcut( "telnet" ); */ |
|---|
| | 81 | add_shortcut( "luahttp" ); |
|---|
| | 82 | /* add_shortcut( "http" ); */ |
|---|
| 80 | 83 | set_description( _("Lua Interface Module") ); |
|---|
| 81 | 84 | set_capability( "interface", 0 ); |
|---|