Re: site searching

2008-06-24 Thread José Moreira

Hello,

there is a module for dynamic pages, another for news, another for
book publications... meaning that each one has it's own data model.
when the user searches for 'computers', all the modules need to be
searched and return possibles results for aggregation into results
page, like in djago-search.

2008/6/24 James Matthews <[EMAIL PROTECTED]>:
> What are you looking to search? If it's dynamic pages why not search the
> Database
>
> On Tue, Jun 24, 2008 at 10:39 AM, bruno desthuilliers
> <[EMAIL PROTECTED]> wrote:
>>
>>
>>
>> On 23 juin, 17:55, "José Moreira" <[EMAIL PROTECTED]> wrote:
>> > Hi,
>> >
>> > yes while seaching the mailing list i found django-search. More bellow.
>> >
>> > 2008/6/23 bruno desthuilliers <[EMAIL PROTECTED]>:
>> >
>> >
>> (snip)
>> > > c) generic configurable indexer/searcher module using signals to
>> > > reindex created or modified items
>> >
>> > > I'm currently working on such a beast (loosely based on django-
>> > > search's 'simple' backend, but using zope's textindexng3 package for
>> > > full-text indexing).
>> >
>> > its very interesting
>>
>> I can send you a snapshot, but be warned, this is a work in progress.
>>
>>
>>
>
>
>
> --
> http://search.goldwatches.com/?Search=Movado+Watches
> http://www.jewelerslounge.com
> http://www.goldwatches.com
> >
>



-- 
José Moreira
Vila Nova de Gaia
Portugal

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: site searching

2008-06-24 Thread James Matthews
What are you looking to search? If it's dynamic pages why not search the
Database

On Tue, Jun 24, 2008 at 10:39 AM, bruno desthuilliers <
[EMAIL PROTECTED]> wrote:

>
>
>
> On 23 juin, 17:55, "José Moreira" <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > yes while seaching the mailing list i found django-search. More bellow.
> >
> > 2008/6/23 bruno desthuilliers <[EMAIL PROTECTED]>:
> >
> >
> (snip)
> > > c) generic configurable indexer/searcher module using signals to
> > > reindex created or modified items
> >
> > > I'm currently working on such a beast (loosely based on django-
> > > search's 'simple' backend, but using zope's textindexng3 package for
> > > full-text indexing).
> >
> > its very interesting
>
> I can send you a snapshot, but be warned, this is a work in progress.
>
>
> >
>


-- 
http://search.goldwatches.com/?Search=Movado+Watches
http://www.jewelerslounge.com
http://www.goldwatches.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: site searching

2008-06-24 Thread bruno desthuilliers



On 23 juin, 17:55, "José Moreira" <[EMAIL PROTECTED]> wrote:
> Hi,
>
> yes while seaching the mailing list i found django-search. More bellow.
>
> 2008/6/23 bruno desthuilliers <[EMAIL PROTECTED]>:
>
>
(snip)
> > c) generic configurable indexer/searcher module using signals to
> > reindex created or modified items
>
> > I'm currently working on such a beast (loosely based on django-
> > search's 'simple' backend, but using zope's textindexng3 package for
> > full-text indexing).
>
> its very interesting

I can send you a snapshot, but be warned, this is a work in progress.


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: site searching

2008-06-23 Thread José Moreira

Hi,

yes while seaching the mailing list i found django-search. More bellow.

2008/6/23 bruno desthuilliers <[EMAIL PROTECTED]>:
>
> On 23 juin, 17:26, "José Moreira" <[EMAIL PROTECTED]> wrote:
>> Hello,
>>
>> what solutions are you using to provide site search by keywords?
>
> depends on your definition of "search by keywords"...
>

plain old site wide search on the pages. the visitor types a keyword
and the search results are composed from results of links to pages
from each module

the website is split in apps (obviosly).
there's an app to allow dynamic html content (tinymce), an app for
news, an app for a FAQ, et cetera.

