https://bugzilla.wikimedia.org/show_bug.cgi?id=45652

       Web browser: ---
            Bug ID: 45652
           Summary: API help should always give parameters' type and
                    default
           Product: MediaWiki
           Version: 1.21-git
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: Unprioritized
         Component: API
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected],
                    [email protected], [email protected],
                    [email protected]
    Classification: Unclassified
   Mobile Platform: ---

api.php auto-generates excellent API documentation. However, it omits the type
of most parameters and the default for some.  It shows the type if it has a
limited namespace, range, or set of values, but it doesn't simply tell you
"Type: string" or "Type: integer".  Similarly, it often omits the default for a
parameter.

For example, look at http://en.wikipedia.org/w/api.php for action=edit.  This
has a redirect parameter, but there's no indication of its type or what the
default behavior is.  The code specifies this information:
            'redirect' => array(
                ApiBase::PARAM_TYPE => 'boolean',
                ApiBase::PARAM_DFLT => false,
            ),
but makeHelpMsgParameters() in ApiBase.php doesn't always output $type and
$default.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to