-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
corrections found while writing documentation
- Loading branch information
Showing
17 changed files
with
127 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,31 +4,32 @@ | |
# 'meteor add' and 'meteor remove' will edit this file for you, | ||
# but you can also edit it by hand. | ||
|
||
meteor-base@1.0.4 # Packages every Meteor app needs to have | ||
meteor-base@1.1.0 # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
[email protected] # The database Meteor supports right now | ||
[email protected] # Compile .html files into Meteor Blaze views | ||
[email protected] # The database Meteor supports right now | ||
[email protected] # Reactive variable for tracker | ||
[email protected] # Meteor's client-side reactive programming library | ||
|
||
[email protected] # CSS minifier run for production mode | ||
standard-minifier-js@2.0.0 # JS minifier run for production mode | ||
standard-minifier-js@2.1.0 # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers. | ||
ecmascript@0.7.3 # Enable ECMAScript2015+ syntax in app code | ||
ecmascript@0.8.0 # Enable ECMAScript2015+ syntax in app code | ||
[email protected] # Server-side component of the `meteor shell` command | ||
|
||
react-meteor-data | ||
alanning:roles | ||
fourseven:scss | ||
twbs:bootstrap | ||
accounts-base@1.2.17 | ||
accounts-base@1.3.0 | ||
[email protected] | ||
[email protected] | ||
accounts-facebook@1.1.1 | ||
accounts-github@1.2.1 | ||
accounts-google@1.1.2 | ||
accounts-facebook@1.2.0 | ||
accounts-github@1.3.0 | ||
accounts-google@1.2.0 | ||
themeteorchef:bert | ||
fortawesome:fontawesome | ||
aldeed:[email protected] | ||
[email protected] | ||
[email protected] | ||
dynamic-import | ||
static-html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
METEOR@1.4.4.3 | ||
METEOR@1.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,30 @@ | ||
import { Meteor } from 'meteor/meteor'; | ||
import { check } from 'meteor/check'; | ||
import { ServiceConfiguration } from 'meteor/service-configuration'; | ||
import rateLimit from '../../../modules/rate-limit'; | ||
|
||
Meteor.methods({ | ||
'oauth.verifyConfiguration': function oauthVerifyConfiguration(services) { | ||
check(services, Array); | ||
const verifiedServices = []; | ||
services.forEach((service) => { | ||
if (ServiceConfiguration.configurations.findOne({ service })) verifiedServices.push(service); | ||
}); | ||
return verifiedServices.sort(); | ||
|
||
try { | ||
const verifiedServices = []; | ||
services.forEach((service) => { | ||
if (ServiceConfiguration.configurations.findOne({ service })) { | ||
verifiedServices.push(service); | ||
} | ||
}); | ||
return verifiedServices.sort(); | ||
} catch (exception) { | ||
throw new Meteor.Error('500', exception); | ||
} | ||
}, | ||
}); | ||
|
||
rateLimit({ | ||
methods: [ | ||
'oauth.verifyConfiguration', | ||
], | ||
limit: 5, | ||
timeRange: 1000, | ||
}); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import React from 'react'; | ||
|
||
const Loading = () => ( | ||
<div className="Loading"> | ||
<svg width="44" height="44" viewBox="0 0 44 44" xmlns="http://www.w3.org/2000/svg" stroke="#4285F4"> | ||
<g fill="none" fillRule="evenodd" strokeWidth="2"> | ||
<circle cx="22" cy="22" r="1"> | ||
<animate | ||
attributeName="r" | ||
begin="0s" | ||
dur="1.8s" | ||
values="1; 20" | ||
calcMode="spline" | ||
keyTimes="0; 1" | ||
keySplines="0.165, 0.84, 0.44, 1" | ||
repeatCount="indefinite" | ||
/> | ||
<animate | ||
attributeName="stroke-opacity" | ||
begin="0s" | ||
dur="1.8s" | ||
values="1; 0" | ||
calcMode="spline" | ||
keyTimes="0; 1" | ||
keySplines="0.3, 0.61, 0.355, 1" | ||
repeatCount="indefinite" | ||
/> | ||
</circle> | ||
<circle cx="22" cy="22" r="1"> | ||
<animate | ||
attributeName="r" | ||
begin="-0.9s" | ||
dur="1.8s" | ||
values="1; 20" | ||
calcMode="spline" | ||
keyTimes="0; 1" | ||
keySplines="0.165, 0.84, 0.44, 1" | ||
repeatCount="indefinite" | ||
/> | ||
<animate | ||
attributeName="stroke-opacity" | ||
begin="-0.9s" | ||
dur="1.8s" | ||
values="1; 0" | ||
calcMode="spline" | ||
keyTimes="0; 1" | ||
keySplines="0.3, 0.61, 0.355, 1" | ||
repeatCount="indefinite" | ||
/> | ||
</circle> | ||
</g> | ||
</svg> | ||
</div> | ||
); | ||
|
||
export default Loading; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.