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

Unified Diff: utils/apidoc/apidoc.dart

Issue 10388050: turn off app cache, print generation date at bottom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | « lib/dartdoc/dartdoc.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/apidoc/apidoc.dart
diff --git a/utils/apidoc/apidoc.dart b/utils/apidoc/apidoc.dart
index f201315df627ef11bf5d30fafae83bbc4613afa6..80dd38334c2923ba7caed8c20ca1e884a8419800 100644
--- a/utils/apidoc/apidoc.dart
+++ b/utils/apidoc/apidoc.dart
@@ -34,7 +34,7 @@ void main() {
int mode = doc.MODE_STATIC;
String outputDir = 'docs';
String compilerPath;
- bool generateAppCache = true;
+ bool generateAppCache = false;
// Parse the command-line arguments.
for (int i = 0; i < args.length; i++) {
@@ -49,8 +49,8 @@ void main() {
mode = doc.MODE_LIVE_NAV;
break;
- case '--generate-app-cache=false':
- generateAppCache = false;
+ case '--generate-app-cache=true':
+ generateAppCache = true;
break;
default:
« no previous file with comments | « lib/dartdoc/dartdoc.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698