aboutsummaryrefslogtreecommitdiffstats
path: root/Resources
diff options
context:
space:
mode:
authorbamse16 <marius@marius.me.uk>2009-04-11 09:14:42 +0000
committerbamse16 <marius@marius.me.uk>2009-04-11 09:14:42 +0000
commit1824ae6360c9ce1897e75404163d39df08ee5fbf (patch)
tree0eca1f6f4cb42e08f25e44a4683aecfb5881aac2 /Resources
parent41f8cde09ff77996339cabc71517496976beee2e (diff)
downloadsequelpro-1824ae6360c9ce1897e75404163d39df08ee5fbf.tar.gz
sequelpro-1824ae6360c9ce1897e75404163d39df08ee5fbf.tar.bz2
sequelpro-1824ae6360c9ce1897e75404163d39df08ee5fbf.zip
Added printing support via WebKit WebView
Diffstat (limited to 'Resources')
-rw-r--r--Resources/sequel-pro-print-template.html75
1 files changed, 75 insertions, 0 deletions
diff --git a/Resources/sequel-pro-print-template.html b/Resources/sequel-pro-print-template.html
new file mode 100644
index 00000000..b0eb0960
--- /dev/null
+++ b/Resources/sequel-pro-print-template.html
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html dir="ltr" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml" lang="en">
+<head>
+<title>Sequel Pro</title>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<style type="text/css" media="all">
+html {
+ font-size:82%;
+}
+input, select, textarea {
+ font-size:1em;
+}
+div.item label {
+ white-space:nowrap;
+}
+.nowrap {
+ white-space:nowrap;
+}
+div.nowrap {
+ margin:0;
+ padding:0;
+}
+body, table, th, td {
+ background-color:#FFFFFF;
+ color:#000000;
+}
+img {
+ border:0 none;
+}
+table, th, td {
+ border:0.1em solid #000000;
+}
+
+table {
+ border-collapse:collapse;
+ border-spacing:0;
+ width: 100%;
+}
+
+th, td {
+ padding:0.2em;
+}
+th {
+ background-color:#E5E5E5;
+ font-weight:bold;
+}
+
+tr > td {
+ text-align: left;
+}
+</style>
+</head>
+
+<body>
+<p>
+ <b>Connection:</b> {{c.username}}{% if c.username %}@{% /if %}{{c.hostname}}{% if c.port %}:{% /if %}{{c.port}}/{{c.database}}<br>
+ <b>Generated on:</b> {% now | date_format: "dd MMM yyyy 'at' HH:mm:ss" %} by {{c.version}}<br>
+ {% if c.query %}<b>SQL query:</b> {{c.query}}{% /if %}
+ <br>
+</p>
+<table id="table_results" class="data">
+<thead><tr>
+{% for column in columns %}<th>{{ column }}</th>{% /for %}
+</tr></thead>
+
+<tbody>
+{% for row in rows %}
+<tr>
+ {% for cell in row %}<td>{{ cell }}</td>{% /for %}
+</tr>
+{% /for %}
+</tbody>
+</table>
+
+</body></html> \ No newline at end of file