Skip to content

Commit e5ec66c

Browse files
committed
Potential fix for Distribution header
1 parent 532d964 commit e5ec66c

5 files changed

Lines changed: 5 additions & 104 deletions

File tree

34.5 KB
Loading

copyright.html

Lines changed: 0 additions & 99 deletions
This file was deleted.

generate/libraries_local.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{
2323
$source = "api_en/LIB_$lib";
2424
$destination = "libraries/$lib";
25-
make_necessary_directories(DISTDIR.$destination.'/images/include');
25+
//make_necessary_directories(DISTDIR.$destination.'/images/include');
2626

2727
$index = CONTENTDIR.$source.'/index.html';
2828
$page = new LocalPage(ucfirst($lib) . ' \\ Libraries', 'Libraries', 'Libraries', '../../');

java_generate/templates/class.template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<!-- ==================================== HEADER ============================ -->
2929
<div id="header">
30-
<a href="http://processing.org/"><img src="<!-- webcontentpath -->img/processing_cover.gif" alt="Processing cover" title="Back to the cover." /></a>
30+
<a href="http://processing.org/"><img src="<!-- webcontentpath -->img/processing_cover.gif" alt="Processing" title="Processing.org" /></a>
3131
<form name="search" method="get" action="http://www.google.com/search">
3232
<p><input type="hidden" name="as_sitesearch" value="processing.org" />
3333
<input type="text" name="as_q" value="" size="20" class="text" />

templates/template.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class LocalPage extends Page
196196
function LocalPage($title = '', $section = '', $bodyid = '', $rel_path = '')
197197
{
198198
$this->xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
199-
$this->xhtml->set('header', '<a href="http://processing.org/"><img src="'.$rel_path.'img/processing.gif" alt="Processing" title="Go to Processing.org" /></a>');
199+
$this->xhtml->set('header', '<a href="http://processing.org/"><img src="'.$rel_path.'img/processing.gif" alt="Processing" title="Processing.org" /></a>');
200200
$title = ($title == '') ? 'Processing 2+' : $title . ' \ Processing 2+';
201201
$this->xhtml->set('title', $title);
202202
$this->xhtml->set('navigation', local_nav($section, $rel_path));
@@ -218,7 +218,7 @@ function LocalReferencePage(&$ref, $translation, $lang = 'en', $rel_path = '')
218218
$title = $ref->title() .' \ Language (API) \ Processing 2+';
219219

220220
$xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
221-
$xhtml->set('header', '<a href="http://processing.org/"><img src="img/processing.gif" alt="Processing" title="Go to Processing.org" /></a>');
221+
$xhtml->set('header', '<a href="http://processing.org/"><img src="img/processing.gif" alt="Processing" title="Processing.org" /></a>');
222222
$xhtml->set('title', $title);
223223
$xhtml->set('bodyid', 'Langauge');
224224
$xhtml->set('navigation', local_nav('Language'));
@@ -258,7 +258,7 @@ function LocalLibReferencePage(&$ref, $lib, $translation, $rel_path = '../../')
258258
$title = $ref->title() . "\\ $lib \\ Language (API) \\ Processing 2+";
259259

260260
$xhtml = new xhtml_page(TEMPLATEDIR.'template.local.html');
261-
$xhtml->set('header', '<a href="http://processing.org/"><img src="'.$rel_path.'img/processing.gif" alt="Processing.org" title="Go to Processing.org" /></a>');
261+
$xhtml->set('header', '<a href="http://processing.org/"><img src="'.$rel_path.'img/processing.gif" alt="Processing.org" title="Processing.org" /></a>');
262262
$xhtml->set('title', $title);
263263
$xhtml->set('bodyid', 'Library-ref');
264264

0 commit comments

Comments
 (0)