#3: Masking of banned words.
- Contents
Banned words will be still saved in the comment's body but they are masked when displayed.
- Proposed by
- Lukas Zdych
- Proposal type
- User interface
- Assigned to release
- Repository branch
- trunk
- State
- completed
Motivation
Banned words are now removed from comment's body forever. Better solution would be to mask them during displaying and let somebody (maybe only auditorium manager) to see raw comments.
Proposal
- move replacing of banned words from comment's body mutator to it's accessor
- add bool parameter to new accessor which will be used to retrieve raw or masked comment's body
- provide UI for auditorium manager to let him switch betweed masked and raw mode
- give better UI for banned words defining
- replace LinesWidget by DataGridWidget
- DataGrid with two columns "word" and "replacement"
- every "word" will be masked with it's "replacement", if no replacement is defined, the word will be masked with default "cover_string"
Progress log
1 move replacing of banned words from comment's body mutator to it's accessor - RESOLVED
2 add bool parameter to new accessor which will be used to retrieve raw or masked comment's body - RESOLVED
3 provide UI for auditorium manager to let him switch betweed masked and raw mode - RESOLVED
4 give better UI for banned words defining
* replace LinesWidget by DataGridWidget
* DataGrid with two columns "word" and "replacement"
* every "word" will be masked with it's "replacement", if no replacement is defined, the word will be masked with default "cover_string" - RESOLVED
