summaryrefslogtreecommitdiffstats
path: root/modules/php_musicbrainz
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2010-03-14 04:53:15 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2010-03-14 04:53:15 +0000
commit45f382b06d0f6a5da0660d3bb70ce2c71193be57 (patch)
treebde9f0aab8b0370736b401b114f0169a6f2f86f8 /modules/php_musicbrainz
parent5744c3ea4b476f7cdc8bad113432673e88f884d9 (diff)
downloadampache-45f382b06d0f6a5da0660d3bb70ce2c71193be57.tar.gz
ampache-45f382b06d0f6a5da0660d3bb70ce2c71193be57.tar.bz2
ampache-45f382b06d0f6a5da0660d3bb70ce2c71193be57.zip
Add vim modelines to all php files (Thx ascheel)
Diffstat (limited to 'modules/php_musicbrainz')
-rw-r--r--modules/php_musicbrainz/mbArtist.php1
-rw-r--r--modules/php_musicbrainz/mbArtistAlias.php1
-rw-r--r--modules/php_musicbrainz/mbDisc.php1
-rw-r--r--modules/php_musicbrainz/mbEntity.php1
-rw-r--r--modules/php_musicbrainz/mbFactory.php1
-rw-r--r--modules/php_musicbrainz/mbFilter.php1
-rw-r--r--modules/php_musicbrainz/mbInclude.php1
-rw-r--r--modules/php_musicbrainz/mbLabel.php1
-rw-r--r--modules/php_musicbrainz/mbLabelAlias.php1
-rw-r--r--modules/php_musicbrainz/mbMetadata.php1
-rw-r--r--modules/php_musicbrainz/mbQuery.php1
-rw-r--r--modules/php_musicbrainz/mbRelation.php1
-rw-r--r--modules/php_musicbrainz/mbRelease.php1
-rw-r--r--modules/php_musicbrainz/mbReleaseEvent.php1
-rw-r--r--modules/php_musicbrainz/mbResults.php1
-rw-r--r--modules/php_musicbrainz/mbTag.php1
-rw-r--r--modules/php_musicbrainz/mbTrack.php1
-rw-r--r--modules/php_musicbrainz/mbUser.php1
-rw-r--r--modules/php_musicbrainz/mbUtil.php1
-rw-r--r--modules/php_musicbrainz/mbUtil_countrynames.php1
-rw-r--r--modules/php_musicbrainz/mbUtil_languagenames.php1
-rw-r--r--modules/php_musicbrainz/mbUtil_releasetypenames.php1
-rw-r--r--modules/php_musicbrainz/mbUtil_scriptnames.php1
-rw-r--r--modules/php_musicbrainz/mbWebService.php1
-rw-r--r--modules/php_musicbrainz/mbXmlParser.php1
-rw-r--r--modules/php_musicbrainz/xml/xmlParser.php1
26 files changed, 26 insertions, 0 deletions
diff --git a/modules/php_musicbrainz/mbArtist.php b/modules/php_musicbrainz/mbArtist.php
index 377ebc3d..619f7961 100644
--- a/modules/php_musicbrainz/mbArtist.php
+++ b/modules/php_musicbrainz/mbArtist.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbArtist extends MusicBrainzEntity {
const TYPE_GROUP = "http://musicbrainz.org/ns/mmd-1.0#Group";
const TYPE_PERSON = "http://musicbrainz.org/ns/mmd-1.0#Person";
diff --git a/modules/php_musicbrainz/mbArtistAlias.php b/modules/php_musicbrainz/mbArtistAlias.php
index 7ada99a5..1e75bae2 100644
--- a/modules/php_musicbrainz/mbArtistAlias.php
+++ b/modules/php_musicbrainz/mbArtistAlias.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbArtistAlias {
private $value;
private $type;
diff --git a/modules/php_musicbrainz/mbDisc.php b/modules/php_musicbrainz/mbDisc.php
index 4b423ccf..ce87b330 100644
--- a/modules/php_musicbrainz/mbDisc.php
+++ b/modules/php_musicbrainz/mbDisc.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbDiscError extends Exception { }
class mbDisc {
diff --git a/modules/php_musicbrainz/mbEntity.php b/modules/php_musicbrainz/mbEntity.php
index cf749569..b62ee83a 100644
--- a/modules/php_musicbrainz/mbEntity.php
+++ b/modules/php_musicbrainz/mbEntity.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class MusicBrainzEntity {
private $id;
private $relations;
diff --git a/modules/php_musicbrainz/mbFactory.php b/modules/php_musicbrainz/mbFactory.php
index 2fac424e..ca2d3800 100644
--- a/modules/php_musicbrainz/mbFactory.php
+++ b/modules/php_musicbrainz/mbFactory.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
interface mbIFactory {
function newArtist();
function newArtistAlias();
diff --git a/modules/php_musicbrainz/mbFilter.php b/modules/php_musicbrainz/mbFilter.php
index f96f9799..c41543ba 100644
--- a/modules/php_musicbrainz/mbFilter.php
+++ b/modules/php_musicbrainz/mbFilter.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
interface MusicBrainzFilter {
function createParameters();
}
diff --git a/modules/php_musicbrainz/mbInclude.php b/modules/php_musicbrainz/mbInclude.php
index 3156f0fc..d42a020f 100644
--- a/modules/php_musicbrainz/mbInclude.php
+++ b/modules/php_musicbrainz/mbInclude.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
interface MusicBrainzInclude {
function createIncludeTags();
}
diff --git a/modules/php_musicbrainz/mbLabel.php b/modules/php_musicbrainz/mbLabel.php
index 91ca3a22..a61a3148 100644
--- a/modules/php_musicbrainz/mbLabel.php
+++ b/modules/php_musicbrainz/mbLabel.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbLabel extends MusicBrainzEntity {
const TYPE_GROUP = "http://musicbrainz.org/ns/mmd-1.0#Group";
const TYPE_PERSON = "http://musicbrainz.org/ns/mmd-1.0#Person";
diff --git a/modules/php_musicbrainz/mbLabelAlias.php b/modules/php_musicbrainz/mbLabelAlias.php
index b426e3a0..9e268898 100644
--- a/modules/php_musicbrainz/mbLabelAlias.php
+++ b/modules/php_musicbrainz/mbLabelAlias.php
@@ -1,3 +1,4 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbLabelArtist extends mbArtistAlias { }
?>
diff --git a/modules/php_musicbrainz/mbMetadata.php b/modules/php_musicbrainz/mbMetadata.php
index 5f1a10aa..d6491a16 100644
--- a/modules/php_musicbrainz/mbMetadata.php
+++ b/modules/php_musicbrainz/mbMetadata.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbMetadata {
private $artist = null;
private $track = null;
diff --git a/modules/php_musicbrainz/mbQuery.php b/modules/php_musicbrainz/mbQuery.php
index 186d38bd..62e8de26 100644
--- a/modules/php_musicbrainz/mbQuery.php
+++ b/modules/php_musicbrainz/mbQuery.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
define ( 'NS_MMD_1', "http://musicbrainz.org/ns/mmd-1.0#" );
require_once( 'xml/xmlParser.php' );
diff --git a/modules/php_musicbrainz/mbRelation.php b/modules/php_musicbrainz/mbRelation.php
index a64274ec..748bbbfe 100644
--- a/modules/php_musicbrainz/mbRelation.php
+++ b/modules/php_musicbrainz/mbRelation.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbRelation {
const DIR_BOTH = 0;
const DIR_FORWARD = 1;
diff --git a/modules/php_musicbrainz/mbRelease.php b/modules/php_musicbrainz/mbRelease.php
index 32ee7f6e..a860867c 100644
--- a/modules/php_musicbrainz/mbRelease.php
+++ b/modules/php_musicbrainz/mbRelease.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbRelease extends MusicBrainzEntity {
// Types
const TYPE_NONE = "http://musicbrainz.org/ns/mmd-1.0#None";
diff --git a/modules/php_musicbrainz/mbReleaseEvent.php b/modules/php_musicbrainz/mbReleaseEvent.php
index 1c47ba11..46012a20 100644
--- a/modules/php_musicbrainz/mbReleaseEvent.php
+++ b/modules/php_musicbrainz/mbReleaseEvent.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbReleaseEvent {
private $country;
private $dateStr;
diff --git a/modules/php_musicbrainz/mbResults.php b/modules/php_musicbrainz/mbResults.php
index b6f5e65e..bef18eb1 100644
--- a/modules/php_musicbrainz/mbResults.php
+++ b/modules/php_musicbrainz/mbResults.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbResult {
private $score;
private $count;
diff --git a/modules/php_musicbrainz/mbTag.php b/modules/php_musicbrainz/mbTag.php
index f823642e..96b0903f 100644
--- a/modules/php_musicbrainz/mbTag.php
+++ b/modules/php_musicbrainz/mbTag.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbTag {
private $name;
private $count;
diff --git a/modules/php_musicbrainz/mbTrack.php b/modules/php_musicbrainz/mbTrack.php
index 27dccc7f..3e6a027f 100644
--- a/modules/php_musicbrainz/mbTrack.php
+++ b/modules/php_musicbrainz/mbTrack.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbTrack extends MusicBrainzEntity {
private $title;
private $artist = null;
diff --git a/modules/php_musicbrainz/mbUser.php b/modules/php_musicbrainz/mbUser.php
index 6ca2bd5e..8ac6ffeb 100644
--- a/modules/php_musicbrainz/mbUser.php
+++ b/modules/php_musicbrainz/mbUser.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbUser {
private $name;
private $showNag = false;
diff --git a/modules/php_musicbrainz/mbUtil.php b/modules/php_musicbrainz/mbUtil.php
index 87517556..c7ce7cbd 100644
--- a/modules/php_musicbrainz/mbUtil.php
+++ b/modules/php_musicbrainz/mbUtil.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbValueError extends Exception {}
function extractFragment( $type ) {
diff --git a/modules/php_musicbrainz/mbUtil_countrynames.php b/modules/php_musicbrainz/mbUtil_countrynames.php
index 3de82ccb..36c94954 100644
--- a/modules/php_musicbrainz/mbUtil_countrynames.php
+++ b/modules/php_musicbrainz/mbUtil_countrynames.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
$mbCountryNames = array(
"BD" => "Bangladesh",
"BE" => "Belgium",
diff --git a/modules/php_musicbrainz/mbUtil_languagenames.php b/modules/php_musicbrainz/mbUtil_languagenames.php
index 9847e735..2244f9c9 100644
--- a/modules/php_musicbrainz/mbUtil_languagenames.php
+++ b/modules/php_musicbrainz/mbUtil_languagenames.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
$mbLanguageNames = array(
"ART" => "Artificial (Other)",
"ROH" => "Raeto-Romance",
diff --git a/modules/php_musicbrainz/mbUtil_releasetypenames.php b/modules/php_musicbrainz/mbUtil_releasetypenames.php
index f22a3581..79fa8c97 100644
--- a/modules/php_musicbrainz/mbUtil_releasetypenames.php
+++ b/modules/php_musicbrainz/mbUtil_releasetypenames.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
$mbReleaseTypeNames = array(
"http://musicbrainz.org/ns/mmd-1.0#None" => "None",
"http://musicbrainz.org/ns/mmd-1.0#Album" => "Album",
diff --git a/modules/php_musicbrainz/mbUtil_scriptnames.php b/modules/php_musicbrainz/mbUtil_scriptnames.php
index 75477f71..0045f0cc 100644
--- a/modules/php_musicbrainz/mbUtil_scriptnames.php
+++ b/modules/php_musicbrainz/mbUtil_scriptnames.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
$mbScriptNames = array(
"Yiii" => "Yi",
"Telu" => "Telugu",
diff --git a/modules/php_musicbrainz/mbWebService.php b/modules/php_musicbrainz/mbWebService.php
index 8d5a3b09..4f5a98ad 100644
--- a/modules/php_musicbrainz/mbWebService.php
+++ b/modules/php_musicbrainz/mbWebService.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
interface IWebService {
function get ( $entity, $id, $include, $filter, $version = '1' );
function post( $entity, $id, $data, $version = '1' );
diff --git a/modules/php_musicbrainz/mbXmlParser.php b/modules/php_musicbrainz/mbXmlParser.php
index 4ce50ad6..8cb956b0 100644
--- a/modules/php_musicbrainz/mbXmlParser.php
+++ b/modules/php_musicbrainz/mbXmlParser.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class mbParseError extends Exception { }
class mbXmlParser {
diff --git a/modules/php_musicbrainz/xml/xmlParser.php b/modules/php_musicbrainz/xml/xmlParser.php
index 3cc8c8d3..f276feb8 100644
--- a/modules/php_musicbrainz/xml/xmlParser.php
+++ b/modules/php_musicbrainz/xml/xmlParser.php
@@ -1,4 +1,5 @@
<?php
+/* vim:set tabstop=8 softtabstop=8 shiftwidth=8 noexpandtab: */
class XMLNode {
private $name;
private $attributes;