Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
10dc407a
Commit
10dc407a
authored
Jun 25, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implemented markdown parsing for console command description
issue #746
parent
f46cffb4
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
220 additions
and
19 deletions
+220
-19
composer.json
composer.json
+4
-1
ApiMarkdownTrait.php
extensions/apidoc/helpers/ApiMarkdownTrait.php
+3
-4
IndexFileAnalyzer.php
extensions/apidoc/helpers/IndexFileAnalyzer.php
+3
-5
Extension.php
extensions/twig/Extension.php
+1
-1
composer.json
framework/composer.json
+4
-1
Markdown.php
framework/console/Markdown.php
+172
-0
AssetController.php
framework/console/controllers/AssetController.php
+6
-2
HelpController.php
framework/console/controllers/HelpController.php
+2
-2
BaseConsole.php
framework/helpers/BaseConsole.php
+8
-3
yii
framework/yii
+17
-0
No files found.
composer.json
View file @
10dc407a
...
...
@@ -121,5 +121,8 @@
"yii
\\
sphinx
\\
"
:
"extensions/sphinx/"
,
"yii
\\
twig
\\
"
:
"extensions/twig/"
}
}
},
"bin"
:
[
"framework/yii"
]
}
extensions/apidoc/helpers/ApiMarkdownTrait.php
View file @
10dc407a
<?php
/**
* Created by PhpStorm.
* User: cebe
* Date: 28.05.14
* Time: 15:30
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\apidoc\helpers
;
...
...
extensions/apidoc/helpers/IndexFileAnalyzer.php
View file @
10dc407a
<?php
/**
* Created by PhpStorm.
* User: cebe
* Date: 26.05.14
* Time: 18:15
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\apidoc\helpers
;
use
cebe\markdown\Markdown
;
class
IndexFileAnalyzer
extends
Markdown
...
...
extensions/twig/Extension.php
View file @
10dc407a
...
...
@@ -6,7 +6,7 @@
*/
namespace
yii\twig
;
use
yii\base\InvalidCallException
;
use
yii\helpers\Inflector
;
use
yii\helpers\StringHelper
;
...
...
framework/composer.json
View file @
10dc407a
...
...
@@ -60,5 +60,8 @@
},
"autoload"
:
{
"psr-4"
:
{
"yii
\\
"
:
""
}
}
},
"bin"
:
[
"yii"
]
}
framework/console/Markdown.php
0 → 100644
View file @
10dc407a
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace
yii\console
;
use
yii\helpers\Console
;
/**
* A Markdown parser that enhances markdown for reading in console environments.
*
* Based on [cebe/markdown](https://github.com/cebe/markdown).
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class
Markdown
extends
\cebe\markdown\Parser
{
/**
* @var array these are "escapeable" characters. When using one of these prefixed with a
* backslash, the character will be outputted without the backslash and is not interpreted
* as markdown.
*/
protected
$escapeCharacters
=
[
'\\'
,
// backslash
'`'
,
// backtick
'*'
,
// asterisk
'_'
,
// underscore
];
/**
* @inheritDoc
*/
protected
function
identifyLine
(
$lines
,
$current
)
{
if
(
isset
(
$lines
[
$current
])
&&
(
strncmp
(
$lines
[
$current
],
'```'
,
3
)
===
0
||
strncmp
(
$lines
[
$current
],
'~~~'
,
3
)
===
0
))
{
return
'fencedCode'
;
}
return
parent
::
identifyLine
(
$lines
,
$current
);
}
/**
* Consume lines for a fenced code block
*/
protected
function
consumeFencedCode
(
$lines
,
$current
)
{
// consume until ```
$block
=
[
'type'
=>
'code'
,
'content'
=>
[],
];
$line
=
rtrim
(
$lines
[
$current
]);
$fence
=
substr
(
$line
,
0
,
$pos
=
strrpos
(
$line
,
$line
[
0
])
+
1
);
$language
=
substr
(
$line
,
$pos
);
if
(
!
empty
(
$language
))
{
$block
[
'language'
]
=
$language
;
}
for
(
$i
=
$current
+
1
,
$count
=
count
(
$lines
);
$i
<
$count
;
$i
++
)
{
if
(
rtrim
(
$line
=
$lines
[
$i
])
!==
$fence
)
{
$block
[
'content'
][]
=
$line
;
}
else
{
break
;
}
}
return
[
$block
,
$i
];
}
/**
* Renders a code block
*/
protected
function
renderCode
(
$block
)
{
return
Console
::
ansiFormat
(
implode
(
"
\n
"
,
$block
[
'content'
]),
[
Console
::
BG_GREY
])
.
"
\n
"
;
}
protected
function
renderParagraph
(
$block
)
{
return
rtrim
(
$this
->
parseInline
(
implode
(
"
\n
"
,
$block
[
'content'
])))
.
"
\n
"
;
}
/**
* @inheritDoc
*/
protected
function
inlineMarkers
()
{
return
[
'*'
=>
'parseEmphStrong'
,
'_'
=>
'parseEmphStrong'
,
'\\'
=>
'parseEscape'
,
'`'
=>
'parseCode'
,
'~~'
=>
'parseStrike'
,
];
}
/**
* Parses an inline code span `` ` ``.
*/
protected
function
parseCode
(
$text
)
{
// skip fenced code
if
(
strncmp
(
$text
,
'```'
,
3
)
===
0
)
{
return
[
$text
[
0
],
1
];
}
if
(
preg_match
(
'/^(`+) (.+?) \1/'
,
$text
,
$matches
))
{
// code with enclosed backtick
return
[
Console
::
ansiFormat
(
$matches
[
2
],
[
Console
::
UNDERLINE
]),
strlen
(
$matches
[
0
])
];
}
elseif
(
preg_match
(
'/^`(.+?)`/'
,
$text
,
$matches
))
{
return
[
Console
::
ansiFormat
(
$matches
[
1
],
[
Console
::
UNDERLINE
]),
strlen
(
$matches
[
0
])
];
}
return
[
$text
[
0
],
1
];
}
/**
* Parses empathized and strong elements.
*/
protected
function
parseEmphStrong
(
$text
)
{
$marker
=
$text
[
0
];
if
(
!
isset
(
$text
[
1
]))
{
return
[
$text
[
0
],
1
];
}
if
(
$marker
==
$text
[
1
])
{
// strong
if
(
$marker
==
'*'
&&
preg_match
(
'/^[*]{2}((?:[^*]|[*][^*]*[*])+?)[*]{2}(?![*])/s'
,
$text
,
$matches
)
||
$marker
==
'_'
&&
preg_match
(
'/^__((?:[^_]|_[^_]*_)+?)__(?!_)/us'
,
$text
,
$matches
))
{
return
[
Console
::
ansiFormat
(
$this
->
parseInline
(
$matches
[
1
]),
Console
::
BOLD
),
strlen
(
$matches
[
0
])];
}
}
else
{
// emph
if
(
$marker
==
'*'
&&
preg_match
(
'/^[*]((?:[^*]|[*][*][^*]+?[*][*])+?)[*](?![*])/s'
,
$text
,
$matches
)
||
$marker
==
'_'
&&
preg_match
(
'/^_((?:[^_]|__[^_]*__)+?)_(?!_)\b/us'
,
$text
,
$matches
))
{
return
[
Console
::
ansiFormat
(
$this
->
parseInline
(
$matches
[
1
]),
Console
::
ITALIC
),
strlen
(
$matches
[
0
])];
}
}
return
[
$text
[
0
],
1
];
}
/**
* Parses the strikethrough feature.
*/
protected
function
parseStrike
(
$markdown
)
{
if
(
preg_match
(
'/^~~(.+?)~~/'
,
$markdown
,
$matches
))
{
return
[
Console
::
ansiFormat
(
$this
->
parseInline
(
$matches
[
1
]),
[
Console
::
CROSSED_OUT
]),
strlen
(
$matches
[
0
])
];
}
return
[
$markdown
[
0
]
.
$markdown
[
1
],
2
];
}
/**
* Parses escaped special characters.
*/
protected
function
parseEscape
(
$text
)
{
if
(
isset
(
$text
[
1
])
&&
in_array
(
$text
[
1
],
$this
->
escapeCharacters
))
{
return
[
$text
[
1
],
2
];
}
return
[
$text
[
0
],
1
];
}
}
\ No newline at end of file
framework/console/controllers/AssetController.php
View file @
10dc407a
...
...
@@ -16,14 +16,18 @@ use yii\helpers\VarDumper;
* Allows you to combine and compress your JavaScript and CSS files.
*
* Usage:
* 1. Create a configuration file using 'template' action:
* 1. Create a configuration file using the `template` action:
*
* yii asset/template /path/to/myapp/config.php
*
* 2. Edit the created config file, adjusting it for your web application needs.
* 3. Run the 'compress' action, using created config:
*
* yii asset /path/to/myapp/config.php /path/to/myapp/config/assets_compressed.php
*
* 4. Adjust your web application config to use compressed assets.
*
* Note: in the console environment some path aliases like
'@webroot' and '@web'
may not exist,
* Note: in the console environment some path aliases like
`@webroot` and `@web`
may not exist,
* so corresponding paths inside the configuration should be specified directly.
*
* Note: by default this command relies on an external tools to perform actual files compression,
...
...
framework/console/controllers/HelpController.php
View file @
10dc407a
...
...
@@ -225,7 +225,7 @@ class HelpController extends Controller
if
(
$comment
!==
''
)
{
$this
->
stdout
(
"
\n
DESCRIPTION
\n
"
,
Console
::
BOLD
);
echo
"
\n
"
.
Console
::
renderColoredString
(
$comment
)
.
"
\n\n
"
;
echo
"
\n
"
.
rtrim
(
Console
::
renderColoredString
(
Console
::
markdownToAnsi
(
$comment
))
)
.
"
\n\n
"
;
}
$actions
=
$this
->
getActions
(
$controller
);
...
...
@@ -313,7 +313,7 @@ class HelpController extends Controller
if
(
$tags
[
'description'
]
!==
''
)
{
$this
->
stdout
(
"
\n
DESCRIPTION
\n
"
,
Console
::
BOLD
);
echo
"
\n
"
.
Console
::
renderColoredString
(
$tags
[
'description'
]
)
.
"
\n\n
"
;
echo
"
\n
"
.
rtrim
(
Console
::
renderColoredString
(
Console
::
markdownToAnsi
(
$tags
[
'description'
]))
)
.
"
\n\n
"
;
}
$this
->
stdout
(
"
\n
USAGE
\n\n
"
,
Console
::
BOLD
);
...
...
framework/helpers/BaseConsole.php
View file @
10dc407a
...
...
@@ -7,6 +7,8 @@
namespace
yii\helpers
;
use
yii\console\Markdown
;
/**
* BaseConsole provides concrete implementation for [[Console]].
*
...
...
@@ -442,10 +444,13 @@ class BaseConsole
return
$result
;
}
// TODO rework/refactor according to https://github.com/yiisoft/yii2/issues/746
public
function
markdownToAnsi
()
/**
* Converts Markdown to be better readable in console environments by applying some ANSI format
*/
public
static
function
markdownToAnsi
(
$markdown
)
{
// TODO implement
$parser
=
new
Markdown
();
return
$parser
->
parse
(
$markdown
);
}
/**
...
...
framework/yii
View file @
10dc407a
...
...
@@ -14,6 +14,20 @@ defined('YII_DEBUG') or define('YII_DEBUG', true);
defined
(
'STDIN'
)
or
define
(
'STDIN'
,
fopen
(
'php://stdin'
,
'r'
));
defined
(
'STDOUT'
)
or
define
(
'STDOUT'
,
fopen
(
'php://stdout'
,
'w'
));
$composerAutoload
=
[
__DIR__
.
'/../vendor/autoload.php'
,
// in yii2-dev repo
__DIR__
.
'/../../autoload.php'
,
// installed as a composer binary
];
$vendorPath
=
null
;
foreach
(
$composerAutoload
as
$autoload
)
{
if
(
file_exists
(
$autoload
))
{
require
(
$autoload
);
$vendorPath
=
dirname
(
$autoload
);
break
;
}
}
require
(
__DIR__
.
'/Yii.php'
);
$application
=
new
yii\console\Application
([
...
...
@@ -21,5 +35,8 @@ $application = new yii\console\Application([
'basePath'
=>
__DIR__
.
'/console'
,
'controllerNamespace'
=>
'yii\console\controllers'
,
]);
if
(
isset
(
$vendorPath
))
{
$application
->
setVendorPath
(
$vendorPath
);
}
$exitCode
=
$application
->
run
();
exit
(
$exitCode
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment