[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb:[4647] branches/1.3/templates



Revision: 4647
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4647&view=rev
Author:   ehuelsmann
Date:     2012-04-15 17:55:17 +0000 (Sun, 15 Apr 2012)
Log Message:
-----------
Add DOCTYPE and HEAD section to HTML templates, saying they're UTF-8 encoded.
This a requirement for me on Windows with Chrome for the downloaded files
to render correctly.

Modified Paths:
--------------
    branches/1.3/templates/demo/ap_transaction.html
    branches/1.3/templates/demo/ar_transaction.html
    branches/1.3/templates/demo/bin_list.html
    branches/1.3/templates/demo/packing_list.html
    branches/1.3/templates/demo/pick_list.html
    branches/1.3/templates/demo/purchase_order.html
    branches/1.3/templates/demo/request_quotation.html
    branches/1.3/templates/demo/sales_order.html
    branches/1.3/templates/demo/sales_quotation.html
    branches/1.3/templates/demo/statement.html
    branches/1.3/templates/demo/timecard.html
    branches/1.3/templates/demo/work_order.html
    branches/1.3/templates/xedemo/ap_transaction.html
    branches/1.3/templates/xedemo/ar_transaction.html
    branches/1.3/templates/xedemo/bin_list.html
    branches/1.3/templates/xedemo/packing_list.html
    branches/1.3/templates/xedemo/pick_list.html
    branches/1.3/templates/xedemo/purchase_order.html
    branches/1.3/templates/xedemo/request_quotation.html
    branches/1.3/templates/xedemo/sales_order.html
    branches/1.3/templates/xedemo/sales_quotation.html
    branches/1.3/templates/xedemo/statement.html
    branches/1.3/templates/xedemo/timecard.html
    branches/1.3/templates/xedemo/work_order.html

Modified: branches/1.3/templates/demo/ap_transaction.html
===================================================================
--- branches/1.3/templates/demo/ap_transaction.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/ap_transaction.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('AP Transaction') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/ar_transaction.html
===================================================================
--- branches/1.3/templates/demo/ar_transaction.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/ar_transaction.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('AR Transaction') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/bin_list.html
===================================================================
--- branches/1.3/templates/demo/bin_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/bin_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Bin List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/packing_list.html
===================================================================
--- branches/1.3/templates/demo/packing_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/packing_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Packing List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/pick_list.html
===================================================================
--- branches/1.3/templates/demo/pick_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/pick_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Pick List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/purchase_order.html
===================================================================
--- branches/1.3/templates/demo/purchase_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/purchase_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Purchase Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/request_quotation.html
===================================================================
--- branches/1.3/templates/demo/request_quotation.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/request_quotation.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Request for Quotation') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/sales_order.html
===================================================================
--- branches/1.3/templates/demo/sales_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/sales_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Sales Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/sales_quotation.html
===================================================================
--- branches/1.3/templates/demo/sales_quotation.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/sales_quotation.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Quotation') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/statement.html
===================================================================
--- branches/1.3/templates/demo/statement.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/statement.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Statement') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <?lsmb FOREACH customer IN data ?>

Modified: branches/1.3/templates/demo/timecard.html
===================================================================
--- branches/1.3/templates/demo/timecard.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/timecard.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Time Card') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/demo/work_order.html
===================================================================
--- branches/1.3/templates/demo/work_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/demo/work_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Work Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/xedemo/ap_transaction.html
===================================================================
--- branches/1.3/templates/xedemo/ap_transaction.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/ap_transaction.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('AP Transaction') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/ar_transaction.html
===================================================================
--- branches/1.3/templates/xedemo/ar_transaction.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/ar_transaction.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('AR Transaction') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/bin_list.html
===================================================================
--- branches/1.3/templates/xedemo/bin_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/bin_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Bin List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/packing_list.html
===================================================================
--- branches/1.3/templates/xedemo/packing_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/packing_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Packing List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/pick_list.html
===================================================================
--- branches/1.3/templates/xedemo/pick_list.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/pick_list.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Pick List') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/purchase_order.html
===================================================================
--- branches/1.3/templates/xedemo/purchase_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/purchase_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Purchase Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/request_quotation.html
===================================================================
--- branches/1.3/templates/xedemo/request_quotation.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/request_quotation.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Request for Quotation') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/sales_order.html
===================================================================
--- branches/1.3/templates/xedemo/sales_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/sales_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Sales Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/xedemo/sales_quotation.html
===================================================================
--- branches/1.3/templates/xedemo/sales_quotation.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/sales_quotation.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Quotation') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/statement.html
===================================================================
--- branches/1.3/templates/xedemo/statement.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/statement.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Statement') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 
 <body bgcolor=ffffff>
 

Modified: branches/1.3/templates/xedemo/timecard.html
===================================================================
--- branches/1.3/templates/xedemo/timecard.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/timecard.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,3 +1,9 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Time Card') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

Modified: branches/1.3/templates/xedemo/work_order.html
===================================================================
--- branches/1.3/templates/xedemo/work_order.html	2012-04-13 09:59:19 UTC (rev 4646)
+++ branches/1.3/templates/xedemo/work_order.html	2012-04-15 17:55:17 UTC (rev 4647)
@@ -1,4 +1,9 @@
-
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html>
+<head>
+  <title><?lsmb text('Work Order') ?></title>
+  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+</head>
 <body bgcolor=ffffff>
 
 <table width="100%">

This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.