Skip to content

Commit

Permalink
Updated copyright notices
Browse files Browse the repository at this point in the history
  • Loading branch information
meta-paul committed Dec 15, 2023
1 parent 98c5f09 commit f82c7be
Show file tree
Hide file tree
Showing 94 changed files with 203 additions and 181 deletions.
17 changes: 8 additions & 9 deletions .yarn/releases/yarn-3.2.4.cjs

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions docs/web/docs/reference/architects.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
-->





# Architects


Expand Down
3 changes: 0 additions & 3 deletions docs/web/docs/reference/blueprints.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
-->





# Blueprints


Expand Down
3 changes: 0 additions & 3 deletions docs/web/docs/reference/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
-->





# Provider


Expand Down
3 changes: 0 additions & 3 deletions docs/web/docs/reference/requesters.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
-->





# Requesters


Expand Down
12 changes: 4 additions & 8 deletions examples/parlai_chat_task_demo/webapp/src/static/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
6 changes: 6 additions & 0 deletions examples/remote_procedure/mnist/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

# Mephisto MNIST Model Evaluator demo

This task is a simple model evaluation demo, presenting the worker with three spaces to draw images in, running an MNIST model on them to predict an output, and then allowing the worker to assess and correct that output.
Expand Down
2 changes: 1 addition & 1 deletion examples/remote_procedure/mnist/model.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright (c) Facebook, Inc. and its affiliates.
# Copyright (c) Meta Platforms and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

Expand Down
2 changes: 1 addition & 1 deletion examples/remote_procedure/mnist/run_task.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

# Copyright (c) Facebook, Inc. and its affiliates.
# Copyright (c) Meta Platforms and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

Expand Down
6 changes: 6 additions & 0 deletions examples/remote_procedure/mnist/webapp/cypress.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

module.exports = {
video: false,

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/*
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

describe("Loads remote_procedure_mnist", () => {
it("Makes request for agent", () => {
cy.intercept({ pathname: "/request_agent" }).as("agentRequest");
Expand Down
5 changes: 5 additions & 0 deletions examples/remote_procedure/mnist/webapp/link_mephisto_task.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
#!/bin/sh

# Copyright (c) Meta Platforms and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

npm link mephisto-task
8 changes: 3 additions & 5 deletions examples/remote_procedure/mnist/webapp/src/app.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/*
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import React from "react";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/*
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import React, { Fragment } from "react";
Expand Down
8 changes: 3 additions & 5 deletions examples/remote_procedure/mnist/webapp/src/reviewapp.jsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/*
* Copyright (c) 2017-present, Facebook, Inc.
* All rights reserved.
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

import React from "react";
Expand Down
9 changes: 4 additions & 5 deletions examples/remote_procedure/mnist/webapp/src/static/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<!--
Copyright 2017-present, Facebook, Inc.
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
2 changes: 1 addition & 1 deletion examples/remote_procedure/mnist/webapp/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
12 changes: 4 additions & 8 deletions examples/static_react_task/webapp/src/static/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
12 changes: 4 additions & 8 deletions mephisto/abstractions/architects/router/flask/static/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
12 changes: 4 additions & 8 deletions mephisto/abstractions/architects/router/node/static/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
<!--
Copyright 2017-present, Meta Platforms
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
2 changes: 1 addition & 1 deletion mephisto/client/cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
# Copyright (c) Meta Platforms and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.

Expand Down
6 changes: 6 additions & 0 deletions mephisto/client/review_app/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

## Run TaskReview app


Expand Down
6 changes: 6 additions & 0 deletions mephisto/client/review_app/client/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

# TaskReview app user flow

- We get list of available tasks from `GET /tasks`
Expand Down
9 changes: 4 additions & 5 deletions mephisto/client/review_app/client/public/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
<!--
Copyright 2017-present, Facebook, Inc.
All rights reserved.
This source code is licensed under the license found in the
LICENSE file in the root directory of this source tree.
<!---
Copyright (c) Meta Platforms and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

<!DOCTYPE html>
Expand Down
2 changes: 1 addition & 1 deletion mephisto/client/review_app/client/src/App/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
2 changes: 1 addition & 1 deletion mephisto/client/review_app/client/src/consts/http.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
2 changes: 1 addition & 1 deletion mephisto/client/review_app/client/src/consts/review.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
2 changes: 1 addition & 1 deletion mephisto/client/review_app/client/src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* Copyright (c) Meta Platforms and its affiliates.
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
Expand Down
Loading

0 comments on commit f82c7be

Please sign in to comment.