brewser.brc
上传用户:xinjie
上传日期:2021-05-30
资源大小:491k
文件大小:14k
源码类别:

BREW编程

开发平台:

Visual C++

  1. ###########################################################################
  2. ###########################################################################
  3. ### 
  4. ### BRC (BREW Resource Compiler) File
  5. ### ---------------------------------
  6. ### Each line of a BREW Resource Compiler input file has the form:
  7. ### 
  8. ###    <type> <id> <id_name> {data}
  9. ### 
  10. ### Where:
  11. ###    type    = STRING, IMAGE, and BLOB currently supported
  12. ###    id      = an integer id for the resource
  13. ###    id_name = a symbolic, legal-C-preprocessor token name for use in
  14. ###                the resource header, for "#define XX <id>"
  15. ###    {data}  = for STRING: <type> <SP> <quoted-text>
  16. ###               where <type> is one of: ISOLATIN1, SJIS,
  17. ###                  GB3212 (or EUC_CN), KSC5601 (or EUC_KR), or UTF8
  18. ###              for IMAGE and BLOB: <mimetype> <SP> @<filename>
  19. ###                              or: <mimetype> <SP> <quoted-text>
  20. ### 
  21. ### Notes:
  22. ###    * IMAGE and BLOB resources must have mutually unique ids.
  23. ###    * Only single-byte string formats are supported.
  24. ###    * Lines beginning with '#' are treated as comments.
  25. ###    * STRING resources may contain escape chars r, n, t and octal 
  26. ###       numbers to include a ", use " (just like C)
  27. ### 
  28. ### Examples:
  29. ### 
  30. ### # an ISOLATIN1 string
  31. ### IDS_HI          1   STRING    ISOLATIN1 "hi"
  32. ### 
  33. ### # a bitmap image
  34. ### IDB_HI        101   IMAGE     "image/bmp" @"hi.bmp"
  35. ### 
  36. ### # an html page
  37. ### IDX_HI        201   BLOB      "text/html" @"hi.html"
  38. ### 
  39. ### # an html page inline
  40. ### IDX_INLHI     202   BLOB      "text/html" "<html>hi</html>"
  41. ##############################################################################
  42. ###########################################################################
  43. ###########################################################################
  44. # BREWser strings, config values start at 100, rest start at 1
  45. ###########################################################################
  46. #
  47. # config defaults 
  48. #
  49. IDS_DEFHOMEPAGE        100 STRING ISOLATIN1 "res:/brewser.bar?2000"
  50. IDS_DEFMAILTO          101 STRING ISOLATIN1 "http://brewser.qualcomm.com/mailto/?to="
  51. IDS_DEFPROXYSETTINGS   102 STRING ISOLATIN1 "ftpon=1&amp;ftphost=brewser.qualcomm.com&amp;ftpport=65456&amp;gophon=1&amp;gophhost=brewser.qualcomm.com&amp;gophport=65456"
  52. #
  53. # tooltips
  54. #
  55. IDS_BACK                1 STRING ISOLATIN1 "Back"
  56. IDS_STOP                2 STRING ISOLATIN1 "Stop"
  57. IDS_REFRESH             3 STRING ISOLATIN1 "Refresh"
  58. IDS_GOTO                4 STRING ISOLATIN1 "Goto..."
  59. IDS_INFO                5 STRING ISOLATIN1 "Info"
  60. IDS_BOOKMARKS           6 STRING ISOLATIN1 "Bookmarks"
  61. IDS_HELP                7 STRING ISOLATIN1 "Help"
  62. IDS_OPT                 8 STRING ISOLATIN1 "Options"
  63. #
  64. # status stuff, these show up under the status bar
  65. #
  66. IDS_STATSTART          10 STRING ISOLATIN1 "starting..."
  67. IDS_STATGETHOSTBYNAME  11 STRING ISOLATIN1 "finding host..."
  68. IDS_STATCONNECT        12 STRING ISOLATIN1 "connecting..."
  69. IDS_STATSEND           13 STRING ISOLATIN1 "sending..."
  70. IDS_STATCANCEL         14 STRING ISOLATIN1 "cancelled..."
  71. IDS_STATRECV           15 STRING ISOLATIN1 "receiving..."
  72. #
  73. # these four used to desribe page info and cookie state,
  74. #   they need to be in the same character set as the 
  75. #   pageinfo.html and cfgcookies.html pages below
  76. #
  77. IDS_UNKNOWN            16 STRING ISOLATIN1 "Unknown"
  78. IDS_UNTITLED           17 STRING ISOLATIN1 "Untitled"
  79. IDS_ENABLED            18 STRING ISOLATIN1 "enabled"
  80. IDS_DISABLED           19 STRING ISOLATIN1 "disabled"
  81. #
  82. # Error descriptions, these get inserted into errpage.html, and
  83. #  so need to be in the same character set as errpage.html
  84. #  These also need to be arranged like their AEEError counterparts, 
  85. #  starting from 8000 hex
  86. #
  87. # catchall
  88. #
  89. IDS_ERRDESC_UNKNOWN              0x8000 STRING ISOLATIN1 "No error description is available"
  90. #
  91. # web errors start at 0x500
  92. #
  93. IDS_ERRDESC_WEB_PROTOCOL         0x8501 STRING ISOLATIN1 "BREW web protocol error"
  94. IDS_ERRDESC_WEB_BADURL           0x8502 STRING ISOLATIN1 "Invalid or malformed URL"
  95. IDS_ERRDESC_WEB_BADHOSTNAME      0x8503 STRING ISOLATIN1 "Invalid server hostname in URL"
  96. IDS_ERRDESC_WEB_BADPORT          0x8504 STRING ISOLATIN1 "Invalid port number in URL"
  97. IDS_ERRDESC_WEB_UNSUPSCHEME      0x8505 STRING ISOLATIN1 "Unsupported URL scheme"
  98. IDS_ERRDESC_WEB_DNSCONFIG        0x8506 STRING ISOLATIN1 "No DNS servers configured"
  99. IDS_ERRDESC_WEB_DNSTIMEOUT       0x8507 STRING ISOLATIN1 "No response from DNS server, request timed out"
  100. IDS_ERRDESC_WEB_ADDRUNKNOWN      0x8508 STRING ISOLATIN1 "Host lookup failed, address not found"
  101. IDS_ERRDESC_WEB_CONNECT          0x8509 STRING ISOLATIN1 "Could not establish a connection to server"
  102. IDS_ERRDESC_WEB_SEND             0x850A STRING ISOLATIN1 "Error occurred while sending data to server"
  103. IDS_ERRDESC_WEB_RECV             0x850B STRING ISOLATIN1 "Error occurred while receiving data from server"
  104. IDS_ERRDESC_WEB_BADRESPONSE      0x850C STRING ISOLATIN1 "Server response could not be understood"
  105. IDS_ERRDESC_WEB_BODYLENGTH       0x850D STRING ISOLATIN1 "Unable to send POST body, length unknown"
  106. IDS_ERRDESC_WEB_PROXYSPEC        0x850E STRING ISOLATIN1 "Proxy configuration error"
  107. IDS_ERRDESC_WEB_SSL              0x850F STRING ISOLATIN1 "SSL error"
  108. #
  109. # cert/security errors start at 0x0x600
  110. #
  111. IDS_ERRDESC_X509_BAD_CERT        0x8614 STRING ISOLATIN1 "Certificate couldn't be parsed (maybe it's not an X.509 cert)"
  112. IDS_ERRDESC_X509_BAD_VALIDITY    0x8615 STRING ISOLATIN1 "The validity dates in the certificate can't be parsed"
  113. IDS_ERRDESC_X509_BAD_KEY         0x8616 STRING ISOLATIN1 "The certificate's public key is understood but can't be parsed"
  114. IDS_ERRDESC_X509_UNKNOWN_KEY     0x8617 STRING ISOLATIN1 "Certificate has unknown public key type (wrong algorithm)"
  115. IDS_ERRDESC_X509_UNKNOWN_SIG     0x8618 STRING ISOLATIN1 "The signature on the certificate is unknown"
  116. IDS_ERRDESC_X509_NO_LEAF         0x8619 STRING ISOLATIN1 "Couldn't check certificate chain - there's no leaf certificate"
  117. IDS_ERRDESC_X509_NO_PART         0x861A STRING ISOLATIN1 "Couldn't find certificate's field part"
  118. IDS_ERRDESC_X509_NO_CHAIN_YET    0x861B STRING ISOLATIN1 "Certificate chain hasn't been computed"
  119. #
  120. # ssl errors start at 0x0xa00
  121. #
  122. IDS_ERRDESC_SSL_SECURED            0x8A00 STRING ISOLATIN1 "SSL connection was secured"
  123. IDS_ERRDESC_SSL_ALGS_ERR           0x8A01 STRING ISOLATIN1 "No SSL cipher algorithms in common"
  124. IDS_ERRDESC_SSL_TRUST_ERR          0x8A02 STRING ISOLATIN1 "Overridable SSL trust error"
  125. IDS_ERRDESC_SSL_CERT_ERR           0x8A03 STRING ISOLATIN1 "Non overridable SSL certificate problem"
  126. IDS_ERRDESC_SSL_PROTO_ERR          0x8A04 STRING ISOLATIN1 "Some fundamental error with the SSL protocol interaction"
  127. IDS_ERRDESC_SSL_CLIENT_AUTH_ERR    0x8A05 STRING ISOLATIN1 "SSL client authentication is required by server"
  128. IDS_ERRDESC_SSL_CLOSED             0x8A06 STRING ISOLATIN1 "Session was securely closed"
  129. IDS_ERRDESC_SSL_HANDSHAKE          0x8A07 STRING ISOLATIN1 "SSL handshake error (likely a bad mac error)"
  130. IDS_ERRDESC_SSL_UNINITIALIZED      0x8A08 STRING ISOLATIN1 "SSL uninitialized"
  131. IDS_ERRDESC_SSL_ERR                0x8A09 STRING ISOLATIN1 "General SSL error"
  132. IDS_ERRDESC_SSL_VERS_UNSUP         0x8A0A STRING ISOLATIN1 "Client doesn't support SSL protocol version"
  133. IDS_ERRDESC_SSL_CSUITE_UNSUP       0x8A0B STRING ISOLATIN1 "Client doesn't support any of the requested SSL cipher suites"
  134. IDS_ERRDESC_SSL_SERV_VERS          0x8A0C STRING ISOLATIN1 "Server doesn't support SSL protocol version"
  135. IDS_ERRDESC_SSL_TRUST_CHECK        0x8A0D STRING ISOLATIN1 "Pending SSL trust checks"
  136. IDS_ERRDESC_SSL_SOCKET_ERROR       0x8A0E STRING ISOLATIN1 "SSL got an underlying socket error"
  137. IDS_ERRDESC_SSL_SECURITY_LEVEL_ERR 0x8A0F STRING ISOLATIN1 "SSL Security level mismatch (can't re-use connection)"
  138. IDS_ERRDESC_SSL_CLOSE_NOTIFY_SENT  0x8A10 STRING ISOLATIN1 "SSL 'close notify' was sent, but have not received server's close notify"
  139. IDS_ERRDESC_SSL_BAD_SERVER_KEY     0x8A11 STRING ISOLATIN1 "SSL server's key is bad (the key in the server's certificate)"
  140. IDS_ERRDESC_SSL_BAD_STATE          0x8A12 STRING ISOLATIN1 "SSL state error"
  141. ###########################################################################
  142. # BREWser html, start 'em out at 2000
  143. ###########################################################################
  144. IDX_DEFAULTHOME       2000 BLOB  "text/html" @".\res\en\defaulthome.html"
  145. IDX_HELP              2001 BLOB  "text/html" @".\res\en\help.html"
  146. IDX_HELPLINK          2002 BLOB  "text/html" @".\res\en\helplink.html"
  147. IDX_ASSERT            2003 BLOB  "text/html" @".\res\en\assert.html"
  148. IDX_AUTH              2004 BLOB  "text/html" @".\res\en\auth.html"
  149. IDX_BKMACTION         2005 BLOB  "text/html" @".\res\en\bkmaction.html"
  150. IDX_BKMADD            2006 BLOB  "text/html" @".\res\en\bkmadd.html"
  151. IDX_BKMDEL            2007 BLOB  "text/html" @".\res\en\bkmdel.html"
  152. IDX_BKMDELX           2008 BLOB  "text/html" @".\res\en\bkmdelx.html"
  153. IDX_BKMEDIT           2009 BLOB  "text/html" @".\res\en\bkmedit.html"
  154. IDX_BKMLIST           2010 BLOB  "text/html" @".\res\en\bkmlisttitle.html"
  155. IDX_BKMSAVED          2011 BLOB  "text/html" @".\res\en\bkmsaved.html"
  156. IDX_CERTCHECK         2012 BLOB  "text/html" @".\res\en\certcheck.html"
  157. IDX_CFGCOOKDEL        2013 BLOB  "text/html" @".\res\en\cfgcookdel.html"
  158. IDX_CFGCOOKDELX       2014 BLOB  "text/html" @".\res\en\cfgcookdelx.html"
  159. IDX_CFGCOOKIES        2015 BLOB  "text/html" @".\res\en\cfgcookies.html"
  160. IDX_CFGCOOKINFO       2016 BLOB  "text/html" @".\res\en\cfgcookinfo.html"
  161. IDX_CFGCOOKSUB        2017 BLOB  "text/html" @".\res\en\cfgcooksub.html"
  162. IDX_CFGHOMEPAGE       2018 BLOB  "text/html" @".\res\en\cfghomepage.html"
  163. IDX_CFGHOMEPAGERES    2019 BLOB  "text/html" @".\res\en\cfghomepageres.html"
  164. IDX_CFGHOMEPAGERESX   2020 BLOB  "text/html" @".\res\en\cfghomepageresx.html"
  165. IDX_CFGHOMEPAGESUB    2021 BLOB  "text/html" @".\res\en\cfghomepagesub.html"
  166. IDX_CFGMAIL           2022 BLOB  "text/html" @".\res\en\cfgmail.html"
  167. IDX_CFGMAILRES        2023 BLOB  "text/html" @".\res\en\cfgmailres.html"
  168. IDX_CFGMAILRESX       2024 BLOB  "text/html" @".\res\en\cfgmailresx.html"
  169. IDX_CFGMAILSUB        2025 BLOB  "text/html" @".\res\en\cfgmailsub.html"
  170. IDX_CFGMENU           2026 BLOB  "text/html" @".\res\en\cfgmenu.html"
  171. IDX_CFGPROXY          2027 BLOB  "text/html" @".\res\en\cfgproxy.html"
  172. IDX_CFGPROXYRES       2028 BLOB  "text/html" @".\res\en\cfgproxyres.html"
  173. IDX_CFGPROXYRESX      2029 BLOB  "text/html" @".\res\en\cfgproxyresx.html"
  174. IDX_CFGPROXYSUB       2030 BLOB  "text/html" @".\res\en\cfgproxysub.html"
  175. IDX_EFAILED           2031 BLOB  "text/html" @".\res\en\efailed.html"
  176. IDX_ERRPAGE           2032 BLOB  "text/html" @".\res\en\errpage.html"
  177. IDX_EXITPROMPT        2034 BLOB  "text/html" @".\res\en\exitprompt.html"
  178. IDX_GOTO              2035 BLOB  "text/html" @".\res\en\goto.html"
  179. IDX_GOTORECENT        2036 BLOB  "text/html" @".\res\en\gotorecent.html"
  180. IDX_INTERNALPAGEINFO  2039 BLOB  "text/html" @".\res\en\internalpageinfo.html"
  181. IDX_PROXYAUTH         2040 BLOB  "text/html" @".\res\en\proxyauth.html"
  182. IDX_REFRESHPROMPT     2041 BLOB  "text/html" @".\res\en\refreshprompt.html"
  183. IDX_SSLPAGEINFO       2042 BLOB  "text/html" @".\res\en\sslpageinfo.html"
  184. IDX_STOPPED           2043 BLOB  "text/html" @".\res\en\stopped.html"
  185. IDX_VERSION           2044 BLOB  "text/html" @".\res\en\version.html"
  186. IDX_PAGEINFO          2048 BLOB  "text/html" @".\res\en\pageinfo.html"
  187.  
  188. ###########################################################################
  189. # BREWser images, start 'em out at 1001
  190. ###########################################################################
  191. IDB_GOTO              1001  IMAGE "image/bmp" @".\res\8bit\goto.bmp"
  192. IDB_OPT               1002  IMAGE "image/bmp" @".\res\8bit\opt.bmp"
  193. IDB_HELP              1003  IMAGE "image/bmp" @".\res\8bit\help.bmp"
  194. IDB_BACK              1004  IMAGE "image/bmp" @".\res\8bit\back.bmp"
  195. IDB_STOP              1005  IMAGE "image/bmp" @".\res\8bit\stop.bmp"
  196. IDB_REFRESH           1006  IMAGE "image/bmp" @".\res\8bit\refresh.bmp"
  197. IDB_STATUS            1007  IMAGE "image/bmp" @".\res\8bit\status.bmp"
  198. IDI_STATUS_INFO       1007  BINARY =4100C800  # 2 words of info, frame width and frame duration
  199. IDB_SSLINFO           1008  IMAGE "image/bmp" @".\res\8bit\sslinfo.bmp"
  200. IDB_INFO              1009  IMAGE "image/bmp" @".\res\8bit\info.bmp"
  201. IDB_BOOKMARKS         1010  IMAGE "image/bmp" @".\res\8bit\bkmks.bmp"
  202. IDB_ADDBKMK           1011  IMAGE "image/bmp" @".\res\8bit\addbkmk.bmp"
  203. IDB_ADDBKMK_LG        1012  IMAGE "image/bmp" @".\res\8bit\addbkmk-lg.bmp"
  204. IDB_OPT_LG            1013  IMAGE "image/bmp" @".\res\8bit\opt-lg.bmp"
  205. IDB_BKMKS_LG          1014  IMAGE "image/bmp" @".\res\8bit\bkmks-lg.bmp"
  206. IDB_INFO_LG           1015  IMAGE "image/bmp" @".\res\8bit\info-lg.bmp"
  207. IDB_GOTO_LG           1016  IMAGE "image/bmp" @".\res\8bit\goto-lg.bmp"
  208. IDB_SSLINFO_LG        1017  IMAGE "image/bmp" @".\res\8bit\sslinfo-lg.bmp"
  209. IDB_HELP_LG           1018  IMAGE "image/bmp" @".\res\8bit\help-lg.bmp"
  210. IDB_BANG_LG           1019  IMAGE "image/bmp" @".\res\8bit\bang-lg.bmp"
  211. #
  212. # these identical to their non-img versions above, but used as inline 
  213. #  images in html
  214. #
  215. IDB_IMG_GOTO              1020  IMAGE "image/bmp" @".\res\8bit\goto-img.bmp"
  216. IDB_IMG_OPT               1021  IMAGE "image/bmp" @".\res\8bit\opt-img.bmp"
  217. IDB_IMG_HELP              1022  IMAGE "image/bmp" @".\res\8bit\help-img.bmp"
  218. IDB_IMG_BACK              1023  IMAGE "image/bmp" @".\res\8bit\back-img.bmp"
  219. IDB_IMG_STOP              1024  IMAGE "image/bmp" @".\res\8bit\stop-img.bmp"
  220. IDB_IMG_REFRESH           1025  IMAGE "image/bmp" @".\res\8bit\refresh-img.bmp"
  221. IDB_IMG_SSLINFO           1026  IMAGE "image/bmp" @".\res\8bit\sslinfo-img.bmp"
  222. IDB_IMG_INFO              1027  IMAGE "image/bmp" @".\res\8bit\info-img.bmp"
  223. IDB_IMG_BOOKMARKS         1028  IMAGE "image/bmp" @".\res\8bit\bkmks-img.bmp"