Paul 'flowerysong' Arthur
f362877383
It is evidently not recognised that the webserver cannot have write access to a
...
nonexistent directory.
2010-06-28 04:22:25 +00:00
Paul 'flowerysong' Arthur
d5d87f9f7b
Missing `
2010-06-24 03:35:15 +00:00
Paul 'flowerysong' Arthur
bbed2d23b5
Fix JavaScript.
2010-06-24 03:31:43 +00:00
Paul 'flowerysong' Arthur
330d89968b
Whitespace/indentation cleanup.
2010-06-24 03:04:06 +00:00
Paul 'flowerysong' Arthur
119e14167d
More useful debug output from stream.php
2010-06-24 02:58:00 +00:00
Paul 'flowerysong' Arthur
6277492321
JavaScript cleanup. Consistently use camelCase for naming JS functions. Use
...
Prototype functionality where possible (particularly for Ajax). Move our JS
into lib/javascript (I dropped kajax as an external module since the new
ajax.js is completely different apart from function headers.) Remove unused
JS functions from base.js.
2010-06-24 02:52:01 +00:00
Paul 'flowerysong' Arthur
7549180515
Some vainfo cleanup. Since id3v2 allows multiple charsets and has a standard way of
...
indicating them, don't try to work around broken id3v2 tags (especially since that
breaks valid tags). For id3v1, use a charset detection approach that actually has a
chance of working.
2010-06-22 21:08:20 +00:00
Paul 'flowerysong' Arthur
11ecf3a4c5
Show the full list of tag sources when running print_tags.
2010-06-22 20:18:34 +00:00
Paul 'flowerysong' Arthur
a66bf4c5f6
Plugin work. Plugins are now pluggable: no plugin-specific code in the main Ampache
...
code. Plugins are now updatable, if configuration changes are needed for a new
version.
2010-06-22 19:00:45 +00:00
Paul 'flowerysong' Arthur
91eab20868
Fix statistics display after recent browse changes.
2010-06-18 05:39:39 +00:00
Paul 'flowerysong' Arthur
a2836c9af9
Always check for validity before inserting images. Also, whitespace cleanup.
2010-06-17 06:12:06 +00:00
Paul 'flowerysong' Arthur
6491034154
Add missing scrub_out; fixes some display issues.
2010-06-17 06:10:57 +00:00
Paul 'flowerysong' Arthur
ecd41dd4bb
php_musicbrainz: proper license headers, support for submitting tags.
2010-06-16 20:58:12 +00:00
Paul 'flowerysong' Arthur
733f507937
Browsing by tag is broken. This doesn't fix it.
2010-06-15 21:18:17 +00:00
Paul 'flowerysong' Arthur
33213b8ea8
Be less forgiving when checking whether an album currently exists. Fixes
...
FS#113, reported by fabninja.
2010-06-15 01:45:43 +00:00
Paul 'flowerysong' Arthur
ed2cc43d15
Use scrub_out when displaying update status; scrub_out calls htmlentities with
...
the proper charset argument. Fixes mangled output string w/non-ASCII filenames.
2010-06-14 20:31:45 +00:00
Paul 'flowerysong' Arthur
4b5756ba9d
Miscellaneous cleanup.
2010-06-13 08:11:09 +00:00
Paul 'flowerysong' Arthur
93f4a26ab0
Logging. Use constants instead of numeric values in the switch, bump
...
notices, warnings, and ignored messages to level 6 instead of ignoring them
completely.
2010-06-13 08:05:20 +00:00
Paul 'flowerysong' Arthur
dc495ea8ea
Clean up general.lib.php and ui.lib.php: remove unused functions, group related
...
functions, simplify implementation of some functions.
2010-06-13 07:58:43 +00:00
Paul 'flowerysong' Arthur
836af45d57
Remove leftover references to $id from before I decided to make Query non-static.
2010-06-12 23:12:13 +00:00
Paul 'flowerysong' Arthur
13629b3cf7
$key wasn't defined in Error::add, I'm going to assume it was supposed to be $name.
2010-06-12 22:35:56 +00:00
Chris 'cslamar' Slamar
3b4e45208d
New Coda Update.
2010-06-11 16:42:25 +00:00
Chris 'cslamar' Slamar
8b3514ab26
2010-06-11 16:41:42 +00:00
Paul 'flowerysong' Arthur
261bc657f6
Cosmetics: consistent line endings. No DOS for you.
2010-06-11 10:05:34 +00:00
Paul 'flowerysong' Arthur
c7abdbbdb7
Fix bitrate calculation regressions on LAME CBR files. Now doesn't return 0,
...
doesn't return a higher bitrate than it should.
2010-06-11 09:44:03 +00:00
Paul 'flowerysong' Arthur
bd0cc0acbc
Preserve keys when slicing up the tmpplaylist array. Fixes FS#112, reported by
...
Pietje Puk.
2010-06-10 06:10:41 +00:00
Paul 'flowerysong' Arthur
7f36693353
Change Browse from static to instantiable. Among other things, fixes FS#13;
...
probably also breaks things. Most things appear to still work, but I may have
missed some cases.
2010-06-10 05:33:57 +00:00
Paul 'flowerysong' Arthur
c1ed41a16d
Remove some unused genre stuff.
2010-06-10 01:19:14 +00:00
Paul 'flowerysong' Arthur
617a4b5dfc
Always update the access level associated with a preference, even if it's a
...
password and not itself being updated.
2010-06-09 08:01:29 +00:00
Paul 'flowerysong' Arthur
b95a7b1ecc
I should have done it this way in the first place, instead of that ugly
...
show_playlist_full_row hack.
2010-06-09 01:35:50 +00:00
Paul 'flowerysong' Arthur
a22acbd014
Allow print_tags to be run against any file; I don't see a good reason for it to
...
be restricted, especially in a broken way (didn't allow videos).
2010-06-08 21:48:34 +00:00
Paul 'flowerysong' Arthur
6873ed87ef
Remove unused function format_time.
2010-06-07 08:28:05 +00:00
Paul 'flowerysong' Arthur
2f7068c18d
Aggressively make sure we don't end up with extra spaces when joining the prefix.
2010-06-07 06:46:48 +00:00
Paul 'flowerysong' Arthur
3de4f6f3e1
Change artist template to use just the artist name in the header; fixes FS#108.
...
Also make the actions shown a bit dynamic.
2010-06-07 05:49:06 +00:00
Paul 'flowerysong' Arthur
27477ceae8
Move prefix trimming into a static function. Reduces duplicate code and allows
...
for the possibility of using it elsewhere.
2010-06-07 02:57:36 +00:00
Paul 'flowerysong' Arthur
b9937cd7ce
Clean up the rating code by moving uniqueness constraints into the database,
...
using SQL's AVG() when we want an average, updating the cache when a rating
changes, etc.
2010-06-07 00:49:47 +00:00
Chris 'cslamar' Slamar
ae89b1daad
Coda Theme Update!
2010-06-06 02:44:12 +00:00
Chris 'cslamar' Slamar
56d20a2f24
2010-06-06 02:41:54 +00:00
Chris 'cslamar' Slamar
01e66b4b0f
Real update of new Coda theme
2010-06-03 14:21:58 +00:00
Chris 'cslamar' Slamar
fd07e605d0
it's too early and i screwed up
2010-06-03 14:19:49 +00:00
Chris 'cslamar' Slamar
155a23143d
Added new verison of coda theme
2010-06-03 13:58:36 +00:00
Chris 'cslamar' Slamar
8d254874c2
Removed coda theme: Old version
2010-06-03 13:57:23 +00:00
Paul 'flowerysong' Arthur
bafc1b97ce
Change debugging output on transcode.
2010-05-29 23:34:47 +00:00
Paul 'flowerysong' Arthur
55cfd7b825
Add question mark after "Ampache.cfg.php Exists" for consistency.
2010-05-29 19:09:00 +00:00
Paul 'flowerysong' Arthur
92c2191e36
Fix bin/print_tags so it accurately reflects what Ampache will see; it was
...
stomping on 'file' results for some reason. Also a smidge of cleanup in vainfo.
2010-05-29 17:47:24 +00:00
Paul 'flowerysong' Arthur
cceb1a4a9b
Minor output change. FS#96, reported by Nate Gotz.
2010-05-29 16:59:55 +00:00
Paul 'flowerysong' Arthur
67be60ae09
Cleanup and rationalisation of authentication related code. Among other things,
...
fixes FS#99.
2010-05-29 08:33:48 +00:00
Chris 'cslamar' Slamar
a94a213d72
Removed Thumbs.db from Grey. Wish people would do that before uploading, grr
2010-05-22 04:54:18 +00:00
Chris 'cslamar' Slamar
539ffa6e3c
Leo theme screenshot updated
2010-05-21 16:08:33 +00:00
Chris 'cslamar' Slamar
ff6821d36a
Grey Theme added.
2010-05-20 15:31:52 +00:00