Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
django-taggit
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Wiki
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
f364ac09
authored
Apr 10, 2010
by
Frank Wiles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Actually use the stem
parent
cf5df6c9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
taggit/contrib/suggest/utils.py
+7
-3
No files found.
taggit/contrib/suggest/utils.py
View file @
f364ac09
...
...
@@ -7,11 +7,15 @@ from django.conf import settings
def
_suggest_keywords
(
content
=
None
):
""" Suggest by keywords """
suggested_keywords
=
set
()
keywords
=
TagKeyword
.
objects
.
values_list
(
'keyword'
,
'tag'
)
keywords
=
TagKeyword
.
objects
.
values_list
(
'keyword'
,
'
stem'
,
'
tag'
)
for
k
in
keywords
:
if
k
[
0
]
in
content
:
suggested_keywords
.
add
(
k
[
1
])
# Use the stem if available, otherwise use the whole keyword
if
k
[
1
]:
if
k
[
1
]
in
content
:
suggested_keywords
.
add
(
k
[
2
])
elif
k
[
0
]
in
content
:
suggested_keywords
.
add
(
k
[
2
])
return
suggested_keywords
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment