Skip to content

Commit fe87768

Browse files
committed
Update to 1.2.2
1 parent be757ff commit fe87768

4 files changed

Lines changed: 34 additions & 13 deletions

File tree

extension.driver.php

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ class Extension_DebugDevKit extends Extension {
1010
public function about() {
1111
return array(
1212
'name' => 'Debug DevKit',
13-
'version' => '1.2.1',
14-
'release-date' => '2011-07-03',
13+
'version' => '1.2.2',
14+
'release-date' => '2012-05-21',
1515
'author' => array(
16-
'name' => 'Rowan Lewis',
17-
'website' => 'http://rowanlewis.com/',
18-
'email' => 'me@rowanlewis.com'
16+
array(
17+
'name' => 'Symphony Team',
18+
'website' => 'http://symphony-cms.com/',
19+
'email' => 'team@symphony-cms.com'
20+
),
21+
array(
22+
'name' => 'Rowan Lewis',
23+
'website' => 'http://rowanlewis.com/',
24+
'email' => 'me@rowanlewis.com'
25+
)
1926
)
2027
);
2128
}

extension.meta.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,18 @@
1111
<name github="team" symphony="symphonycms">Symphony Team</name>
1212
<website>http://www.symphony-cms.com</website>
1313
</author>
14+
<author>
15+
<name github="rowan-lewis" symphony="buzzomatic">Rowan Lewis</name>
16+
<website>http://rowanlewis.com/</website>
17+
</author>
1418
</authors>
1519
<releases>
20+
<release version="1.2.2" date="2012-05-21" min="2.2">
21+
- Add `?debug=raw` mode that outputs the page XML as raw XML
22+
- Fix indentation issues
23+
- Minor tweaks to CSS for better consistency
24+
- Update path to use `SYPMHONY_URL` constant
25+
</release>
1626
<release version="1.2.1" date="2011-07-03" min="2.2">
1727
- Adding arrays to the param pool no longer breaks debug view
1828
</release>

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-2011 Rowan Lewis
6+
Copyright 2009-2012 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: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
1-
# Debug Devkit #
1+
# Debug Devkit
22

33
A debug panel for Symphony.
44
It is part of the Symphony core download package.
55

6-
- Version: 1.2.1
7-
- Date: 2011-07-03
8-
- Requirements: Symphony 2.0.4 or later
9-
- Author: Rowan Lewis, me@rowanlewis.com
10-
- GitHub Repository: <http://github.com/rowan-lewis/debugdevkit>
6+
- Version: 1.2.2
7+
- Date: 21st May 2012
8+
- Requirements: Symphony 2.2 or later
9+
- Author: Rowan Lewis, Symphony Team
1110

1211
## Usage
1312

14-
Append `?debug` to your front-end pages when logged in to initialise this Devkit.
13+
Append `?debug` to your front-end pages when logged in to initialise this Devkit. The Debug Devkit responds to the following URL's:
14+
15+
- `?debug=xml`: Default view, shows a syntax highlighted XML tree of the front-end page with XPath support
16+
- `?debug=raw`: The raw XML of the current page
17+
- `?debug=result`: The result of the front-end page after it has been transformed with XSLT
18+
- `?debug=params`: The parameters of the current page, both from the system and from data sources.

0 commit comments

Comments
 (0)