Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
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
abdullh.alsoleman
Front-End
Commits
9118d3d7
Unverified
Commit
9118d3d7
authored
Aug 17, 2018
by
Janice Collins
Committed by
GitHub
Aug 17, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add branch to footer information in flutter docs (#20711)
parent
1993a673
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
6 deletions
+15
-6
dartdoc.dart
dev/tools/dartdoc.dart
+15
-6
No files found.
dev/tools/dartdoc.dart
View file @
9118d3d7
...
@@ -193,22 +193,31 @@ ArgParser _createArgsParser() {
...
@@ -193,22 +193,31 @@ ArgParser _createArgsParser() {
return
parser
;
return
parser
;
}
}
final
RegExp
gitBranchRegexp
=
new
RegExp
(
r'^## (.*)'
);
void
createFooter
(
String
footerPath
)
{
void
createFooter
(
String
footerPath
)
{
const
int
kGitRevisionLength
=
10
;
const
int
kGitRevisionLength
=
10
;
final
ProcessResult
gitResult
=
Process
.
runSync
(
'git'
,
<
String
>[
'rev-parse'
,
'HEAD'
]);
ProcessResult
gitResult
=
Process
.
runSync
(
'git'
,
<
String
>[
'rev-parse'
,
'HEAD'
]);
if
(
gitResult
.
exitCode
!=
0
)
if
(
gitResult
.
exitCode
!=
0
)
throw
'git exit with non-zero exit code:
${gitResult.exitCode}
'
;
throw
'git
rev-parse
exit with non-zero exit code:
${gitResult.exitCode}
'
;
String
gitRevision
=
gitResult
.
stdout
.
trim
();
String
gitRevision
=
gitResult
.
stdout
.
trim
();
gitResult
=
Process
.
runSync
(
'git'
,
<
String
>[
'status'
,
'-b'
,
'--porcelain'
]);
if
(
gitResult
.
exitCode
!=
0
)
throw
'git status exit with non-zero exit code:
${gitResult.exitCode}
'
;
final
Match
gitBranchMatch
=
gitBranchRegexp
.
firstMatch
(
gitResult
.
stdout
.
trim
().
split
(
'
\n
'
).
first
);
final
String
gitBranchOut
=
gitBranchMatch
==
null
?
''
:
'• </span class="no-break">
${gitBranchMatch.group(1)}
</span>'
;
gitRevision
=
gitRevision
.
length
>
kGitRevisionLength
?
gitRevision
.
substring
(
0
,
kGitRevisionLength
)
:
gitRevision
;
gitRevision
=
gitRevision
.
length
>
kGitRevisionLength
?
gitRevision
.
substring
(
0
,
kGitRevisionLength
)
:
gitRevision
;
final
String
timestamp
=
new
DateFormat
(
'yyyy-MM-dd HH:mm'
).
format
(
new
DateTime
.
now
());
final
String
timestamp
=
new
DateFormat
(
'yyyy-MM-dd HH:mm'
).
format
(
new
DateTime
.
now
());
new
File
(
footerPath
).
writeAsStringSync
(
new
File
(
footerPath
).
writeAsStringSync
(
<
String
>[
'• </span class="no-break">
$timestamp
<span>
'
'• </span class="no-break">
$timestamp
<span>
'
,
'• </span class="no-break">
$gitRevision
</span>'
'• </span class="no-break">
$gitRevision
</span>'
,
);
gitBranchOut
].
join
(
' '
)
);
}
}
void
sanityCheckDocs
(
)
{
void
sanityCheckDocs
(
)
{
...
...
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