1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
Description: Remove remote image from documentation
Author: Stephen Kitt <skitt@debian.org>
The image is no longer even available at the given URL.
--- a/Documentation/Reference/class.plg
+++ b/Documentation/Reference/class.plg
@@ -91,9 +91,6 @@
<body bgcolor=white text=black link=blue vlink=#800080>
-<center>
-<img src="http://clanlib.org/gfx/clanlib.png">
-</center>
<!-- clanlib header end -->
<center>
--- a/Documentation/Tutorial/Kavanek/default.xsl
+++ b/Documentation/Tutorial/Kavanek/default.xsl
@@ -41,7 +41,7 @@
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td align="center">
- <h1><a href="http://www.clanlib.org"><img style="border-style: none; padding-right: 130px;" src="http://clanlib.org/gfx/clanlib.png" alt="ClanLib" /></a></h1>
+ <h1><a href="http://www.clanlib.org">ClanLib</a></h1>
</td>
</tr>
</table>
--- a/Utilities/ReferenceDocs/main.cpp
+++ b/Utilities/ReferenceDocs/main.cpp
@@ -225,9 +225,6 @@
class_file << "--></STYLE>" << std::endl;
class_file << "</HEAD>" << std::endl;
class_file << "<body bgcolor=white text=black link=blue vlink=#800080>" << std::endl;
- class_file << "<center>" << std::endl;
- class_file << "<img src=\"http://clanlib.org/gfx/clanlib.png\">" << std::endl;
- class_file << "</center>" << std::endl;
class_file << "<!-- clanlib header end -->" << std::endl;
class_file << "<center>" << std::endl;
class_file << "<p>" << std::endl;
@@ -473,9 +470,6 @@
function_file << "--></STYLE>" << std::endl;
function_file << "</HEAD>" << std::endl;
function_file << "<body bgcolor=white text=black link=blue vlink=#800080>" << std::endl;
- function_file << "<center>" << std::endl;
- function_file << "<img src=\"http://clanlib.org/gfx/clanlib.png\">" << std::endl;
- function_file << "</center>" << std::endl;
function_file << "<!-- clanlib header end -->" << std::endl;
function_file << "<center>" << std::endl;
function_file << "<p>" << std::endl;
@@ -695,9 +689,6 @@
function_file << "--></STYLE>" << std::endl;
function_file << "</HEAD>" << std::endl;
function_file << "<body bgcolor=white text=black link=blue vlink=#800080>" << std::endl;
- function_file << "<center>" << std::endl;
- function_file << "<img src=\"http://clanlib.org/gfx/clanlib.png\">" << std::endl;
- function_file << "</center>" << std::endl;
function_file << "<!-- clanlib header end -->" << std::endl;
function_file << "<center>" << std::endl;
function_file << "<p>" << std::endl;
@@ -879,9 +870,6 @@
function_file << "--></STYLE>" << std::endl;
function_file << "</HEAD>" << std::endl;
function_file << "<body bgcolor=white text=black link=blue vlink=#800080>" << std::endl;
- function_file << "<center>" << std::endl;
- function_file << "<img src=\"http://clanlib.org/gfx/clanlib.png\">" << std::endl;
- function_file << "</center>" << std::endl;
function_file << "<!-- clanlib header end -->" << std::endl;
function_file << "<center>" << std::endl;
function_file << "<p>" << std::endl;
@@ -995,9 +983,6 @@
function_file << "--></STYLE>" << std::endl;
function_file << "</HEAD>" << std::endl;
function_file << "<body bgcolor=white text=black link=blue vlink=#800080>" << std::endl;
- function_file << "<center>" << std::endl;
- function_file << "<img src=\"http://clanlib.org/gfx/clanlib.png\">" << std::endl;
- function_file << "</center>" << std::endl;
function_file << "<!-- clanlib header end -->" << std::endl;
function_file << "<center>" << std::endl;
function_file << "<p>" << std::endl;
|