Doc updates, and small fix for Parser.
[lms] / ruby-lightmediascanner / lightmediascanner_scanner.c
index 6547a44..58e3c3d 100644 (file)
@@ -26,9 +26,9 @@
  *
  * constructor
  *
- * @param db_path The path to the sqlite3 db to be used
+ * * p1 (db_path) The path to the sqlite3 db to be used
  *
- * @return A new Scanner instance
+ * * return A new Scanner instance
  */
 static VALUE scanner_new(VALUE obj, VALUE db_path) {
        Check_Type(db_path, T_STRING);
@@ -41,9 +41,9 @@ static VALUE scanner_new(VALUE obj, VALUE db_path) {
  *
  * This will add or update media found in the given directory or its children.
  *
- * @param top_path The top directory to scan.
+ * * p1 (top_path) The top directory to scan.
  *
- * @return 0 on success
+ * * return 0 on success
  *
  */
 static VALUE scanner_process(VALUE self, VALUE top_path) {
@@ -70,9 +70,9 @@ static VALUE scanner_process(VALUE self, VALUE top_path) {
  *
  * Check consistency of the given directory.
  *
- * @param top_path The top directory to scan.
+ * * p1 (top_path) The top directory to scan.
  *
- * @return 0 on success
+ * * return 0 on success
  *
  */
 static VALUE scanner_check(VALUE self, VALUE top_path) {
@@ -99,7 +99,7 @@ static VALUE scanner_check(VALUE self, VALUE top_path) {
  *
  * Accessor for LMS DB path.
  *
- * @return The database path given at creation time
+ * * return The database path given at creation time
  *
  */
 static VALUE scanner_db_path(VALUE self) {
@@ -115,7 +115,7 @@ static VALUE scanner_db_path(VALUE self) {
  *
  * Checks if Light Media Scanner is being used in a processing operation like lms_process() or lms_check().
  *
- * @return Boolean representing the instance's processing state
+ * * return Boolean representing the instance's processing state
  *
  */
 static VALUE scanner_processing(VALUE self) {
@@ -133,7 +133,7 @@ static VALUE scanner_processing(VALUE self) {
  *
  * If a slave takes more than this amount of milliseconds, it will be killed and the scanner will continue with the next file.
  *
- * @return The timeout in milliseconds, or -1 on error
+ * * return The timeout in milliseconds, or -1 on error
  *
  */
 static VALUE scanner_get_slave_timeout(VALUE self) {
@@ -151,9 +151,9 @@ static VALUE scanner_get_slave_timeout(VALUE self) {
  *
  * If a slave takes more than this amount of milliseconds, it will be killed and the scanner will continue with the next file.
  *
- * @param timeout_ms The timeout in milliseconds
+ * * p1 (timeout_ms) The timeout in milliseconds
  *
- * @return The new timeout, in milliseconds
+ * * return The new timeout, in milliseconds
  *
  */
 static VALUE scanner_set_slave_timeout(VALUE self, VALUE timeout_ms) {
@@ -172,7 +172,7 @@ static VALUE scanner_set_slave_timeout(VALUE self, VALUE timeout_ms) {
  *
  * Get the number of files served between database transactions.
  *
- * @return The number of files served between database transactions
+ * * return The number of files served between database transactions
  *
  */
 static VALUE scanner_get_commit_interval(VALUE self) {
@@ -188,9 +188,9 @@ static VALUE scanner_get_commit_interval(VALUE self) {
  *
  * Set the number of files to be served between database transactions.
  *
- * @param transactions The number of files between commits
+ * * p1 (transactions) The number of files between commits
  *
- * @return The new number of files to be served between database transactions
+ * * return The new number of files to be served between database transactions
  *
  */
 static VALUE scanner_set_commit_interval(VALUE self, VALUE transactions) {
@@ -211,9 +211,9 @@ static VALUE scanner_set_commit_interval(VALUE self, VALUE transactions) {
  *
  * Throws a RuntimeError if LMS is unable to add the charset.
  *
- * @param charset charset name as understood by iconv_open(3).
+ * * p1 (charset) charset name as understood by iconv_open(3).
  *
- * @return charset
+ * * return charset
  *
  */
 static VALUE scanner_add_charset(VALUE self, VALUE charset) {
@@ -239,9 +239,9 @@ static VALUE scanner_add_charset(VALUE self, VALUE charset) {
  *
  * Throws a RuntimeError if LMS is unable to remove the charset.
  *
- * @param charset charset name as understood by iconv_open(3).
+ * * p1 (charset) charset name as understood by iconv_open(3).
  *
- * @return charset
+ * * return charset
  *
  */
 static VALUE scanner_remove_charset(VALUE self, VALUE charset) {