gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: Add license headers to frontend projec


From: gnunet
Subject: [libeufin] branch master updated: Add license headers to frontend project
Date: Tue, 25 Aug 2020 13:09:56 +0200

This is an automated email from the git hooks/post-receive script.

heng-yeow pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 5b801f5  Add license headers to frontend project
5b801f5 is described below

commit 5b801f5a252eda38f502d71850881a1dcf3cf678
Author: tanhengyeow <E0032242@u.nus.edu>
AuthorDate: Tue Aug 25 19:09:45 2020 +0800

    Add license headers to frontend project
---
 frontend/public/index.html                              | 16 ++++++++++++++++
 frontend/src/App.less                                   | 16 ++++++++++++++++
 frontend/src/App.tsx                                    | 16 ++++++++++++++++
 frontend/src/actions/auth.tsx                           | 16 ++++++++++++++++
 frontend/src/components/NotFound.tsx                    | 16 ++++++++++++++++
 frontend/src/components/activity/Activity.less          | 16 ++++++++++++++++
 frontend/src/components/activity/Index.tsx              | 16 ++++++++++++++++
 .../activity/payments/AddPaymentInitiationDrawer.tsx    | 16 ++++++++++++++++
 .../activity/payments/PaymentInitiationList.tsx         | 16 ++++++++++++++++
 .../activity/transaction-history/TransactionsList.tsx   | 16 ++++++++++++++++
 .../bank-accounts/AddBankConnectionDrawer.tsx           | 16 ++++++++++++++++
 frontend/src/components/bank-accounts/BankAccounts.less | 16 ++++++++++++++++
 .../src/components/bank-accounts/BankConnectionCard.tsx | 16 ++++++++++++++++
 .../components/bank-accounts/BankConnectionDrawer.tsx   | 16 ++++++++++++++++
 frontend/src/components/bank-accounts/Index.tsx         | 16 ++++++++++++++++
 frontend/src/components/footer/Footer.less              | 16 ++++++++++++++++
 frontend/src/components/footer/Index.tsx                | 16 ++++++++++++++++
 frontend/src/components/home/Home.less                  | 16 ++++++++++++++++
 frontend/src/components/home/Index.tsx                  | 16 ++++++++++++++++
 frontend/src/components/login/Index.tsx                 | 16 ++++++++++++++++
 frontend/src/components/login/Login.less                | 16 ++++++++++++++++
 frontend/src/components/navbar/Index.tsx                | 16 ++++++++++++++++
 frontend/src/components/navbar/NavBar.less              | 16 ++++++++++++++++
 frontend/src/constants.tsx                              | 16 ++++++++++++++++
 frontend/src/history.tsx                                | 16 ++++++++++++++++
 frontend/src/import-png.d.ts                            | 16 ++++++++++++++++
 frontend/src/index.tsx                                  | 16 ++++++++++++++++
 frontend/src/reducers/index.tsx                         | 16 ++++++++++++++++
 frontend/src/routes/AuthenticatedRoute.tsx              | 16 ++++++++++++++++
 frontend/src/routes/Layout.less                         | 17 ++++++++++++++++-
 frontend/src/routes/Pages.tsx                           | 16 ++++++++++++++++
 frontend/src/routes/UnauthenticatedRoute.tsx            | 16 ++++++++++++++++
 frontend/src/types.tsx                                  | 16 ++++++++++++++++
 33 files changed, 528 insertions(+), 1 deletion(-)

diff --git a/frontend/public/index.html b/frontend/public/index.html
index e3d5969..81ac14e 100644
--- a/frontend/public/index.html
+++ b/frontend/public/index.html
@@ -1,3 +1,19 @@
+<!--
+This file is part of GNU Taler
+(C) 2020 Taler Systems S.A.
+
+GNU Taler is free software; you can redistribute it and/or modify it under the
+terms of the GNU General Public License as published by the Free Software
+Foundation; either version 3, or (at your option) any later version.
+
+GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License along with
+GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+!-->
+
 <!DOCTYPE html>
 <html lang="en">
   <head>
