[Zope] - Referring to URL pieces within Z Publisher/DTML

skip@calendar.com (Skip Montanaro) skip@calendar.com (Skip Montanaro)
Sat, 19 Dec 1998 15:08:02 -0500 (EST)


Me:
    return self.template(month=month, year=year, cal=cal, hint=hint,
			 REQUEST=REQUEST)

Andreas:

    return self.template(REQUEST,month=mont,year=year,cal=cal,
			 hint=hint)

Thanks, I'll give it a try, however, I don't understand what the difference
in the function calls is.  Why should it matter that REQUEST is the first
argument (and called without using keyword syntax), given that I've
explicitly named the formal parameter to which I want the REQUEST object
bound?

Skip