Initial commit.
This commit is contained in:
4890
.etckeeper
Executable file
4890
.etckeeper
Executable file
File diff suppressed because it is too large
Load Diff
49
.gitignore
vendored
Normal file
49
.gitignore
vendored
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
# begin section managed by etckeeper (do not edit this section by hand)
|
||||||
|
|
||||||
|
# old versions of files
|
||||||
|
*.old
|
||||||
|
|
||||||
|
# mount(8) records system state here, no need to store these
|
||||||
|
blkid.tab
|
||||||
|
blkid.tab.old
|
||||||
|
|
||||||
|
# some other files in /etc that typically do not need to be tracked
|
||||||
|
nologin
|
||||||
|
ld.so.cache
|
||||||
|
prelink.cache
|
||||||
|
mtab
|
||||||
|
mtab.fuselock
|
||||||
|
.pwd.lock
|
||||||
|
*.LOCK
|
||||||
|
network/run
|
||||||
|
adjtime
|
||||||
|
lvm/cache
|
||||||
|
lvm/archive
|
||||||
|
X11/xdm/authdir/authfiles/*
|
||||||
|
ntp.conf.dhcp
|
||||||
|
.initctl
|
||||||
|
webmin/fsdump/*.status
|
||||||
|
webmin/webmin/oscache
|
||||||
|
apparmor.d/cache/*
|
||||||
|
service/*/supervise/*
|
||||||
|
service/*/log/supervise/*
|
||||||
|
sv/*/supervise/*
|
||||||
|
sv/*/log/supervise/*
|
||||||
|
*.elc
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
init.d/.depend.*
|
||||||
|
openvpn/openvpn-status.log
|
||||||
|
cups/subscriptions.conf
|
||||||
|
cups/subscriptions.conf.O
|
||||||
|
fake-hwclock.data
|
||||||
|
check_mk/logwatch.state
|
||||||
|
|
||||||
|
# editor temp files
|
||||||
|
*~
|
||||||
|
.*.sw?
|
||||||
|
.sw?
|
||||||
|
\#*\#
|
||||||
|
DEADJOE
|
||||||
|
|
||||||
|
# end section managed by etckeeper
|
||||||
4
.updated
Normal file
4
.updated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# This file was created by systemd-update-done. Its only
|
||||||
|
# purpose is to hold a timestamp of the time this directory
|
||||||
|
# was updated. See man:systemd-update-done.service(8).
|
||||||
|
TIMESTAMP_NSEC=1614695289186707635
|
||||||
211
DIR_COLORS
Normal file
211
DIR_COLORS
Normal file
@@ -0,0 +1,211 @@
|
|||||||
|
# Configuration file for dircolors, a utility to help you set the
|
||||||
|
# LS_COLORS environment variable used by GNU ls with the --color option.
|
||||||
|
|
||||||
|
# This file goes in the /etc directory, and must be world readable.
|
||||||
|
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||||
|
# the system defaults.
|
||||||
|
|
||||||
|
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||||
|
# Copying and distribution of this file, with or without modification,
|
||||||
|
# are permitted provided the copyright notice and this notice are preserved.
|
||||||
|
|
||||||
|
# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
|
||||||
|
# slackware version of dircolors) are recognized but ignored.
|
||||||
|
|
||||||
|
# For compatibility, the pattern "^COLOR.*none" is recognized as a way to
|
||||||
|
# disable colorization. See https://bugzilla.redhat.com/1349579 for details.
|
||||||
|
|
||||||
|
# Below are TERM entries, which can be a glob patterns, to match
|
||||||
|
# against the TERM environment variable to determine if it is colorizable.
|
||||||
|
TERM Eterm
|
||||||
|
TERM ansi
|
||||||
|
TERM *color*
|
||||||
|
TERM con[0-9]*x[0-9]*
|
||||||
|
TERM cons25
|
||||||
|
TERM console
|
||||||
|
TERM cygwin
|
||||||
|
TERM dtterm
|
||||||
|
TERM gnome
|
||||||
|
TERM hurd
|
||||||
|
TERM jfbterm
|
||||||
|
TERM konsole
|
||||||
|
TERM kterm
|
||||||
|
TERM linux
|
||||||
|
TERM linux-c
|
||||||
|
TERM mlterm
|
||||||
|
TERM putty
|
||||||
|
TERM rxvt*
|
||||||
|
TERM screen*
|
||||||
|
TERM st
|
||||||
|
TERM terminator
|
||||||
|
TERM tmux*
|
||||||
|
TERM vt100
|
||||||
|
TERM xterm*
|
||||||
|
|
||||||
|
# Below are the color init strings for the basic file types. A color init
|
||||||
|
# string consists of one or more of the following numeric codes:
|
||||||
|
# Attribute codes:
|
||||||
|
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||||
|
# Text color codes:
|
||||||
|
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||||
|
# Background color codes:
|
||||||
|
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||||
|
#NORMAL 00 # no color code at all
|
||||||
|
#FILE 00 # regular file: use no color at all
|
||||||
|
RESET 0 # reset to "normal" color
|
||||||
|
DIR 01;34 # directory
|
||||||
|
LINK 01;36 # symbolic link. (If you set this to 'target' instead of a
|
||||||
|
# numerical value, the color is as for the file pointed to.)
|
||||||
|
MULTIHARDLINK 00 # regular file with more than one link
|
||||||
|
FIFO 40;33 # pipe
|
||||||
|
SOCK 01;35 # socket
|
||||||
|
DOOR 01;35 # door
|
||||||
|
BLK 40;33;01 # block device driver
|
||||||
|
CHR 40;33;01 # character device driver
|
||||||
|
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
|
||||||
|
MISSING 01;05;37;41 # ... and the files they point to
|
||||||
|
SETUID 37;41 # file that is setuid (u+s)
|
||||||
|
SETGID 30;43 # file that is setgid (g+s)
|
||||||
|
CAPABILITY 30;41 # file with capability
|
||||||
|
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
||||||
|
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
|
||||||
|
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
||||||
|
|
||||||
|
# This is for files with execute permission:
|
||||||
|
EXEC 01;32
|
||||||
|
|
||||||
|
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||||
|
# to colorize below. Put the extension, a space, and the color init string.
|
||||||
|
# (and any comments you want to add after a '#')
|
||||||
|
|
||||||
|
# If you use DOS-style suffixes, you may want to uncomment the following:
|
||||||
|
#.cmd 01;32 # executables (bright green)
|
||||||
|
#.exe 01;32
|
||||||
|
#.com 01;32
|
||||||
|
#.btm 01;32
|
||||||
|
#.bat 01;32
|
||||||
|
# Or if you want to colorize scripts even if they do not have the
|
||||||
|
# executable bit actually set.
|
||||||
|
#.sh 01;32
|
||||||
|
#.csh 01;32
|
||||||
|
|
||||||
|
# archives or compressed (bright red)
|
||||||
|
.tar 01;31
|
||||||
|
.tgz 01;31
|
||||||
|
.arc 01;31
|
||||||
|
.arj 01;31
|
||||||
|
.taz 01;31
|
||||||
|
.lha 01;31
|
||||||
|
.lz4 01;31
|
||||||
|
.lzh 01;31
|
||||||
|
.lzma 01;31
|
||||||
|
.tlz 01;31
|
||||||
|
.txz 01;31
|
||||||
|
.tzo 01;31
|
||||||
|
.t7z 01;31
|
||||||
|
.zip 01;31
|
||||||
|
.z 01;31
|
||||||
|
.dz 01;31
|
||||||
|
.gz 01;31
|
||||||
|
.lrz 01;31
|
||||||
|
.lz 01;31
|
||||||
|
.lzo 01;31
|
||||||
|
.xz 01;31
|
||||||
|
.zst 01;31
|
||||||
|
.tzst 01;31
|
||||||
|
.bz2 01;31
|
||||||
|
.bz 01;31
|
||||||
|
.tbz 01;31
|
||||||
|
.tbz2 01;31
|
||||||
|
.tz 01;31
|
||||||
|
.deb 01;31
|
||||||
|
.rpm 01;31
|
||||||
|
.jar 01;31
|
||||||
|
.war 01;31
|
||||||
|
.ear 01;31
|
||||||
|
.sar 01;31
|
||||||
|
.rar 01;31
|
||||||
|
.alz 01;31
|
||||||
|
.ace 01;31
|
||||||
|
.zoo 01;31
|
||||||
|
.cpio 01;31
|
||||||
|
.7z 01;31
|
||||||
|
.rz 01;31
|
||||||
|
.cab 01;31
|
||||||
|
.wim 01;31
|
||||||
|
.swm 01;31
|
||||||
|
.dwm 01;31
|
||||||
|
.esd 01;31
|
||||||
|
|
||||||
|
# image formats
|
||||||
|
.jpg 01;35
|
||||||
|
.jpeg 01;35
|
||||||
|
.mjpg 01;35
|
||||||
|
.mjpeg 01;35
|
||||||
|
.gif 01;35
|
||||||
|
.bmp 01;35
|
||||||
|
.pbm 01;35
|
||||||
|
.pgm 01;35
|
||||||
|
.ppm 01;35
|
||||||
|
.tga 01;35
|
||||||
|
.xbm 01;35
|
||||||
|
.xpm 01;35
|
||||||
|
.tif 01;35
|
||||||
|
.tiff 01;35
|
||||||
|
.png 01;35
|
||||||
|
.svg 01;35
|
||||||
|
.svgz 01;35
|
||||||
|
.mng 01;35
|
||||||
|
.pcx 01;35
|
||||||
|
.mov 01;35
|
||||||
|
.mpg 01;35
|
||||||
|
.mpeg 01;35
|
||||||
|
.m2v 01;35
|
||||||
|
.mkv 01;35
|
||||||
|
.webm 01;35
|
||||||
|
.ogm 01;35
|
||||||
|
.mp4 01;35
|
||||||
|
.m4v 01;35
|
||||||
|
.mp4v 01;35
|
||||||
|
.vob 01;35
|
||||||
|
.qt 01;35
|
||||||
|
.nuv 01;35
|
||||||
|
.wmv 01;35
|
||||||
|
.asf 01;35
|
||||||
|
.rm 01;35
|
||||||
|
.rmvb 01;35
|
||||||
|
.flc 01;35
|
||||||
|
.avi 01;35
|
||||||
|
.fli 01;35
|
||||||
|
.flv 01;35
|
||||||
|
.gl 01;35
|
||||||
|
.dl 01;35
|
||||||
|
.xcf 01;35
|
||||||
|
.xwd 01;35
|
||||||
|
.yuv 01;35
|
||||||
|
.cgm 01;35
|
||||||
|
.emf 01;35
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.ogv 01;35
|
||||||
|
.ogx 01;35
|
||||||
|
|
||||||
|
# audio formats
|
||||||
|
.aac 01;36
|
||||||
|
.au 01;36
|
||||||
|
.flac 01;36
|
||||||
|
.m4a 01;36
|
||||||
|
.mid 01;36
|
||||||
|
.midi 01;36
|
||||||
|
.mka 01;36
|
||||||
|
.mp3 01;36
|
||||||
|
.mpc 01;36
|
||||||
|
.ogg 01;36
|
||||||
|
.ra 01;36
|
||||||
|
.wav 01;36
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.oga 01;36
|
||||||
|
.opus 01;36
|
||||||
|
.spx 01;36
|
||||||
|
.xspf 01;36
|
||||||
202
DIR_COLORS.256color
Normal file
202
DIR_COLORS.256color
Normal file
@@ -0,0 +1,202 @@
|
|||||||
|
# Configuration file for the 256color ls utility
|
||||||
|
|
||||||
|
# This file goes in the /etc directory, and must be world readable.
|
||||||
|
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||||
|
# the system defaults.
|
||||||
|
|
||||||
|
# Configuration file for dircolors, a utility to help you set the
|
||||||
|
# LS_COLORS environment variable used by GNU ls with the --color option.
|
||||||
|
|
||||||
|
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||||
|
# Copying and distribution of this file, with or without modification,
|
||||||
|
# are permitted provided the copyright notice and this notice are preserved.
|
||||||
|
|
||||||
|
# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
|
||||||
|
# slackware version of dircolors) are recognized but ignored.
|
||||||
|
|
||||||
|
# For compatibility, the pattern "^COLOR.*none" is recognized as a way to
|
||||||
|
# disable colorization. See https://bugzilla.redhat.com/1349579 for details.
|
||||||
|
|
||||||
|
# Below are TERM entries, which can be a glob patterns, to match
|
||||||
|
# against the TERM environment variable to determine if it is colorizable.
|
||||||
|
TERM *256color*
|
||||||
|
TERM rxvt-unicode256
|
||||||
|
|
||||||
|
# Below are the color init strings for the basic file types. A color init
|
||||||
|
# string consists of one or more of the following numeric codes:
|
||||||
|
# Attribute codes:
|
||||||
|
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||||
|
# Text color codes:
|
||||||
|
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||||
|
# Background color codes:
|
||||||
|
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||||
|
# Text color(256 colors mode) codes:
|
||||||
|
# Valid syntax for text 256color is 38;5;<color number> , where color number
|
||||||
|
# is number between 0 and 255.
|
||||||
|
# You may find following command useful to search the best one for you:
|
||||||
|
# for ((x=0; x<=255; x++));do echo -e "${x}:\033[38;5;${x}mcolor\033[000m";done
|
||||||
|
# Background color(256 colors mode) codes:
|
||||||
|
# Valid syntax for background 256color is 48;5;<color number> , where
|
||||||
|
# color number is number between 0 and 255.
|
||||||
|
# You may find following command useful to search the best one for you:
|
||||||
|
# for ((x=0; x<=255; x++));do echo -e "${x}:\033[48;5;${x}mcolor\033[000m";done
|
||||||
|
|
||||||
|
#NORMAL 00 # no color code at all
|
||||||
|
#FILE 00 # regular file: use no color at all
|
||||||
|
RESET 0 # reset to "normal" color
|
||||||
|
DIR 38;5;33 # directory
|
||||||
|
LINK 38;5;51 # symbolic link. (If you set this to 'target' instead of a
|
||||||
|
# numerical value, the color is as for the file pointed to.)
|
||||||
|
MULTIHARDLINK 00 # regular file with more than one link
|
||||||
|
FIFO 40;38;5;11 # pipe
|
||||||
|
SOCK 38;5;13 # socket
|
||||||
|
DOOR 38;5;5 # door
|
||||||
|
BLK 48;5;232;38;5;11 # block device driver
|
||||||
|
CHR 48;5;232;38;5;3 # character device driver
|
||||||
|
ORPHAN 48;5;232;38;5;9 # symlink to nonexistent file, or non-stat'able file ...
|
||||||
|
MISSING 01;05;37;41 # ... and the files they point to
|
||||||
|
SETUID 48;5;196;38;5;15 # file that is setuid (u+s)
|
||||||
|
SETGID 48;5;11;38;5;16 # file that is setgid (g+s)
|
||||||
|
CAPABILITY 48;5;196;38;5;226 # file with capability
|
||||||
|
STICKY_OTHER_WRITABLE 48;5;10;38;5;16 # dir that is sticky and other-writable (+t,o+w)
|
||||||
|
OTHER_WRITABLE 48;5;10;38;5;21 # dir that is other-writable (o+w) and not sticky
|
||||||
|
STICKY 48;5;21;38;5;15 # dir with the sticky bit set (+t) and not other-writable
|
||||||
|
|
||||||
|
# This is for files with execute permission:
|
||||||
|
EXEC 38;5;40
|
||||||
|
|
||||||
|
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||||
|
# to colorize below. Put the extension, a space, and the color init string.
|
||||||
|
# (and any comments you want to add after a '#')
|
||||||
|
|
||||||
|
# If you use DOS-style suffixes, you may want to uncomment the following:
|
||||||
|
#.cmd 01;32 # executables (bright green)
|
||||||
|
#.exe 01;32
|
||||||
|
#.com 01;32
|
||||||
|
#.btm 01;32
|
||||||
|
#.bat 01;32
|
||||||
|
# Or if you want to colorize scripts even if they do not have the
|
||||||
|
# executable bit actually set.
|
||||||
|
#.sh 01;32
|
||||||
|
#.csh 01;32
|
||||||
|
|
||||||
|
# archives or compressed (bright red)
|
||||||
|
.tar 38;5;9
|
||||||
|
.tgz 38;5;9
|
||||||
|
.arc 38;5;9
|
||||||
|
.arj 38;5;9
|
||||||
|
.taz 38;5;9
|
||||||
|
.lha 38;5;9
|
||||||
|
.lz4 38;5;9
|
||||||
|
.lzh 38;5;9
|
||||||
|
.lzma 38;5;9
|
||||||
|
.tlz 38;5;9
|
||||||
|
.txz 38;5;9
|
||||||
|
.tzo 38;5;9
|
||||||
|
.t7z 38;5;9
|
||||||
|
.zip 38;5;9
|
||||||
|
.z 38;5;9
|
||||||
|
.dz 38;5;9
|
||||||
|
.gz 38;5;9
|
||||||
|
.lrz 38;5;9
|
||||||
|
.lz 38;5;9
|
||||||
|
.lzo 38;5;9
|
||||||
|
.xz 38;5;9
|
||||||
|
.zst 38;5;9
|
||||||
|
.tzst 38;5;9
|
||||||
|
.bz2 38;5;9
|
||||||
|
.bz 38;5;9
|
||||||
|
.tbz 38;5;9
|
||||||
|
.tbz2 38;5;9
|
||||||
|
.tz 38;5;9
|
||||||
|
.deb 38;5;9
|
||||||
|
.rpm 38;5;9
|
||||||
|
.jar 38;5;9
|
||||||
|
.war 38;5;9
|
||||||
|
.ear 38;5;9
|
||||||
|
.sar 38;5;9
|
||||||
|
.rar 38;5;9
|
||||||
|
.alz 38;5;9
|
||||||
|
.ace 38;5;9
|
||||||
|
.zoo 38;5;9
|
||||||
|
.cpio 38;5;9
|
||||||
|
.7z 38;5;9
|
||||||
|
.rz 38;5;9
|
||||||
|
.cab 38;5;9
|
||||||
|
.wim 38;5;9
|
||||||
|
.swm 38;5;9
|
||||||
|
.dwm 38;5;9
|
||||||
|
.esd 38;5;9
|
||||||
|
|
||||||
|
# image formats
|
||||||
|
.jpg 38;5;13
|
||||||
|
.jpeg 38;5;13
|
||||||
|
.mjpg 38;5;13
|
||||||
|
.mjpeg 38;5;13
|
||||||
|
.gif 38;5;13
|
||||||
|
.bmp 38;5;13
|
||||||
|
.pbm 38;5;13
|
||||||
|
.pgm 38;5;13
|
||||||
|
.ppm 38;5;13
|
||||||
|
.tga 38;5;13
|
||||||
|
.xbm 38;5;13
|
||||||
|
.xpm 38;5;13
|
||||||
|
.tif 38;5;13
|
||||||
|
.tiff 38;5;13
|
||||||
|
.png 38;5;13
|
||||||
|
.svg 38;5;13
|
||||||
|
.svgz 38;5;13
|
||||||
|
.mng 38;5;13
|
||||||
|
.pcx 38;5;13
|
||||||
|
.mov 38;5;13
|
||||||
|
.mpg 38;5;13
|
||||||
|
.mpeg 38;5;13
|
||||||
|
.m2v 38;5;13
|
||||||
|
.mkv 38;5;13
|
||||||
|
.webm 38;5;13
|
||||||
|
.ogm 38;5;13
|
||||||
|
.mp4 38;5;13
|
||||||
|
.m4v 38;5;13
|
||||||
|
.mp4v 38;5;13
|
||||||
|
.vob 38;5;13
|
||||||
|
.qt 38;5;13
|
||||||
|
.nuv 38;5;13
|
||||||
|
.wmv 38;5;13
|
||||||
|
.asf 38;5;13
|
||||||
|
.rm 38;5;13
|
||||||
|
.rmvb 38;5;13
|
||||||
|
.flc 38;5;13
|
||||||
|
.avi 38;5;13
|
||||||
|
.fli 38;5;13
|
||||||
|
.flv 38;5;13
|
||||||
|
.gl 38;5;13
|
||||||
|
.dl 38;5;13
|
||||||
|
.xcf 38;5;13
|
||||||
|
.xwd 38;5;13
|
||||||
|
.yuv 38;5;13
|
||||||
|
.cgm 38;5;13
|
||||||
|
.emf 38;5;13
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.ogv 38;5;13
|
||||||
|
.ogx 38;5;13
|
||||||
|
|
||||||
|
# audio formats
|
||||||
|
.aac 38;5;45
|
||||||
|
.au 38;5;45
|
||||||
|
.flac 38;5;45
|
||||||
|
.m4a 38;5;45
|
||||||
|
.mid 38;5;45
|
||||||
|
.midi 38;5;45
|
||||||
|
.mka 38;5;45
|
||||||
|
.mp3 38;5;45
|
||||||
|
.mpc 38;5;45
|
||||||
|
.ogg 38;5;45
|
||||||
|
.ra 38;5;45
|
||||||
|
.wav 38;5;45
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.oga 38;5;45
|
||||||
|
.opus 38;5;45
|
||||||
|
.spx 38;5;45
|
||||||
|
.xspf 38;5;45
|
||||||
213
DIR_COLORS.lightbgcolor
Normal file
213
DIR_COLORS.lightbgcolor
Normal file
@@ -0,0 +1,213 @@
|
|||||||
|
# Configuration file for the color ls utility - modified for lighter backgrounds
|
||||||
|
|
||||||
|
# This file goes in the /etc directory, and must be world readable.
|
||||||
|
# You can copy this file to .dir_colors in your $HOME directory to override
|
||||||
|
# the system defaults.
|
||||||
|
|
||||||
|
# Configuration file for dircolors, a utility to help you set the
|
||||||
|
# LS_COLORS environment variable used by GNU ls with the --color option.
|
||||||
|
|
||||||
|
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||||
|
# Copying and distribution of this file, with or without modification,
|
||||||
|
# are permitted provided the copyright notice and this notice are preserved.
|
||||||
|
|
||||||
|
# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
|
||||||
|
# slackware version of dircolors) are recognized but ignored.
|
||||||
|
|
||||||
|
# For compatibility, the pattern "^COLOR.*none" is recognized as a way to
|
||||||
|
# disable colorization. See https://bugzilla.redhat.com/1349579 for details.
|
||||||
|
|
||||||
|
# Below are TERM entries, which can be a glob patterns, to match
|
||||||
|
# against the TERM environment variable to determine if it is colorizable.
|
||||||
|
TERM Eterm
|
||||||
|
TERM ansi
|
||||||
|
TERM *color*
|
||||||
|
TERM con[0-9]*x[0-9]*
|
||||||
|
TERM cons25
|
||||||
|
TERM console
|
||||||
|
TERM cygwin
|
||||||
|
TERM dtterm
|
||||||
|
TERM gnome
|
||||||
|
TERM hurd
|
||||||
|
TERM jfbterm
|
||||||
|
TERM konsole
|
||||||
|
TERM kterm
|
||||||
|
TERM linux
|
||||||
|
TERM linux-c
|
||||||
|
TERM mlterm
|
||||||
|
TERM putty
|
||||||
|
TERM rxvt*
|
||||||
|
TERM screen*
|
||||||
|
TERM st
|
||||||
|
TERM terminator
|
||||||
|
TERM tmux*
|
||||||
|
TERM vt100
|
||||||
|
TERM xterm*
|
||||||
|
|
||||||
|
# Below are the color init strings for the basic file types. A color init
|
||||||
|
# string consists of one or more of the following numeric codes:
|
||||||
|
# Attribute codes:
|
||||||
|
# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
|
||||||
|
# Text color codes:
|
||||||
|
# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
|
||||||
|
# Background color codes:
|
||||||
|
# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
|
||||||
|
#NORMAL 00 # no color code at all
|
||||||
|
#FILE 00 # regular file: use no color at all
|
||||||
|
RESET 0 # reset to "normal" color
|
||||||
|
DIR 00;34 # directory
|
||||||
|
LINK 00;36 # symbolic link. (If you set this to 'target' instead of a
|
||||||
|
# numerical value, the color is as for the file pointed to.)
|
||||||
|
MULTIHARDLINK 00 # regular file with more than one link
|
||||||
|
FIFO 40;33 # pipe
|
||||||
|
SOCK 00;35 # socket
|
||||||
|
DOOR 00;35 # door
|
||||||
|
BLK 40;33;01 # block device driver
|
||||||
|
CHR 40;33;01 # character device driver
|
||||||
|
ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ...
|
||||||
|
MISSING 01;05;37;41 # ... and the files they point to
|
||||||
|
SETUID 37;41 # file that is setuid (u+s)
|
||||||
|
SETGID 30;43 # file that is setgid (g+s)
|
||||||
|
CAPABILITY 30;41 # file with capability
|
||||||
|
STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
|
||||||
|
OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
|
||||||
|
STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
|
||||||
|
|
||||||
|
# This is for files with execute permission:
|
||||||
|
EXEC 00;32
|
||||||
|
|
||||||
|
# List any file extensions like '.gz' or '.tar' that you would like ls
|
||||||
|
# to colorize below. Put the extension, a space, and the color init string.
|
||||||
|
# (and any comments you want to add after a '#')
|
||||||
|
|
||||||
|
# If you use DOS-style suffixes, you may want to uncomment the following:
|
||||||
|
#.cmd 01;32 # executables (bright green)
|
||||||
|
#.exe 01;32
|
||||||
|
#.com 01;32
|
||||||
|
#.btm 01;32
|
||||||
|
#.bat 01;32
|
||||||
|
# Or if you want to colorize scripts even if they do not have the
|
||||||
|
# executable bit actually set.
|
||||||
|
#.sh 01;32
|
||||||
|
#.csh 01;32
|
||||||
|
|
||||||
|
# archives or compressed (bright red)
|
||||||
|
.tar 00;31
|
||||||
|
.tgz 00;31
|
||||||
|
.arc 00;31
|
||||||
|
.arj 00;31
|
||||||
|
.taz 00;31
|
||||||
|
.lha 00;31
|
||||||
|
.lz4 00;31
|
||||||
|
.lzh 00;31
|
||||||
|
.lzma 00;31
|
||||||
|
.tlz 00;31
|
||||||
|
.txz 00;31
|
||||||
|
.tzo 00;31
|
||||||
|
.t7z 00;31
|
||||||
|
.zip 00;31
|
||||||
|
.z 00;31
|
||||||
|
.dz 00;31
|
||||||
|
.gz 00;31
|
||||||
|
.lrz 00;31
|
||||||
|
.lz 00;31
|
||||||
|
.lzo 00;31
|
||||||
|
.xz 00;31
|
||||||
|
.zst 00;31
|
||||||
|
.tzst 00;31
|
||||||
|
.bz2 00;31
|
||||||
|
.bz 00;31
|
||||||
|
.tbz 00;31
|
||||||
|
.tbz2 00;31
|
||||||
|
.tz 00;31
|
||||||
|
.deb 00;31
|
||||||
|
.rpm 00;31
|
||||||
|
.jar 00;31
|
||||||
|
.war 00;31
|
||||||
|
.ear 00;31
|
||||||
|
.sar 00;31
|
||||||
|
.rar 00;31
|
||||||
|
.alz 00;31
|
||||||
|
.ace 00;31
|
||||||
|
.zoo 00;31
|
||||||
|
.cpio 00;31
|
||||||
|
.7z 00;31
|
||||||
|
.rz 00;31
|
||||||
|
.cab 00;31
|
||||||
|
.wim 00;31
|
||||||
|
.swm 00;31
|
||||||
|
.dwm 00;31
|
||||||
|
.esd 00;31
|
||||||
|
|
||||||
|
# image formats
|
||||||
|
.jpg 00;35
|
||||||
|
.jpeg 00;35
|
||||||
|
.mjpg 00;35
|
||||||
|
.mjpeg 00;35
|
||||||
|
.gif 00;35
|
||||||
|
.bmp 00;35
|
||||||
|
.pbm 00;35
|
||||||
|
.pgm 00;35
|
||||||
|
.ppm 00;35
|
||||||
|
.tga 00;35
|
||||||
|
.xbm 00;35
|
||||||
|
.xpm 00;35
|
||||||
|
.tif 00;35
|
||||||
|
.tiff 00;35
|
||||||
|
.png 00;35
|
||||||
|
.svg 00;35
|
||||||
|
.svgz 00;35
|
||||||
|
.mng 00;35
|
||||||
|
.pcx 00;35
|
||||||
|
.mov 00;35
|
||||||
|
.mpg 00;35
|
||||||
|
.mpeg 00;35
|
||||||
|
.m2v 00;35
|
||||||
|
.mkv 00;35
|
||||||
|
.webm 00;35
|
||||||
|
.ogm 00;35
|
||||||
|
.mp4 00;35
|
||||||
|
.m4v 00;35
|
||||||
|
.mp4v 00;35
|
||||||
|
.vob 00;35
|
||||||
|
.qt 00;35
|
||||||
|
.nuv 00;35
|
||||||
|
.wmv 00;35
|
||||||
|
.asf 00;35
|
||||||
|
.rm 00;35
|
||||||
|
.rmvb 00;35
|
||||||
|
.flc 00;35
|
||||||
|
.avi 00;35
|
||||||
|
.fli 00;35
|
||||||
|
.flv 00;35
|
||||||
|
.gl 00;35
|
||||||
|
.dl 00;35
|
||||||
|
.xcf 00;35
|
||||||
|
.xwd 00;35
|
||||||
|
.yuv 00;35
|
||||||
|
.cgm 00;35
|
||||||
|
.emf 00;35
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.ogv 00;35
|
||||||
|
.ogx 00;35
|
||||||
|
|
||||||
|
# audio formats
|
||||||
|
.aac 00;36
|
||||||
|
.au 00;36
|
||||||
|
.flac 00;36
|
||||||
|
.m4a 00;36
|
||||||
|
.mid 00;36
|
||||||
|
.midi 00;36
|
||||||
|
.mka 00;36
|
||||||
|
.mp3 00;36
|
||||||
|
.mpc 00;36
|
||||||
|
.ogg 00;36
|
||||||
|
.ra 00;36
|
||||||
|
.wav 00;36
|
||||||
|
|
||||||
|
# https://wiki.xiph.org/MIME_Types_and_File_Extensions
|
||||||
|
.oga 00;36
|
||||||
|
.opus 00;36
|
||||||
|
.spx 00;36
|
||||||
|
.xspf 00;36
|
||||||
4
GREP_COLORS
Normal file
4
GREP_COLORS
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# Configuration file for the color grep utility
|
||||||
|
|
||||||
|
# 'none' shuts colorization off.
|
||||||
|
#COLOR none
|
||||||
23
ImageMagick-6/coder.xml
Normal file
23
ImageMagick-6/coder.xml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE codermap [
|
||||||
|
<!ELEMENT codermap (coder)+>
|
||||||
|
<!ATTLIST codermap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT coder EMPTY>
|
||||||
|
<!ATTLIST coder xmlns CDATA #FIXED '' magick NMTOKEN #REQUIRED
|
||||||
|
name NMTOKEN #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Associate an image format with the specified coder module.
|
||||||
|
|
||||||
|
ImageMagick has a number of coder modules to support the reading and/or
|
||||||
|
writing of an image format (e.g. JPEG). Some coder modules support more
|
||||||
|
than one associated image format and the mapping between an associated
|
||||||
|
format and its respective coder module is defined in this configuration
|
||||||
|
file. For example, the PNG coder module not only supports the PNG image
|
||||||
|
format, but the JNG and MNG formats as well.
|
||||||
|
-->
|
||||||
|
<codermap>
|
||||||
|
<!-- <coder magick="GIF87" name="GIF"/> -->
|
||||||
|
<!-- <coder magick="JPG" name="JPEG"/> -->
|
||||||
|
<!-- <coder magick="PGM" name="PNM"/> -->
|
||||||
|
</codermap>
|
||||||
28
ImageMagick-6/colors.xml
Normal file
28
ImageMagick-6/colors.xml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE colormap [
|
||||||
|
<!ELEMENT colormap (color)+>
|
||||||
|
<!ELEMENT color (#PCDATA)>
|
||||||
|
<!ATTLIST color name CDATA "0">
|
||||||
|
<!ATTLIST color color CDATA "rgb(0,0,0)">
|
||||||
|
<!ATTLIST color compliance CDATA "SVG">
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Associate a color name with its red, green, blue, and alpha intensities.
|
||||||
|
|
||||||
|
A number of methods and options require a color parameter. It is often
|
||||||
|
convenient to refer to a color by name (e.g. white) rather than by hex
|
||||||
|
value (e.g. #fff). This file maps a color name to its equivalent red,
|
||||||
|
green, blue, and alpha intensities (e.g. for white, red = 255, green =
|
||||||
|
255, blue = 255, and alpha = 0).
|
||||||
|
-->
|
||||||
|
<colormap>
|
||||||
|
<!-- <color name="none" color="rgba(0,0,0,0)" compliance="SVG, XPM"/> -->
|
||||||
|
<!-- <color name="black" color="rgb(0,0,0)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="red" color="rgb(255,0,0)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="magenta" color="rgb(255,0,255)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="green" color="rgb(0,128,0)" compliance="SVG"/> -->
|
||||||
|
<!-- <color name="cyan" color="rgb(0,255,255)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="blue" color="rgb(0,0,255)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="yellow" color="rgb(255,255,0)" compliance="SVG, X11, XPM"/> -->
|
||||||
|
<!-- <color name="white" color="rgb(255,255,255)" compliance="SVG, X11"/> -->
|
||||||
|
</colormap>
|
||||||
123
ImageMagick-6/delegates.xml
Normal file
123
ImageMagick-6/delegates.xml
Normal file
@@ -0,0 +1,123 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE delegatemap [
|
||||||
|
<!ELEMENT delegatemap (delegate)+>
|
||||||
|
<!ATTLIST delegatemap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT delegate EMPTY>
|
||||||
|
<!ATTLIST delegate xmlns CDATA #FIXED '' command CDATA #REQUIRED
|
||||||
|
decode NMTOKEN #IMPLIED encode NMTOKEN #IMPLIED mode NMTOKEN #IMPLIED
|
||||||
|
spawn NMTOKEN #IMPLIED stealth NMTOKEN #IMPLIED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Delegate command file.
|
||||||
|
|
||||||
|
Commands which specify
|
||||||
|
|
||||||
|
decode="in_format" encode="out_format"
|
||||||
|
|
||||||
|
specify the rules for converting from in_format to out_format. Use these
|
||||||
|
rules to translate directly between formats.
|
||||||
|
|
||||||
|
Commands which specify only
|
||||||
|
|
||||||
|
decode="in_format"
|
||||||
|
|
||||||
|
specify the rules for converting from in_format to some format that
|
||||||
|
ImageMagick automatically recognizes. Use these rules to decode formats.
|
||||||
|
|
||||||
|
Commands which specify only
|
||||||
|
|
||||||
|
encode="out_format"
|
||||||
|
|
||||||
|
specify the rules for an "encoder" which may accept any input format.
|
||||||
|
|
||||||
|
The substitution rules are as follows:
|
||||||
|
|
||||||
|
%a authentication passphrase
|
||||||
|
%b image file size in bytes
|
||||||
|
%g image geometry
|
||||||
|
%h image rows (height)
|
||||||
|
%i input image filename
|
||||||
|
%# input image signature
|
||||||
|
%m input image format
|
||||||
|
%o output image filename
|
||||||
|
%p page number
|
||||||
|
%q input image depth
|
||||||
|
%s scene number
|
||||||
|
%u unique temporary filename
|
||||||
|
%w image columns (width)
|
||||||
|
%x input image x resolution
|
||||||
|
%y input image y resolution
|
||||||
|
|
||||||
|
Set option delegate:bimodal=true to process bimodal delegates otherwise they
|
||||||
|
are ignored.
|
||||||
|
|
||||||
|
If stealth="True" the delegate is not listed in user requested
|
||||||
|
"-list delegate" listings. These are typically special internal delegates.
|
||||||
|
|
||||||
|
If spawn="True", ImageMagick does not wait for the delegate to finish, nor
|
||||||
|
will it read any output image.
|
||||||
|
-->
|
||||||
|
<delegatemap>
|
||||||
|
<delegate decode="bpg" command=""bpgdec" -b 16 -o "%o.png" "%i"; /usr/bin/mv "%o.png" "%o""/>
|
||||||
|
<delegate decode="png" encode="bpg" command=""bpgenc" -b 12 -q "%~" -o "%o" "%i""/>
|
||||||
|
<delegate decode="blender" command=""blender" -b "%i" -F PNG -o "%o""\n"convert" -concatenate "%o*.png" "%o""/>
|
||||||
|
<delegate decode="browse" stealth="True" spawn="True" command=""xdg-open" https://imagemagick.org/; /usr/bin/rm "%i""/>
|
||||||
|
<delegate decode="cdr" command=""uniconvertor" "%i" "%o.svg"; /usr/bin/mv "%o.svg" "%o""/>
|
||||||
|
<delegate decode="cgm" command=""uniconvertor" "%i" "%o.svg"; /usr/bin/mv "%o.svg" "%o""/>
|
||||||
|
<delegate decode="https:decode" command=""curl" -s -k -L -o "%u.dat" "https:%M""/>
|
||||||
|
<delegate decode="doc" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="docx" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="dng:decode" command=""ufraw-batch" --silent --create-id=also --out-type=png --out-depth=16 "--output=%u.png" "%i""/>
|
||||||
|
<delegate decode="dot" command='"dot" -Tsvg "%i" -o "%o"' />
|
||||||
|
<delegate decode="dvi" command=""dvips" -sstdout=%%stderr -o "%o" "%i""/>
|
||||||
|
<delegate decode="dxf" command=""uniconvertor" "%i" "%o.svg"; /usr/bin/mv "%o.svg" "%o""/>
|
||||||
|
<delegate decode="edit" stealth="True" command=""xterm" -title "Edit Image Comment" -e vi "%o""/>
|
||||||
|
<delegate decode="eps" encode="pdf" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 "-sDEVICE=pdfwrite" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="eps" encode="ps" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=ps2write" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="fig" command=""uniconvertor" "%i" "%o.svg"; /usr/bin/mv "%o.svg" "%o""/>
|
||||||
|
<delegate decode="hpg" command=""hp2xx" -sstdout=%%stderr -m eps -f `basename "%o"` "%i"; /usr/bin/mv -f `basename "%o"` "%o""/>
|
||||||
|
<delegate decode="hpgl" command=""hp2xx" -sstdout=%%stderr -m eps -f `basename "%o"` "%i"; /usr/bin/mv -f `basename "%o"` "%o""/>
|
||||||
|
<delegate decode="htm" command=""html2ps" -U -o "%o" "%i""/>
|
||||||
|
<delegate decode="html" command=""html2ps" -U -o "%o" "%i""/>
|
||||||
|
<delegate decode="ilbm" command=""ilbmtoppm" "%i" > "%o""/>
|
||||||
|
<delegate decode="jpg" encode="lep" mode="encode" command=""lepton" "%i" "%o""/>
|
||||||
|
<delegate decode="jxr" command="/usr/bin/mv "%i" "%i.jxr"; "JxrDecApp" -i "%i.jxr" -o "%o.pnm"; /usr/bin/mv "%i.jxr" "%i"; /usr/bin/mv "%o.pnm" "%o""/>
|
||||||
|
<delegate decode="lep" mode="decode" command=""lepton" "%i" "%o""/>
|
||||||
|
<delegate decode="miff" encode="show" spawn="True" command=""display" -immutable -delay 0 -title "%M" "%i""/>
|
||||||
|
<delegate decode="miff" encode="win" stealth="True" spawn="True" command=""display" -immutable -delay 0 -title "%M" "%i""/>
|
||||||
|
<delegate decode="mpeg:decode" command=""ffmpeg" -nostdin -v -1 -i "%i" -vframes %S -vcodec pam -an -f rawvideo -y "%u.pam" 2> "%u""/>
|
||||||
|
<delegate decode="odt" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="pcl:cmyk" stealth="True" command=""pcl6" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pamcmyk32" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate decode="pcl:color" stealth="True" command=""pcl6" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=ppmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate decode="pcl:mono" stealth="True" command=""pcl6" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pbmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate decode="pdf" encode="eps" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 -sPDFPassword="%a" "-sDEVICE=eps2write" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="pdf" encode="ps" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=ps2write" -sPDFPassword="%a" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="pnm" encode="trace" command=""potrace" --svg --output "%o" "%i""/>
|
||||||
|
<delegate decode="png" encode="webp" command=""cwebp" -quiet %Q "%i" -o "%o""/>
|
||||||
|
<delegate decode="pnm" encode="ilbm" mode="encode" command=""ppmtoilbm" -24if "%i" > "%o""/>
|
||||||
|
<delegate decode="bmp" encode="jxr" command="/usr/bin/mv "%i" "%i.bmp"; "JxrEncApp" -i "%i.bmp" -o "%o.jxr"; /usr/bin/mv "%i.bmp" "%i"; /usr/bin/mv "%o.jxr" "%o""/>
|
||||||
|
<delegate decode="bmp" encode="wdp" command="/usr/bin/mv "%i" "%i.bmp"; "JxrEncApp" -i "%i.bmp" -o "%o.jxr"; /usr/bin/mv "%i.bmp" "%i"; /usr/bin/mv "%o.jxr" "%o""/>
|
||||||
|
<delegate decode="ppt" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="pptx" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="ps" encode="prt" command='"lpr" "%i"'/>
|
||||||
|
<delegate decode="ps:alpha" stealth="True" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pngalpha" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "-f%s" "-f%s""/>
|
||||||
|
<delegate decode="ps:cmyk" stealth="True" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pamcmyk32" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "-f%s" "-f%s""/>
|
||||||
|
<delegate decode="ps:color" stealth="True" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=png16m" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "-f%s" "-f%s""/>
|
||||||
|
<delegate decode="ps" encode="eps" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=eps2write" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="ps" encode="pdf" mode="bi" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pdfwrite" "-sOutputFile=%o" "-f%i""/>
|
||||||
|
<delegate decode="ps" encode="print" mode="encode" command="lpr "%i""/>
|
||||||
|
<delegate decode="ps:mono" stealth="True" command=""gs" -sstdout=%%stderr -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pbmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "-f%s" "-f%s""/>
|
||||||
|
<delegate decode="shtml" command=""html2ps" -U -o "%o" "%i""/>
|
||||||
|
<delegate decode="sid" command=""mrsidgeodecode" -if sid -i "%i" -of tif -o "%o" > "%u""/>
|
||||||
|
<delegate decode="svg" command=""rsvg-convert" -o "%o" "%i""/>
|
||||||
|
<delegate decode="svg:decode" stealth="True" command=""inkscape" "%s" --export-png="%s" --export-dpi="%s" --export-background="%s" --export-background-opacity="%s" > "%s" 2>&1"/>
|
||||||
|
<delegate decode="tiff" encode="launch" mode="encode" command=""gimp" "%i""/>
|
||||||
|
<delegate decode="wdp" command="/usr/bin/mv "%i" "%i.jxr"; "JxrDecApp" -i "%i.jxr" -o "%o.bmp"; /usr/bin/mv "%i.jxr" "%i"; /usr/bin/mv "%o.bmp" "%o""/>
|
||||||
|
<delegate decode="webp" command=""dwebp" -pam "%i" -o "%o""/>
|
||||||
|
<delegate decode="xls" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="xlsx" command=""soffice" --convert-to pdf -outdir `dirname "%i"` "%i" 2> "%u"; /usr/bin/mv "%i.pdf" "%o""/>
|
||||||
|
<delegate decode="xps:cmyk" stealth="True" command=""gxps" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=bmpsep8" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate decode="xps:color" stealth="True" command=""gxps" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=ppmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate decode="xps:mono" stealth="True" command=""gxps" -dQUIET -dSAFER -dBATCH -dNOPAUSE -dNOPROMPT -dMaxBitmap=500000000 -dAlignToPixels=0 -dGridFitTT=2 "-sDEVICE=pbmraw" -dTextAlphaBits=%u -dGraphicsAlphaBits=%u "-r%s" %s "-sOutputFile=%s" "%s""/>
|
||||||
|
<delegate encode="mpeg:encode" stealth="True" command=""ffmpeg" -nostdin -v -1 -i "%M%%d.jpg" "%u.%m" 2> "%u""/>
|
||||||
|
</delegatemap>
|
||||||
80
ImageMagick-6/log.xml
Normal file
80
ImageMagick-6/log.xml
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE logmap [
|
||||||
|
<!ELEMENT logmap (log)+>
|
||||||
|
<!ELEMENT log (#PCDATA)>
|
||||||
|
<!ATTLIST log events CDATA #IMPLIED>
|
||||||
|
<!ATTLIST log output CDATA #IMPLIED>
|
||||||
|
<!ATTLIST log filename CDATA #IMPLIED>
|
||||||
|
<!ATTLIST log generations CDATA #IMPLIED>
|
||||||
|
<!ATTLIST log limit CDATA #IMPLIED>
|
||||||
|
<!ATTLIST log format CDATA #IMPLIED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Configure ImageMagick logger.
|
||||||
|
|
||||||
|
Choose from one or more these events separated by a comma:
|
||||||
|
all
|
||||||
|
accelerate
|
||||||
|
annotate
|
||||||
|
blob
|
||||||
|
cache
|
||||||
|
coder
|
||||||
|
command
|
||||||
|
configure
|
||||||
|
deprecate
|
||||||
|
draw
|
||||||
|
exception
|
||||||
|
locale
|
||||||
|
module
|
||||||
|
none
|
||||||
|
pixel
|
||||||
|
policy
|
||||||
|
resource
|
||||||
|
trace
|
||||||
|
transform
|
||||||
|
user
|
||||||
|
wand
|
||||||
|
x11
|
||||||
|
|
||||||
|
Choose one output handler:
|
||||||
|
console
|
||||||
|
debug
|
||||||
|
event
|
||||||
|
file
|
||||||
|
none
|
||||||
|
stderr
|
||||||
|
stdout
|
||||||
|
|
||||||
|
When output is to a file, specify the filename. Embed %g in the filename to
|
||||||
|
support log generations. Generations is the number of log files to retain.
|
||||||
|
Limit is the number of logging events before generating a new log generation.
|
||||||
|
|
||||||
|
The format of the log is defined by embedding special format characters:
|
||||||
|
|
||||||
|
%c client
|
||||||
|
%d domain
|
||||||
|
%e event
|
||||||
|
%f function
|
||||||
|
%g generation
|
||||||
|
%i thread id
|
||||||
|
%l line
|
||||||
|
%m module
|
||||||
|
%n log name
|
||||||
|
%p process id
|
||||||
|
%r real CPU time
|
||||||
|
%t wall clock time
|
||||||
|
%u user CPU time
|
||||||
|
%v version
|
||||||
|
%% percent sign
|
||||||
|
\n newline
|
||||||
|
\r carriage return
|
||||||
|
xml
|
||||||
|
-->
|
||||||
|
<logmap>
|
||||||
|
<log events="None"/>
|
||||||
|
<log output="console"/>
|
||||||
|
<log filename="Magick-%g.log"/>
|
||||||
|
<log generations="3"/>
|
||||||
|
<log limit="2000"/>
|
||||||
|
<log format="%t %r %u %v %d %c[%p]: %m/%f/%l/%d\n %e"/>
|
||||||
|
</logmap>
|
||||||
23
ImageMagick-6/magic.xml
Normal file
23
ImageMagick-6/magic.xml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE magicmap [
|
||||||
|
<!ELEMENT magicmap (magic)+>
|
||||||
|
<!ELEMENT magic (#PCDATA)>
|
||||||
|
<!ATTLIST magic name CDATA #REQUIRED>
|
||||||
|
<!ATTLIST magic offset CDATA "0">
|
||||||
|
<!ATTLIST magic target CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Associate an image format with a unique identifier.
|
||||||
|
|
||||||
|
Many image formats have identifiers that uniquely identify a particular
|
||||||
|
image format. For example, the GIF image format always begins with GIF8
|
||||||
|
as the first 4 characters of the image. ImageMagick uses this information
|
||||||
|
to quickly determine the type of image it is dealing with when it reads
|
||||||
|
an image.
|
||||||
|
-->
|
||||||
|
<magicmap>
|
||||||
|
<!-- <magic name="GIF" offset="0" target="GIF8"/> -->
|
||||||
|
<!-- <magic name="JPEG" offset="0" target="\377\330\377"/> -->
|
||||||
|
<!-- <magic name="PNG" offset="0" target="\211PNG\r\n\032\n"/> -->
|
||||||
|
<!-- <magic name="TIFF" offset="0" target="\115\115\000\052"/> -->
|
||||||
|
</magicmap>
|
||||||
1145
ImageMagick-6/mime.xml
Normal file
1145
ImageMagick-6/mime.xml
Normal file
File diff suppressed because it is too large
Load Diff
78
ImageMagick-6/policy.xml
Normal file
78
ImageMagick-6/policy.xml
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE policymap [
|
||||||
|
<!ELEMENT policymap (policy)+>
|
||||||
|
<!ATTLIST policymap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT policy EMPTY>
|
||||||
|
<!ATTLIST policy xmlns CDATA #FIXED '' domain NMTOKEN #REQUIRED
|
||||||
|
name NMTOKEN #IMPLIED pattern CDATA #IMPLIED rights NMTOKEN #IMPLIED
|
||||||
|
stealth NMTOKEN #IMPLIED value CDATA #IMPLIED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Configure ImageMagick policies.
|
||||||
|
|
||||||
|
Domains include system, delegate, coder, filter, path, or resource.
|
||||||
|
|
||||||
|
Rights include none, read, write, execute and all. Use | to combine them,
|
||||||
|
for example: "read | write" to permit read from, or write to, a path.
|
||||||
|
|
||||||
|
Use a glob expression as a pattern.
|
||||||
|
|
||||||
|
Suppose we do not want users to process MPEG video images:
|
||||||
|
|
||||||
|
<policy domain="delegate" rights="none" pattern="mpeg:decode" />
|
||||||
|
|
||||||
|
Here we do not want users reading images from HTTP:
|
||||||
|
|
||||||
|
<policy domain="coder" rights="none" pattern="HTTP" />
|
||||||
|
|
||||||
|
The /repository file system is restricted to read only. We use a glob
|
||||||
|
expression to match all paths that start with /repository:
|
||||||
|
|
||||||
|
<policy domain="path" rights="read" pattern="/repository/*" />
|
||||||
|
|
||||||
|
Lets prevent users from executing any image filters:
|
||||||
|
|
||||||
|
<policy domain="filter" rights="none" pattern="*" />
|
||||||
|
|
||||||
|
Any large image is cached to disk rather than memory:
|
||||||
|
|
||||||
|
<policy domain="resource" name="area" value="1GP"/>
|
||||||
|
|
||||||
|
Define arguments for the memory, map, area, width, height and disk resources
|
||||||
|
with SI prefixes (.e.g 100MB). In addition, resource policies are maximums
|
||||||
|
for each instance of ImageMagick (e.g. policy memory limit 1GB, -limit 2GB
|
||||||
|
exceeds policy maximum so memory limit is 1GB).
|
||||||
|
|
||||||
|
Rules are processed in order. Here we want to restrict ImageMagick to only
|
||||||
|
read or write a small subset of proven web-safe image types:
|
||||||
|
|
||||||
|
<policy domain="delegate" rights="none" pattern="*" />
|
||||||
|
<policy domain="filter" rights="none" pattern="*" />
|
||||||
|
<policy domain="coder" rights="none" pattern="*" />
|
||||||
|
<policy domain="coder" rights="read|write" pattern="{GIF,JPEG,PNG,WEBP}" />
|
||||||
|
-->
|
||||||
|
<policymap>
|
||||||
|
<!-- <policy domain="system" name="shred" value="2"/> -->
|
||||||
|
<!-- <policy domain="system" name="precision" value="6"/> -->
|
||||||
|
<!-- <policy domain="system" name="memory-map" value="anonymous"/> -->
|
||||||
|
<!-- <policy domain="system" name="max-memory-request" value="256MiB"/> -->
|
||||||
|
<!-- <policy domain="resource" name="temporary-path" value="/tmp"/> -->
|
||||||
|
<!-- <policy domain="resource" name="memory" value="2GiB"/> -->
|
||||||
|
<!-- <policy domain="resource" name="map" value="4GiB"/> -->
|
||||||
|
<!-- <policy domain="resource" name="width" value="10KP"/> -->
|
||||||
|
<!-- <policy domain="resource" name="height" value="10KP"/> -->
|
||||||
|
<!-- <policy domain="resource" name="list-length" value="128"/> -->
|
||||||
|
<!-- <policy domain="resource" name="area" value="100MP"/> -->
|
||||||
|
<!-- <policy domain="resource" name="disk" value="16EiB"/> -->
|
||||||
|
<!-- <policy domain="resource" name="file" value="768"/> -->
|
||||||
|
<!-- <policy domain="resource" name="thread" value="4"/> -->
|
||||||
|
<!-- <policy domain="resource" name="throttle" value="0"/> -->
|
||||||
|
<!-- <policy domain="resource" name="time" value="3600"/> -->
|
||||||
|
<!-- <policy domain="coder" rights="none" pattern="MVG" /> -->
|
||||||
|
<!-- <policy domain="module" rights="none" pattern="{PS,PDF,XPS}" /> -->
|
||||||
|
<!-- <policy domain="delegate" rights="none" pattern="HTTPS" /> -->
|
||||||
|
<!-- <policy domain="path" rights="none" pattern="@*" /> -->
|
||||||
|
<!-- <policy domain="cache" name="memory-map" value="anonymous"/> -->
|
||||||
|
<!-- <policy domain="cache" name="synchronize" value="True"/> -->
|
||||||
|
<!-- <policy domain="cache" name="shared-secret" value="passphrase" stealth="true"/> -->
|
||||||
|
</policymap>
|
||||||
68
ImageMagick-6/quantization-table.xml
Normal file
68
ImageMagick-6/quantization-table.xml
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<!DOCTYPE quantization-tables [
|
||||||
|
<!ELEMENT quantization-tables (table)>
|
||||||
|
<!ATTLIST quantization-tables xmlns CDATA #FIXED "">
|
||||||
|
<!ELEMENT table (description , levels)>
|
||||||
|
<!ATTLIST table xmlns CDATA #FIXED "">
|
||||||
|
<!ATTLIST table alias NMTOKEN #REQUIRED>
|
||||||
|
<!ATTLIST table slot CDATA #REQUIRED>
|
||||||
|
<!ELEMENT description (#PCDATA)>
|
||||||
|
<!ATTLIST description xmlns CDATA #FIXED "">
|
||||||
|
<!ELEMENT levels (#PCDATA)>
|
||||||
|
<!ATTLIST levels xmlns CDATA #FIXED "">
|
||||||
|
<!ATTLIST levels divisor CDATA #REQUIRED>
|
||||||
|
<!ATTLIST levels height CDATA #REQUIRED>
|
||||||
|
<!ATTLIST levels width CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
JPEG quantization table created by Dr. Nicolas Robidoux, Senior Research
|
||||||
|
Scientist at Phase One (www.phaseone.com) for use with 2x2 Chroma
|
||||||
|
subsampling and (IJG-style, hence ImageMagick-style) quality level
|
||||||
|
around 75.
|
||||||
|
|
||||||
|
It is based on the one recommended in
|
||||||
|
|
||||||
|
Relevance of human vision to JPEG-DCT compression by Stanley A. Klein,
|
||||||
|
Amnon D. Silverstein and Thom Carney. In Human Vision, Visual
|
||||||
|
Processing and Digital Display III, 1992.
|
||||||
|
|
||||||
|
for 1 minute per pixel viewing.
|
||||||
|
|
||||||
|
Specifying only one table in this xml file has two effects when used with
|
||||||
|
the ImageMagick option
|
||||||
|
|
||||||
|
-define jpeg:q-table=PATH/TO/THIS/FILE
|
||||||
|
|
||||||
|
1) This quantization table is automatically used for all three channels;
|
||||||
|
|
||||||
|
2) Only one copy is embedded in the JPG file, which saves a few bits
|
||||||
|
(only worthwhile for very small thumbnails).
|
||||||
|
-->
|
||||||
|
<quantization-tables>
|
||||||
|
<table slot="0" alias="luma">
|
||||||
|
<description>Luma Quantization Table</description>
|
||||||
|
<levels width="8" height="8" divisor="1">
|
||||||
|
16, 16, 16, 18, 25, 37, 56, 85,
|
||||||
|
16, 17, 20, 27, 34, 40, 53, 75,
|
||||||
|
16, 20, 24, 31, 43, 62, 91, 135,
|
||||||
|
18, 27, 31, 40, 53, 74, 106, 156,
|
||||||
|
25, 34, 43, 53, 69, 94, 131, 189,
|
||||||
|
37, 40, 62, 74, 94, 124, 169, 238,
|
||||||
|
56, 53, 91, 106, 131, 169, 226, 311,
|
||||||
|
85, 75, 135, 156, 189, 238, 311, 418
|
||||||
|
</levels>
|
||||||
|
</table>
|
||||||
|
<!--
|
||||||
|
If you want to use a different quantization table for Chroma, for example,
|
||||||
|
just add:
|
||||||
|
|
||||||
|
<table slot="1" alias="chroma">
|
||||||
|
<description>Chroma Quantization Table</description>
|
||||||
|
INSERT 64 POSITIVE INTEGERS HERE, COMMA-SEPARATED
|
||||||
|
</levels>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
here (but outside of these comments).
|
||||||
|
-->
|
||||||
|
</quantization-tables>
|
||||||
|
|
||||||
336
ImageMagick-6/thresholds.xml
Normal file
336
ImageMagick-6/thresholds.xml
Normal file
@@ -0,0 +1,336 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
|
<!DOCTYPE thresholds [
|
||||||
|
<!ELEMENT thresholds (threshold)+>
|
||||||
|
<!ATTLIST thresholds xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT threshold (description,levels)>
|
||||||
|
<!ATTLIST threshold xmlns CDATA #FIXED '' alias NMTOKEN #IMPLIED
|
||||||
|
map NMTOKEN #REQUIRED>
|
||||||
|
<!ELEMENT description (#PCDATA)>
|
||||||
|
<!ATTLIST description xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT levels (#PCDATA)>
|
||||||
|
<!ATTLIST levels xmlns CDATA #FIXED '' divisor CDATA #REQUIRED
|
||||||
|
height CDATA #REQUIRED width CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
Threshold Maps for Ordered Posterized Dither
|
||||||
|
|
||||||
|
Each "<threshold>" element defines the map name, description, and an array
|
||||||
|
of "levels" used to provide the threshold map for ordered dithering and
|
||||||
|
digital halftoning.
|
||||||
|
|
||||||
|
The "alias" attribute provides a backward compatible name for this threshold
|
||||||
|
map (pre-dating IM v6.2.9-6), and are deprecated.
|
||||||
|
|
||||||
|
The description is a english description of what the threshold map achieves
|
||||||
|
and is only used for 'listing' the maps.
|
||||||
|
|
||||||
|
The map itself is a rectangular array of integers or threshold "levels"
|
||||||
|
of the given "width" and "height" declared within the enclosing <levels>
|
||||||
|
element. That is "width*height" integers or "levels" *must* be provided
|
||||||
|
within each map.
|
||||||
|
|
||||||
|
Each of the "levels" integer values (each value representing the threshold
|
||||||
|
intensity "level/divisor" at which that pixel is turned on. The "levels"
|
||||||
|
integers given can be any postive integers between "0" and the "divisor",
|
||||||
|
excluding those limits.
|
||||||
|
|
||||||
|
The "divisor" not only defines the upper limit and threshold divisor for each
|
||||||
|
"level" but also the total number of pseudo-levels the threshold mapping
|
||||||
|
creates and fills with a dither pattern. That is a ordered bitmap dither
|
||||||
|
of a pure greyscale gradient will use a maximum of "divisor" ordered bitmap
|
||||||
|
patterns, including the patterns with all the pixels 'on' and all the pixel
|
||||||
|
'off'. It may define less patterns than that, but the color channels will
|
||||||
|
be thresholded in units based on "divisor".
|
||||||
|
|
||||||
|
Alternatively for a multi-level posterization, ImageMagick inserts
|
||||||
|
"divisor-2" dither patterns (as defined by the threshold map) between each of
|
||||||
|
channel color level produced.
|
||||||
|
|
||||||
|
For example the map "o2x2" has a divisor of 5, which will define 3 bitmap
|
||||||
|
patterns plus the patterns with all pixels 'on' and 'off'. A greyscale
|
||||||
|
gradient will thus have 5 distinct areas.
|
||||||
|
-->
|
||||||
|
<thresholds>
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Minimal Dither and Non-Dither Threshold Maps
|
||||||
|
-->
|
||||||
|
<threshold map="threshold" alias="1x1">
|
||||||
|
<description>Threshold 1x1 (non-dither)</description>
|
||||||
|
<levels width="1" height="1" divisor="2">
|
||||||
|
1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="checks" alias="2x1">
|
||||||
|
<description>Checkerboard 2x1 (dither)</description>
|
||||||
|
<levels width="2" height="2" divisor="3">
|
||||||
|
1 2
|
||||||
|
2 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
(dispersed) Ordered Dither Patterns
|
||||||
|
-->
|
||||||
|
<threshold map="o2x2" alias="2x2">
|
||||||
|
<description>Ordered 2x2 (dispersed)</description>
|
||||||
|
<levels width="2" height="2" divisor="5">
|
||||||
|
1 3
|
||||||
|
4 2
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="o3x3" alias="3x3">
|
||||||
|
<description>Ordered 3x3 (dispersed)</description>
|
||||||
|
<levels width="3" height="3" divisor="10">
|
||||||
|
3 7 4
|
||||||
|
6 1 9
|
||||||
|
2 8 5
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="o4x4" alias="4x4">
|
||||||
|
<!--
|
||||||
|
From "Dithering Algorithms"
|
||||||
|
http://www.efg2.com/Lab/Library/ImageProcessing/DHALF.TXT
|
||||||
|
-->
|
||||||
|
<description>Ordered 4x4 (dispersed)</description>
|
||||||
|
<levels width="4" height="4" divisor="17">
|
||||||
|
1 9 3 11
|
||||||
|
13 5 15 7
|
||||||
|
4 12 2 10
|
||||||
|
16 8 14 6
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="o8x8" alias="8x8">
|
||||||
|
<!-- Extracted from original 'OrderedDither()' Function -->
|
||||||
|
<description>Ordered 8x8 (dispersed)</description>
|
||||||
|
<levels width="8" height="8" divisor="65">
|
||||||
|
1 49 13 61 4 52 16 64
|
||||||
|
33 17 45 29 36 20 48 32
|
||||||
|
9 57 5 53 12 60 8 56
|
||||||
|
41 25 37 21 44 28 40 24
|
||||||
|
3 51 15 63 2 50 14 62
|
||||||
|
35 19 47 31 34 18 46 30
|
||||||
|
11 59 7 55 10 58 6 54
|
||||||
|
43 27 39 23 42 26 38 22
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Halftones - Angled 45 degrees
|
||||||
|
|
||||||
|
Initially added to ImageMagick by Glenn Randers-Pehrson, IM v6.2.8-6,
|
||||||
|
modified to be more symmetrical with intensity by Anthony, IM v6.2.9-7
|
||||||
|
|
||||||
|
These patterns initially start as circles, but then form diamonds
|
||||||
|
pattern at the 50% threshold level, before forming negated circles,
|
||||||
|
as it approached the other threshold extereme.
|
||||||
|
-->
|
||||||
|
<threshold map="h4x4a" alias="4x1">
|
||||||
|
<description>Halftone 4x4 (angled)</description>
|
||||||
|
<levels width="4" height="4" divisor="9">
|
||||||
|
4 2 7 5
|
||||||
|
3 1 8 6
|
||||||
|
7 5 4 2
|
||||||
|
8 6 3 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="h6x6a" alias="6x1">
|
||||||
|
<description>Halftone 6x6 (angled)</description>
|
||||||
|
<levels width="6" height="6" divisor="19">
|
||||||
|
14 13 10 8 2 3
|
||||||
|
16 18 12 7 1 4
|
||||||
|
15 17 11 9 6 5
|
||||||
|
8 2 3 14 13 10
|
||||||
|
7 1 4 16 18 12
|
||||||
|
9 6 5 15 17 11
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="h8x8a" alias="8x1">
|
||||||
|
<description>Halftone 8x8 (angled)</description>
|
||||||
|
<levels width="8" height="8" divisor="33">
|
||||||
|
13 7 8 14 17 21 22 18
|
||||||
|
6 1 3 9 28 31 29 23
|
||||||
|
5 2 4 10 27 32 30 24
|
||||||
|
16 12 11 15 20 26 25 19
|
||||||
|
17 21 22 18 13 7 8 14
|
||||||
|
28 31 29 23 6 1 3 9
|
||||||
|
27 32 30 24 5 2 4 10
|
||||||
|
20 26 25 19 16 12 11 15
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Halftones - Orthogonally Aligned, or Un-angled
|
||||||
|
|
||||||
|
Initially added by Anthony Thyssen, IM v6.2.9-5 using techniques from
|
||||||
|
"Dithering & Halftoning" by Gernot Haffmann
|
||||||
|
http://www.fho-emden.de/~hoffmann/hilb010101.pdf
|
||||||
|
|
||||||
|
These patterns initially start as circles, but then form square
|
||||||
|
pattern at the 50% threshold level, before forming negated circles,
|
||||||
|
as it approached the other threshold extereme.
|
||||||
|
-->
|
||||||
|
<threshold map="h4x4o">
|
||||||
|
<description>Halftone 4x4 (orthogonal)</description>
|
||||||
|
<levels width="4" height="4" divisor="17">
|
||||||
|
7 13 11 4
|
||||||
|
12 16 14 8
|
||||||
|
10 15 6 2
|
||||||
|
5 9 3 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="h6x6o">
|
||||||
|
<description>Halftone 6x6 (orthogonal)</description>
|
||||||
|
<levels width="6" height="6" divisor="37">
|
||||||
|
7 17 27 14 9 4
|
||||||
|
21 29 33 31 18 11
|
||||||
|
24 32 36 34 25 22
|
||||||
|
19 30 35 28 20 10
|
||||||
|
8 15 26 16 6 2
|
||||||
|
5 13 23 12 3 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="h8x8o">
|
||||||
|
<description>Halftone 8x8 (orthogonal)</description>
|
||||||
|
<levels width="8" height="8" divisor="65">
|
||||||
|
7 21 33 43 36 19 9 4
|
||||||
|
16 27 51 55 49 29 14 11
|
||||||
|
31 47 57 61 59 45 35 23
|
||||||
|
41 53 60 64 62 52 40 38
|
||||||
|
37 44 58 63 56 46 30 22
|
||||||
|
15 28 48 54 50 26 17 10
|
||||||
|
8 18 34 42 32 20 6 2
|
||||||
|
5 13 25 39 24 12 3 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="h16x16o">
|
||||||
|
<!--
|
||||||
|
Direct extract from "Dithering & Halftoning" by Gernot Haffmann.
|
||||||
|
This may need some fine tuning for symmetry of the halftone dots,
|
||||||
|
as it was a mathematically formulated pattern.
|
||||||
|
-->
|
||||||
|
<description>Halftone 16x16 (orthogonal)</description>
|
||||||
|
<levels width="16" height="16" divisor="257">
|
||||||
|
4 12 24 44 72 100 136 152 150 134 98 70 42 23 11 3
|
||||||
|
7 16 32 52 76 104 144 160 158 142 102 74 50 31 15 6
|
||||||
|
19 27 40 60 92 132 168 180 178 166 130 90 58 39 26 18
|
||||||
|
36 48 56 80 124 176 188 204 203 187 175 122 79 55 47 35
|
||||||
|
64 68 84 116 164 200 212 224 223 211 199 162 114 83 67 63
|
||||||
|
88 96 112 156 192 216 232 240 239 231 214 190 154 111 95 87
|
||||||
|
108 120 148 184 208 228 244 252 251 243 226 206 182 147 119 107
|
||||||
|
128 140 172 196 219 235 247 256 255 246 234 218 194 171 139 127
|
||||||
|
126 138 170 195 220 236 248 253 254 245 233 217 193 169 137 125
|
||||||
|
106 118 146 183 207 227 242 249 250 241 225 205 181 145 117 105
|
||||||
|
86 94 110 155 191 215 229 238 237 230 213 189 153 109 93 85
|
||||||
|
62 66 82 115 163 198 210 221 222 209 197 161 113 81 65 61
|
||||||
|
34 46 54 78 123 174 186 202 201 185 173 121 77 53 45 33
|
||||||
|
20 28 37 59 91 131 167 179 177 165 129 89 57 38 25 17
|
||||||
|
8 13 29 51 75 103 143 159 157 141 101 73 49 30 14 5
|
||||||
|
1 9 21 43 71 99 135 151 149 133 97 69 41 22 10 2
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Halftones - Orthogonally Expanding Circle Patterns
|
||||||
|
|
||||||
|
Added by Glenn Randers-Pehrson, 4 Nov 2010, ImageMagick 6.6.5-6
|
||||||
|
|
||||||
|
Rather than producing a diamond 50% threshold pattern, these
|
||||||
|
continue to generate larger (overlapping) circles. They are
|
||||||
|
more like a true halftone pattern formed by covering a surface
|
||||||
|
with either pure white or pure black circular dots.
|
||||||
|
|
||||||
|
WARNING: true halftone patterns only use true circles even in
|
||||||
|
areas of highly varying intensity. Threshold dither patterns
|
||||||
|
can generate distorted circles in such areas.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<threshold map="c5x5b" alias="c5x5">
|
||||||
|
<description>Circles 5x5 (black)</description>
|
||||||
|
<levels width="5" height="5" divisor="26">
|
||||||
|
1 21 16 15 4
|
||||||
|
5 17 20 19 14
|
||||||
|
6 21 25 24 12
|
||||||
|
7 18 22 23 11
|
||||||
|
2 8 9 10 3
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
|
||||||
|
<threshold map="c5x5w">
|
||||||
|
<description>Circles 5x5 (white)</description>
|
||||||
|
<levels width="5" height="5" divisor="26">
|
||||||
|
25 21 10 11 22
|
||||||
|
20 9 6 7 12
|
||||||
|
19 5 1 2 13
|
||||||
|
18 8 4 3 14
|
||||||
|
24 17 16 15 23
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="c6x6b" alias="c6x6">
|
||||||
|
<description>Circles 6x6 (black)</description>
|
||||||
|
<levels width="6" height="6" divisor="37">
|
||||||
|
1 5 14 13 12 4
|
||||||
|
6 22 28 27 21 11
|
||||||
|
15 29 35 34 26 20
|
||||||
|
16 30 36 33 25 19
|
||||||
|
7 23 31 32 24 10
|
||||||
|
2 8 17 18 9 3
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="c6x6w">
|
||||||
|
<description>Circles 6x6 (white)</description>
|
||||||
|
<levels width="6" height="6" divisor="37">
|
||||||
|
36 32 23 24 25 33
|
||||||
|
31 15 9 10 16 26
|
||||||
|
22 8 2 3 11 17
|
||||||
|
21 7 1 4 12 18
|
||||||
|
30 14 6 5 13 27
|
||||||
|
35 29 20 19 28 34
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
<threshold map="c7x7b" alias="c7x7">
|
||||||
|
<description>Circles 7x7 (black)</description>
|
||||||
|
<levels width="7" height="7" divisor="50">
|
||||||
|
3 9 18 28 17 8 2
|
||||||
|
10 24 33 39 32 23 7
|
||||||
|
19 34 44 48 43 31 16
|
||||||
|
25 40 45 49 47 38 27
|
||||||
|
20 35 41 46 42 29 15
|
||||||
|
11 21 36 37 28 22 6
|
||||||
|
4 12 13 26 14 5 1
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
|
||||||
|
<threshold map="c7x7w">
|
||||||
|
<description>Circles 7x7 (white)</description>
|
||||||
|
<levels width="7" height="7" divisor="50">
|
||||||
|
47 41 32 22 33 42 48
|
||||||
|
40 26 17 11 18 27 43
|
||||||
|
31 16 6 2 7 19 34
|
||||||
|
25 10 5 1 3 12 23
|
||||||
|
30 15 9 4 8 20 35
|
||||||
|
39 29 14 13 21 28 44
|
||||||
|
46 38 37 24 36 45 49
|
||||||
|
</levels>
|
||||||
|
</threshold>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
Special Purpose Dithers
|
||||||
|
-->
|
||||||
|
|
||||||
|
</thresholds>
|
||||||
1367
ImageMagick-6/type-apple.xml
Normal file
1367
ImageMagick-6/type-apple.xml
Normal file
File diff suppressed because it is too large
Load Diff
58
ImageMagick-6/type-dejavu.xml
Normal file
58
ImageMagick-6/type-dejavu.xml
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE typemap [
|
||||||
|
<!ELEMENT typemap (type)+>
|
||||||
|
<!ATTLIST typemap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT type EMPTY>
|
||||||
|
<!ATTLIST type xmlns CDATA #FIXED '' encoding NMTOKEN #IMPLIED
|
||||||
|
family CDATA #REQUIRED format NMTOKEN #REQUIRED foundry NMTOKEN #REQUIRED
|
||||||
|
fullname CDATA #REQUIRED glyphs CDATA #REQUIRED metrics CDATA #REQUIRED
|
||||||
|
name NMTOKEN #REQUIRED stretch NMTOKEN #REQUIRED style NMTOKEN #REQUIRED
|
||||||
|
version CDATA #IMPLIED weight CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
ImageMagick DejaVU font configuration.
|
||||||
|
-->
|
||||||
|
<typemap>
|
||||||
|
<type name="DejaVu-LGC-Sans-Bold" fullname="DejaVu LGC Sans Bold" family="DejaVuGC Sans" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuLGCSans-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Bold-Oblique" fullname="DejaVu LGC Sans Bold Oblique" family="DejaVuGC Sans" style="Oblique" stretch="Normal" weight="700" glyphs="DejaVuLGCSans-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Book" fullname="DejaVu LGC Sans Book" family="DejaVuGC Sans" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuLGCSans.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Condensed" fullname="DejaVu LGC Sans Condensed" family="DejaVuGC Sans" style="Normal" stretch="SemiCondensed" weight="400" glyphs="DejaVuLGCSansCondensed.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Condensed-Bold" fullname="DejaVu LGC Sans Condensed Bold" family="DejaVuGC Sans" style="Normal" stretch="SemiCondensed" weight="700" glyphs="DejaVuLGCSansCondensed-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Condensed-Bold-Oblique" fullname="DejaVu LGC Sans Condensed Bold Oblique" family="DejaVuGC Sans" style="Oblique" stretch="SemiCondensed" weight="700" glyphs="DejaVuLGCSansCondensed-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Condensed-Oblique" fullname="DejaVu LGC Sans Condensed Oblique" family="DejaVuGC Sans" style="Oblique" stretch="SemiCondensed" weight="400" glyphs="DejaVuLGCSansCondensed-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-ExtraLight" fullname="DejaVu LGC Sans ExtraLight" family="DejaVuGC Sans" style="Normal" stretch="Normal" weight="200" glyphs="DejaVuLGCSans-ExtraLight.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Mono-Bold" fullname="DejaVu LGC Sans Mono Bold" family="DejaVuGC Sans Mono" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuLGCSansMono-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Mono-Bold-Oblique" fullname="DejaVu LGC Sans Mono Bold Oblique" family="DejaVuGC Sans Mono" style="Oblique" stretch="Normal" weight="700" glyphs="DejaVuLGCSansMono-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Mono-Book" fullname="DejaVu LGC Sans Mono Book" family="DejaVuGC Sans Mono" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuLGCSansMono.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Mono-Oblique" fullname="DejaVu LGC Sans Mono Oblique" family="DejaVuGC Sans Mono" style="Oblique" stretch="Normal" weight="400" glyphs="DejaVuLGCSansMono-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Sans-Oblique" fullname="DejaVu LGC Sans Oblique" family="DejaVuGC Sans" style="Oblique" stretch="Normal" weight="400" glyphs="DejaVuLGCSans-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Bold" fullname="DejaVu LGC Serif Bold" family="DejaVuGC Serif" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuLGCSerif-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Bold-Italic" fullname="DejaVu LGC Serif Bold Italic" family="DejaVuGC Serif" style="Italic" stretch="Normal" weight="700" glyphs="DejaVuLGCSerif-BoldItalic.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Book" fullname="DejaVu LGC Serif Book" family="DejaVuGC Serif" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuLGCSerif.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Condensed" fullname="DejaVu LGC Serif Condensed" family="DejaVuGC Serif" style="Normal" stretch="SemiCondensed" weight="400" glyphs="DejaVuLGCSerifCondensed.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Condensed-Bold" fullname="DejaVu LGC Serif Condensed Bold" family="DejaVuGC Serif" style="Normal" stretch="SemiCondensed" weight="700" glyphs="DejaVuLGCSerifCondensed-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Condensed-Bold-Italic" fullname="DejaVu LGC Serif Condensed Bold Italic" family="DejaVuGC Serif" style="Italic" stretch="SemiCondensed" weight="700" glyphs="DejaVuLGCSerifCondensed-BoldItalic.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Condensed-Italic" fullname="DejaVu LGC Serif -Condensed Italic" family="DejaVuGC Serif" style="Italic" stretch="SemiCondensed" weight="400" glyphs="DejaVuLGCSerifCondensed-Italic.ttf"/>
|
||||||
|
<type name="DejaVu-LGC-Serif-Italic" fullname="DejaVu LGC Serif Italic" family="DejaVuGC Serif" style="Italic" stretch="Normal" weight="400" glyphs="DejaVuLGCSerif-Italic.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Bold" fullname="DejaVu Sans Bold" family="DejaVu Sans" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuSans-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Bold-Oblique" fullname="DejaVu Sans Bold Oblique" family="DejaVu Sans" style="Oblique" stretch="Normal" weight="700" glyphs="DejaVuSans-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Book" fullname="DejaVu Sans Book" family="DejaVu Sans" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuSans.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Condensed" fullname="DejaVu Sans Condensed" family="DejaVu Sans" style="Normal" stretch="SemiCondensed" weight="400" glyphs="DejaVuSansCondensed.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Condensed-Bold" fullname="DejaVu Sans Condensed Bold" family="DejaVu Sans" style="Normal" stretch="SemiCondensed" weight="700" glyphs="DejaVuSansCondensed-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Condensed-Bold-Oblique" fullname="DejaVu Sans Condensed Bold Oblique" family="DejaVu Sans" style="Oblique" stretch="SemiCondensed" weight="700" glyphs="DejaVuSansCondensed-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Condensed-Oblique" fullname="DejaVu Sans Condensed Oblique" family="DejaVu Sans" style="Oblique" stretch="SemiCondensed" weight="400" glyphs="DejaVuSansCondensed-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-ExtraLight" fullname="DejaVu Sans ExtraLight" family="DejaVu Sans" style="Normal" stretch="Normal" weight="200" glyphs="DejaVuSans-ExtraLight.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Mono-Bold" fullname="DejaVu Sans Mono Bold" family="DejaVu Sans Mono" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuSansMono-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Mono-Bold-Oblique" fullname="DejaVu Sans Mono Bold Oblique" family="DejaVu Sans Mono" style="Oblique" stretch="Normal" weight="700" glyphs="DejaVuSansMono-BoldOblique.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Mono-Book" fullname="DejaVu Sans Mono Book" family="DejaVu Sans Mono" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuSansMono.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Mono-Oblique" fullname="DejaVu Sans Mono Oblique" family="DejaVu Sans Mono" style="Oblique" stretch="Normal" weight="400" glyphs="DejaVuSansMono-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-Sans-Oblique" fullname="DejaVu Sans Oblique" family="DejaVu Sans" style="Oblique" stretch="Normal" weight="400" glyphs="DejaVuSans-Oblique.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Bold" fullname="DejaVu Serif Bold" family="DejaVu Serif" style="Normal" stretch="Normal" weight="700" glyphs="DejaVuSerif-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Bold-Italic" fullname="DejaVu Serif Bold Italic" family="DejaVu Serif" style="Italic" stretch="Normal" weight="700" glyphs="DejaVuSerif-BoldItalic.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Book" fullname="DejaVu Serif Book" family="DejaVu Serif" style="Normal" stretch="Normal" weight="400" glyphs="DejaVuSerif.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Condensed" fullname="DejaVu Serif Condensed" family="DejaVu Serif" style="Normal" stretch="SemiCondensed" weight="400" glyphs="DejaVuSerifCondensed.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Condensed-Bold" fullname="DejaVu Serif Condensed Bold" family="DejaVu Serif" style="Normal" stretch="SemiCondensed" weight="700" glyphs="DejaVuSerifCondensed-Bold.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Condensed-Bold-Italic" fullname="DejaVu Serif Condensed Bold Italic" family="DejaVu Serif" style="Italic" stretch="SemiCondensed" weight="700" glyphs="DejaVuSerifCondensed-BoldItalic.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Condensed-Italic" fullname="DejaVu Serif Condensed Italic" family="DejaVu Serif" style="Italic" stretch="SemiCondensed" weight="400" glyphs="DejaVuSerifCondensed-Italic.ttf"/>
|
||||||
|
<type name="DejaVu-Serif-Italic" fullname="DejaVu Serif Italic" family="DejaVu Serif" style="Italic" stretch="Normal" weight="400" glyphs="DejaVuSerif-Italic.ttf"/>
|
||||||
|
</typemap>
|
||||||
50
ImageMagick-6/type-ghostscript.xml
Normal file
50
ImageMagick-6/type-ghostscript.xml
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE typemap [
|
||||||
|
<!ELEMENT typemap (type)+>
|
||||||
|
<!ATTLIST typemap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT type EMPTY>
|
||||||
|
<!ATTLIST type xmlns CDATA #FIXED '' encoding NMTOKEN #IMPLIED
|
||||||
|
family CDATA #REQUIRED format NMTOKEN #REQUIRED foundry NMTOKEN #REQUIRED
|
||||||
|
fullname CDATA #REQUIRED glyphs CDATA #REQUIRED metrics CDATA #REQUIRED
|
||||||
|
name NMTOKEN #REQUIRED stretch NMTOKEN #REQUIRED style NMTOKEN #REQUIRED
|
||||||
|
version CDATA #IMPLIED weight CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
ImageMagick Ghostscript font configuration.
|
||||||
|
-->
|
||||||
|
<typemap>
|
||||||
|
<type name="AvantGarde-Book" fullname="AvantGarde Book" family="AvantGarde" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="a010013l.afm" glyphs="a010013l.pfb"/>
|
||||||
|
<type name="AvantGarde-BookOblique" fullname="AvantGarde Book Oblique" family="AvantGarde" foundry="URW" weight="400" style="oblique" stretch="normal" format="type1" metrics="a010033l.afm" glyphs="a010033l.pfb"/>
|
||||||
|
<type name="AvantGarde-Demi" fullname="AvantGarde DemiBold" family="AvantGarde" foundry="URW" weight="600" style="normal" stretch="normal" format="type1" metrics="a010015l.afm" glyphs="a010015l.pfb"/>
|
||||||
|
<type name="AvantGarde-DemiOblique" fullname="AvantGarde DemiOblique" family="AvantGarde" foundry="URW" weight="600" style="oblique" stretch="normal" format="type1" metrics="a010035l.afm" glyphs="a010035l.pfb"/>
|
||||||
|
<type name="Bookman-Demi" fullname="Bookman DemiBold" family="Bookman" foundry="URW" weight="600" style="normal" stretch="normal" format="type1" metrics="b018015l.afm" glyphs="b018015l.pfb"/>
|
||||||
|
<type name="Bookman-DemiItalic" fullname="Bookman DemiBold Italic" family="Bookman" foundry="URW" weight="600" style="italic" stretch="normal" format="type1" metrics="b018035l.afm" glyphs="b018035l.pfb"/>
|
||||||
|
<type name="Bookman-Light" fullname="Bookman Light" family="Bookman" foundry="URW" weight="300" style="normal" stretch="normal" format="type1" metrics="b018012l.afm" glyphs="b018012l.pfb"/>
|
||||||
|
<type name="Bookman-LightItalic" fullname="Bookman Light Italic" family="Bookman" foundry="URW" weight="300" style="italic" stretch="normal" format="type1" metrics="b018032l.afm" glyphs="b018032l.pfb"/>
|
||||||
|
<type name="Courier" fullname="Courier Regular" family="Courier" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="n022003l.afm" glyphs="n022003l.pfb"/>
|
||||||
|
<type name="Courier-Bold" fullname="Courier Bold" family="Courier" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="n022004l.afm" glyphs="n022004l.pfb"/>
|
||||||
|
<type name="Courier-Oblique" fullname="Courier Regular Oblique" family="Courier" foundry="URW" weight="400" style="oblique" stretch="normal" format="type1" metrics="n022023l.afm" glyphs="n022023l.pfb"/>
|
||||||
|
<type name="Courier-BoldOblique" fullname="Courier Bold Oblique" family="Courier" foundry="URW" weight="700" style="oblique" stretch="normal" format="type1" metrics="n022024l.afm" glyphs="n022024l.pfb"/>
|
||||||
|
<type name="fixed" fullname="Helvetica Regular" family="Helvetica" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="n019003l.afm" glyphs="n019003l.pfb"/>
|
||||||
|
<type name="Helvetica" fullname="Helvetica Regular" family="Helvetica" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="n019003l.afm" glyphs="n019003l.pfb"/>
|
||||||
|
<type name="Helvetica-Bold" fullname="Helvetica Bold" family="Helvetica" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="n019004l.afm" glyphs="n019004l.pfb"/>
|
||||||
|
<type name="Helvetica-Oblique" fullname="Helvetica Regular Italic" family="Helvetica" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="n019023l.afm" glyphs="n019023l.pfb"/>
|
||||||
|
<type name="Helvetica-BoldOblique" fullname="Helvetica Bold Italic" family="Helvetica" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="n019024l.afm" glyphs="n019024l.pfb"/>
|
||||||
|
<type name="Helvetica-Narrow" fullname="Helvetica Narrow" family="Helvetica Narrow" foundry="URW" weight="400" style="normal" stretch="condensed" format="type1" metrics="n019043l.afm" glyphs="n019043l.pfb"/>
|
||||||
|
<type name="Helvetica-Narrow-Oblique" fullname="Helvetica Narrow Oblique" family="Helvetica Narrow" foundry="URW" weight="400" style="oblique" stretch="condensed" format="type1" metrics="n019063l.afm" glyphs="n019063l.pfb"/>
|
||||||
|
<type name="Helvetica-Narrow-Bold" fullname="Helvetica Narrow Bold" family="Helvetica Narrow" foundry="URW" weight="700" style="normal" stretch="condensed" format="type1" metrics="n019044l.afm" glyphs="n019044l.pfb"/>
|
||||||
|
<type name="Helvetica-Narrow-BoldOblique" fullname="Helvetica Narrow Bold Oblique" family="Helvetica Narrow" foundry="URW" weight="700" style="oblique" stretch="condensed" format="type1" metrics="n019064l.afm" glyphs="n019064l.pfb"/>
|
||||||
|
<type name="NewCenturySchlbk-Roman" fullname="New Century Schoolbook" family="NewCenturySchlbk" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="c059013l.afm" glyphs="c059013l.pfb"/>
|
||||||
|
<type name="NewCenturySchlbk-Italic" fullname="New Century Schoolbook Italic" family="NewCenturySchlbk" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="c059033l.afm" glyphs="c059033l.pfb"/>
|
||||||
|
<type name="NewCenturySchlbk-Bold" fullname="New Century Schoolbook Bold" family="NewCenturySchlbk" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="c059016l.afm" glyphs="c059016l.pfb"/>
|
||||||
|
<type name="NewCenturySchlbk-BoldItalic" fullname="New Century Schoolbook Bold Italic" family="NewCenturySchlbk" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="c059036l.afm" glyphs="c059036l.pfb"/>
|
||||||
|
<type name="Palatino-Roman" fullname="Palatino Regular" family="Palatino" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="p052003l.afm" glyphs="p052003l.pfb"/>
|
||||||
|
<type name="Palatino-Italic" fullname="Palatino Italic" family="Palatino" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="p052023l.afm" glyphs="p052023l.pfb"/>
|
||||||
|
<type name="Palatino-Bold" fullname="Palatino Bold" family="Palatino" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="p052004l.afm" glyphs="p052004l.pfb"/>
|
||||||
|
<type name="Palatino-BoldItalic" fullname="Palatino Bold Italic" family="Palatino" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="p052024l.afm" glyphs="p052024l.pfb"/>
|
||||||
|
<type name="Times-Roman" fullname="Times Regular" family="Times" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="n021003l.afm" glyphs="n021003l.pfb"/>
|
||||||
|
<type name="Times-Bold" fullname="Times Medium" family="Times" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="n021004l.afm" glyphs="n021004l.pfb"/>
|
||||||
|
<type name="Times-Italic" fullname="Times Regular Italic" family="Times" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="n021023l.afm" glyphs="n021023l.pfb"/>
|
||||||
|
<type name="Times-BoldItalic" fullname="Times Medium Italic" family="Times" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="n021024l.afm" glyphs="n021024l.pfb"/>
|
||||||
|
<type name="Symbol" fullname="Symbol" family="Symbol" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="s050000l.afm" glyphs="s050000l.pfb" version="0.1" encoding="AdobeCustom"/>
|
||||||
|
</typemap>
|
||||||
50
ImageMagick-6/type-urw-base35.xml
Normal file
50
ImageMagick-6/type-urw-base35.xml
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE typemap [
|
||||||
|
<!ELEMENT typemap (type)+>
|
||||||
|
<!ATTLIST typemap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT type EMPTY>
|
||||||
|
<!ATTLIST type xmlns CDATA #FIXED '' encoding NMTOKEN #IMPLIED
|
||||||
|
family CDATA #REQUIRED format NMTOKEN #REQUIRED foundry NMTOKEN #REQUIRED
|
||||||
|
fullname CDATA #REQUIRED glyphs CDATA #REQUIRED metrics CDATA #REQUIRED
|
||||||
|
name NMTOKEN #REQUIRED stretch NMTOKEN #REQUIRED style NMTOKEN #REQUIRED
|
||||||
|
version CDATA #IMPLIED weight CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
ImageMagick URW-base35 font configuration.
|
||||||
|
-->
|
||||||
|
<typemap>
|
||||||
|
<type name="AvantGarde-Book" fullname="AvantGarde Book" family="AvantGarde" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWGothic-Book.afm" glyphs="/usr/share/fonts/urw-base35/URWGothic-Book.t1"/>
|
||||||
|
<type name="AvantGarde-BookOblique" fullname="AvantGarde Book Oblique" family="AvantGarde" foundry="URW" weight="400" style="oblique" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWGothic-BookOblique.afm" glyphs="/usr/share/fonts/urw-base35/URWGothic-BookOblique.t1"/>
|
||||||
|
<type name="AvantGarde-Demi" fullname="AvantGarde DemiBold" family="AvantGarde" foundry="URW" weight="600" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWGothic-Demi.afm" glyphs="/usr/share/fonts/urw-base35/URWGothic-Demi.t1"/>
|
||||||
|
<type name="AvantGarde-DemiOblique" fullname="AvantGarde DemiOblique" family="AvantGarde" foundry="URW" weight="600" style="oblique" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWGothic-DemiOblique.afm" glyphs="/usr/share/fonts/urw-base35/URWGothic-DemiOblique.t1"/>
|
||||||
|
<type name="Bookman-Demi" fullname="Bookman DemiBold" family="Bookman" foundry="URW" weight="600" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWBookman-Demi.afm" glyphs="/usr/share/fonts/urw-base35/URWBookman-Demi.t1"/>
|
||||||
|
<type name="Bookman-DemiItalic" fullname="Bookman DemiBold Italic" family="Bookman" foundry="URW" weight="600" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWBookman-DemiItalic.afm" glyphs="/usr/share/fonts/urw-base35/URWBookman-DemiItalic.t1"/>
|
||||||
|
<type name="Bookman-Light" fullname="Bookman Light" family="Bookman" foundry="URW" weight="300" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWBookman-Light.afm" glyphs="/usr/share/fonts/urw-base35/URWBookman-Light.t1"/>
|
||||||
|
<type name="Bookman-LightItalic" fullname="Bookman Light Italic" family="Bookman" foundry="URW" weight="300" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/URWBookman-LightItalic.afm" glyphs="/usr/share/fonts/urw-base35/URWBookman-LightItalic.t1"/>
|
||||||
|
<type name="Courier" fullname="Courier Regular" family="Courier" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusMonoPS-Refular.afm" glyphs="/usr/share/fonts/urw-base35/NimbusMonoPS-Regular.t1"/>
|
||||||
|
<type name="Courier-Bold" fullname="Courier Bold" family="Courier" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusMonoPS-Bold.afm" glyphs="/usr/share/fonts/urw-base35/NimbusMonoPS-Bold.t1"/>
|
||||||
|
<type name="Courier-Oblique" fullname="Courier Regular Oblique" family="Courier" foundry="URW" weight="400" style="oblique" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusMonoPS-Italic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusMonoPS-Italic.t1"/>
|
||||||
|
<type name="Courier-BoldOblique" fullname="Courier Bold Oblique" family="Courier" foundry="URW" weight="700" style="oblique" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusMonoPS-BoldItalic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusMonoPS-BoldItalic.t1"/>
|
||||||
|
<type name="fixed" fullname="Helvetica Regular" family="Helvetica" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSans-Regular.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSans-Regular.t1"/>
|
||||||
|
<type name="Helvetica" fullname="Helvetica Regular" family="Helvetica" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSans-Regular.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSans-Regular.t1"/>
|
||||||
|
<type name="Helvetica-Bold" fullname="Helvetica Bold" family="Helvetica" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSans-Bold.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSans-Bold.t1"/>
|
||||||
|
<type name="Helvetica-Oblique" fullname="Helvetica Regular Italic" family="Helvetica" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSans-Italic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSans-Italic.t1"/>
|
||||||
|
<type name="Helvetica-BoldOblique" fullname="Helvetica Bold Italic" family="Helvetica" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSans-BoldItalic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSans-BoldItalic.t1"/>
|
||||||
|
<type name="Helvetica-Narrow" fullname="Helvetica Narrow" family="Helvetica Narrow" foundry="URW" weight="400" style="normal" stretch="condensed" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSansNarrow-Regular.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSansNarrow-Regular.t1"/>
|
||||||
|
<type name="Helvetica-Narrow-Oblique" fullname="Helvetica Narrow Oblique" family="Helvetica Narrow" foundry="URW" weight="400" style="oblique" stretch="condensed" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSansNarrow-Oblique.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSansNarrow-Oblique.t1"/>
|
||||||
|
<type name="Helvetica-Narrow-Bold" fullname="Helvetica Narrow Bold" family="Helvetica Narrow" foundry="URW" weight="700" style="normal" stretch="condensed" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusSansNarrow-Bold.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSansNarrow-Bold.t1"/>
|
||||||
|
<type name="Helvetica-Narrow-BoldOblique" fullname="Helvetica Narrow Bold Oblique" family="Helvetica Narrow" foundry="URW" weight="700" style="oblique" stretch="condensed" format="type1" metrics="/usr/share/fonts/urw-base35/nNimbusSansNarrow-BdOblique.afm" glyphs="/usr/share/fonts/urw-base35/NimbusSansNarrow-BdOblique.t1"/>
|
||||||
|
<type name="NewCenturySchlbk-Roman" fullname="New Century Schoolbook" family="NewCenturySchlbk" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/C059-Roman.afm" glyphs="/usr/share/fonts/urw-base35/C059-Roman.t1"/>
|
||||||
|
<type name="NewCenturySchlbk-Italic" fullname="New Century Schoolbook Italic" family="NewCenturySchlbk" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/C059-Italic.afm" glyphs="/usr/share/fonts/urw-base35/C059-Italic.t1"/>
|
||||||
|
<type name="NewCenturySchlbk-Bold" fullname="New Century Schoolbook Bold" family="NewCenturySchlbk" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/C059-Bold.afm" glyphs="/usr/share/fonts/urw-base35/C059-Bold.t1"/>
|
||||||
|
<type name="NewCenturySchlbk-BoldItalic" fullname="New Century Schoolbook Bold Italic" family="NewCenturySchlbk" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/C059-BdIta.afm" glyphs="/usr/share/fonts/urw-base35/C059-BdIta.t1"/>
|
||||||
|
<type name="Palatino-Roman" fullname="Palatino Regular" family="Palatino" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/P052-Roman.afm" glyphs="/usr/share/fonts/urw-base35/P052-Roman.t1"/>
|
||||||
|
<type name="Palatino-Italic" fullname="Palatino Italic" family="Palatino" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/P052-Italic.afm" glyphs="/usr/share/fonts/urw-base35/P052-Italic.t1"/>
|
||||||
|
<type name="Palatino-Bold" fullname="Palatino Bold" family="Palatino" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/P052-Bold.afm" glyphs="/usr/share/fonts/urw-base35/P052-Bold.t1"/>
|
||||||
|
<type name="Palatino-BoldItalic" fullname="Palatino Bold Italic" family="Palatino" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/P052-BoldItalic.afm" glyphs="/usr/share/fonts/urw-base35/P052-BoldItalic.t1"/>
|
||||||
|
<type name="Times-Roman" fullname="Times Regular" family="Times" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusRoman-Regular.afm" glyphs="/usr/share/fonts/urw-base35/NimbusRoman-Regular.t1"/>
|
||||||
|
<type name="Times-Bold" fullname="Times Medium" family="Times" foundry="URW" weight="700" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusRoman-Bold.afm" glyphs="/usr/share/fonts/urw-base35/NimbusRoman-Bold.t1"/>
|
||||||
|
<type name="Times-Italic" fullname="Times Regular Italic" family="Times" foundry="URW" weight="400" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusRoman-Italic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusRoman-Italic.t1"/>
|
||||||
|
<type name="Times-BoldItalic" fullname="Times Medium Italic" family="Times" foundry="URW" weight="700" style="italic" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/NimbusRoman-BoldItalic.afm" glyphs="/usr/share/fonts/urw-base35/NimbusRoman-BoldItalic.t1"/>
|
||||||
|
<type name="Symbol" fullname="Symbol" family="Symbol" foundry="URW" weight="400" style="normal" stretch="normal" format="type1" metrics="/usr/share/fonts/urw-base35/StandardSymbolsPS.afm" glyphs="/usr/share/fonts/urw-base35/StandardSymbolsPS.t1" version="2.0" encoding="AdobeCustom"/>
|
||||||
|
</typemap>
|
||||||
105
ImageMagick-6/type-windows.xml
Normal file
105
ImageMagick-6/type-windows.xml
Normal file
@@ -0,0 +1,105 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE typemap [
|
||||||
|
<!ELEMENT typemap (type)+>
|
||||||
|
<!ELEMENT type (#PCDATA)>
|
||||||
|
<!ELEMENT include (#PCDATA)>
|
||||||
|
<!ATTLIST type name CDATA #REQUIRED>
|
||||||
|
<!ATTLIST type fullname CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type family CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type foundry CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type weight CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type style CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type stretch CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type format CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type metrics CDATA #IMPLIED>
|
||||||
|
<!ATTLIST type glyphs CDATA #REQUIRED>
|
||||||
|
<!ATTLIST type version CDATA #IMPLIED>
|
||||||
|
<!ATTLIST include file CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
ImageMagick Windows font configuration.
|
||||||
|
-->
|
||||||
|
<typemap>
|
||||||
|
<type name="Arial" fullname="Arial" family="Arial" weight="400" style="normal" stretch="normal" glyphs="arial.ttf"/>
|
||||||
|
<type name="Arial-Black" fullname="Arial Black" family="Arial" weight="900" style="normal" stretch="normal" glyphs="ariblk.ttf"/>
|
||||||
|
<type name="Arial-Bold" fullname="Arial Bold" family="Arial" weight="700" style="normal" stretch="normal" glyphs="arialbd.ttf"/>
|
||||||
|
<type name="Arial-Bold-Italic" fullname="Arial Bold Italic" family="Arial" weight="700" style="italic" stretch="normal" glyphs="arialbi.ttf"/>
|
||||||
|
<type name="Arial-Italic" fullname="Arial Italic" family="Arial" weight="400" style="italic" stretch="normal" glyphs="ariali.ttf"/>
|
||||||
|
<type name="Arial-Narrow" fullname="Arial Narrow" family="Arial Narrow" weight="400" style="normal" stretch="condensed" glyphs="arialn.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Bold" fullname="Arial Narrow Bold" family="Arial Narrow" weight="700" style="normal" stretch="condensed" glyphs="arialnb.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Bold-Italic" fullname="Arial Narrow Bold Italic" family="Arial Narrow" weight="700" style="italic" stretch="condensed" glyphs="arialnbi.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Italic" fullname="Arial Narrow Italic" family="Arial Narrow" weight="400" style="italic" stretch="condensed" glyphs="arnari.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G1" fullname="Arial Narrow Special G1" family="Arial Narrow Special G1" weight="400" style="normal" stretch="condensed" glyphs="msgeonr1.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G1-Bold" fullname="Arial Narrow Special G1 Bold" family="Arial Narrow Special G1" weight="700" style="normal" stretch="condensed" glyphs="msgeonb1.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G1-Italic" fullname="Arial Narrow Special G1 Italic" family="Arial Narrow Special G1" weight="400" style="italic" stretch="condensed" glyphs="msgeoni1.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G2" fullname="Arial Narrow Special G2" family="Arial Narrow Special G2" weight="400" style="normal" stretch="condensed" glyphs="msgeonr2.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G2-Bold" fullname="Arial Narrow Special G2 Bold" family="Arial Narrow Special G2" weight="700" style="Narrow" stretch="normal" glyphs="msgeonb2.ttf"/>
|
||||||
|
<type name="Arial-Narrow-Special-G2-Italic" fullname="Arial Narrow Special G2 Italic" family="Arial Narrow Special G2" weight="400" style="italic" stretch="condensed" glyphs="msgeoni2.ttf"/>
|
||||||
|
<type name="Arial-Rounded-MT-Bold" fullname="Arial Rounded MT Bold" family="Arial Rounded MT" weight="700" style="normal" stretch="normal" glyphs="arlrdbd.ttf"/>
|
||||||
|
<type name="Arial-Special-G1" fullname="Arial Special G1" family="Arial Special G1" weight="400" style="normal" stretch="normal" glyphs="msgeor1.ttf"/>
|
||||||
|
<type name="Arial-Special-G1-Bold" fullname="Arial Special G1 Bold" family="Arial Special G1" weight="700" style="normal" stretch="normal" glyphs="msgeoab1.ttf"/>
|
||||||
|
<type name="Arial-Special-G1-Bold-Italic" fullname="Arial Special G1 Bold Italic" family="Arial Special G1" weight="700" style="italic" stretch="normal" glyphs="msgeoax1.ttf"/>
|
||||||
|
<type name="Arial-Special-G1-Italic" fullname="Arial Special G1 Italic" family="Arial Special G1" weight="400" style="italic" stretch="normal" glyphs="msgeoai1.ttf"/>
|
||||||
|
<type name="Arial-Special-G2" fullname="Arial Special G2" family="Arial Special G2" weight="400" style="normal" stretch="normal" glyphs="msgeoar2.ttf"/>
|
||||||
|
<type name="Arial-Special-G2-Bold" fullname="Arial Special G2 Bold" family="Arial Special G2" weight="700" style="normal" stretch="normal" glyphs="msgeoab2.ttf"/>
|
||||||
|
<type name="Arial-Special-G2-Bold-Italic" fullname="Arial Special G2 Bold Italic" family="Arial Special G2" weight="700" style="italic" stretch="normal" glyphs="msgeoax2.ttf"/>
|
||||||
|
<type name="Arial-Special-G2-Italic" fullname="Arial Special G2 Italic" family="Arial Special G2" weight="400" style="italic" stretch="normal" glyphs="msgeoai2.ttf"/>
|
||||||
|
<type name="Bookman-Old-Style" fullname="Bookman Old Style" family="Bookman Old Style" weight="400" style="normal" stretch="normal" glyphs="bkmnos.ttf"/>
|
||||||
|
<type name="Bookman-Old-Style-Bold" fullname="Bookman Old Style Bold" family="Bookman Old Style" weight="700" style="normal" stretch="normal" glyphs="bookosb.ttf"/>
|
||||||
|
<type name="Bookman-Old-Style-Bold-Italic" fullname="Bookman Old Style Bold Italic" family="Bookman Old Style" weight="400" style="italic" stretch="normal" glyphs="bookosbi.ttf"/>
|
||||||
|
<type name="Bookman-Old-Style-Italic" fullname="Bookman Old Style Italic" family="Bookman Old Style" weight="400" style="italic" stretch="normal" glyphs="boookosi.ttf"/>
|
||||||
|
<type name="Century-Schoolbook" fullname="Century Schoolbook" family="Century Schoolbook" weight="400" style="normal" stretch="normal" glyphs="censcbk.ttf"/>
|
||||||
|
<type name="Century-Schoolbook-Bold" fullname="Century Schoolbook Bold" family="Century Schoolbook" weight="700" style="normal" stretch="normal" glyphs="schlbkb.ttf"/>
|
||||||
|
<type name="Century-Schoolbook-Bold-Italic" fullname="Century Schoolbook Bold Italic" family="Century Schoolbook" weight="700" style="italic" stretch="normal" glyphs="schlbkbi.ttf"/>
|
||||||
|
<type name="Century-Schoolbook-Italic" fullname="Century Schoolbook Italic" family="Century Schoolbook" weight="400" style="italic" stretch="normal" glyphs="schlbki.ttf"/>
|
||||||
|
<type name="Comic-Sans-MS" fullname="Comic Sans MS" family="Comic Sans MS" weight="400" style="normal" stretch="normal" glyphs="comic.ttf"/>
|
||||||
|
<type name="Comic-Sans-MS-Bold" fullname="Comic Sans MS Bold" family="Comic Sans MS" weight="700" style="normal" stretch="normal" glyphs="comicbd.ttf"/>
|
||||||
|
<type name="Courier-New" fullname="Courier New" family="Courier New" weight="400" style="normal" stretch="normal" glyphs="cour.ttf"/>
|
||||||
|
<type name="Courier-New-Bold" fullname="Courier New Bold" family="Courier New" weight="700" style="normal" stretch="normal" glyphs="courbd.ttf"/>
|
||||||
|
<type name="Courier-New-Bold-Italic" fullname="Courier New Bold Italic" family="Courier New" weight="700" style="italic" stretch="normal" glyphs="courbi.ttf"/>
|
||||||
|
<type name="Courier-New-Italic" fullname="Courier New Italic" family="Courier New" weight="400" style="italic" stretch="normal" glyphs="couri.ttf"/>
|
||||||
|
<type name="Garamond" fullname="Garamond" family="Garamond" weight="400" style="normal" stretch="normal" glyphs="gara.ttf"/>
|
||||||
|
<type name="Garamond-Bold" fullname="Garamond Bold" family="Garamond" weight="700" style="normal" stretch="normal" glyphs="garabd.ttf"/>
|
||||||
|
<type name="Garamond-Italic" fullname="Garamond Italic" family="Garamond" weight="400" style="italic" stretch="normal" glyphs="Italic"/>
|
||||||
|
<type name="Gill-Sans-MT-Ext-Condensed-Bold" fullname="Gill Sans MT Ext Condensed Bold" family="Gill Sans MT" weight="700" style="normal" stretch="extra-condensed" glyphs="glsnecb.ttf"/>
|
||||||
|
<type name="Impact" fullname="Impact" family="Impact" weight="400" style="normal" stretch="normal" glyphs="impact.ttf"/>
|
||||||
|
<type name="Lucida-Blackletter" fullname="Lucida Blackletter" family="Lucida Blackletter" weight="400" style="normal" stretch="normal" glyphs="lblack.ttf"/>
|
||||||
|
<type name="Lucida-Bright" fullname="Lucida Bright" family="Lucida Bright" weight="400" style="normal" stretch="normal" glyphs="lbrite.ttf"/>
|
||||||
|
<type name="Lucida-Bright-Demibold" fullname="Lucida Bright Demibold" family="Lucida Bright" weight="600" style="normal" stretch="normal" glyphs="lbrited.ttf"/>
|
||||||
|
<type name="Lucida-Bright-Demibold-Italic" fullname="Lucida Bright Demibold Italic" family="Lucida Bright" weight="600" style="italic" stretch="normal" glyphs="lbritedi.ttf"/>
|
||||||
|
<type name="Lucida-Bright-Italic" fullname="Lucida Bright Italic" family="Lucida Bright" weight="400" style="italic" stretch="normal" glyphs="lbritei.ttf"/>
|
||||||
|
<type name="Lucida-Caligraphy-Italic" fullname="Lucida Caligraphy Italic" family="Lucida Caligraphy" weight="400" style="italic" stretch="normal" glyphs="lcalig.ttf"/>
|
||||||
|
<type name="Lucida-Console, Lucida-Console" fullname="Lucida Console, Lucida Console" family="Regular" weight="400" style="lucon.ttf" stretch="normal" glyphs=""/>
|
||||||
|
<type name="Lucida-Fax-Demibold" fullname="Lucida Fax Demibold" family="Lucida Fax" weight="600" style="normal" stretch="normal" glyphs="lfaxd.ttf"/>
|
||||||
|
<type name="Lucida-Fax-Demibold-Italic" fullname="Lucida Fax Demibold Italic" family="Lucida Fax" weight="600" style="italic" stretch="normal" glyphs="lfaxdi.ttf"/>
|
||||||
|
<type name="Lucida-Fax-Italic" fullname="Lucida Fax Italic" family="Lucida Fax" weight="400" style="italic" stretch="normal" glyphs="lfaxi.ttf"/>
|
||||||
|
<type name="Lucida-Fax-Regular" fullname="Lucida Fax Regular" family="Lucida Fax" weight="400" style="normal" stretch="normal" glyphs="lfax.ttf"/>
|
||||||
|
<type name="Lucida-Handwriting-Italic" fullname="Lucida Handwriting Italic" family="Lucida Handwriting" weight="400" style="italic" stretch="normal" glyphs="lhandw.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Demibold-Italic" fullname="Lucida Sans Demibold Italic" family="Lucida Sans" weight="600" style="italic" stretch="normal" glyphs="lsansdi.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Demibold-Roman" fullname="Lucida Sans Demibold Roman" family="Lucida Sans Demibold" weight="400" style="normal" stretch="normal" glyphs="lsansd.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Regular" fullname="Lucida Sans Regular" family="Lucida Sans" weight="400" style="normal" stretch="normal" glyphs="lsans.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Typewriter-Bold" fullname="Lucida Sans Typewriter Bold" family="Lucida Sans Typewriter" weight="700" style="normal" stretch="normal" glyphs="ltypeb.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Typewriter-Bold-Oblique" fullname="Lucida Sans Typewriter Bold Oblique" family="Lucida Sans Typewriter" weight="700" style="normal" stretch="normal" glyphs="ltypebo.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Typewriter-Oblique" fullname="Lucida Sans Typewriter Oblique" family="Lucida Sans Typewriter" weight="700" style="normal" stretch="normal" glyphs="ltypeo.ttf"/>
|
||||||
|
<type name="Lucida-Sans-Typewriter-Regular" fullname="Lucida Sans Typewriter Regular" family="Lucida Sans Typewriter" weight="400" style="normal" stretch="normal" glyphs="ltype.ttf"/>
|
||||||
|
<type name="MS-Sans-Serif" fullname="MS Sans Serif" family="MS Sans Serif" weight="400" style="normal" stretch="normal" glyphs="sseriff.ttf"/>
|
||||||
|
<type name="MS-Serif" fullname="MS Serif" family="MS Serif" weight="400" style="normal" stretch="normal" glyphs="seriff.ttf"/>
|
||||||
|
<type name="Modern" fullname="Modern" family="Modern" weight="400" style="normal" stretch="normal" glyphs="modern.ttf"/>
|
||||||
|
<type name="Monotype-Corsiva" fullname="Monotype Corsiva" family="Monotype Corsiva" weight="400" style="normal" stretch="normal" glyphs="mtcorsva.ttf"/>
|
||||||
|
<type name="Small-Fonts" fullname="Small Fonts" family="Small Fonts" weight="400" style="normal" stretch="normal" glyphs="smallf.ttf"/>
|
||||||
|
<type name="Symbol" fullname="Symbol" family="Symbol" weight="400" style="normal" stretch="normal" glyphs="symbol.ttf" encoding="AppleRoman"/>
|
||||||
|
<type name="Tahoma" fullname="Tahoma" family="Tahoma" weight="400" style="normal" stretch="normal" glyphs="tahoma.ttf"/>
|
||||||
|
<type name="Tahoma-Bold" fullname="Tahoma Bold" family="Tahoma" weight="700" style="normal" stretch="normal" glyphs="tahomabd.ttf"/>
|
||||||
|
<type name="Times-New-Roman" fullname="Times New Roman" family="Times New Roman" weight="400" style="normal" stretch="normal" glyphs="times.ttf"/>
|
||||||
|
<type name="Times-New-Roman-Bold" fullname="Times New Roman Bold" family="Times New Roman" weight="700" style="normal" stretch="normal" glyphs="timesbd.ttf"/>
|
||||||
|
<type name="Times-New-Roman-Bold-Italic" fullname="Times New Roman Bold Italic" family="Times New Roman" weight="700" style="italic" stretch="normal" glyphs="timesbi.ttf"/>
|
||||||
|
<type name="Times-New-Roman-Italic" fullname="Times New Roman Italic" family="Times New Roman" weight="400" style="italic" stretch="normal" glyphs="timesi.ttf"/>
|
||||||
|
<type name="Times-New-Roman-MT-Extra-Bold" fullname="Times New Roman MT Extra Bold" family="Times New Roman MT" weight="800" style="normal" stretch="normal" glyphs="timnreb.ttf"/>
|
||||||
|
<type name="Verdana" fullname="Verdana" family="Verdana" weight="400" style="normal" stretch="normal" glyphs="verdana.ttf"/>
|
||||||
|
<type name="Verdana-Bold" fullname="Verdana Bold" family="Verdana" weight="700" style="normal" stretch="normal" glyphs="verdanab.ttf"/>
|
||||||
|
<type name="Verdana-Bold-Italic" fullname="Verdana Bold Italic" family="Verdana" weight="700" style="italic" stretch="normal" glyphs="verdanaz.ttf"/>
|
||||||
|
<type name="Verdana-Italic" fullname="Verdana Italic" family="Verdana" weight="400" style="italic" stretch="normal" glyphs="verdanai.ttf"/>
|
||||||
|
<type name="Wingdings" fullname="Wingdings" family="Wingdings" weight="400" style="normal" stretch="normal" glyphs="wingding.ttf" encoding="AppleRoman"/>
|
||||||
|
<type name="Wingdings-2" fullname="Wingdings 2" family="Wingdings 2" weight="400" style="normal" stretch="normal" glyphs="wingdng2.ttf" encoding="AppleRoman"/>
|
||||||
|
<type name="Wingdings-3" fullname="Wingdings 3" family="Wingdings 3" weight="400" style="normal" stretch="normal" glyphs="wingdng3.ttf" encoding="AppleRoman"/>
|
||||||
|
</typemap>
|
||||||
17
ImageMagick-6/type.xml
Normal file
17
ImageMagick-6/type.xml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE typemap [
|
||||||
|
<!ELEMENT typemap (type)+>
|
||||||
|
<!ATTLIST typemap xmlns CDATA #FIXED ''>
|
||||||
|
<!ELEMENT type EMPTY>
|
||||||
|
<!ATTLIST type xmlns CDATA #FIXED '' encoding NMTOKEN #IMPLIED
|
||||||
|
family CDATA #REQUIRED format NMTOKEN #REQUIRED foundry NMTOKEN #REQUIRED
|
||||||
|
fullname CDATA #REQUIRED glyphs CDATA #REQUIRED metrics CDATA #REQUIRED
|
||||||
|
name NMTOKEN #REQUIRED stretch NMTOKEN #REQUIRED style NMTOKEN #REQUIRED
|
||||||
|
version CDATA #IMPLIED weight CDATA #REQUIRED>
|
||||||
|
]>
|
||||||
|
<!--
|
||||||
|
ImageMagick font configuration.
|
||||||
|
-->
|
||||||
|
<typemap>
|
||||||
|
<include file="type-urw-base35.xml" />
|
||||||
|
</typemap>
|
||||||
50
NetworkManager/NetworkManager.conf
Normal file
50
NetworkManager/NetworkManager.conf
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
# Configuration file for NetworkManager.
|
||||||
|
#
|
||||||
|
# See "man 5 NetworkManager.conf" for details.
|
||||||
|
#
|
||||||
|
# The directories /usr/lib/NetworkManager/conf.d/ and /run/NetworkManager/conf.d/
|
||||||
|
# can contain additional configuration snippets installed by packages. These files are
|
||||||
|
# read before NetworkManager.conf and have thus lowest priority.
|
||||||
|
# The directory /etc/NetworkManager/conf.d/ can contain additional configuration
|
||||||
|
# snippets. Those snippets are merged last and overwrite the settings from this main
|
||||||
|
# file.
|
||||||
|
#
|
||||||
|
# The files within one conf.d/ directory are read in asciibetical order.
|
||||||
|
#
|
||||||
|
# If /etc/NetworkManager/conf.d/ contains a file with the same name as
|
||||||
|
# /usr/lib/NetworkManager/conf.d/, the latter file is shadowed and thus ignored.
|
||||||
|
# Hence, to disable loading a file from /usr/lib/NetworkManager/conf.d/ you can
|
||||||
|
# put an empty file to /etc with the same name. The same applies with respect
|
||||||
|
# to the directory /run/NetworkManager/conf.d where files in /run shadow
|
||||||
|
# /usr/lib and are themselves shadowed by files under /etc.
|
||||||
|
#
|
||||||
|
# If two files define the same key, the one that is read afterwards will overwrite
|
||||||
|
# the previous one.
|
||||||
|
|
||||||
|
[main]
|
||||||
|
#plugins=ifcfg-rh
|
||||||
|
|
||||||
|
|
||||||
|
[logging]
|
||||||
|
# When debugging NetworkManager, enabling debug logging is of great help.
|
||||||
|
#
|
||||||
|
# Logfiles contain no passwords and little sensitive information. But please
|
||||||
|
# check before posting the file online. You can also personally hand over the
|
||||||
|
# logfile to a NM developer to treat it confidential. Meet us on #nm on freenode.
|
||||||
|
# Please post full logfiles except minimal modifications of private data.
|
||||||
|
#
|
||||||
|
# You can also change the log-level at runtime via
|
||||||
|
# $ nmcli general logging level TRACE domains ALL
|
||||||
|
# However, usually it's cleaner to enable debug logging
|
||||||
|
# in the configuration and restart NetworkManager so that
|
||||||
|
# debug logging is enabled from the start.
|
||||||
|
#
|
||||||
|
# You will find the logfiles in syslog, for example via
|
||||||
|
# $ journalctl -u NetworkManager
|
||||||
|
#
|
||||||
|
# Note that debug logging of NetworkManager can be quite verbose. Some messages
|
||||||
|
# might be rate-limited by the logging daemon (see RateLimitIntervalSec, RateLimitBurst
|
||||||
|
# in man journald.conf). Please disable rate-limiting before collecting debug logs.
|
||||||
|
#
|
||||||
|
#level=TRACE
|
||||||
|
#domains=ALL
|
||||||
37
NetworkManager/dispatcher.d/11-dhclient
Executable file
37
NetworkManager/dispatcher.d/11-dhclient
Executable file
@@ -0,0 +1,37 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# run dhclient.d scripts in an emulated environment
|
||||||
|
|
||||||
|
PATH=/bin:/usr/bin:/sbin
|
||||||
|
ETCDIR=/etc/dhcp
|
||||||
|
SAVEDIR=/var/lib/dhclient
|
||||||
|
interface=$1
|
||||||
|
|
||||||
|
for optname in "${!DHCP4_@}"; do
|
||||||
|
newoptname=${optname,,};
|
||||||
|
newoptname=new_${newoptname#dhcp4_};
|
||||||
|
export "${newoptname}"="${!optname}";
|
||||||
|
done
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network ] && . /etc/sysconfig/network
|
||||||
|
|
||||||
|
[ -f /etc/sysconfig/network-scripts/ifcfg-"${interface}" ] && \
|
||||||
|
. /etc/sysconfig/network-scripts/ifcfg-"${interface}"
|
||||||
|
|
||||||
|
if [ -d $ETCDIR/dhclient.d ]; then
|
||||||
|
for f in $ETCDIR/dhclient.d/*.sh; do
|
||||||
|
if [ -x "${f}" ]; then
|
||||||
|
subsystem="${f%.sh}"
|
||||||
|
subsystem="${subsystem##*/}"
|
||||||
|
. "${f}"
|
||||||
|
if [ "$2" = "up" ]; then
|
||||||
|
"${subsystem}_config"
|
||||||
|
elif [ "$2" = "dhcp4-change" ]; then
|
||||||
|
if [ "$subsystem" = "chrony" -o "$subsystem" = "ntp" ]; then
|
||||||
|
"${subsystem}_config"
|
||||||
|
fi
|
||||||
|
elif [ "$2" = "down" ]; then
|
||||||
|
"${subsystem}_restore"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
15
NetworkManager/dispatcher.d/20-chrony
Executable file
15
NetworkManager/dispatcher.d/20-chrony
Executable file
@@ -0,0 +1,15 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# This is a NetworkManager dispatcher / networkd-dispatcher script for
|
||||||
|
# chronyd to set its NTP sources online or offline when a network interface
|
||||||
|
# is configured or removed
|
||||||
|
|
||||||
|
export LC_ALL=C
|
||||||
|
|
||||||
|
# For NetworkManager consider only up/down events
|
||||||
|
[ $# -ge 2 ] && [ "$2" != "up" ] && [ "$2" != "down" ] && exit 0
|
||||||
|
|
||||||
|
# Note: for networkd-dispatcher routable.d ~= on and off.d ~= off
|
||||||
|
|
||||||
|
chronyc onoffline > /dev/null 2>&1
|
||||||
|
|
||||||
|
exit 0
|
||||||
1
X11/fontpath.d/xorg-x11-fonts-100dpi:unscaled:pri=30
Symbolic link
1
X11/fontpath.d/xorg-x11-fonts-100dpi:unscaled:pri=30
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/X11/fonts/100dpi
|
||||||
1
X11/fontpath.d/xorg-x11-fonts-Type1
Symbolic link
1
X11/fontpath.d/xorg-x11-fonts-Type1
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/X11/fonts/Type1
|
||||||
14
X11/xinit/xinitrc.d/10-qt5-check-opengl2.sh
Executable file
14
X11/xinit/xinitrc.d/10-qt5-check-opengl2.sh
Executable file
@@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
if [ -z "$QT_XCB_FORCE_SOFTWARE_OPENGL" ]; then
|
||||||
|
|
||||||
|
QT5_CHECK_OPENGL_VERSION=`LANG=C glxinfo 2> /dev/null | grep '^OpenGL version string: ' | head -n 1 | sed -e 's/^OpenGL version string: \([0-9]\).*$/\1/g'` ||:
|
||||||
|
|
||||||
|
if [ "$QT5_CHECK_OPENGL_VERSION" == "1" ]; then
|
||||||
|
QT_XCB_FORCE_SOFTWARE_OPENGL=1
|
||||||
|
export QT_XCB_FORCE_SOFTWARE_OPENGL
|
||||||
|
fi
|
||||||
|
|
||||||
|
unset QT5_CHECK_OPENGL_VERSION
|
||||||
|
|
||||||
|
fi
|
||||||
7
X11/xinit/xinitrc.d/50-systemd-user.sh
Executable file
7
X11/xinit/xinitrc.d/50-systemd-user.sh
Executable file
@@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
systemctl --user import-environment DISPLAY XAUTHORITY
|
||||||
|
|
||||||
|
if command -v dbus-update-activation-environment >/dev/null 2>&1; then
|
||||||
|
dbus-update-activation-environment DISPLAY XAUTHORITY
|
||||||
|
fi
|
||||||
321
aide.conf
Normal file
321
aide.conf
Normal file
@@ -0,0 +1,321 @@
|
|||||||
|
# Example configuration file for AIDE.
|
||||||
|
|
||||||
|
@@define DBDIR /var/lib/aide
|
||||||
|
@@define LOGDIR /var/log/aide
|
||||||
|
|
||||||
|
# The location of the database to be read.
|
||||||
|
database=file:@@{DBDIR}/aide.db.gz
|
||||||
|
|
||||||
|
# The location of the database to be written.
|
||||||
|
#database_out=sql:host:port:database:login_name:passwd:table
|
||||||
|
#database_out=file:aide.db.new
|
||||||
|
database_out=file:@@{DBDIR}/aide.db.new.gz
|
||||||
|
|
||||||
|
# Whether to gzip the output to database
|
||||||
|
gzip_dbout=yes
|
||||||
|
|
||||||
|
# Default.
|
||||||
|
verbose=5
|
||||||
|
|
||||||
|
report_url=file:@@{LOGDIR}/aide.log
|
||||||
|
report_url=stdout
|
||||||
|
#report_url=stderr
|
||||||
|
#NOT IMPLEMENTED report_url=mailto:root@foo.com
|
||||||
|
#NOT IMPLEMENTED report_url=syslog:LOG_AUTH
|
||||||
|
|
||||||
|
# These are the default rules.
|
||||||
|
#
|
||||||
|
#p: permissions
|
||||||
|
#i: inode:
|
||||||
|
#n: number of links
|
||||||
|
#u: user
|
||||||
|
#g: group
|
||||||
|
#s: size
|
||||||
|
#b: block count
|
||||||
|
#m: mtime
|
||||||
|
#a: atime
|
||||||
|
#c: ctime
|
||||||
|
#S: check for growing size
|
||||||
|
#acl: Access Control Lists
|
||||||
|
#selinux SELinux security context
|
||||||
|
#xattrs: Extended file attributes
|
||||||
|
#md5: md5 checksum
|
||||||
|
#sha1: sha1 checksum
|
||||||
|
#sha256: sha256 checksum
|
||||||
|
#sha512: sha512 checksum
|
||||||
|
#rmd160: rmd160 checksum
|
||||||
|
#tiger: tiger checksum
|
||||||
|
|
||||||
|
#haval: haval checksum (MHASH only)
|
||||||
|
#gost: gost checksum (MHASH only)
|
||||||
|
#crc32: crc32 checksum (MHASH only)
|
||||||
|
#whirlpool: whirlpool checksum (MHASH only)
|
||||||
|
|
||||||
|
#R: p+i+n+u+g+s+m+c+acl+selinux+xattrs+md5
|
||||||
|
#L: p+i+n+u+g+acl+selinux+xattrs
|
||||||
|
#E: Empty group
|
||||||
|
#>: Growing logfile p+u+g+i+n+S+acl+selinux+xattrs
|
||||||
|
|
||||||
|
# You can create custom rules like this.
|
||||||
|
# With MHASH...
|
||||||
|
# ALLXTRAHASHES = sha1+rmd160+sha256+sha512+whirlpool+tiger+haval+gost+crc32
|
||||||
|
ALLXTRAHASHES = sha1+rmd160+sha256+sha512+tiger
|
||||||
|
# Everything but access time (Ie. all changes)
|
||||||
|
EVERYTHING = R+ALLXTRAHASHES
|
||||||
|
|
||||||
|
# Sane
|
||||||
|
# NORMAL = R+sha512
|
||||||
|
NORMAL = p+i+n+u+g+s+m+c+acl+selinux+xattrs+sha512
|
||||||
|
|
||||||
|
# For directories, don't bother doing hashes
|
||||||
|
DIR = p+i+n+u+g+acl+selinux+xattrs
|
||||||
|
|
||||||
|
# Access control only
|
||||||
|
PERMS = p+u+g+acl+selinux+xattrs
|
||||||
|
|
||||||
|
# Logfile are special, in that they often change
|
||||||
|
LOG = p+u+g+n+S+acl+selinux+xattrs
|
||||||
|
|
||||||
|
# Content + file type.
|
||||||
|
CONTENT = sha512+ftype
|
||||||
|
|
||||||
|
# Extended content + file type + access.
|
||||||
|
CONTENT_EX = sha512+ftype+p+u+g+n+acl+selinux+xattrs
|
||||||
|
|
||||||
|
# Some files get updated automatically, so the inode/ctime/mtime change
|
||||||
|
# but we want to know when the data inside them changes
|
||||||
|
DATAONLY = p+n+u+g+s+acl+selinux+xattrs+sha512
|
||||||
|
|
||||||
|
# Next decide what directories/files you want in the database.
|
||||||
|
|
||||||
|
/boot CONTENT_EX
|
||||||
|
/opt CONTENT
|
||||||
|
|
||||||
|
# Admins dot files constantly change, just check perms
|
||||||
|
/root/\..* PERMS
|
||||||
|
# Otherwise get all of /root.
|
||||||
|
/root CONTENT_EX
|
||||||
|
|
||||||
|
# These are too volatile
|
||||||
|
!/usr/src
|
||||||
|
!/usr/tmp
|
||||||
|
|
||||||
|
# Otherwise get all of /usr.
|
||||||
|
/usr CONTENT_EX
|
||||||
|
|
||||||
|
# trusted databases
|
||||||
|
/etc/hosts$ CONTENT_EX
|
||||||
|
/etc/host.conf$ CONTENT_EX
|
||||||
|
/etc/hostname$ CONTENT_EX
|
||||||
|
/etc/issue$ CONTENT_EX
|
||||||
|
/etc/issue.net$ CONTENT_EX
|
||||||
|
/etc/protocols$ CONTENT_EX
|
||||||
|
/etc/services$ CONTENT_EX
|
||||||
|
/etc/localtime$ CONTENT_EX
|
||||||
|
/etc/alternatives CONTENT_EX
|
||||||
|
/etc/sysconfig CONTENT_EX
|
||||||
|
/etc/mime.types$ CONTENT_EX
|
||||||
|
/etc/terminfo CONTENT_EX
|
||||||
|
/etc/exports$ CONTENT_EX
|
||||||
|
/etc/fstab$ CONTENT_EX
|
||||||
|
/etc/passwd$ CONTENT_EX
|
||||||
|
/etc/group$ CONTENT_EX
|
||||||
|
/etc/gshadow$ CONTENT_EX
|
||||||
|
/etc/shadow$ CONTENT_EX
|
||||||
|
/etc/subgid$ CONTENT_EX
|
||||||
|
/etc/subuid$ CONTENT_EX
|
||||||
|
/etc/security/opasswd$ CONTENT_EX
|
||||||
|
/etc/skel CONTENT_EX
|
||||||
|
/etc/subuid$ CONTENT_EX
|
||||||
|
/etc/subgid$ CONTENT_EX
|
||||||
|
/etc/sssd CONTENT_EX
|
||||||
|
/etc/machine-id$ CONTENT_EX
|
||||||
|
/etc/swid CONTENT_EX
|
||||||
|
/etc/system-release-cpe$ CONTENT_EX
|
||||||
|
/etc/shells$ CONTENT_EX
|
||||||
|
/etc/tmux.conf$ CONTENT_EX
|
||||||
|
/etc/xattr.conf$ CONTENT_EX
|
||||||
|
|
||||||
|
|
||||||
|
# networking
|
||||||
|
/etc/hosts.allow$ CONTENT_EX
|
||||||
|
/etc/hosts.deny$ CONTENT_EX
|
||||||
|
/etc/firewalld CONTENT_EX
|
||||||
|
!/etc/NetworkManager/system-connections
|
||||||
|
/etc/NetworkManager CONTENT_EX
|
||||||
|
/etc/networks$ CONTENT_EX
|
||||||
|
/etc/dhcp CONTENT_EX
|
||||||
|
/etc/wpa_supplicant CONTENT_EX
|
||||||
|
/etc/resolv.conf$ DATAONLY
|
||||||
|
/etc/nscd.conf$ CONTENT_EX
|
||||||
|
|
||||||
|
# logins and accounts
|
||||||
|
/etc/login.defs$ CONTENT_EX
|
||||||
|
/etc/libuser.conf$ CONTENT_EX
|
||||||
|
/var/log/faillog$ PERMS
|
||||||
|
/var/log/lastlog$ PERMS
|
||||||
|
/var/run/faillock PERMS
|
||||||
|
/etc/pam.d CONTENT_EX
|
||||||
|
/etc/security CONTENT_EX
|
||||||
|
/etc/securetty$ CONTENT_EX
|
||||||
|
/etc/polkit-1 CONTENT_EX
|
||||||
|
/etc/sudo.conf$ CONTENT_EX
|
||||||
|
/etc/sudoers$ CONTENT_EX
|
||||||
|
/etc/sudoers.d CONTENT_EX
|
||||||
|
|
||||||
|
# Shell/X startup files
|
||||||
|
/etc/profile$ CONTENT_EX
|
||||||
|
/etc/profile.d CONTENT_EX
|
||||||
|
/etc/bashrc$ CONTENT_EX
|
||||||
|
/etc/bash_completion.d CONTENT_EX
|
||||||
|
/etc/zprofile$ CONTENT_EX
|
||||||
|
/etc/zshrc$ CONTENT_EX
|
||||||
|
/etc/zlogin$ CONTENT_EX
|
||||||
|
/etc/zlogout$ CONTENT_EX
|
||||||
|
/etc/X11 CONTENT_EX
|
||||||
|
|
||||||
|
# Pkg manager
|
||||||
|
/etc/dnf CONTENT_EX
|
||||||
|
/etc/yum.conf$ CONTENT_EX
|
||||||
|
/etc/yum CONTENT_EX
|
||||||
|
/etc/yum.repos.d CONTENT_EX
|
||||||
|
|
||||||
|
# This gets new/removes-old filenames daily
|
||||||
|
!/var/log/sa
|
||||||
|
# As we are checking it, we've truncated yesterdays size to zero.
|
||||||
|
!/var/log/aide.log
|
||||||
|
|
||||||
|
# auditing
|
||||||
|
# AIDE produces an audit record, so this becomes perpetual motion.
|
||||||
|
/var/log/audit PERMS
|
||||||
|
/etc/audit CONTENT_EX
|
||||||
|
/etc/libaudit.conf$ CONTENT_EX
|
||||||
|
/etc/aide.conf$ CONTENT_EX
|
||||||
|
|
||||||
|
# System logs
|
||||||
|
/etc/rsyslog.conf$ CONTENT_EX
|
||||||
|
/etc/rsyslog.d CONTENT_EX
|
||||||
|
/etc/logrotate.conf$ CONTENT_EX
|
||||||
|
/etc/logrotate.d CONTENT_EX
|
||||||
|
/etc/systemd/journald.conf$ CONTENT_EX
|
||||||
|
/var/log LOG+ANF+ARF
|
||||||
|
/var/run/utmp LOG
|
||||||
|
|
||||||
|
# secrets
|
||||||
|
/etc/pkcs11 CONTENT_EX
|
||||||
|
/etc/pki CONTENT_EX
|
||||||
|
/etc/crypto-policies CONTENT_EX
|
||||||
|
/etc/certmonger CONTENT_EX
|
||||||
|
/var/lib/systemd/random-seed$ PERMS
|
||||||
|
|
||||||
|
# init system
|
||||||
|
/etc/systemd CONTENT_EX
|
||||||
|
/etc/rc.d CONTENT_EX
|
||||||
|
/etc/tmpfiles.d CONTENT_EX
|
||||||
|
|
||||||
|
# boot config
|
||||||
|
/etc/default CONTENT_EX
|
||||||
|
/etc/grub.d CONTENT_EX
|
||||||
|
/etc/dracut.conf$ CONTENT_EX
|
||||||
|
/etc/dracut.conf.d CONTENT_EX
|
||||||
|
|
||||||
|
# glibc linker
|
||||||
|
/etc/ld.so.cache$ CONTENT_EX
|
||||||
|
/etc/ld.so.conf$ CONTENT_EX
|
||||||
|
/etc/ld.so.conf.d CONTENT_EX
|
||||||
|
/etc/ld.so.preload$ CONTENT_EX
|
||||||
|
|
||||||
|
# kernel config
|
||||||
|
/etc/sysctl.conf$ CONTENT_EX
|
||||||
|
/etc/sysctl.d CONTENT_EX
|
||||||
|
/etc/modprobe.d CONTENT_EX
|
||||||
|
/etc/modules-load.d CONTENT_EX
|
||||||
|
/etc/depmod.d CONTENT_EX
|
||||||
|
/etc/udev CONTENT_EX
|
||||||
|
/etc/crypttab$ CONTENT_EX
|
||||||
|
|
||||||
|
#### Daemons ####
|
||||||
|
|
||||||
|
# cron jobs
|
||||||
|
/var/spool/at CONTENT
|
||||||
|
/etc/at.allow$ CONTENT
|
||||||
|
/etc/at.deny$ CONTENT
|
||||||
|
/var/spool/anacron CONTENT
|
||||||
|
/etc/anacrontab$ CONTENT_EX
|
||||||
|
/etc/cron.allow$ CONTENT_EX
|
||||||
|
/etc/cron.deny$ CONTENT_EX
|
||||||
|
/etc/cron.d CONTENT_EX
|
||||||
|
/etc/cron.daily CONTENT_EX
|
||||||
|
/etc/cron.hourly CONTENT_EX
|
||||||
|
/etc/cron.monthly CONTENT_EX
|
||||||
|
/etc/cron.weekly CONTENT_EX
|
||||||
|
/etc/crontab$ CONTENT_EX
|
||||||
|
/var/spool/cron/root CONTENT
|
||||||
|
|
||||||
|
# time keeping
|
||||||
|
/etc/chrony.conf$ CONTENT_EX
|
||||||
|
/etc/chrony.keys$ CONTENT_EX
|
||||||
|
|
||||||
|
# mail
|
||||||
|
/etc/aliases$ CONTENT_EX
|
||||||
|
/etc/aliases.db$ CONTENT_EX
|
||||||
|
/etc/postfix CONTENT_EX
|
||||||
|
|
||||||
|
# ssh
|
||||||
|
/etc/ssh/sshd_config$ CONTENT_EX
|
||||||
|
/etc/ssh/ssh_config$ CONTENT_EX
|
||||||
|
|
||||||
|
# stunnel
|
||||||
|
/etc/stunnel CONTENT_EX
|
||||||
|
|
||||||
|
# printing
|
||||||
|
/etc/cups CONTENT_EX
|
||||||
|
/etc/cupshelpers CONTENT_EX
|
||||||
|
/etc/avahi CONTENT_EX
|
||||||
|
|
||||||
|
# web server
|
||||||
|
/etc/httpd CONTENT_EX
|
||||||
|
|
||||||
|
# dns
|
||||||
|
/etc/named CONTENT_EX
|
||||||
|
/etc/named.conf$ CONTENT_EX
|
||||||
|
/etc/named.iscdlv.key$ CONTENT_EX
|
||||||
|
/etc/named.rfc1912.zones$ CONTENT_EX
|
||||||
|
/etc/named.root.key$ CONTENT_EX
|
||||||
|
|
||||||
|
# xinetd
|
||||||
|
/etc/xinetd.conf$ CONTENT_EX
|
||||||
|
/etc/xinetd.d CONTENT_EX
|
||||||
|
|
||||||
|
# IPsec
|
||||||
|
/etc/ipsec.conf$ CONTENT_EX
|
||||||
|
/etc/ipsec.secrets$ CONTENT_EX
|
||||||
|
/etc/ipsec.d CONTENT_EX
|
||||||
|
|
||||||
|
# USB guard
|
||||||
|
/etc/usbguard CONTENT_EX
|
||||||
|
|
||||||
|
# Ignore some files
|
||||||
|
!/etc/mtab$
|
||||||
|
!/etc/.*~
|
||||||
|
|
||||||
|
# Now everything else
|
||||||
|
/etc PERMS
|
||||||
|
|
||||||
|
|
||||||
|
# With AIDE's default verbosity level of 5, these would give lots of
|
||||||
|
# warnings upon tree traversal. It might change with future version.
|
||||||
|
#
|
||||||
|
#=/lost\+found DIR
|
||||||
|
#=/home DIR
|
||||||
|
|
||||||
|
# Ditto /var/log/sa reason...
|
||||||
|
!/var/log/and-httpd
|
||||||
|
|
||||||
|
# Admins dot files constantly change, just check perms
|
||||||
|
/root/\..* PERMS
|
||||||
|
!/root/.xauth*
|
||||||
|
|
||||||
|
# Exclude folders
|
||||||
|
!/root/.*
|
||||||
|
!/opt/.*
|
||||||
97
aliases
Normal file
97
aliases
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
#
|
||||||
|
# Aliases in this file will NOT be expanded in the header from
|
||||||
|
# Mail, but WILL be visible over networks or from /bin/mail.
|
||||||
|
#
|
||||||
|
# >>>>>>>>>> The program "newaliases" must be run after
|
||||||
|
# >> NOTE >> this file is updated for any changes to
|
||||||
|
# >>>>>>>>>> show through to sendmail.
|
||||||
|
#
|
||||||
|
|
||||||
|
# Basic system aliases -- these MUST be present.
|
||||||
|
mailer-daemon: postmaster
|
||||||
|
postmaster: root
|
||||||
|
|
||||||
|
# General redirections for pseudo accounts.
|
||||||
|
bin: root
|
||||||
|
daemon: root
|
||||||
|
adm: root
|
||||||
|
lp: root
|
||||||
|
sync: root
|
||||||
|
shutdown: root
|
||||||
|
halt: root
|
||||||
|
mail: root
|
||||||
|
news: root
|
||||||
|
uucp: root
|
||||||
|
operator: root
|
||||||
|
games: root
|
||||||
|
gopher: root
|
||||||
|
ftp: root
|
||||||
|
nobody: root
|
||||||
|
radiusd: root
|
||||||
|
nut: root
|
||||||
|
dbus: root
|
||||||
|
vcsa: root
|
||||||
|
canna: root
|
||||||
|
wnn: root
|
||||||
|
rpm: root
|
||||||
|
nscd: root
|
||||||
|
pcap: root
|
||||||
|
apache: root
|
||||||
|
webalizer: root
|
||||||
|
dovecot: root
|
||||||
|
fax: root
|
||||||
|
quagga: root
|
||||||
|
radvd: root
|
||||||
|
pvm: root
|
||||||
|
amandabackup: root
|
||||||
|
privoxy: root
|
||||||
|
ident: root
|
||||||
|
named: root
|
||||||
|
xfs: root
|
||||||
|
gdm: root
|
||||||
|
mailnull: root
|
||||||
|
postgres: root
|
||||||
|
sshd: root
|
||||||
|
smmsp: root
|
||||||
|
postfix: root
|
||||||
|
netdump: root
|
||||||
|
ldap: root
|
||||||
|
squid: root
|
||||||
|
ntp: root
|
||||||
|
mysql: root
|
||||||
|
desktop: root
|
||||||
|
rpcuser: root
|
||||||
|
rpc: root
|
||||||
|
nfsnobody: root
|
||||||
|
pcp: root
|
||||||
|
|
||||||
|
ingres: root
|
||||||
|
system: root
|
||||||
|
toor: root
|
||||||
|
manager: root
|
||||||
|
dumper: root
|
||||||
|
abuse: root
|
||||||
|
|
||||||
|
newsadm: news
|
||||||
|
newsadmin: news
|
||||||
|
usenet: news
|
||||||
|
ftpadm: ftp
|
||||||
|
ftpadmin: ftp
|
||||||
|
ftp-adm: ftp
|
||||||
|
ftp-admin: ftp
|
||||||
|
www: webmaster
|
||||||
|
webmaster: root
|
||||||
|
noc: root
|
||||||
|
security: root
|
||||||
|
hostmaster: root
|
||||||
|
info: postmaster
|
||||||
|
marketing: postmaster
|
||||||
|
sales: postmaster
|
||||||
|
support: postmaster
|
||||||
|
|
||||||
|
|
||||||
|
# trap decode to catch security attacks
|
||||||
|
decode: root
|
||||||
|
|
||||||
|
# Person who should get root's mail
|
||||||
|
#root: marc
|
||||||
BIN
aliases.db
Normal file
BIN
aliases.db
Normal file
Binary file not shown.
1
alternatives/alt-java
Symbolic link
1
alternatives/alt-java
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/alt-java
|
||||||
1
alternatives/alt-java.1.gz
Symbolic link
1
alternatives/alt-java.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/alt-java-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/cifs-idmap-plugin
Symbolic link
1
alternatives/cifs-idmap-plugin
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib64/cifs-utils/cifs_idmap_sss.so
|
||||||
1
alternatives/distribution_based_engine.json
Symbolic link
1
alternatives/distribution_based_engine.json
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/var/lib/docker-engine/distribution_based_engine-ce.json
|
||||||
1
alternatives/dockerd
Symbolic link
1
alternatives/dockerd
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/dockerd-ce
|
||||||
1
alternatives/easy_install-3
Symbolic link
1
alternatives/easy_install-3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/easy_install-3.6
|
||||||
1
alternatives/ifdown
Symbolic link
1
alternatives/ifdown
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/etc/sysconfig/network-scripts/ifdown
|
||||||
1
alternatives/ifup
Symbolic link
1
alternatives/ifup
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/etc/sysconfig/network-scripts/ifup
|
||||||
1
alternatives/java
Symbolic link
1
alternatives/java
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/java
|
||||||
1
alternatives/java.1.gz
Symbolic link
1
alternatives/java.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/java-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/jjs
Symbolic link
1
alternatives/jjs
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/jjs
|
||||||
1
alternatives/jjs.1.gz
Symbolic link
1
alternatives/jjs.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/jjs-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/jre
Symbolic link
1
alternatives/jre
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre
|
||||||
1
alternatives/jre_1.8.0
Symbolic link
1
alternatives/jre_1.8.0
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre
|
||||||
1
alternatives/jre_1.8.0_openjdk
Symbolic link
1
alternatives/jre_1.8.0_openjdk
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/jre-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64
|
||||||
1
alternatives/jre_openjdk
Symbolic link
1
alternatives/jre_openjdk
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre
|
||||||
1
alternatives/keytool
Symbolic link
1
alternatives/keytool
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/keytool
|
||||||
1
alternatives/keytool.1.gz
Symbolic link
1
alternatives/keytool.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/keytool-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/ld
Symbolic link
1
alternatives/ld
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/ld.bfd
|
||||||
1
alternatives/libnssckbi.so.x86_64
Symbolic link
1
alternatives/libnssckbi.so.x86_64
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib64/pkcs11/p11-kit-trust.so
|
||||||
1
alternatives/module.1.gz
Symbolic link
1
alternatives/module.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/module-c.1.gz
|
||||||
1
alternatives/modulecmd
Symbolic link
1
alternatives/modulecmd
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/Modules/libexec/modulecmd.tcl
|
||||||
1
alternatives/modulefile.4.gz
Symbolic link
1
alternatives/modulefile.4.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man4/modulefile-c.4.gz
|
||||||
1
alternatives/modules.csh
Symbolic link
1
alternatives/modules.csh
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/Modules/init/profile.csh
|
||||||
1
alternatives/modules.sh
Symbolic link
1
alternatives/modules.sh
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/Modules/init/profile.sh
|
||||||
1
alternatives/mta
Symbolic link
1
alternatives/mta
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/sbin/sendmail.postfix
|
||||||
1
alternatives/mta-aliasesman
Symbolic link
1
alternatives/mta-aliasesman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man5/aliases.postfix.5.gz
|
||||||
1
alternatives/mta-mailq
Symbolic link
1
alternatives/mta-mailq
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/mailq.postfix
|
||||||
1
alternatives/mta-mailqman
Symbolic link
1
alternatives/mta-mailqman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/mailq.postfix.1.gz
|
||||||
1
alternatives/mta-newaliases
Symbolic link
1
alternatives/mta-newaliases
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/newaliases.postfix
|
||||||
1
alternatives/mta-newaliasesman
Symbolic link
1
alternatives/mta-newaliasesman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/newaliases.postfix.1.gz
|
||||||
1
alternatives/mta-pam
Symbolic link
1
alternatives/mta-pam
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/etc/pam.d/smtp.postfix
|
||||||
1
alternatives/mta-rmail
Symbolic link
1
alternatives/mta-rmail
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/rmail.postfix
|
||||||
1
alternatives/mta-sendmail
Symbolic link
1
alternatives/mta-sendmail
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/sendmail.postfix
|
||||||
1
alternatives/mta-sendmailman
Symbolic link
1
alternatives/mta-sendmailman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/sendmail.postfix.1.gz
|
||||||
1
alternatives/mta-smtpdman
Symbolic link
1
alternatives/mta-smtpdman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man8/smtpd.postfix.8.gz
|
||||||
1
alternatives/ncman
Symbolic link
1
alternatives/ncman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/ncat.1.gz
|
||||||
1
alternatives/nmap
Symbolic link
1
alternatives/nmap
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/ncat
|
||||||
1
alternatives/orbd
Symbolic link
1
alternatives/orbd
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/orbd
|
||||||
1
alternatives/orbd.1.gz
Symbolic link
1
alternatives/orbd.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/orbd-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/pack200
Symbolic link
1
alternatives/pack200
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/pack200
|
||||||
1
alternatives/pack200.1.gz
Symbolic link
1
alternatives/pack200.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/pack200-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/pax
Symbolic link
1
alternatives/pax
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/spax
|
||||||
1
alternatives/pax-man
Symbolic link
1
alternatives/pax-man
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/spax.1.gz
|
||||||
1
alternatives/pip-3
Symbolic link
1
alternatives/pip-3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/pip-3.6
|
||||||
1
alternatives/pip3
Symbolic link
1
alternatives/pip3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/pip3.6
|
||||||
1
alternatives/policytool
Symbolic link
1
alternatives/policytool
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/lib/jvm/java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64/jre/bin/policytool
|
||||||
1
alternatives/policytool.1.gz
Symbolic link
1
alternatives/policytool.1.gz
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/policytool-java-1.8.0-openjdk-1.8.0.292.b10-0.el8_3.x86_64.1.gz
|
||||||
1
alternatives/print
Symbolic link
1
alternatives/print
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/lpr.cups
|
||||||
1
alternatives/print-cancel
Symbolic link
1
alternatives/print-cancel
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/cancel.cups
|
||||||
1
alternatives/print-cancelman
Symbolic link
1
alternatives/print-cancelman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/cancel-cups.1.gz
|
||||||
1
alternatives/print-lp
Symbolic link
1
alternatives/print-lp
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/lp.cups
|
||||||
1
alternatives/print-lpc
Symbolic link
1
alternatives/print-lpc
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/sbin/lpc.cups
|
||||||
1
alternatives/print-lpcman
Symbolic link
1
alternatives/print-lpcman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man8/lpc-cups.8.gz
|
||||||
1
alternatives/print-lpman
Symbolic link
1
alternatives/print-lpman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/lp-cups.1.gz
|
||||||
1
alternatives/print-lpq
Symbolic link
1
alternatives/print-lpq
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/lpq.cups
|
||||||
1
alternatives/print-lpqman
Symbolic link
1
alternatives/print-lpqman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/lpq-cups.1.gz
|
||||||
1
alternatives/print-lprm
Symbolic link
1
alternatives/print-lprm
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/lprm.cups
|
||||||
1
alternatives/print-lprman
Symbolic link
1
alternatives/print-lprman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/lpr-cups.1.gz
|
||||||
1
alternatives/print-lprmman
Symbolic link
1
alternatives/print-lprmman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/lprm-cups.1.gz
|
||||||
1
alternatives/print-lpstat
Symbolic link
1
alternatives/print-lpstat
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/lpstat.cups
|
||||||
1
alternatives/print-lpstatman
Symbolic link
1
alternatives/print-lpstatman
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/share/man/man1/lpstat-cups.1.gz
|
||||||
1
alternatives/pydoc-3
Symbolic link
1
alternatives/pydoc-3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/pydoc3.6
|
||||||
1
alternatives/pydoc3
Symbolic link
1
alternatives/pydoc3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/pydoc3.6
|
||||||
1
alternatives/python
Symbolic link
1
alternatives/python
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/libexec/no-python
|
||||||
1
alternatives/python3
Symbolic link
1
alternatives/python3
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/python3.6
|
||||||
1
alternatives/python3-config
Symbolic link
1
alternatives/python3-config
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
/usr/bin/python3.6-config
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user