>> as i can see thee are 2 methods
>>
>> a) periodic website index through custom bot and a lucene like tool
>
> ie, django-search (http://code.google.com/p/django-search/)
>
>> b) implement a search in every 'module' of the website and gather the
>> results of each
>>
>> any thoughts?
>
> c) generic configurable indexer/searcher module using signals to
> reindex created or modified items
>
> I'm currently working on such a beast (loosely based on django-
> search's 'simple' backend, but using zope's textindexng3 package for
> full-text indexing).
>

its very interesting

>
> >
>



-- 
José Moreira
Vila Nova de Gaia
Portugal

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: site searching

2008-06-23 Thread bruno desthuilliers

On 23 juin, 17:26, "José Moreira" <[EMAIL PROTECTED]> wrote:
> Hello,
>
> what solutions are you using to provide site search by keywords?

depends on your definition of "search by keywords"...

> as i can see thee are 2 methods
>
> a) periodic website index through custom bot and a lucene like tool

ie, django-search (http://code.google.com/p/django-search/)

> b) implement a search in every 'module' of the website and gather the
> results of each
>
> any thoughts?

c) generic configurable indexer/searcher module using signals to
reindex created or modified items

I'm currently working on such a beast (loosely based on django-
search's 'simple' backend, but using zope's textindexng3 package for
full-text indexing).


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



site searching

2008-06-23 Thread José Moreira

Hello,

what solutions are you using to provide site search by keywords?

as i can see thee are 2 methods

a) periodic website index through custom bot and a lucene like tool

b) implement a search in every 'module' of the website and gather the
results of each

any thoughts?

thanks,



-- 
José Moreira
Vila Nova de Gaia
Portugal

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Admin Site Searching

2008-03-04 Thread [EMAIL PROTECTED]

On Mar 3, 1:41 pm, Malcolm Tredinnick <[EMAIL PROTECTED]>
wrote:
> On Sun, 2008-03-02 at 10:03 -0800, Lee Connell wrote:
> > I have configured my django admin site to allow searching.  My
> > question is when a user logs in and chooses the table they wish to
> > make changes to, it automatically queries ALL data and then gives the
> > ability to search.  Is there an option to default to NOT grabbing ALL
> > data and allowing the user to enter search criteria?  This would save
> > load time on larger databases.
>
> No, there is not.

If you took the plunge and switched to newforms-admin then you can
override the changelist_view method in your ModelAdmin class. You'll
need to replicate some of the behaviour of ChangeList from
django.contrib.admin.main. Basically you'll want to check for search
terms and hand off to the super method if any exist. If not then
create a blank ChangeList and render as usual.

Regards,

Felix
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Admin Site Searching

2008-03-03 Thread Malcolm Tredinnick


On Sun, 2008-03-02 at 10:03 -0800, Lee Connell wrote:
> I have configured my django admin site to allow searching.  My
> question is when a user logs in and chooses the table they wish to
> make changes to, it automatically queries ALL data and then gives the
> ability to search.  Is there an option to default to NOT grabbing ALL
> data and allowing the user to enter search criteria?  This would save
> load time on larger databases.

No, there is not.

Malcolm

-- 
If Barbie is so popular, why do you have to buy her friends? 
http://www.pointy-stick.com/blog/


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Admin Site Searching

2008-03-03 Thread [EMAIL PROTECTED]

Hi Lee,

On Mar 3, 1:22 pm, Lee Connell <[EMAIL PROTECTED]> wrote:
> Anyone?

Are you using newforms-admin? I think that this would be possible
under that branch. I can't speak for trunk, however.

Regards,

Felix
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Re: Admin Site Searching

2008-03-03 Thread Lee Connell

Anyone?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



Admin Site Searching

2008-03-02 Thread Lee Connell

I have configured my django admin site to allow searching.  My
question is when a user logs in and chooses the table they wish to
make changes to, it automatically queries ALL data and then gives the
ability to search.  Is there an option to default to NOT grabbing ALL
data and allowing the user to enter search criteria?  This would save
load time on larger databases.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---