You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/modules/setting
Alexander Scheel 1bf9e44bda
Fix sanitizer config - multiple rules (#11133)
In #9888, it was reported that my earlier pull request #9075 didn't quite function as expected. I was quite hopeful the `ValuesWithShadow()` worked as expected (and, I thought my testing showed it did) but I guess not. @zeripath proposed an alternative syntax which I like:

```ini
[markup.sanitizer.1]
ELEMENT=a
ALLOW_ATTR=target
REGEXP=something
[markup.sanitizer.2]
ELEMENT=a
ALLOW_ATTR=target
REGEXP=something
```

This was quite easy to adopt into the existing code. I've done so in a semi-backwards-compatible manner:

 - The value from `.Value()` is used for each element.
 - We parse `[markup.sanitizer]` and all `[markup.sanitizer.*]` sections and add them as rules.

This means that existing configs will load one rule (not all rules). It also means people can use string identifiers (`[markup.sanitiser.KaTeX]`) if they prefer, instead of numbered ones.

Co-authored-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com>
5 years ago
..
cache.go Cache last commit to accelerate the repository directory page visit (#10069) 5 years ago
cors.go Movde dependents on macaron from modules/setting (#10050) 5 years ago
cron.go Update migrated repositories' issues/comments/prs poster id if user has a github external user saved (#7751) 5 years ago
database.go Fix SQLite concurrency problems by using BEGIN IMMEDIATE (#10368) 5 years ago
database_sqlite.go Move database settings from models to setting (#7806) 6 years ago
database_test.go Move database settings from models to setting (#7806) 6 years ago
git.go Make PR message on pushes configurable (#10664) 5 years ago
indexer.go Add detected file language to code search (#10256) 5 years ago
indexer_test.go Restrict repository indexing by glob match (#7767) 5 years ago
log.go Use Req.URL.RequestURI() to cope with FCGI urls (#9473) 5 years ago
mailer.go Use gitea forked macaron (#7933) 6 years ago
markup.go Fix sanitizer config - multiple rules (#11133) 5 years ago
migrations.go Add retry for migration http/https requests (#9019) 5 years ago
queue.go Add Unique Queue infrastructure and move TestPullRequests to this (#9856) 5 years ago
repository.go Make archive prefixing configurable with a global setting (#9943) 5 years ago
service.go Add /milestones endpoint (#8733) 5 years ago
session.go Movde dependents on macaron from modules/setting (#10050) 5 years ago
setting.go Use AJAX for notifications table (#10961) 5 years ago
task.go Graceful Queues: Issue Indexing and Tasks (#9363) 5 years ago
webhook.go Add Matrix webhook (#10831) 5 years ago