~ubuntu-branches/ubuntu/maverick/tomcat6/maverick-updates

« back to all changes in this revision

Viewing changes to native/connector/os/win32/libtcnative.rc

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-01-23 19:40:38 UTC
  • mfrom: (2.2.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100123194038-0tnrf6kiy0wrjrw9
Tags: 6.0.20-dfsg1-1
* Fix debian/orig-tar.sh to exclude binary only standard.jar and jstl.jar.
  (Closes: #528119)
* Upload a cleaned tarball.
* Add ${misc:Depends} in debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#include <windows.h>
2
 
 
3
 
LANGUAGE 0x9,0x1
4
 
1 11 logmessages.bin
5
 
 
6
 
#define TCN_COPYRIGHT "Licensed to the Apache Software Foundation (ASF) under " \
7
 
                      "one or more contributor license agreements.  See the " \
8
 
                      "NOTICE file distributed with this work for additional " \
9
 
                      "information regarding copyright ownership."
10
 
 
11
 
#define TCN_LICENSE  "The ASF licenses this file to You under the Apache " \
12
 
                     "License, Version 2.0 (the ""License""); you may not use " \
13
 
                     "this file except in compliance with the License.  You " \
14
 
                     "may obtain a copy of the License at\r\n\r\n" \
15
 
                     "http://www.apache.org/licenses/LICENSE-2.0\r\n\r\n" \
16
 
                     "Unless required by applicable law or agreed to in " \
17
 
                     "writing, software distributed under the License is " \
18
 
                     "distributed on an ""AS IS"" BASIS, WITHOUT WARRANTIES " \
19
 
                     "OR CONDITIONS OF ANY KIND, either express or implied. " \
20
 
                     "See the License for the specific language governing " \
21
 
                     "permissions and limitations under the License."
22
 
 
23
 
#define TCN_VERISON "1.1.16"
24
 
1000 ICON "apache.ico"
25
 
 
26
 
1001 DIALOGEX 0, 0, 252, 51
27
 
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_CAPTION
28
 
CAPTION "Password prompt"
29
 
FONT 8, "MS Shell Dlg", 0, 0, 0x0
30
 
BEGIN
31
 
    ICON            1000,-1,8,6,21,20
32
 
    LTEXT           "Some of your private key files are encrypted for security reasons.\nIn order to read them you have to provide the pass phrases.",
33
 
                    -1,29,5,220,19
34
 
    LTEXT           "Enter password:",-1,7,28,75,8
35
 
    EDITTEXT        1002,67,27,174,12,ES_PASSWORD | ES_AUTOHSCROLL
36
 
END
37
 
 
38
 
1 VERSIONINFO
39
 
 FILEVERSION 1,1,16,0
40
 
 PRODUCTVERSION 1,1,16,0
41
 
 FILEFLAGSMASK 0x3fL
42
 
#ifdef _DEBUG
43
 
 FILEFLAGS 0x1L
44
 
#else
45
 
 FILEFLAGS 0x0L
46
 
#endif
47
 
 FILEOS 0x40004L
48
 
 FILETYPE 0x1L
49
 
 FILESUBTYPE 0x0L
50
 
BEGIN
51
 
    BLOCK "StringFileInfo"
52
 
    BEGIN
53
 
        BLOCK "040904b0"
54
 
        BEGIN
55
 
            VALUE "Comments",  TCN_LICENSE "\0"
56
 
            VALUE "CompanyName", "Apache Software Foundation\0"
57
 
            VALUE "FileDescription", "Tomcat Native Java Library\0"
58
 
            VALUE "FileVersion", TCN_VERISON "\0"
59
 
            VALUE "InternalName", "libtcnative-1\0"
60
 
            VALUE "LegalCopyright", TCN_COPYRIGHT "\0"
61
 
            VALUE "OriginalFilename", "libtcnative-1.dll\0"
62
 
            VALUE "ProductName", "Tomcat Native Java Library\0"
63
 
            VALUE "ProductVersion", TCN_VERISON "\0"
64
 
        END
65
 
    END
66
 
    BLOCK "VarFileInfo"
67
 
    BEGIN
68
 
        VALUE "Translation", 0x409, 1200
69
 
    END
70
 
END