Index: trunk/phase3/extensions/WindowsAzureSDK/WindowsAzureSDK.i18n.php |
— | — | @@ -0,0 +1,14 @@ |
| 2 | +<?php |
| 3 | +$messages = array(); |
| 4 | + |
| 5 | +$messages['en'] = array( |
| 6 | + 'windowswzuresdk-desc' => 'This extension provides the [http://phpazure.codeplex.com/ PHPAzure] SDK created by [http://www.realdolmen.com/ REALDOLMEN]. It is the foundation for other extensions that need to interact with Windows Azure services. The integration with MediaWiki was made by [http://www.hallowelt.biz Hallo Welt! Medienwerkstatt GmbH].' |
| 7 | +); |
| 8 | + |
| 9 | +$messages['de-formal'] = array( |
| 10 | + 'windowswzuresdk-desc' => 'Diese Erweiterung stellt das [http://phpazure.codeplex.com/ PHPAzure] SDK bereit, welches von [http://www.realdolmen.com/ REALDOLMEN] entwickelt wird. Sie ist die Basis f�r andere Erweiterungen, welche mit Windows Azure Diensten interagieren m�ssen. Die MediaWiki-Integration wurde von [http://www.hallowelt.biz Hallo Welt! Medienwerkstatt GmbH] durchgef�hrt.' |
| 11 | +); |
| 12 | + |
| 13 | +$messages['de'] = array( |
| 14 | + 'windowswzuresdk-desc' => 'Diese Erweiterung stellt das [http://phpazure.codeplex.com/ PHPAzure] SDK bereit, welches von [http://www.realdolmen.com/ REALDOLMEN] entwickelt wird. Sie ist die Basis f�r andere Erweiterungen, welche mit Windows Azure Diensten interagieren m�ssen. Die MediaWiki-Integration wurde von [http://www.hallowelt.biz Hallo Welt! Medienwerkstatt GmbH] durchgef�hrt.' |
| 15 | +); |
\ No newline at end of file |
Property changes on: trunk/phase3/extensions/WindowsAzureSDK/WindowsAzureSDK.i18n.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 16 | + native |
Index: trunk/phase3/extensions/WindowsAzureSDK/WindowsAzureSDK.php |
— | — | @@ -0,0 +1,44 @@ |
| 2 | +<?php |
| 3 | +/* |
| 4 | + (c) Hallo Welt! Medienwerkstatt GmbH, 2011 GPL |
| 5 | + |
| 6 | + This program is free software; you can redistribute it and/or modify |
| 7 | + it under the terms of the GNU General Public License as published by |
| 8 | + the Free Software Foundation; either version 2 of the License, or |
| 9 | + (at your option) any later version. |
| 10 | + |
| 11 | + This program is distributed in the hope that it will be useful, |
| 12 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | + GNU General Public License for more details. |
| 15 | + |
| 16 | + You should have received a copy of the GNU General Public License along |
| 17 | + with this program; if not, write to the Free Software Foundation, Inc., |
| 18 | + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | + http://www.gnu.org/copyleft/gpl.html |
| 20 | +*/ |
| 21 | + |
| 22 | +if ( !defined( 'MEDIAWIKI' ) ) { |
| 23 | + echo 'To install WindowsAzureSDK, put the following line in LocalSettings.php: include_once( "$IP/extensions/WindowsAzureSDK/WindowsAzureSDK.php" );'."\n"; |
| 24 | + exit( 1 ); |
| 25 | +} |
| 26 | + |
| 27 | +$wgExtensionCredits['other'][] = array( |
| 28 | + 'path' => __FILE__, |
| 29 | + 'name' => 'WindowsAzureSDK', |
| 30 | + 'author' => array( 'REALDOLMEN', 'Hallo Welt! Medienwerkstatt GmbH' ), |
| 31 | + 'url' => 'http://www.hallowelt.biz', |
| 32 | + 'version' => '4.1.0', |
| 33 | + 'descriptionmsg' => 'windowswzuresdk-desc', |
| 34 | +); |
| 35 | + |
| 36 | +$dir = dirname(__FILE__) . '/'; |
| 37 | +$wgExtensionMessagesFiles['WindowsAzureSDK'] = $dir . 'WindowsAzureSDK.i18n.php'; |
| 38 | + |
| 39 | +if(!class_exists('Microsoft_WindowsAzure_Diagnostics_Manager')) { |
| 40 | + require_once( $dir.'lib/PHPAzure/library/Microsoft/AutoLoader.php' ); |
| 41 | +} |
| 42 | + |
| 43 | +if (!defined( 'MICROSOFT_WINDOWS_AZURE_SDK_VERSION' )) { |
| 44 | + define( 'MICROSOFT_WINDOWS_AZURE_SDK_VERSION', '4.1.0' ); |
| 45 | +} |
\ No newline at end of file |
Property changes on: trunk/phase3/extensions/WindowsAzureSDK/WindowsAzureSDK.php |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 46 | + native |
Index: trunk/phase3/extensions/WindowsAzureSDK/README.txt |
— | — | @@ -0,0 +1 @@ |
| 2 | +This extension contains the Microsoft "Windows Azure SDK for PHP v4.1.0" (http://phpazure.codeplex.com/) by REALDOLMEN. |
\ No newline at end of file |
Property changes on: trunk/phase3/extensions/WindowsAzureSDK/README.txt |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 3 | + native |