Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
ksonnet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ijaz Ahmad
ksonnet
Commits
4233bcc5
Commit
4233bcc5
authored
7 years ago
by
Jessica Yao
Browse files
Options
Downloads
Patches
Plain Diff
parse short description for prototypes
Signed-off-by:
Jessica Yao
<
jessica@heptio.com
>
parent
6ee8849d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
prototype/specification.go
+12
-6
12 additions, 6 deletions
prototype/specification.go
with
12 additions
and
6 deletions
prototype/specification.go
+
12
−
6
View file @
4233bcc5
...
...
@@ -18,11 +18,12 @@ import (
//
const
(
apiVersionTag
=
"@apiVersion"
nameTag
=
"@name"
descriptionTag
=
"@description"
paramTag
=
"@param"
optParamTag
=
"@optionalParam"
apiVersionTag
=
"@apiVersion"
nameTag
=
"@name"
descriptionTag
=
"@description"
shortDescriptionTag
=
"@shortDescription"
paramTag
=
"@param"
optParamTag
=
"@optionalParam"
)
func
FromJsonnet
(
data
string
)
(
*
SpecificationSchema
,
error
)
{
...
...
@@ -97,7 +98,7 @@ func FromJsonnet(data string) (*SpecificationSchema, error) {
openText
=
bytes
.
Buffer
{}
openText
.
WriteString
(
strings
.
TrimSpace
(
split
[
1
]))
switch
split
[
0
]
{
case
apiVersionTag
,
nameTag
,
descriptionTag
,
paramTag
,
optParamTag
:
// Do nothing.
case
apiVersionTag
,
nameTag
,
descriptionTag
,
shortDescriptionTag
,
paramTag
,
optParamTag
:
// Do nothing.
default
:
return
nil
,
fmt
.
Errorf
(
`Line in prototype heading comment is formatted incorrectly; '%s' is not
recognized as a tag. Only tags can begin lines, and text that is wrapped must
...
...
@@ -186,6 +187,11 @@ func (s *SpecificationSchema) addField(tag, text string) error {
return
fmt
.
Errorf
(
"Prototype heading comment has two '@description' fields"
)
}
s
.
Template
.
Description
=
text
case
shortDescriptionTag
:
if
s
.
Template
.
ShortDescription
!=
""
{
return
fmt
.
Errorf
(
"Prototype heading comment has two '@shortDescription' fields"
)
}
s
.
Template
.
ShortDescription
=
text
case
paramTag
:
// NOTE: There is usually more than one `@param`, so we don't
// check length here.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment