nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 1 | ############################################################################### |
amywu | 2573576 | 2006-10-09 22:46:06 +0000 | [diff] [blame] | 2 | # Copyright (c) 2004, 2006 IBM Corporation and others. |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 3 | # All rights reserved. This program and the accompanying materials |
| 4 | # are made available under the terms of the Eclipse Public License v1.0 |
| 5 | # which accompanies this distribution, and is available at |
| 6 | # http://www.eclipse.org/legal/epl-v10.html |
| 7 | # |
| 8 | # Contributors: |
| 9 | # IBM Corporation - initial API and implementation |
amywu | 2573576 | 2006-10-09 22:46:06 +0000 | [diff] [blame] | 10 | # Benjamin Muskalla, b.muskalla@gmx.net - [156040] no new html template for xhtml 1.0 strict |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 11 | ############################################################################### |
| 12 | Templates.comment.name=comment |
| 13 | Templates.comment.desc=comment |
| 14 | Templates.ul.name=ul |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 15 | Templates.ul.desc=unordered list |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 16 | Templates.ul.content=<ul>\n <li> Item one </li>\n <li> Item two </li>\n</ul>\n |
| 17 | Templates.dl.name=dl |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 18 | Templates.dl.desc=definition list |
david_williams | dc38471 | 2005-06-26 04:04:47 +0000 | [diff] [blame] | 19 | Templates.dl.content=<dl>\n <dt> First definition</dt> <dd> First explanation</dd>\n <dt> Second definition</dt> <dd> Second explanation</dd>\n</dl>\n |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 20 | Templates.table.name=table |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 21 | Templates.table.desc=table |
| 22 | Templates.table.content=<table>\n <tr>\n <th>Column 1 Heading</th>\n <th>Column 2 Heading</th>\n </tr>\n <tr>\n <td>Row 1: Col 1</td>\n <td>Row 1: Col 2</td>\n </tr>\n</table>\n |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 23 | Templates.ol.name=ol |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 24 | Templates.ol.desc=ordered list |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 25 | Templates.ol.content=<ol>\n <li> Item one </li>\n <li> Item two </li>\n</ol>\n |
nitind | 938c825 | 2005-09-29 18:36:50 +0000 | [diff] [blame] | 26 | Templates.html.name=New HTML File (4.01 transitional) |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 27 | Templates.html.desc=html 4.01 transitional |
amywu | 58ce686 | 2006-08-14 20:50:00 +0000 | [diff] [blame] | 28 | Templates.html.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}">\n<title>Insert title here</title>\n</head>\n<body>\n${cursor}\n</body>\n</html> |
nitind | 938c825 | 2005-09-29 18:36:50 +0000 | [diff] [blame] | 29 | Templates.htmlframeset.name=New HTML File (4.01 frameset) |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 30 | Templates.htmlframeset.desc=html 4.01 frameset |
amywu | 58ce686 | 2006-08-14 20:50:00 +0000 | [diff] [blame] | 31 | Templates.htmlframeset.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}">\n<title>Insert title here</title>\n</head>\n<frameset>\n <frame>\n <frame>\n <noframes>\n <body>\n <p>This page uses frames. The current browser you are using does not support frames.</p>\n </body>\n </noframes>\n</frameset>\n</html> |
amywu | 5420cd4 | 2006-10-09 21:22:05 +0000 | [diff] [blame] | 32 | Templates.htmlstrict.name=New HTML File (4.01 strict) |
| 33 | Templates.htmlstrict.desc=html 4.01 strict |
| 34 | Templates.htmlstrict.content=<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd">\n<html>\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}">\n<title>Insert title here</title>\n</head>\n<body>\n${cursor}\n</body>\n</html> |
nitind | 938c825 | 2005-09-29 18:36:50 +0000 | [diff] [blame] | 35 | Templates.xhtml.name=New XHTML File (1.0 transitional) |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 36 | Templates.xhtml.desc=xhtml 1.0 transitional |
| 37 | Templates.xhtml.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}" />\n<title>Insert title here</title>\n</head>\n<body>\n${cursor}\n</body>\n</html> |
nitind | 938c825 | 2005-09-29 18:36:50 +0000 | [diff] [blame] | 38 | Templates.xhtmlframeset.name=New XHTML File (1.0 frameset) |
david_williams | 4da6ac01 | 2005-03-15 02:43:58 +0000 | [diff] [blame] | 39 | Templates.xhtmlframeset.desc=xhtml 1.0 frameset |
| 40 | Templates.xhtmlframeset.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}" />\n<title>Insert title here</title>\n</head>\n<frameset>\n <frame />\n <frame />\n <noframes>\n <body>\n <p>This page uses frames. The current browser you are using does not support frames.</p>\n </body>\n </noframes>\n</frameset>\n</html> |
amywu | 5420cd4 | 2006-10-09 21:22:05 +0000 | [diff] [blame] | 41 | Templates.xhtmlstrict.name=New XHTML File (1.0 strict) |
| 42 | Templates.xhtmlstrict.desc=xhtml 1.0 strict |
| 43 | Templates.xhtmlstrict.content=<?xml version="1.0" encoding="${encoding}" ?>\n<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n<html xmlns="http://www.w3.org/1999/xhtml">\n<head>\n<meta http-equiv="Content-Type" content="text/html; charset=${encoding}" />\n<title>Insert title here</title>\n</head>\n<body>\n${cursor}\n</body>\n</html> |
nitind | 958d79a | 2004-11-23 19:23:00 +0000 | [diff] [blame] | 44 | Templates.script.name=script |
| 45 | Templates.script.desc=script (commented) |
| 46 | Templates.script.content=<script type=\"${cursor}text/javascript\">\n<!--\n\n//-->\n</script> |
| 47 | Templates.style.name=style |
| 48 | Templates.style.desc=style (commented) |
| 49 | Templates.style.content=<style>\n<!--\n${cursor}\n-->\n</style> |
| 50 | Templates.imgmap.name=img |
| 51 | Templates.imgmap.desc=img (map) |