annotate website/issues/html/home.about.html @ 6593:e70e2789bc2c

issue2551189 - increase text search maxlength This removes I think all the magic references to 25 and 30 (varchar size) and replaces them with references to maxlength or maxlength+5. I am not sure why the db column is 5 characters larger than the size of what should be the max size of a word, but I'll keep the buffer of 5 as making it 1/5 the size of maxlength makes less sense. Also added tests for fts search in templating which were missing. Added postgres, mysql and sqlite native indexing backends in which to test fts. Added fts test to native-fts as well to make sure it's working. I want to commit this now for CI. Todo: add test cases for the use of FTS in the csv output in actions.py. There is no test coverage of the match case there. change maxlength to a higher value (50) as requested in the ticket. Modify existing extremewords test cases to allow words > 25 and < 51 write code to migrate column sizes for mysql and postgresql to match maxlength I will roll this into the version 7 schema update that supports use of database fts support.
author John Rouillard <rouilj@ieee.org>
date Tue, 25 Jan 2022 13:22:00 -0500
parents 4155ed7f00f4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6246
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
1 <!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard Exp dollar-->
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
2
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
3 <tal:block metal:use-macro="templates/page/macros/icing">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
4
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
5 <title metal:fill-slot="head_title" i18n:translate="" >
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
6 About this Tracker
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
7 </title>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
8 <tal:block metal:fill-slot="body_title" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
9 About this Tracker
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
10 </tal:block>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
11
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
12 <div class="content" metal:fill-slot="content">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
13
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
14 <span tal:condition="not:python:request.user.hasRole('Admin')"
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
15 tal:omit-tag="python:1" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
16 Please login with your username and password to find out about
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
17 this tracker.
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
18 </span>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
19
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
20 <div tal:condition="python:request.user.hasRole('Admin')"
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
21 tal:omit-tag="python:1" i18n:translate="">
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
22 <div tal:replace="structure python:utils.AboutPage(db)"></div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
23 </div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
24 </div>
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
25
4155ed7f00f4 Add about page.
John Rouillard <rouilj@ieee.org>
parents:
diff changeset
26 </tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/