I applied the patch to gluon tools (basically just give the 
Wiki.__init__(...,render=None,...) a default value of 'markmin' instead of 
None to remove the first error. Now I need to add an upload field to 
wiki_media but this does not work:



media=db.tables(db.wiki_media)
media.fields.append(Field('filedata', 'blob'))
media.filedata.represent = lambda value,row: \
    A('get it', _href=URL('download', args=value))
db.wiki_media.filename.uploadfield='filedata'








On Friday, October 12, 2012 3:48:11 PM UTC-5, Bill Thayer wrote:
>
> I'm just starting down the same road so I hope you found success or at 
> least some resources.
>
> So far I've had to manually add the tables found in tools.py to Oracle. 
>
> From here it looks like I might need:
>
>
>
> from gluon.tools import Auth, Crud, Service, PluginManager, prettydate, 
> Wiki
> auth = Auth(db)
> crud, service, plugins = Crud(db), Service(), PluginManager()
> wiki = Wiki(auth=auth, render='html')
> or perhaps I'll put it after
>
> auth.define_tables(username=True, migrate=False)
>
> I'll keep you posted.
>
> -Bill
>
> On Friday, September 21, 2012 7:44:13 PM UTC-5, guruyaya wrote:
>>
>> I'm trying to figure out how to use the built in auth.wiki feature. 
>> I read the markmin syntax allows expending the syntax using the "extra" 
>> tag. Is there a way to implement it in auth.wiki? where should the de of 
>> the extra functionality be?
>>
>> *Is there a guide containing all options for this feature?*
>>
>> Thanks in advance
>> Yair 
>>
>

-- 



Reply via email to