Skip to content

Commit ee6a1c4

Browse files
committed
Add appengine/gcloud/mustache dependencies.
This CL includes the following packages added to pkg: - pkg/appengine - v0.2.5 (v0.2.4 with https://codereview.chromium.org/775043002/) - pkg/gcloud - v0.1.3 - pkg/mustache - v0.1.8 [email protected] Review URL: https://codereview.chromium.org//804973002
1 parent 5d75ec5 commit ee6a1c4

File tree

155 files changed

+28014
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+28014
-3
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,3 @@ packages/
99
*.js_
1010
*.js.deps
1111
*.js.map
12-
13-
# Include when developing application packages.
14-
pubspec.lock

AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Dart project. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Google Inc.

LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright 2014, the Dart project authors. All rights reserved.
2+
Redistribution and use in source and binary forms, with or without
3+
modification, are permitted provided that the following conditions are
4+
met:
5+
* Redistributions of source code must retain the above copyright
6+
notice, this list of conditions and the following disclaimer.
7+
* Redistributions in binary form must reproduce the above
8+
copyright notice, this list of conditions and the following
9+
disclaimer in the documentation and/or other materials provided
10+
with the distribution.
11+
* Neither the name of Google Inc. nor the names of its
12+
contributors may be used to endorse or promote products derived
13+
from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

PATENTS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Additional IP Rights Grant (Patents)
2+
3+
"This implementation" means the copyrightable works distributed by
4+
Google as part of the Dart Project.
5+
6+
Google hereby grants to you a perpetual, worldwide, non-exclusive,
7+
no-charge, royalty-free, irrevocable (except as stated in this
8+
section) patent license to make, have made, use, offer to sell, sell,
9+
import, transfer, and otherwise run, modify and propagate the contents
10+
of this implementation of Dart, where such license applies only to
11+
those patent claims, both currently owned by Google and acquired in
12+
the future, licensable by Google that are necessarily infringed by
13+
this implementation of Dart. This grant does not include claims that
14+
would be infringed only as a consequence of further modification of
15+
this implementation. If you or your agent or exclusive licensee
16+
institute or order or agree to the institution of patent litigation
17+
against any entity (including a cross-claim or counterclaim in a
18+
lawsuit) alleging that this implementation of Dart or any code
19+
incorporated within this implementation of Dart constitutes direct or
20+
contributory patent infringement, or inducement of patent
21+
infringement, then any patent rights granted to you under this License
22+
for this implementation of Dart shall terminate as of the date such
23+
litigation is filed.

codereview.settings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
CODE_REVIEW_SERVER: http://codereview.chromium.org/
2+
VIEW_VC: https://github.com/dart-lang/pub-dartlang-dart/commit/
3+

pkg/appengine/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pubspec.lock
2+
packages
3+
.pub

pkg/appengine/AUTHORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Below is a list of people and organizations that have contributed
2+
# to the Dart project. Names should be added to the list like so:
3+
#
4+
# Name/Organization <email address>
5+
6+
Google Inc.

pkg/appengine/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
## 0.2.4
2+
3+
* Added withAppEngineServices() function which allows running arbitrary code
4+
using AppEngine services via a service scope.
5+
6+
## 0.2.4
7+
8+
* Run request handlers inside a service scope
9+
(see `package:gcloud/service_scope.dart`).
10+
* Insert an authenticated HTTP client into the service scope.
11+
* Insert a `memcacheService` into the service scope.
12+
* Added `isDevelopmentServer` and `isProductionEnvironment` getter to client
13+
context.
14+
* Make hostnames returned from modules service use -dot- naming to support
15+
HTTPS.
16+
* Mark `package:appengine/remote_api.dart` as deprecated.
17+
18+
## 0.2.3
19+
20+
* Small bugfix in the lowlevel memcache API implementation.
21+
22+
## 0.2.2
23+
24+
* Updated `README.md`
25+
* Widen googleapis_auth constraint to include version 0.2.0
26+
27+
## 0.2.1
28+
29+
* Small bugfix in storage API implementation
30+
* respect DART_PUB_SERVE url only in developer mode
31+
* sync db/datastore tests to the ones used in gcloud
32+
33+
## 0.2.0
34+
35+
* Use datastore/db APIs from package:gcloud
36+
* simplified annotation system
37+
* paging-based query API
38+
* Added module service
39+
* Some bugfixes
40+
41+
## 0.1.0
42+
43+
* Alpha release

pkg/appengine/LICENSE

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright 2014, the Dart project authors. All rights reserved.
2+
Redistribution and use in source and binary forms, with or without
3+
modification, are permitted provided that the following conditions are
4+
met:
5+
* Redistributions of source code must retain the above copyright
6+
notice, this list of conditions and the following disclaimer.
7+
* Redistributions in binary form must reproduce the above
8+
copyright notice, this list of conditions and the following
9+
disclaimer in the documentation and/or other materials provided
10+
with the distribution.
11+
* Neither the name of Google Inc. nor the names of its
12+
contributors may be used to endorse or promote products derived
13+
from this software without specific prior written permission.
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

pkg/appengine/PATENTS

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Additional IP Rights Grant (Patents)
2+
3+
"This implementation" means the copyrightable works distributed by
4+
Google as part of the Dart Project.
5+
6+
Google hereby grants to you a perpetual, worldwide, non-exclusive,
7+
no-charge, royalty-free, irrevocable (except as stated in this
8+
section) patent license to make, have made, use, offer to sell, sell,
9+
import, transfer, and otherwise run, modify and propagate the contents
10+
of this implementation of Dart, where such license applies only to
11+
those patent claims, both currently owned by Google and acquired in
12+
the future, licensable by Google that are necessarily infringed by
13+
this implementation of Dart. This grant does not include claims that
14+
would be infringed only as a consequence of further modification of
15+
this implementation. If you or your agent or exclusive licensee
16+
institute or order or agree to the institution of patent litigation
17+
against any entity (including a cross-claim or counterclaim in a
18+
lawsuit) alleging that this implementation of Dart or any code
19+
incorporated within this implementation of Dart constitutes direct or
20+
contributory patent infringement, or inducement of patent
21+
infringement, then any patent rights granted to you under this License
22+
for this implementation of Dart shall terminate as of the date such
23+
litigation is filed.

0 commit comments

Comments
 (0)