Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/bareos/bareos-webui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/zendframework/zend-console/src/Charset/DECSG.php')
-rw-r--r--vendor/zendframework/zend-console/src/Charset/DECSG.php50
1 files changed, 0 insertions, 50 deletions
diff --git a/vendor/zendframework/zend-console/src/Charset/DECSG.php b/vendor/zendframework/zend-console/src/Charset/DECSG.php
deleted file mode 100644
index 2eada16..0000000
--- a/vendor/zendframework/zend-console/src/Charset/DECSG.php
+++ /dev/null
@@ -1,50 +0,0 @@
-<?php
-/**
- * Zend Framework (http://framework.zend.com/)
- *
- * @link http://github.com/zendframework/zf2 for the canonical source repository
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
-
-namespace Zend\Console\Charset;
-
-/**
- * DEC Special Graphics (VT100 line drawing) character set
- *
- * @link http://vt100.net/docs/vt220-rm/table2-4.html
- */
-class DECSG implements CharsetInterface
-{
- const ACTIVATE = "\x1b(0";
- const DEACTIVATE = "\x1b(B";
-
- const BLOCK = "\x61";
- const SHADE_LIGHT = "\x61";
- const SHADE_MEDIUM = "\x61";
- const SHADE_DARK = "\x61";
-
- const LINE_SINGLE_EW = "\x71";
- const LINE_SINGLE_NS = "\x78";
- const LINE_SINGLE_NW = "\x6c";
- const LINE_SINGLE_NE = "\x6b";
- const LINE_SINGLE_SE = "\x6a";
- const LINE_SINGLE_SW = "\x6d";
- const LINE_SINGLE_CROSS = "\x6e";
-
- const LINE_DOUBLE_EW = "\x73";
- const LINE_DOUBLE_NS = "\x78";
- const LINE_DOUBLE_NW = "\x6c";
- const LINE_DOUBLE_NE = "\x5b";
- const LINE_DOUBLE_SE = "\x6a";
- const LINE_DOUBLE_SW = "\x6d";
- const LINE_DOUBLE_CROSS = "\x6e";
-
- const LINE_BLOCK_EW = "\x61";
- const LINE_BLOCK_NS = "\x61";
- const LINE_BLOCK_NW = "\x61";
- const LINE_BLOCK_NE = "\x61";
- const LINE_BLOCK_SE = "\x61";
- const LINE_BLOCK_SW = "\x61";
- const LINE_BLOCK_CROSS = "\x61";
-}