This file contains hidden or 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
<html> | |
<style type="text/css"> | |
BODY { | |
counter-reset: chapter; /* Create a chapter counter scope */ | |
} | |
H1:before { | |
content: counter(chapter) ". "; | |
counter-increment: chapter; /* Add 1 to chapter */ | |
} | |
H1 { |
This file contains hidden or 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
nikolai@nikolai-desktop:/musicbrainz$ ./admin/InitDb.pl --createdb | |
Fri Aug 7 23:36:12 2009 : InitDb.pl starting | |
Fri Aug 7 23:36:12 2009 : Creating database 'musicbrainz_db' | |
createlang: konnte nicht mit Datenbank plpgsql verbinden: FATAL: Datenbank >>plpgsql<< existiert nicht | |
Failed to create language | |
Fri Aug 7 23:36:13 2009 : InitDb.pl failed |
This file contains hidden or 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
$VAR1 = [ | |
'-h', | |
'localhost', | |
'-U', | |
'postgres', | |
'musicbrainz_db', | |
'-d', | |
'--no-password', | |
'plpgsql' | |
]; |
This file contains hidden or 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
YUI/1~ | 2 + | |
YUI/packjs.sh | 9 + | |
YUI/yuicompressor-2.4.2/ant.properties | 8 + | |
YUI/yuicompressor-2.4.2/build.xml | 66 + | |
YUI/yuicompressor-2.4.2/doc/CHANGELOG | 226 + | |
YUI/yuicompressor-2.4.2/doc/README | 140 + | |
.../yahoo/platform/yui/compressor/Bootstrap.java | 22 + | |
.../platform/yui/compressor/CssCompressor.java | 188 + | |
.../platform/yui/compressor/JarClassLoader.java | 158 + | |
.../yui/compressor/JavaScriptCompressor.java | 1309 +++ |
This file contains hidden or 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
if (n > 0) { | |
do { | |
processItem(); | |
} while (--n); | |
} | |
n = parseInt(i / 8, 10); | |
do { | |
processItem(); | |
processItem(); | |
processItem(); |
This file contains hidden or 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
$thisEditor.find("div:first > div:first > div:not(:first)") // Find all artist entry lines, | |
.filter(":has(input.artistCredit:visible)") // and for those lines with visible AC fields, | |
.find("input.artistName, div.artistResolvedName") // get the artist name input and resolved text elements in each, | |
.each(function () { // make sure the width of those fields is at the 'visible AC' width, | |
$(this).css("width", "19em"); | |
This file contains hidden or 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
#0 0x00002adeb6be06c2 in Perl_mg_free () from /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so | |
No symbol table info available. | |
#1 0x00002adeb6bf752d in Perl_sv_clear () from /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so | |
No symbol table info available. | |
#2 0x00002adeb6bf7ad0 in Perl_sv_free () from /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so | |
No symbol table info available. | |
#3 0x00002adeb6c1aa9f in Perl_leave_scope () from /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so | |
No symbol table info available. | |
#4 0x00002adeb6c1e948 in Perl_pp_leaveloop () from /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/libperl.so | |
No symbol table info available. |
This file contains hidden or 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
package Musicbrainz::View::Artist; |
This file contains hidden or 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
private template 'header' => sub { | |
my ($artist) = @_; | |
# Given over on $stash, here as an example | |
my $link_hash = { | |
overview => 'http://test.musicbrainz.org/artist/06fb1c8b-566e-4cb2-985b-b467c90781d4', | |
releases => 'http://test.musicbrainz.org/artist/06fb1c8b-566e-4cb2-985b-b467c90781d4/releases', | |
}; | |
my $titles = { |