Project

General

Profile

« Previous | Next » 

Revision 1264

Added by Dietmar over 14 years ago

Ticket #916 Update backend theme footer

View differences:

branches/2.8.x/CHANGELOG
11 11
! = Update/Change
12 12
 
13 13
------------------------------------- 2.8.1 -------------------------------------
14
22-Jan-2010 Dietmar Woellbrink (Luisehahne)
15
!	Ticket #916 Update backend theme footer
14 16
21-Jan-2010 Dietmar Woellbrink (Luisehahne)
15 17
!	updated YUI 2.4.1 to 2.8.0r4
16 18
21-Jan-2010 Dietmar Woellbrink (Luisehahne)
branches/2.8.x/wb/admin/interface/version.php
55 55

  
56 56
// check if defined to avoid errors during installation (redirect to admin panel fails if PHP error/warnings are enabled)
57 57
if(!defined('VERSION')) define('VERSION', '2.8.1');
58
if(!defined('REVISION')) define('REVISION', '1263');
58
if(!defined('REVISION')) define('REVISION', '1264');
59 59

  
60 60
?>
branches/2.8.x/wb/templates/classic_theme/jquery/jquery-plugins.js
8 8
        if($(".jsadmin").length) {
9 9
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
10 10
          }
11
/*
12
        if($("a[rel^='lightbox']").length) {
13
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
14
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
15
          }
16
        if($("textarea.markitup").length) {
17
            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
18
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
19
            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
20
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
11
	//Add external link class to external links -
12
	$('a[href^="http://"]').filter(function() {
13
		//Compare the anchor tag's host name with location's host name
14
	    return this.hostname && this.hostname !== location.hostname;
15
	  }).addClass("external").attr("target", "_blank");
21 16

  
22
        	// Add markItUp! to your textarea in one line
23
        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
24
        	$('textarea.markitup').markItUp(mySettings);
17
	/* Add internal link class to external links -   */
18
	$('a[href^="http://"]').filter(function() {
19
		//Compare the anchor tag's host name with location's host name
20
	    return this.hostname && this.hostname == location.hostname;
21
	  }).addClass("internal");
25 22

  
26
         }
27
 */
28 23
});
branches/2.8.x/wb/templates/classic_theme/templates/footer.htt
5 5

  
6 6
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
7 7
<tr>
8
	<td align="center" style="font-size: 10px;">
8
	<td align="center" style="font-size: 12px;">
9 9
		<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
10
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
10
		<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
11 11
		is	released under the
12
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
12
		<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
13 13
		<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
14 14
	</td>
15 15
</tr>
branches/2.8.x/wb/templates/wb_theme/jquery/jquery-plugins.js
8 8
        if($(".jsadmin").length) {
9 9
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
10 10
          }
11
/*
12
        if($("a[rel^='lightbox']").length) {
13
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
14
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
15
          }
16
        if($("textarea.markitup").length) {
17
            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
18
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
19
            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
20
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
21 11

  
22
        	// Add markItUp! to your textarea in one line
23
        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
24
        	$('textarea.markitup').markItUp(mySettings);
12
	//Add external link class to external links -
13
	$('a[href^="http://"]').filter(function() {
14
		//Compare the anchor tag's host name with location's host name
15
	    return this.hostname && this.hostname !== location.hostname;
16
	  }).addClass("external").attr("target", "_blank");
25 17

  
26
         }
27
 */
18
	/* Add internal link class to external links -   */
19
	$('a[href^="http://"]').filter(function() {
20
		//Compare the anchor tag's host name with location's host name
21
	    return this.hostname && this.hostname == location.hostname;
22
	  }).addClass("internal");
23

  
28 24
});
branches/2.8.x/wb/templates/wb_theme/templates/footer.htt
5 5

  
6 6
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0px 10px 0px;">
7 7
<tr>
8
	<td align="center" style="font-size: 10px;">
8
	<td align="center" style="font-size: 12px;">
9 9
		<!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
10
		<a href="http://www.websitebaker.org/" style="color: #000000;" target="_blank">Website Baker</a>
11
		is	released under the
12
		<a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU General Public License</a>
10
		<a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
11
		is released under the
12
		<a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU General Public License</a>
13 13
		<!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
14 14
	</td>
15 15
</tr>
branches/2.8.x/wb/templates/argos_theme/jquery/jquery-plugins.js
8 8
        if($(".jsadmin").length) {
9 9
            $.insert(WB_URL+"/modules/jsadmin/backend.css");
10 10
          }
11
/*
12
        if($("a[rel^='lightbox']").length) {
13
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2.css");
14
            $.insert(WB_URL+"/include/jquery/plugins/jquery-slimbox2-min.js");
15
          }
16
        if($("textarea.markitup").length) {
17
            $.insert(WB_URL+'/modules/markitup/latest/skins/markitup/style.css');
18
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/style.css');
19
            $.insert(WB_URL+'/modules/markitup/latest/jquery.markitup.pack.js');
20
            $.insert(WB_URL+'/modules/markitup/latest/sets/default/set.js');
11
	//Add external link class to external links -
12
	$('a[href^="http://"]').filter(function() {
13
		//Compare the anchor tag's host name with location's host name
14
	    return this.hostname && this.hostname !== location.hostname;
15
	  }).addClass("external").attr("target", "_blank");
21 16

  
22
        	// Add markItUp! to your textarea in one line
23
        	// $('textarea.markitup').markItUp( { Settings }, { OptionalExtraSettings } );
24
        	$('textarea.markitup').markItUp(mySettings);
17
	/* Add internal link class to external links -   */
18
	$('a[href^="http://"]').filter(function() {
19
		//Compare the anchor tag's host name with location's host name
20
	    return this.hostname && this.hostname == location.hostname;
21
	  }).addClass("internal");
25 22

  
26
         }
27
 */
28 23
});
branches/2.8.x/wb/templates/argos_theme/templates/footer.htt
6 6

  
7 7
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="padding: 10px 0;">
8 8
  <tr>
9
    <td align="center" style="font-size:10px;width:900px;">
9
    <td align="center" style="font-size:12px;">
10 10
      <!-- Please note: the below reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
11
      <a href="http://www.websitebaker.org/" style="color: #000;" target="_blank">Website Baker</a> is	released under the <a href="http://www.gnu.org/licenses/gpl.html" style="color: #000000;" target="_blank">GNU
11
      <a href="http://www.websitebaker2.org/" title="external">WebsiteBaker</a>
12
      is released under the <a href="http://www.gnu.org/licenses/gpl.html" title="WebsiteBaker is released under the GNU General Public License">GNU
12 13
      General Public License</a>
13 14
      <!-- Please note: the above reference to the GNU GPL should not be removed, as it provides a link for users to read about warranty, etc. -->
14 15
    </td>

Also available in: Unified diff