Skip to content

Commit f78626c

Browse files
committed
Release 1.3
2 parents b9e90d7 + 3b9ba60 commit f78626c

6 files changed

Lines changed: 23 additions & 41 deletions

File tree

content/content.debug.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ protected function buildJump(XMLElement $wrapper) {
8787

8888
public function buildContent(XMLElement $wrapper) {
8989
$this->addStylesheetToHead(URL . '/extensions/debugdevkit/assets/devkit.css', 'screen', 10);
90-
$this->addScriptToHead(SYMPHONY_URL . '/assets/js/jquery.js', 20);
90+
$this->addScriptToHead(APPLICATION_URL . '/assets/js/lib/jquery.js', 20);
9191
$this->addScriptToHead(URL . '/extensions/debugdevkit/assets/jquery.scrollto.js', 30);
9292
$this->addScriptToHead(URL . '/extensions/debugdevkit/assets/devkit.js', 40);
9393

extension.driver.php

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,6 @@ class Extension_DebugDevKit extends Extension {
77

88
public static $active = false;
99

10-
public function about() {
11-
return array(
12-
'name' => 'Debug DevKit',
13-
'version' => '1.2.4',
14-
'release-date' => '2013-07-01',
15-
'author' => array(
16-
array(
17-
'name' => 'Symphony Team',
18-
'website' => 'http://getsymphony.com/',
19-
'email' => 'team@getsymphony.com'
20-
),
21-
array(
22-
'name' => 'Rowan Lewis',
23-
'website' => 'http://rowanlewis.com/',
24-
'email' => 'me@rowanlewis.com'
25-
)
26-
)
27-
);
28-
}
29-
3010
public function getSubscribedDelegates() {
3111
return array(
3212
array(
@@ -69,5 +49,3 @@ public function manipulateDevKitNavigation($context) {
6949
}
7050
}
7151
}
72-
73-
?>

extension.meta.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
</author>
1818
</authors>
1919
<releases>
20+
<release version="1.3" date="2013-02-22" min="2.4">
21+
- Updates for Symphony 2.4
22+
</release>
2023
<release version="1.2.4" date="2013-07-01" min="2.3">
2124
- Update links to **getsymphony.com**
2225
</release>

lang/lang.de.php

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,28 +7,30 @@
77
'email' => 'post@nilshoerrmann.de',
88
'website' => 'http://www.nilshoerrmann.de'
99
),
10-
'release-date' => '2009-12-29'
10+
'release-date' => '2013-09-18'
1111
);
12-
13-
14-
/*
15-
* EXTENSION: Debug Devkit
16-
* Localisation strings
17-
*/
1812

13+
/**
14+
* Debug Devkit
15+
*/
1916
$dictionary = array(
2017

21-
'Debug' =>
22-
'Debug',
23-
2418
'Params' =>
2519
'Parameter',
2620

21+
'Result' =>
22+
'Ergebnis',
23+
2724
'XML' =>
2825
'XML',
2926

30-
'Result' =>
31-
'Ergebnis'
27+
'Failed to create cache folder. Please check "%s" is writable.' =>
28+
'Cache-Ordner konnte nicht angelegt werden. Bitte überprüfen Sie, ob "%s" schreibbar ist.',
29+
30+
'Cache folder is not writable. Please check permissions on "%s".' =>
31+
'Cache-Ordner ist nicht schreibbar. Bitte überprüfen Sie die Schreibrechte für "%s".',
32+
33+
'Plain XML' =>
34+
'Reines XML',
3235

3336
);
34-

licence

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ unless otherwise specified, released under the MIT licence as follows:
33

44
----- begin license block -----
55

6-
Copyright 2009-2013 Rowan Lewis, Symphony Team
6+
Copyright 2009-2014 Rowan Lewis, Symphony Team
77

88
Permission is hereby granted, free of charge, to any person obtaining a copy
99
of this software and associated documentation files (the "Software"), to deal

readme.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
The Debug Devkit allows a developer to preview the XML of a Frontend page. It also includes the page parameters, included XSL templates and provides a navigation for other Devkit extensions (such as the Profile Devkit)
44

5-
- Version: 1.2.4
6-
- Author: Rowan Lewis, Symphony Team
7-
- Release Date: 1 July 2013
8-
- Requirements: Symphony 2.2 or greater
5+
- Version: 1.3
6+
- Date: April 17th, 2014
7+
- Requirements: Symphony 2.4
98

109
## Usage
1110

0 commit comments

Comments
 (0)