feat: referentiel projets dynamique + validation nommage by design
Durcit la convention de nommage des projets (dérive constatée : 'Sliding Automation', 'code_versioning'... au lieu des formes canoniques). - trilium_api.py : projets_canoniques() lit le référentiel = valeurs du label projet sur les notes de type=projet (source unique, pas de constante en dur). Note-projet CodeVersioning créée (manquait). - mcp_server.py : _valider_projet() branché dans les 6 tools de création (add_decision/history/backlog, new_conversation, create_entite, add_skill). Refuse un projet non canonique (suggestion si faute) ou inconnu (renvoi au processus de création de projet). Ne verrouille pas si référentiel illisible. - lint_audit.py : VAL-nommage aligné sur le référentiel (attrape casse, espace ET snake_case ; l'ancien 'contient un espace' ratait code_versioning). - Données : 79 notes ré-étiquetées vers les 3 formes canoniques. Quality by design : l'erreur de nommage devient impossible à l'écriture, le Lint n'est plus que le filet de sécurité.
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
"""
|
||||
pygments.lexers.inferno
|
||||
~~~~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Lexers for Inferno os and all the related stuff.
|
||||
|
||||
:copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
|
||||
:license: BSD, see LICENSE for details.
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
from pygments.lexer import RegexLexer, include, bygroups, default
|
||||
from pygments.token import Punctuation, Comment, Operator, Keyword, \
|
||||
Name, String, Number, Whitespace
|
||||
|
||||
__all__ = ['LimboLexer']
|
||||
|
||||
|
||||
class LimboLexer(RegexLexer):
|
||||
"""
|
||||
Lexer for Limbo programming language
|
||||
|
||||
TODO:
|
||||
- maybe implement better var declaration highlighting
|
||||
- some simple syntax error highlighting
|
||||
"""
|
||||
name = 'Limbo'
|
||||
url = 'http://www.vitanuova.com/inferno/limbo.html'
|
||||
aliases = ['limbo']
|
||||
filenames = ['*.b']
|
||||
mimetypes = ['text/limbo']
|
||||
version_added = '2.0'
|
||||
|
||||
tokens = {
|
||||
'whitespace': [
|
||||
(r'^(\s*)([a-zA-Z_]\w*:)(\s*\n)',
|
||||
bygroups(Whitespace, Name.Label, Whitespace)),
|
||||
(r'\n', Whitespace),
|
||||
(r'\s+', Whitespace),
|
||||
(r'#(\n|(.|\n)*?[^\\]\n)', Comment.Single),
|
||||
],
|
||||
'string': [
|
||||
(r'"', String, '#pop'),
|
||||
(r'\\([\\abfnrtv"\']|x[a-fA-F0-9]{2,4}|'
|
||||
r'u[a-fA-F0-9]{4}|U[a-fA-F0-9]{8}|[0-7]{1,3})', String.Escape),
|
||||
(r'[^\\"\n]+', String), # all other characters
|
||||
(r'\\', String), # stray backslash
|
||||
],
|
||||
'statements': [
|
||||
(r'"', String, 'string'),
|
||||
(r"'(\\.|\\[0-7]{1,3}|\\x[a-fA-F0-9]{1,2}|[^\\\'\n])'", String.Char),
|
||||
(r'(\d+\.\d*|\.\d+|\d+)[eE][+-]?\d+', Number.Float),
|
||||
(r'(\d+\.\d*|\.\d+|\d+[fF])', Number.Float),
|
||||
(r'16r[0-9a-fA-F]+', Number.Hex),
|
||||
(r'8r[0-7]+', Number.Oct),
|
||||
(r'((([1-3]\d)|([2-9]))r)?(\d+)', Number.Integer),
|
||||
(r'[()\[\],.]', Punctuation),
|
||||
(r'[~!%^&*+=|?:<>/-]|(->)|(<-)|(=>)|(::)', Operator),
|
||||
(r'(alt|break|case|continue|cyclic|do|else|exit'
|
||||
r'for|hd|if|implement|import|include|len|load|or'
|
||||
r'pick|return|spawn|tagof|tl|to|while)\b', Keyword),
|
||||
(r'(byte|int|big|real|string|array|chan|list|adt'
|
||||
r'|fn|ref|of|module|self|type)\b', Keyword.Type),
|
||||
(r'(con|iota|nil)\b', Keyword.Constant),
|
||||
(r'[a-zA-Z_]\w*', Name),
|
||||
],
|
||||
'statement' : [
|
||||
include('whitespace'),
|
||||
include('statements'),
|
||||
('[{}]', Punctuation),
|
||||
(';', Punctuation, '#pop'),
|
||||
],
|
||||
'root': [
|
||||
include('whitespace'),
|
||||
default('statement'),
|
||||
],
|
||||
}
|
||||
|
||||
def analyse_text(text):
|
||||
# Any limbo module implements something
|
||||
if re.search(r'^implement \w+;', text, re.MULTILINE):
|
||||
return 0.7
|
||||
|
||||
# TODO:
|
||||
# - Make lexers for:
|
||||
# - asm sources
|
||||
# - man pages
|
||||
# - mkfiles
|
||||
# - module definitions
|
||||
# - namespace definitions
|
||||
# - shell scripts
|
||||
# - maybe keyfiles and fonts
|
||||
# they all seem to be quite similar to their equivalents
|
||||
# from unix world, so there should not be a lot of problems
|
||||
Reference in New Issue
Block a user