48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||
|
|
||
|
# Noms et extensions reconnus
|
||
|
NAMES=(
|
||
|
Properties:javaproperties
|
||
|
)
|
||
|
EXTS=(
|
||
|
txt:text
|
||
|
conf:conf
|
||
|
sql:sql
|
||
|
mdt:markdown mdwn:markdown md:markdown text:markdown
|
||
|
twp:twpage
|
||
|
puml:puml
|
||
|
iuml:iuml
|
||
|
sh:shell
|
||
|
py:pyfile pyw:pyfile
|
||
|
css:css
|
||
|
js:javascript
|
||
|
html:html4
|
||
|
php:php phps:php
|
||
|
ctp:ctp
|
||
|
java:java api:wosrccomp wosrc:wosrccomp properties:javaproperties
|
||
|
)
|
||
|
|
||
|
# Aliases de templates
|
||
|
TEMPLATES=(
|
||
|
t:text c:conf
|
||
|
md:markdown twp:twpage
|
||
|
plantuml:puml
|
||
|
sh:shell
|
||
|
python:pyfile pyf:pyfile py:pyfile
|
||
|
pym:pymodule
|
||
|
js:javascript
|
||
|
html:html4
|
||
|
properties:javaproperties jprops:javaproperties props:javaproperties
|
||
|
)
|
||
|
|
||
|
# Scripts à utiliser pour générer les templates
|
||
|
TEMPLS=(
|
||
|
text:text conf:text sql:text
|
||
|
markdown:wiki twpage:wiki
|
||
|
puml:plantuml iuml:plantuml
|
||
|
shell:shell
|
||
|
pyfile:python pymodule:python
|
||
|
css:www javascript:www html4:www php:www ctp:www
|
||
|
javaproperties:java java:java woapi:java wosrc:java wosrccomp:java
|
||
|
)
|