From 0cc9f33c56e7eab9a051a8bc67705f8a27b1136e Mon Sep 17 00:00:00 2001 From: Anoop Date: Fri, 23 Sep 2022 16:33:13 +0530 Subject: [PATCH] Rebranding --- .github/workflows/linter.yml | 4 ++-- license.txt | 2 +- .../payment_gateways/doctype/paytm_settings/paytm_settings.js | 2 +- payments/payments/doctype/payment_gateway/payment_gateway.js | 2 +- payments/payments/doctype/payment_gateway/payment_gateway.py | 2 +- .../payments/doctype/payment_gateway/test_payment_gateway.py | 2 +- payments/templates/pages/braintree_checkout.py | 2 +- payments/templates/pages/payment_cancel.py | 2 +- payments/templates/pages/payment_success.py | 2 +- payments/templates/pages/paytm_checkout.py | 2 +- payments/templates/pages/razorpay_checkout.py | 2 +- payments/templates/pages/stripe_checkout.py | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 6b504fa..fa59964 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -46,9 +46,9 @@ jobs: - uses: pre-commit/action@v3.0.0 - name: Download Semgrep rules - run: git clone --depth 1 https://github.com/frappe/semgrep-rules.git frappe-semgrep-rules + run: git clone --depth 1 https://github.com/influxerp/semgrep-rules.git influxerp-semgrep-rules - name: Run Semgrep rules run: | pip install semgrep==0.97.0 - semgrep ci --config ./frappe-semgrep-rules/rules --config r/python.lang.correctness + semgrep ci --config ./influxerp-semgrep-rules/rules --config r/python.lang.correctness diff --git a/license.txt b/license.txt index 6919960..9062191 100644 --- a/license.txt +++ b/license.txt @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2016-2021 Frappe Technologies Pvt. Ltd. +Copyright (c) 2016-2021 InfluxERP Solutions Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/payments/payment_gateways/doctype/paytm_settings/paytm_settings.js b/payments/payment_gateways/doctype/paytm_settings/paytm_settings.js index fe2ee7c..0cea3c7 100644 --- a/payments/payment_gateways/doctype/paytm_settings/paytm_settings.js +++ b/payments/payment_gateways/doctype/paytm_settings/paytm_settings.js @@ -3,6 +3,6 @@ frappe.ui.form.on('Paytm Settings', { refresh: function(frm) { - frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); + frm.dashboard.set_headline(__("For more information, {0}.", [`${__('Click here')}`])); } }); diff --git a/payments/payments/doctype/payment_gateway/payment_gateway.js b/payments/payments/doctype/payment_gateway/payment_gateway.js index 0eff5a5..fd9602d 100644 --- a/payments/payments/doctype/payment_gateway/payment_gateway.js +++ b/payments/payments/doctype/payment_gateway/payment_gateway.js @@ -1,4 +1,4 @@ -// Copyright (c) 2016, Frappe Technologies Pvt. Ltd. and contributors +// Copyright (c) 2016, InfluxERP Solutions and contributors // For license information, please see license.txt frappe.ui.form.on('Payment Gateway', { diff --git a/payments/payments/doctype/payment_gateway/payment_gateway.py b/payments/payments/doctype/payment_gateway/payment_gateway.py index 74306ae..318f81e 100644 --- a/payments/payments/doctype/payment_gateway/payment_gateway.py +++ b/payments/payments/doctype/payment_gateway/payment_gateway.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors +# Copyright (c) 2015, InfluxERP Solutions and contributors # License: MIT. See LICENSE from frappe.model.document import Document diff --git a/payments/payments/doctype/payment_gateway/test_payment_gateway.py b/payments/payments/doctype/payment_gateway/test_payment_gateway.py index 6900e79..41f69fa 100644 --- a/payments/payments/doctype/payment_gateway/test_payment_gateway.py +++ b/payments/payments/doctype/payment_gateway/test_payment_gateway.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import unittest diff --git a/payments/templates/pages/braintree_checkout.py b/payments/templates/pages/braintree_checkout.py index 061b4f7..6e639bf 100644 --- a/payments/templates/pages/braintree_checkout.py +++ b/payments/templates/pages/braintree_checkout.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import json diff --git a/payments/templates/pages/payment_cancel.py b/payments/templates/pages/payment_cancel.py index cf2a10f..0a8b3a7 100644 --- a/payments/templates/pages/payment_cancel.py +++ b/payments/templates/pages/payment_cancel.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import frappe diff --git a/payments/templates/pages/payment_success.py b/payments/templates/pages/payment_success.py index 8985850..13dd7e1 100644 --- a/payments/templates/pages/payment_success.py +++ b/payments/templates/pages/payment_success.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2015, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import frappe diff --git a/payments/templates/pages/paytm_checkout.py b/payments/templates/pages/paytm_checkout.py index 07141e0..6950657 100644 --- a/payments/templates/pages/paytm_checkout.py +++ b/payments/templates/pages/paytm_checkout.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import json diff --git a/payments/templates/pages/razorpay_checkout.py b/payments/templates/pages/razorpay_checkout.py index 76eaabc..43bfd84 100644 --- a/payments/templates/pages/razorpay_checkout.py +++ b/payments/templates/pages/razorpay_checkout.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import json diff --git a/payments/templates/pages/stripe_checkout.py b/payments/templates/pages/stripe_checkout.py index 5205ded..ec361c7 100644 --- a/payments/templates/pages/stripe_checkout.py +++ b/payments/templates/pages/stripe_checkout.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021, Frappe Technologies Pvt. Ltd. and Contributors +# Copyright (c) 2021, InfluxERP Solutions and Contributors # License: MIT. See LICENSE import json