Unverified 提交 c72a244c authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov 提交者: GitHub

Merge pull request #949 from katzyn/docs

Fix table borders in PDF and other changes
...@@ -3895,7 +3895,7 @@ CURRENT_TIMESTAMP() ...@@ -3895,7 +3895,7 @@ CURRENT_TIMESTAMP()
"Functions (Time and Date)","DATEADD"," "Functions (Time and Date)","DATEADD","
{ DATEADD| TIMESTAMPADD } (datetimeField, addIntLong, dateAndTime) { DATEADD| TIMESTAMPADD } (datetimeField, addIntLong, dateAndTime)
"," ","
Adds units to a date-time value. The string indicates the unit. Adds units to a date-time value. The datetimeField indicates the unit.
Use negative values to subtract units. Use negative values to subtract units.
addIntLong may be a long value when manipulating milliseconds, addIntLong may be a long value when manipulating milliseconds,
microseconds, or nanoseconds otherwise its range is restricted to int. microseconds, or nanoseconds otherwise its range is restricted to int.
...@@ -3912,7 +3912,7 @@ DATEADD('MONTH', 1, DATE '2001-01-31') ...@@ -3912,7 +3912,7 @@ DATEADD('MONTH', 1, DATE '2001-01-31')
"," ","
Returns the the number of crossed unit boundaries between two date/time values. Returns the the number of crossed unit boundaries between two date/time values.
This method returns a long. This method returns a long.
The string indicates the unit. The datetimeField indicates the unit.
Only TIMEZONE_HOUR and TIMEZONE_MINUTE fields use the time zone offset component. Only TIMEZONE_HOUR and TIMEZONE_MINUTE fields use the time zone offset component.
With all other fields if date/time values have time zone offset component it is ignored. With all other fields if date/time values have time zone offset component it is ignored.
"," ","
......
...@@ -68,8 +68,6 @@ Here is the list of known and confirmed issues: ...@@ -68,8 +68,6 @@ Here is the list of known and confirmed issues:
USA, or within Europe), even if the timezone itself is different. As a workaround, export the USA, or within Europe), even if the timezone itself is different. As a workaround, export the
database to a SQL script using the old timezone, and create a new database in the new database to a SQL script using the old timezone, and create a new database in the new
timezone. timezone.
</li><li>Apache Harmony: there seems to be a bug in Harmony that affects H2.
See <a href="https://issues.apache.org/jira/browse/HARMONY-6505">HARMONY-6505</a>.
</li><li>Tomcat and Glassfish 3 set most static fields (final or non-final) to <code>null</code> when </li><li>Tomcat and Glassfish 3 set most static fields (final or non-final) to <code>null</code> when
unloading a web application. This can cause a <code>NullPointerException</code> in H2 versions unloading a web application. This can cause a <code>NullPointerException</code> in H2 versions
1.1.107 and older, and may still not work in newer versions. Please report it if you 1.1.107 and older, and may still not work in newer versions. Please report it if you
...@@ -81,11 +79,6 @@ Here is the list of known and confirmed issues: ...@@ -81,11 +79,6 @@ Here is the list of known and confirmed issues:
</li><li>Some problems have been found with right outer join. Internally, it is converted </li><li>Some problems have been found with right outer join. Internally, it is converted
to left outer join, which does not always produce the same results as other databases to left outer join, which does not always produce the same results as other databases
when used in combination with other joins. This problem is fixed in H2 version 1.3. when used in combination with other joins. This problem is fixed in H2 version 1.3.
</li><li>When using Install4j before 4.1.4 on Linux and enabling <code>pack200</code>,
the <code>h2*.jar</code> becomes corrupted by the install process, causing application failure.
A workaround is to add an empty file <code>h2*.jar.nopack</code>
next to the <code>h2*.jar</code> file.
This problem is solved in Install4j 4.1.4.
</li></ul> </li></ul>
<p> <p>
For a complete list, see <a href="https://github.com/h2database/h2database/issues">Open Issues</a>. For a complete list, see <a href="https://github.com/h2database/h2database/issues">Open Issues</a>.
......
...@@ -71,9 +71,8 @@ table { ...@@ -71,9 +71,8 @@ table {
th { th {
font-size: 14pt; font-size: 14pt;
font-weight: normal; font-weight: bold;
text-align: left; text-align: left;
background-color: #ece9d8;
border: 1px solid #aca899; border: 1px solid #aca899;
padding: 2px; padding: 2px;
} }
......
...@@ -43,6 +43,7 @@ public class MergeDocs { ...@@ -43,6 +43,7 @@ public class MergeDocs {
text = disableRailroads(text); text = disableRailroads(text);
text = removeHeaderFooter(fileName, text); text = removeHeaderFooter(fileName, text);
text = fixLinks(text); text = fixLinks(text);
text = fixTableBorders(text);
buff.append(text); buff.append(text);
} }
String finalText = buff.toString(); String finalText = buff.toString();
...@@ -103,6 +104,12 @@ public class MergeDocs { ...@@ -103,6 +104,12 @@ public class MergeDocs {
.replaceAll("href=\"tutorial.html\"", "href=\"#tutorial_index\""); .replaceAll("href=\"tutorial.html\"", "href=\"#tutorial_index\"");
} }
private static String fixTableBorders(String text) {
return text
.replaceAll("<table class=\"main\">",
"<table class=\"main\" border=\"1\" cellpadding=\"5\" cellspacing=\"0\">");
}
private static String getContent(String fileName) throws Exception { private static String getContent(String fileName) throws Exception {
File file = new File(BASE_DIR, fileName); File file = new File(BASE_DIR, fileName);
int length = (int) file.length(); int length = (int) file.length();
......
...@@ -766,4 +766,4 @@ interpolated thead ...@@ -766,4 +766,4 @@ interpolated thead
die weekdiff osx subprocess dow proleptic microsecond microseconds divisible cmp denormalized suppressed saturated mcs die weekdiff osx subprocess dow proleptic microsecond microseconds divisible cmp denormalized suppressed saturated mcs
london dfs weekdays intermittent looked msec tstz africa monrovia asia tokyo weekday joi callers multipliers ucn london dfs weekdays intermittent looked msec tstz africa monrovia asia tokyo weekday joi callers multipliers ucn
openoffice organize libre systemtables gmane sea openoffice organize libre systemtables gmane sea borders
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论