Hey guys,
I found a small bug in the ajax function when you pass in field input names
like "field[location]" or "blog[id]".
So, if I have a form that looks like:
Search Source:
Resumes
Open Web
Location:
Experience:
Education:
And I pass all the input field names through ajax(u,
So in web2py/gluon/serializers.py in rss around line 107:
link=entry('link',None),
Needs to be changed to:
link=entry.get('link',None),
Should I post this to the github page or something?
Hey guys,
Ran into an issue: I copied and pasted the following example from the RSS
section of chapter 3:
(I changed "reponse.generic_patterns" to "response.generic_patterns", I
think it's a typo)
def news():
"generates rss feed form the wiki pages"
reponse.generic_patterns = ['.rss']
3 matches
Mail list logo