2015-07-10 23:22:25 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes Authors All rights reserved.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
import "fmt"
|
|
|
|
|
2015-07-11 04:50:56 +00:00
|
|
|
const unversionedWarningTag = "UNVERSIONED_WARNING"
|
|
|
|
|
2015-07-20 16:45:58 +00:00
|
|
|
const unversionedWarningPre = `
|
2015-07-10 23:22:25 +00:00
|
|
|
<!-- BEGIN STRIP_FOR_RELEASE -->
|
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
|
|
|
|
<h2>PLEASE NOTE: This document applies to the HEAD of the source tree</h2>
|
2015-07-13 22:14:53 +00:00
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
If you are using a released version of Kubernetes, you should
|
|
|
|
refer to the docs that go with that version.
|
2015-07-10 23:22:25 +00:00
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
<strong>
|
2015-11-03 18:16:41 +00:00
|
|
|
The latest release of this document can be found
|
2015-07-20 16:45:58 +00:00
|
|
|
`
|
|
|
|
|
2015-11-03 18:16:41 +00:00
|
|
|
const unversionedWarningFmt = `[here](http://releases.k8s.io/release-1.1/%s).`
|
2015-07-20 16:45:58 +00:00
|
|
|
|
|
|
|
const unversionedWarningPost = `
|
2015-07-10 23:22:25 +00:00
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
Documentation for other releases can be found at
|
|
|
|
[releases.k8s.io](http://releases.k8s.io).
|
|
|
|
</strong>
|
|
|
|
--
|
2015-07-13 22:14:53 +00:00
|
|
|
|
2015-07-10 23:22:25 +00:00
|
|
|
<!-- END STRIP_FOR_RELEASE -->
|
2015-07-20 16:45:58 +00:00
|
|
|
|
2015-07-10 23:22:25 +00:00
|
|
|
`
|
|
|
|
|
2015-07-20 16:45:58 +00:00
|
|
|
func makeUnversionedWarning(fileName string) mungeLines {
|
|
|
|
insert := unversionedWarningPre + fmt.Sprintf(unversionedWarningFmt, fileName) + unversionedWarningPost
|
|
|
|
return getMungeLines(insert)
|
2015-07-17 18:58:50 +00:00
|
|
|
}
|
|
|
|
|
2015-07-10 23:22:25 +00:00
|
|
|
// inserts/updates a warning for unversioned docs
|
2015-07-20 16:45:58 +00:00
|
|
|
func updateUnversionedWarning(file string, mlines mungeLines) (mungeLines, error) {
|
|
|
|
file, err := makeRepoRelative(file, file)
|
|
|
|
if err != nil {
|
|
|
|
return mlines, err
|
|
|
|
}
|
|
|
|
if hasLine(mlines, "<!-- TAG IS_VERSIONED -->") {
|
2015-07-10 23:22:25 +00:00
|
|
|
// No warnings on release branches
|
2015-07-20 16:45:58 +00:00
|
|
|
return mlines, nil
|
|
|
|
}
|
|
|
|
if !hasMacroBlock(mlines, unversionedWarningTag) {
|
|
|
|
mlines = prependMacroBlock(unversionedWarningTag, mlines)
|
2015-07-10 23:22:25 +00:00
|
|
|
}
|
2015-07-20 16:45:58 +00:00
|
|
|
|
|
|
|
mlines, err = updateMacroBlock(mlines, unversionedWarningTag, makeUnversionedWarning(file))
|
|
|
|
if err != nil {
|
|
|
|
return mlines, err
|
2015-07-10 23:22:25 +00:00
|
|
|
}
|
2015-07-20 16:45:58 +00:00
|
|
|
return mlines, nil
|
2015-07-10 23:22:25 +00:00
|
|
|
}
|