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
// Logs all calls to preventDefault / stopPropagation in an user-friendly way | |
if ( process.env.NODE_ENV !== "production" ) { | |
(function monkeyPatchEventMethods() { | |
const logEventMethodCall = (event,methodName) => { | |
const MinimumMeaninfulSelectors = 3; // how much meaningful items we want in log message | |
const target = event.target; | |
const selector = (function computeSelector() { |
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
{ | |
"id":"2595a67d11894c1c8c2ab6131663c6e9", | |
"project":38297, | |
"release":"20/01/2017 13:27", | |
"platform":"javascript", | |
"culprit":"raven-js/src/raven in func", | |
"message":"TypeError plugin.setSuspendState is not a function raven-js/src/raven in func", | |
"datetime":"2017-01-23T09:55:11.000000Z", | |
"time_spent":null, | |
"tags":[ |
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
org.apache.commons.mail.EmailException: Sending the email to the following server failed : in.mailjet.com:587 | |
at org.apache.commons.mail.Email.sendMimeMessage(Email.java:1242) ~[org.apache.commons.commons-email-1.2.jar:1.2] | |
at org.apache.commons.mail.Email.send(Email.java:1267) ~[org.apache.commons.commons-email-1.2.jar:1.2] | |
at com.typesafe.plugin.CommonsMailer.send(MailerPlugin.scala:242) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0] | |
at com.typesafe.plugin.MailerBuilder$class.sendHtml(MailerPlugin.scala:204) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0] | |
at com.typesafe.plugin.CommonsMailer.sendHtml(MailerPlugin.scala:215) ~[com.typesafe.play-plugins-mailer_2.10-2.2.0.jar:2.2.0] | |
at services.impl.DefaultEmailServiceComponent$DefaultEmailService$$anonfun$send$1.apply$mcV$sp(DefaultEmailServiceComponent.scala:132) ~[stample-web.stample-web-1.0.jar:1.0] | |
at akka.actor.Scheduler$$anon$11.run(Scheduler.scala:118) ~[com.typesafe.akka.akka-actor_2.10-2.2.0.jar:2.2.0] | |
at akka.dispatch.Task |
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
exports.FR = { | |
"selectTargetType.title": "Ou souhaites-tu déplacer cette bibliothèque?", | |
"selectTargetType.description": "Tu es admin d'au moins une équipe. Tu as la possibilité de déplacer cette bibliothèque dans une de tes équipes, ou tu peux simplement déplacer cette bibliothèque dans une autre bibliothèque", | |
"selectTargetType.moveToFolderLike": "Dans une bibliothèque", | |
"selectTargetType.moveToTeam": "Dans une équipe", | |
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
"use strict"; | |
exports.name = "onboardingSignupResult"; | |
exports.FR = { | |
"title": "Résumé de ton inscription sur Stample", | |
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
"use strict"; | |
exports.name = "onboardingHotspots"; | |
exports.FR = { | |
"menu-search": "Recherche universelle: trouve des bibliothèques, dossiers, personnes et stamples", | |
"menu-contacts": "Parcours tes contacts et regarde leur profile", |
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 is highly inspired by React-Router Link, but with some differences: | |
// - It's complex to put Router available in context for the whole tree (because of cursors legacy), so ReactRouter Link can't be used safely everywhere... | |
// - We need support for touch events on links | |
const DefaultLink = React.createClass({ | |
propTypes: { | |
to: PropTypes.string.isRequired | |
}, | |
getUrl() { |
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
'use strict'; | |
import React, { PropTypes } from 'react'; | |
import $ from 'jquery'; | |
import _ from 'lodash'; | |
import shallowCompare from 'react-addons-shallow-compare'; | |
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
function* findOldestKnownFatherSideAncestor(person) { | |
let currentPerson = person; | |
while (currentPerson.fatherId) { | |
currentPerson = yield call(PersonAPI.getById,currentPerson.fatherId); | |
} | |
return currentPerson | |
} |