-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed uninstall sql file. /me hangs head in shame Added build file Added github file manifest Added package manifest Added update files
- Loading branch information
Ian MacLennan
committed
Oct 13, 2011
1 parent
e97da33
commit 3d6b595
Showing
7 changed files
with
76 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
administrator/components/com_patchtester/sql/uninstall.mysql.utf8.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
DROP TABLE IF NOT EXISTS `#__tests` | ||
DROP TABLE IF EXISTS `#__tests` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
rm -rf site | ||
rm -rf admin | ||
rm -rf ../patchtester.tar.bz2 | ||
cp -r ../administrator/components/com_patchtester admin | ||
cp -r ../components/com_patchtester site | ||
mv admin/patchtester.xml patchtester.xml | ||
tar jcf ../com_patchtester.tar.bz2 site admin patchtester.xml | ||
|
||
rm -rf github | ||
mkdir github | ||
cp ../libraries/joomla/client/github.php github | ||
cp ../libraries/joomla/client/githubobject.php github | ||
cp -r ../libraries/joomla/client/github github | ||
cp github.xml github | ||
tar jcf ../file_github.tar.bz2 github/* | ||
|
||
tar jcf ../pkg_patchtester.tar.bz2 pkg_patchtester.xml ../com_patchtester.tar.bz2 ../file_github.tar.bz2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<extension type="file" version="1.7" method="upgrade"> | ||
<name>Github Library</name> | ||
<author>Joomla!</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>http://www.joomla.org</authorUrl> | ||
<copyright>(C) 2011 Open Source Matters. All Rights Reserved.</copyright> | ||
<license>GPL v2.0 or later</license> | ||
<version>11.3</version> | ||
<creationDate>October 2011</creationDate> | ||
<description>FILES_TEST1_XML_DESCRIPTION</description> | ||
|
||
<!-- Fileset definition --> | ||
<fileset> | ||
<files target="libraries/joomla/client"> | ||
<filename>github.php</filename> | ||
<filename>githubobject.php</filename> | ||
<folder>github</folder> | ||
</files> | ||
</fileset> | ||
|
||
<!-- Extension Update Specification --> | ||
<updateservers> | ||
<server type="extension">https://raw.github.com/ianmacl/patchtester/master/updates/github.xml</server> | ||
</updateservers> | ||
</extension> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<extension type="package" version="1.7"> | ||
<name>Patch Tester</name> | ||
<packagename>patchtester</packagename> | ||
<version>1.0alpha</version> | ||
<url>http://github.com/ianmacl/patchtester</url> | ||
<packager>Ian MacLennan</packager> | ||
<packagerurl>http://github.com/ianmacl/patchtester</packagerurl> | ||
<description>Patch Tester complete with Github Library</description> | ||
<files> | ||
<file type="file" id="file_github" >file_github.tar.bz2</file> | ||
<file type="component" id="com_patchtester" >com_patchtester.tar.bz2</file> | ||
</files> | ||
</extension> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" ?> | ||
<updates> | ||
<update> | ||
</update> | ||
</updates> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" ?> | ||
<updates> | ||
<update> | ||
</update> | ||
</updates> |