]> gitweb.factorcode.org Git - factor.git/commitdiff
Fixed authors.txt and id3-docs
authorTim Wawrzynczak <inforichland@gmail.com>
Tue, 10 Feb 2009 04:38:27 +0000 (22:38 -0600)
committerTim Wawrzynczak <inforichland@gmail.com>
Tue, 10 Feb 2009 04:38:27 +0000 (22:38 -0600)
extra/id3/authors.txt
extra/id3/id3-docs.factor

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..ece617b96935408bf7b84a63e9711c77b0e6665a 100644 (file)
@@ -0,0 +1,2 @@
+Tim Wawrzynczak
+
index 1c77967ed12cc80431eb0862ba47e1bd8066b53c..94128dc3b28dd6db49d8d6c3c339436ebaea3f0e 100644 (file)
@@ -1,10 +1,17 @@
-IN: id3
+! Copyright (C) 2008 Tim Wawrzynczak
+! See http://factorcode.org/license.txt for BSD license.
 USING: help.markup help.syntax sequences kernel ;
+IN: id3
 
 HELP: id3-parse-mp3-file
-{ $values { "path" "a path string" } { "object/f" "either a tuple consisting of the data from an MP3 file, or an f indicating this file has no ID3 information." }
+{ $values 
+    { "path" "a path string" } 
+    { "object/f" "either a tuple consisting of the data from an MP3 file, or an f indicating this file has no (supported) ID3 information." } }
+{ $description "Return a tuple containing the ID3 information parsed out of the MP3 file" } ;
 
 ARTICLE: "id3" "ID3 tags"
-{ $emphasis "id3" } " tags are textual data that is used to describe the information (title, artist, etc.) in an .MP3 file"
+{ $emphasis "ID3" } " tags are textual data that is used to describe the information (title, artist, etc.) in an .MP3 file"
+"Parsing an MP3 file: "
+{ $subsection id3-parse-mp3-file } ;
 
 ABOUT: "id3"