diff --git a/frontend/src/App.less b/frontend/src/App.less
index 33f8824..2d9a3d6 100644
--- a/frontend/src/App.less
+++ b/frontend/src/App.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 @import '~antd/dist/antd.less';
 
 .App {
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 0cd063a..de1195d 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React from 'react';
 import { connect } from 'react-redux';
 import { Route, Router } from 'react-router-dom';
diff --git a/frontend/src/actions/auth.tsx b/frontend/src/actions/auth.tsx
index 5fd0d30..23e4259 100644
--- a/frontend/src/actions/auth.tsx
+++ b/frontend/src/actions/auth.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 /* eslint-disable @typescript-eslint/no-explicit-any */
 import { ThunkDispatch as Dispatch } from 'redux-thunk';
 import { Base64 } from 'js-base64';
diff --git a/frontend/src/components/NotFound.tsx 
b/frontend/src/components/NotFound.tsx
index a01a48e..a71caf9 100644
--- a/frontend/src/components/NotFound.tsx
+++ b/frontend/src/components/NotFound.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import * as React from 'react';
 
 const NotFound = () => <p>Not Found</p>;
diff --git a/frontend/src/components/activity/Activity.less 
b/frontend/src/components/activity/Activity.less
index f7670a9..086ff54 100644
--- a/frontend/src/components/activity/Activity.less
+++ b/frontend/src/components/activity/Activity.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .activity {
   margin-top: 50px;
 }
diff --git a/frontend/src/components/activity/Index.tsx 
b/frontend/src/components/activity/Index.tsx
index 5b4815d..e66070d 100644
--- a/frontend/src/components/activity/Index.tsx
+++ b/frontend/src/components/activity/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { Tabs } from 'antd';
 import PaymentInitiationList from './payments/PaymentInitiationList';
diff --git 
a/frontend/src/components/activity/payments/AddPaymentInitiationDrawer.tsx 
b/frontend/src/components/activity/payments/AddPaymentInitiationDrawer.tsx
index d4af362..366c095 100644
--- a/frontend/src/components/activity/payments/AddPaymentInitiationDrawer.tsx
+++ b/frontend/src/components/activity/payments/AddPaymentInitiationDrawer.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { message, Button, Drawer, Input, Form, Select } from 'antd';
 
diff --git 
a/frontend/src/components/activity/payments/PaymentInitiationList.tsx 
b/frontend/src/components/activity/payments/PaymentInitiationList.tsx
index bc66461..7c54305 100644
--- a/frontend/src/components/activity/payments/PaymentInitiationList.tsx
+++ b/frontend/src/components/activity/payments/PaymentInitiationList.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { message, Button, Select, Table } from 'antd';
 import AddPaymentInitiationDrawer from './AddPaymentInitiationDrawer';
diff --git 
a/frontend/src/components/activity/transaction-history/TransactionsList.tsx 
b/frontend/src/components/activity/transaction-history/TransactionsList.tsx
index 0ebe7d5..6c64682 100644
--- a/frontend/src/components/activity/transaction-history/TransactionsList.tsx
+++ b/frontend/src/components/activity/transaction-history/TransactionsList.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React from 'react';
 import { DatePicker, Table } from 'antd';
 import JSONTree from 'react-json-tree';
diff --git a/frontend/src/components/bank-accounts/AddBankConnectionDrawer.tsx 
b/frontend/src/components/bank-accounts/AddBankConnectionDrawer.tsx
index 67681b1..ac0a839 100644
--- a/frontend/src/components/bank-accounts/AddBankConnectionDrawer.tsx
+++ b/frontend/src/components/bank-accounts/AddBankConnectionDrawer.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { message, Button, Drawer, Input, Form, Steps } from 'antd';
 const { Step } = Steps;
diff --git a/frontend/src/components/bank-accounts/BankAccounts.less 
b/frontend/src/components/bank-accounts/BankAccounts.less
index 3fab2aa..d628d0c 100644
--- a/frontend/src/components/bank-accounts/BankAccounts.less
+++ b/frontend/src/components/bank-accounts/BankAccounts.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .bank-accounts {
   margin-top: 50px;
 }
diff --git a/frontend/src/components/bank-accounts/BankConnectionCard.tsx 
b/frontend/src/components/bank-accounts/BankConnectionCard.tsx
index 36f21f9..0d8a8ed 100644
--- a/frontend/src/components/bank-accounts/BankConnectionCard.tsx
+++ b/frontend/src/components/bank-accounts/BankConnectionCard.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { Card } from 'antd';
 import BankConnectionDrawer from './BankConnectionDrawer';
diff --git a/frontend/src/components/bank-accounts/BankConnectionDrawer.tsx 
b/frontend/src/components/bank-accounts/BankConnectionDrawer.tsx
index 646af1b..92736ef 100644
--- a/frontend/src/components/bank-accounts/BankConnectionDrawer.tsx
+++ b/frontend/src/components/bank-accounts/BankConnectionDrawer.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { message, Button, Drawer, Table } from 'antd';
 
diff --git a/frontend/src/components/bank-accounts/Index.tsx 
b/frontend/src/components/bank-accounts/Index.tsx
index 198da81..26e5005 100644
--- a/frontend/src/components/bank-accounts/Index.tsx
+++ b/frontend/src/components/bank-accounts/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { message, Button, Card, Col, Collapse, Row, Tabs } from 'antd';
 import './BankAccounts.less';
diff --git a/frontend/src/components/footer/Footer.less 
b/frontend/src/components/footer/Footer.less
index 0ab86f7..02fa928 100644
--- a/frontend/src/components/footer/Footer.less
+++ b/frontend/src/components/footer/Footer.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .footer {
   height: 4rem;
   background: #1890ff;
diff --git a/frontend/src/components/footer/Index.tsx 
b/frontend/src/components/footer/Index.tsx
index 2f2c2ca..abeb5ea 100644
--- a/frontend/src/components/footer/Index.tsx
+++ b/frontend/src/components/footer/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import * as React from 'react';
 import './Footer.less';
 import { CopyrightOutlined } from '@ant-design/icons';
diff --git a/frontend/src/components/home/Home.less 
b/frontend/src/components/home/Home.less
index cf8110a..bd89cb0 100644
--- a/frontend/src/components/home/Home.less
+++ b/frontend/src/components/home/Home.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .home-bank-accounts {
   display: flex;
   margin-top: 50px;
diff --git a/frontend/src/components/home/Index.tsx 
b/frontend/src/components/home/Index.tsx
index f38b442..37b31d7 100644
--- a/frontend/src/components/home/Index.tsx
+++ b/frontend/src/components/home/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import './Home.less';
 import { message, Button, Card, Col, Row } from 'antd';
diff --git a/frontend/src/components/login/Index.tsx 
b/frontend/src/components/login/Index.tsx
index 979a047..218f8f6 100644
--- a/frontend/src/components/login/Index.tsx
+++ b/frontend/src/components/login/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React, { useState } from 'react';
 import { connect } from 'react-redux';
 import { Alert, Form, Input, Button } from 'antd';
diff --git a/frontend/src/components/login/Login.less 
b/frontend/src/components/login/Login.less
index 742c2d6..6a3233a 100644
--- a/frontend/src/components/login/Login.less
+++ b/frontend/src/components/login/Login.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .img {
   margin-bottom: 24px;
 }
diff --git a/frontend/src/components/navbar/Index.tsx 
b/frontend/src/components/navbar/Index.tsx
index 0d8f4ba..f69b3be 100644
--- a/frontend/src/components/navbar/Index.tsx
+++ b/frontend/src/components/navbar/Index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import React from 'react';
 import { Menu, Button } from 'antd';
 import { connect } from 'react-redux';
diff --git a/frontend/src/components/navbar/NavBar.less 
b/frontend/src/components/navbar/NavBar.less
index 81bff9b..42be8f6 100644
--- a/frontend/src/components/navbar/NavBar.less
+++ b/frontend/src/components/navbar/NavBar.less
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .navBar {
   display: flex;
   align-items: center;
diff --git a/frontend/src/constants.tsx b/frontend/src/constants.tsx
index 4b41ab0..f08fb47 100644
--- a/frontend/src/constants.tsx
+++ b/frontend/src/constants.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 export const AUTHENTICATE = 'AUTHENTICATE';
 export type AUTHENTICATE = typeof AUTHENTICATE;
 export const UNAUTHENTICATE = 'UNAUTHENTICATE';
diff --git a/frontend/src/history.tsx b/frontend/src/history.tsx
index 0f33a2b..2b4b86f 100644
--- a/frontend/src/history.tsx
+++ b/frontend/src/history.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 /* eslint-disable @typescript-eslint/no-explicit-any */
 import { createBrowserHistory } from 'history';
 
diff --git a/frontend/src/import-png.d.ts b/frontend/src/import-png.d.ts
index 0935dbb..7a85719 100644
--- a/frontend/src/import-png.d.ts
+++ b/frontend/src/import-png.d.ts
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 declare module '*.png' {
   const value: any;
   export default value;
diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx
index 2128016..c46c477 100644
--- a/frontend/src/index.tsx
+++ b/frontend/src/index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 /* eslint-disable @typescript-eslint/no-explicit-any */
 import React from 'react';
 import ReactDOM from 'react-dom';
diff --git a/frontend/src/reducers/index.tsx b/frontend/src/reducers/index.tsx
index 76e2d0c..d4fadb6 100644
--- a/frontend/src/reducers/index.tsx
+++ b/frontend/src/reducers/index.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import { Authenticate, Unauthenticate } from '../actions/auth';
 import { AUTHENTICATE, UNAUTHENTICATE } from '../constants';
 import { Store } from '../types';
diff --git a/frontend/src/routes/AuthenticatedRoute.tsx 
b/frontend/src/routes/AuthenticatedRoute.tsx
index 366dc60..b53f985 100644
--- a/frontend/src/routes/AuthenticatedRoute.tsx
+++ b/frontend/src/routes/AuthenticatedRoute.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 /* eslint-disable @typescript-eslint/no-explicit-any */
 import * as React from 'react';
 import { connect } from 'react-redux';
diff --git a/frontend/src/routes/Layout.less b/frontend/src/routes/Layout.less
index fb0884b..2e011f2 100644
--- a/frontend/src/routes/Layout.less
+++ b/frontend/src/routes/Layout.less
@@ -1,4 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 .container {
-  // height: 100vh;
   padding: 30px 60px 64px 60px;
 }
diff --git a/frontend/src/routes/Pages.tsx b/frontend/src/routes/Pages.tsx
index 7a77989..9d92f06 100644
--- a/frontend/src/routes/Pages.tsx
+++ b/frontend/src/routes/Pages.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 import * as React from 'react';
 import { Route, Switch } from 'react-router-dom';
 
diff --git a/frontend/src/routes/UnauthenticatedRoute.tsx 
b/frontend/src/routes/UnauthenticatedRoute.tsx
index d468441..cc1b468 100644
--- a/frontend/src/routes/UnauthenticatedRoute.tsx
+++ b/frontend/src/routes/UnauthenticatedRoute.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 /* eslint-disable @typescript-eslint/no-explicit-any */
 import * as React from 'react';
 import { connect } from 'react-redux';
diff --git a/frontend/src/types.tsx b/frontend/src/types.tsx
index da79f4d..8f9335d 100644
--- a/frontend/src/types.tsx
+++ b/frontend/src/types.tsx
@@ -1,3 +1,19 @@
+/*
+ This file is part of GNU Taler
+ (C) 2020 Taler Systems S.A.
+
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
+ Foundation; either version 3, or (at your option) any later version.
+
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
+ */
+
 export interface Store {
   isAuthenticated: boolean | null;
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]