# File mod_docs/lang.rb, line 123
  def filter_args
    args = [
      [ 'status', 'status', :select, [
          '302 Found',
          '303 See Other',
          '301 Moved Permanently',
          '307 Temporary Redirect'
        ]
      ]
    ]
    for i in 1..NARGS
      args.push([ "lang#{i}", "language #{i}", :string, nil ])
      args.push([ "location#{i}", "location #{i}", :string, nil ])
    end
    args
  end