On Fri, Jul 4, 2014 at 10:37 AM, Gideon George
wrote:
I want to create an awesome rss feed agregator like that of techi.com
> please is there any example of site that did it in web2py? Also I need
> suggestions on how to go about it.
> Thank you
>
>
>
I have my own personal feed agregator done in
I'm using whoosh backend with plugin_haystack in my application.
But the search function is working only if there is an insert or update db
statement in that function.
For instance :
def temp():
db.my_table.insert(my_row1="temporary data to test the search")
rows = db(index.search(my_row1="data
I'm using whoosh backend with plugin_haystack in my application.
But the search function is working only if there is an insert or update db
statement in that function.
For instance :
def temp():
db.my_table.insert(my_row1="temporary data to test the search")
rows = db(index.search(my_row1="data
I realize this is an ancient topic, but I'm having the very same error
migrating a MySQL table where I'm only removing a self reference field.
It seems like an index was created to guard the (self) foreign-key
constraint and DAL doesn't remove it when deleting the field.
There are no manually-cr
>
> Thanks Anthony,
>
"Register" now doesn't appear in dropdown, but can you simplify description
of what functionality is lost? If the "register" action is needed, how can
it be restored while still suppressing the word "register" in the dropdown?
If that is not possible, where an how can d
I have used PyAPNS https://github.com/simonwhitaker/PyAPNs for this with
some degree of success in the past.
What I do is to send the notifications 1 by 1 which is quite slow but at
least you can catch invalid tokens. This is the relevant part of the code I
use:
for device in ios_devices:
Hi kato!
How to use SQLEDITABLE with a query?
If I try this in your first example:
query = db.employee_sheet.resigned == True
editable = SQLEDITABLE(query, showid=False, maxrow=5).process()
Return error:
AttributeError: 'Query' object has no attribute '_id'
How to filter table?
Than
I believe you should still be able to create a registration form explicitly
via auth.register() (though please try it to confirm). However, if you use
something like the default user action:
def user():
return dict(form=auth())
and call it with a URL like /myapp/default/user/register, it wi
Hi Leonel,
Thank you for your answer.
While I was waiting for an answer to my problem I implemented a solution
very similar to yours. But I have that code (similar to yours) inside a
thread to avoid its slow performance.
The problem is, as I tell here, in other post
(https://groups.google.com
You can use the included web2py scheduler instead of using your own threads
to do what you want.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You rec
I'll study this. But, could I use DAL inside the scheduler and work with my
database without errors as I have working with threads?
Thank you!
On Sunday, July 6, 2014 11:47:02 PM UTC+2, Leonel Câmara wrote:
>
> You can use the included web2py scheduler instead of using your own
> threads to do
Nice!
On Sunday, 6 July 2014 02:01:23 UTC-5, Ricardo Pedroso wrote:
>
> On Fri, Jul 4, 2014 at 10:37 AM, Gideon George
> wrote:
>
> I want to create an awesome rss feed agregator like that of techi.com
>> please is there any example of site that did it in web2py? Also I need
>> suggestions on h
Hi Lyn2py, can you send your script?
On 5 July 2014 14:33, lyn2py wrote:
> Hi Tuan,
>
> I tried the change (line in red) but it couldn't route to my app properly.
> I'm not familiar with the regex routes, so I'm using it as-is. I don't know
> how to troubleshoot this.
>
>
>
> On Friday, July 4,
Ricardo, very nice your solution.
Below, I wrote some questions about it.
>
> On Sunday, 6 July 2014 02:01:23 UTC-5, Ricardo Pedroso wrote:
>>
>> - search is powered by whoosh and bottle - Web2py is querying through a
>> simple restful api.
I was thinking about this piece of your architecture.
I
eric cuver wrote:
> My eyes struck Ractive.js and I want to test it with Web2py. Web2py however
> uses also {{ }} as the templating characters. Ractive uses these characters
> also. how i Can be done ?
These are handlebars templates, am I right?
Put them in separate files and make a raw includ
15 matches
Mail list logo