Changeset 7d7455f975099d001fe218fd925b20a40e3e422e

Show
Ignore:
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
  • modules/misc/lua/vlc.c

    re10d431 r7d7455f  
    5252 
    5353vlc_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 ); 
    5960    add_submodule(); 
    6061        set_shortname( N_( "Lua Art" ) ); 
     
    7879        add_shortcut( "luatelnet" ); 
    7980        /* add_shortcut( "telnet" ); */ 
     81        add_shortcut( "luahttp" ); 
     82        /* add_shortcut( "http" ); */ 
    8083        set_description( _("Lua Interface Module") ); 
    8184        set_capability( "interface", 0 );