summaryrefslogtreecommitdiffstats
path: root/templates/show_add_catalog.inc.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:47:50 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2006-09-24 03:47:50 +0000
commitded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54 (patch)
tree7222c273945a5c86f9057488e205d57969cbbefa /templates/show_add_catalog.inc.php
parentae70bce26c2f39da93c85a082602d58dcf13652e (diff)
downloadampache-ded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54.tar.gz
ampache-ded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54.tar.bz2
ampache-ded54786a5d1f24d21b2ffe1ec9d2d2b664a8c54.zip
last of the things that I can find for now
Diffstat (limited to 'templates/show_add_catalog.inc.php')
-rw-r--r--templates/show_add_catalog.inc.php111
1 files changed, 111 insertions, 0 deletions
diff --git a/templates/show_add_catalog.inc.php b/templates/show_add_catalog.inc.php
new file mode 100644
index 00000000..bdd7c97a
--- /dev/null
+++ b/templates/show_add_catalog.inc.php
@@ -0,0 +1,111 @@
+<?php
+/*
+
+ Copyright (c) 2001 - 2006 Ampache.org
+ All rights reserved.
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either version 2
+ of the License, or (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+*/
+
+$default_id3 = "/usr/bin/id3v2 -a &quot;%a&quot; -A &quot;%A&quot; -t &quot;%t&quot; -g %g -y %y -T %T -c &quot;%c&quot; %filename";
+$default_rename = "%a - %T - %t";
+$default_sort = "%a/%A";
+
+?>
+
+<?php show_box_top(_('Add a Catalog')); ?>
+
+<p><?php echo _("In the form below enter either a local path (i.e. /data/music) or the URL to a remote Ampache installation (i.e http://theotherampache.com)"); ?></p>
+
+<form name="update_catalog" method="post" action="<?php echo conf('web_path'); ?>/admin/catalog.php" enctype="multipart/form-data">
+<table class="tabledata" cellpadding="0" border="0" cellspacing="0">
+<tr>
+ <td><?php echo _("Catalog Name"); ?>: </td>
+ <td><input size="60" type="text" name="name" value="<?php echo $_REQUEST['name']; ?>" /></td>
+ <td style="vertical-align:top; font-family: monospace;" rowspan="6">
+ <strong><?php echo _("Auto-inserted Fields"); ?>:</strong><br />
+ %A = <?php echo _("album name"); ?><br />
+ %a = <?php echo _("artist name"); ?><br />
+ %c = <?php echo _("id3 comment"); ?><br />
+ %g = <?php echo _("genre"); ?><br />
+ %T = <?php echo _("track number (padded with leading 0)"); ?><br />
+ %t = <?php echo _("song title"); ?><br />
+ %y = <?php echo _("year"); ?><br />
+ %o = <?php echo _("other"); ?><br />
+ </td>
+</tr>
+
+<tr>
+ <td><?php echo _("Path"); ?>: </td>
+ <td><input size="60" type="text" name="path" value="<?php echo $_REQUEST['path']; ?>" /></td>
+</tr>
+<tr>
+ <td><?php echo _("Catalog Type"); ?>: </td>
+ <td>
+ <select name="type">
+ <option value="local"><?php echo _("Local"); ?></option>
+ <option value="remote"><?php echo _("Remote"); ?></option>
+ </select>
+ </td>
+</tr>
+
+<tr>
+ <td><?php echo _("Filename Pattern"); ?>: </td>
+ <td><input size="60" type="text" name="rename_pattern" value="<?php echo $default_rename; ?>" /></td>
+</tr>
+
+<tr>
+ <td><?php echo _("Folder Pattern"); ?>:<br /><?php echo _("(no leading or ending '/')"); ?></td>
+ <td valign="top"><input size="60" type="text" name="sort_pattern" value="<?php echo $default_sort; ?>" /></td>
+</tr>
+
+<tr>
+ <td valign="top"><?php echo _("Gather Album Art"); ?>:</td>
+ <td><input type="checkbox" onclick="flipField('artextra1');flipField('artextra2');flipField('artextra3');" name="gather_art" value="1" /><br />
+ <table border="0" width="100%" cellpadding="0" cellspacing="0">
+ <tr class="even">
+ <td><?php echo _("ID3V2 Tags"); ?>:</td>
+ <td><input id="artextra1" disabled="disabled" type="checkbox" name="art_id3v2" value="1" /></td>
+ </tr>
+ <tr class="even">
+ <td><?php echo _("Amazon"); ?>:</td>
+ <td><input id="artextra2" disabled="disabled" type="checkbox" name="art_amazon" value="1" /></td>
+ </tr>
+ <tr class="even">
+ <td><?php echo _("File Folder"); ?>:</td>
+ <td><input id="artextra3" disabled="disabled" type="checkbox" name="art_folder" value="1" /></td>
+ </tr>
+ </table>
+ <br />
+ </td>
+</tr>
+<tr>
+ <td valign="top"><?php echo _("Build Playlists from m3u Files"); ?>:</td>
+ <td><input type="checkbox" name="parse_m3u" value="1" /></td>
+</tr>
+
+<tr>
+ <td>&nbsp;</td>
+ <td>
+ <input type="hidden" name="action" value="add_catalog" />
+ <input class="button" type="submit" value="<?php echo _("Add Catalog"); ?>" />&nbsp;&nbsp;
+ <input class="button" type="submit" name="action" value="Cancel" />
+ </td>
+</tr>
+
+</table>
+</form>
+<?php show_box_bottom(); ?>