Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1842)

Unified Diff: chrome/common/extensions/docs/examples/extensions/calendar/views/options.html

Issue 890173003: Replace the sample Calendar extension with a deprecation notice (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/calendar/views/background.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
diff --git a/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html b/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
index d6cf82df662291f024c3062065d41f02133d4179..92c8d52ae851c40563557e011990faaaa68f8abd 100644
--- a/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
+++ b/chrome/common/extensions/docs/examples/extensions/calendar/views/options.html
@@ -5,83 +5,23 @@
* LICENSE file.
-->
<html>
-<head>
- <title id=optionsTitle></title>
- <script src="../javascript/options.js"></script>
- <script src="../javascript/util.js"></script>
- <style>
- #content {
- background-color: white;
- border: 4px solid #B5C7DE;
- border-radius: 12px;
- margin: 40px auto 20px;
- padding: 8px;
- width: 600px;
- }
- .option_row {
- clear: left;
- padding: 2.5em 1em 0;
- text-align:center
- }
- #status {
- background-color: rgb(255, 241, 168);
- display: none;
- margin-left: 3px;
- padding: 1px 2px;
- text-align: center;
- font-size: 15px;
- color: #000;
- }
- #multiCalendarText {
- font-size: 15px;
- color: #000;
- }
- body {
- background-color: "#ebeff9";
- }
- #logo {
- font-size: 20px;
- text-align: center;
- }
- #extensionName {
- color: #444;
- }
- </style>
-
-</head>
<body>
- <div id="content">
- <div id = "logo">
- <img src="../images/icon-128.gif" width="48">&nbsp;&nbsp;&nbsp;
- <img src="../images/calendar_logo.gif" id="imageTooltip" title="" alt="">
- <br>
- <label id="extensionName" ></label>
- </div>
- <div class="option_row">
- <div>
- <table cellpadding=1 width=100%>
- <tr>
- <td width="15%">
- &nbsp;
- </td>
- <td width="5%">
- <input type="checkbox" id="multiCalendar" name="multiCalendar" title="">
- </td>
- <td width="40%" align="left">
- <span id="multiCalendarText" title=""></span>
- </td>
- <td width="30%">
- <label id="status"></label>
- </td>
- <td width="10%">
- &nbsp;
- </td>
- </tr>
- </table>
- <br>
- </div>
- </div>
- </div>
+<p>
+<strong><span id="name"></span> is now obsolete and must be removed, as it
+relies on an API which will be turned off imminently</strong>.
+<a href="https://developers.google.com/google-apps/calendar/v2/developers_guide_protocol">Learn more</a>.
+</p>
+
+<p>
+Instead, we recommend the more powerful <a id="link">Google Calendar (by
+Google)</a> Extension.
+</p>
+
+<p>
+<button id="remove">Remove from Chrome...</button>
+</p>
+
+<script src="../javascript/options.js"></script>
</body>
</html>
« no previous file with comments | « chrome/common/extensions/docs/examples/extensions/calendar/views/background.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698