tclhttpd

Ticket Change Details
Login

Ticket Change Details

Overview

Artifact ID: 886317cf96518bf35cbc55daf62d3db5e4149a9c
Ticket: 6446fb492877472ad11a074dbc4d28eb49b46ecd
Authentication: enable line "require valid-user" in .htaccess inside limit tags
User & Date: fr 2015-11-02 16:58:57
Changes

  1. foundin changed to: "ffc189660f15a776"
  2. icomment:
    # patch to apply in modules/httpd/auth.tcl
    395c395,400
    <     return [expr {[lsearch $users $user] >= 0}]
    ---
    >     if {[llength $users]} {
    >         return [expr {[lsearch $users $user] >= 0}]
    >     } else {
    >        # valid-user
    >        return 1
    >     }
    555a561,566
    >             if {[expr {[llength $words] == 2}]} {
    >                 if {[string equal valid-user [string tolower [lindex $words 1]]]} {
    >                     lset words 1 user
    >                     lappend words {}
    >                 }
    >             }
    
  3. login: "fr"
  4. mimetype: "text/x-fossil-plain"
  5. private_contact changed to: "1e40d1ae255b2403d4822e08e2539f631e551ea4"
  6. severity changed to: "Important"
  7. status changed to: "Open"
  8. title changed to:
    Authentication: enable line "require valid-user" in .htaccess inside limit tags
    
  9. type changed to: "Feature_Request"