~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/inets/src/inets_app/inets.app.src

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{application,inets,
 
2
 [{description,"INETS  CXC 138 49"},
 
3
  {vsn,"%VSN%"},
 
4
  {modules,[
 
5
            inets,
 
6
            inets_sup,
 
7
            inets_app,                  
 
8
 
 
9
            %% FTP
 
10
            ftp,
 
11
            ftp_progress,       
 
12
            ftp_response,               
 
13
            ftp_sup,
 
14
            
 
15
            %% HTTP client:
 
16
            http,
 
17
            httpc_handler,
 
18
            httpc_manager,
 
19
            httpc_request,
 
20
            httpc_response,     
 
21
            httpc_sup,
 
22
            http_cookie,                
 
23
 
 
24
            http_uri, %% Proably will by used by server also in the future
 
25
 
 
26
            %% HTTP used by both client and server 
 
27
            http_base_64,
 
28
            http_chunk,
 
29
            http_request,
 
30
            http_response,      
 
31
            http_transport,
 
32
            http_util,  
 
33
            
 
34
            %% HTTP server:
 
35
            httpd,
 
36
            httpd_acceptor,
 
37
            httpd_acceptor_sup,
 
38
            httpd_cgi,
 
39
            httpd_conf,
 
40
            httpd_esi,
 
41
            httpd_example,
 
42
            httpd_instance_sup,
 
43
            httpd_manager,
 
44
            httpd_misc_sup,
 
45
            httpd_request,
 
46
            httpd_request_handler,
 
47
            httpd_response,
 
48
            httpd_script_env,
 
49
            httpd_socket,
 
50
            httpd_sup,
 
51
            httpd_util,
 
52
            mod_actions,
 
53
            mod_alias,
 
54
            mod_auth,
 
55
            mod_auth_dets,
 
56
            mod_auth_mnesia,
 
57
            mod_auth_plain,
 
58
            mod_auth_server,
 
59
            mod_browser,
 
60
            mod_cgi,
 
61
            mod_dir,
 
62
            mod_disk_log,
 
63
            mod_esi,
 
64
            mod_get,
 
65
            mod_head,
 
66
            mod_htaccess,
 
67
            mod_include,
 
68
            mod_log,
 
69
            mod_range,
 
70
            mod_responsecontrol,
 
71
            mod_security,
 
72
            mod_security_server,
 
73
            mod_trace,
 
74
            
 
75
            %% TFTP
 
76
            tftp,
 
77
            tftp_binary,
 
78
            tftp_engine,
 
79
            tftp_file,
 
80
            tftp_lib,
 
81
            tftp_sup
 
82
        ]},
 
83
  {registered,[inets_sup, httpc_manager]},
 
84
  {applications,[kernel,stdlib]},
 
85
  {mod,{inets_app,[]}}]}.