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

Side by Side Diff: dart/pkg/intl/example/basic/basic_example.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /** 5 /**
6 * This provides a basic example of internationalization usage. It uses the 6 * This provides a basic example of internationalization usage. It uses the
7 * local variant of all the facilities, meaning that libraries with the 7 * local variant of all the facilities, meaning that libraries with the
8 * data for all the locales are directly imported by the program. More realistic 8 * data for all the locales are directly imported by the program. More realistic
9 * examples might read the data from files or over the web, which uses the 9 * examples might read the data from files or over the web, which uses the
10 * same APIs but requires different imports. 10 * same APIs but requires different imports.
11 * 11 *
12 * This defines messages for an English locale directly in the program and 12 * This defines messages for an English locale directly in the program and
13 * has separate libraries that define German and Thai messages that say more or 13 * has separate libraries that define German and Thai messages that say more or
14 * less the same thing, and prints the message with the date and time in it 14 * less the same thing, and prints the message with the date and time in it
15 * formatted appropriately for the locale. 15 * formatted appropriately for the locale.
16 */ 16 */
17 17
18 library intl_basic_example; 18 #library('intl_basic_example');
19 // These can be replaced with package:intl/... references if using this in 19 // These can be replaced with package:intl/... references if using this in
20 // a separate package. 20 // a separate package.
21 // TODO(alanknight): Replace these with package: once pub works in buildbots. 21 // TODO(alanknight): Replace these with package: once pub works in buildbots.
22 import '../../lib/date_symbol_data_local.dart'; 22 #import('../../lib/date_symbol_data_local.dart');
23 import '../../lib/intl.dart'; 23 #import('../../lib/intl.dart');
24 import '../../lib/message_lookup_local.dart'; 24 #import('../../lib/message_lookup_local.dart');
25 import 'messages_all.dart'; 25 #import('messages_all.dart');
26 26
27 Function doThisWithTheOutput; 27 Function doThisWithTheOutput;
28 28
29 void setup(Function program, Function output) { 29 void setup(Function program, Function output) {
30 // Before we use any messages or use date formatting for a locale we must 30 // Before we use any messages or use date formatting for a locale we must
31 // call their initializtion messages, which are asynchronous, since they 31 // call their initializtion messages, which are asynchronous, since they
32 // might be reading information from files or over the web. Since we are 32 // might be reading information from files or over the web. Since we are
33 // running here in local mode they will all complete immediately. 33 // running here in local mode they will all complete immediately.
34 doThisWithTheOutput = output; 34 doThisWithTheOutput = output;
35 var germanDatesFuture = initializeDateFormatting('de_DE', null); 35 var germanDatesFuture = initializeDateFormatting('de_DE', null);
(...skipping 25 matching lines...) Expand all
61 doThisWithTheOutput(useReturnValue); 61 doThisWithTheOutput(useReturnValue);
62 } 62 }
63 63
64 printForLocale(aDate, intl, operation) { 64 printForLocale(aDate, intl, operation) {
65 var hmsFormat = intl.date().add_Hms(); 65 var hmsFormat = intl.date().add_Hms();
66 var dayFormat = intl.date().add_yMMMMEEEEd(); 66 var dayFormat = intl.date().add_yMMMMEEEEd();
67 var time = hmsFormat.format(aDate); 67 var time = hmsFormat.format(aDate);
68 var day = dayFormat.format(aDate); 68 var day = dayFormat.format(aDate);
69 Intl.withLocale(intl.locale, () { doThisWithTheOutput(operation(time,day));}); 69 Intl.withLocale(intl.locale, () { doThisWithTheOutput(operation(time,day));});
70 } 70 }
OLDNEW
« no previous file with comments | « dart/pkg/htmlescape/lib/htmlescape.dart ('k') | dart/pkg/intl/example/basic/basic_example_runner.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698