Skip to content

Reemplazo automático de texto #168

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dj_cqrs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import django # pragma: no cover

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/_validation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging
from inspect import getfullargspec, isfunction
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/admin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.utils.translation import gettext_lazy

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/apps.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.apps import AppConfig
from django.conf import settings
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/constants.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

ALL_BASIC_FIELDS = '__all__'

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/controller/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion dj_cqrs/controller/consumer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import copy
import logging
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/controller/producer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from dj_cqrs.transport import current_transport

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/correlation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.conf import settings

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/dataclasses.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from dateutil.parser import parse as dateutil_parse
from django.utils import timezone
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/delay.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from queue import Full, PriorityQueue

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_bulk_dump.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import datetime
import os
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_bulk_load.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_consume.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2022 Ingram Micro Inc. All rights reserved.
# Copyright © 2022 cloudblue Micro Inc. All rights reserved.
import logging
import signal
import threading
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_dead_letters.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import ujson
from django.core.management.base import BaseCommand, CommandError
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_deleted_diff_master.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import sys

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_deleted_diff_replica.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import ujson
from django.core.exceptions import FieldError
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_deleted_sync_replica.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import sys

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_diff_master.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import ujson
from django.core.exceptions import FieldError
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_diff_replica.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import sys

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_diff_sync.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import sys

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/commands/cqrs_sync.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import datetime
import sys
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/management/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.


def batch_qs(qs, batch_size=10000):
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/managers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/metas.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.db.models import base

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/mixins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2024 Ingram Micro Inc. All rights reserved.
# Copyright © 2024 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/registries.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/signals.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2024 Ingram Micro Inc. All rights reserved.
# Copyright © 2024 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/state.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2024 Ingram Micro Inc. All rights reserved.
# Copyright © 2024 cloudblue Micro Inc. All rights reserved.

import threading

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/tracker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from model_utils import FieldTracker
from model_utils.tracker import FieldInstanceTracker
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.conf import settings
from django.utils.module_loading import import_string
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.


class BaseTransport:
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/kombu.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/mixins.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/mock.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from dj_cqrs.transport import BaseTransport

Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/transport/rabbit_mq.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import logging
import time
Expand Down
2 changes: 1 addition & 1 deletion dj_cqrs/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2024 Ingram Micro Inc. All rights reserved.
# Copyright © 2024 cloudblue Micro Inc. All rights reserved.

import logging
from collections import defaultdict
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/asgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

"""
ASGI config for master_service project.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import django.contrib.auth.validators
import django.utils.timezone
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

from django.db import migrations

Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.contrib.auth.models import AbstractUser
from django.db import models

Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/serializers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from rest_framework import serializers

from app.models import Purchase
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from pathlib import Path


Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.urls import path

from app.views import (
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.http import HttpResponseNotAllowed
from django.shortcuts import get_object_or_404, redirect, render
from django.views.decorators.http import require_http_methods
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/master_service/app/wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
"""
WSGI config for master_service project.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import django.contrib.auth.validators
import django.utils.timezone
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/replica_service/app/models.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.contrib.auth.models import AbstractUser
from django.core.cache import cache
from django.db import models
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/replica_service/app/settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from pathlib import Path


Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/replica_service/app/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.urls import path

from app.views import main_page_view
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_project/replica_service/app/views.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
from django.core.cache import cache
from django.shortcuts import render

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion integration_tests/manage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/master_settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import os

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/replica_settings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import os

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/replica_wsgi.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import os

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
2 changes: 1 addition & 1 deletion integration_tests/tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import psycopg2
import pytest
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/test_asynchronous_consuming.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import pytest

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/test_bulk_operations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import pytest

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/test_dead_letter.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import json

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/test_single_basic_instance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import pytest
from django.utils.timezone import now
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/test_sync_to_a_certain_service.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import pytest

Expand Down
2 changes: 1 addition & 1 deletion integration_tests/tests/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.

import time

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ site_url: https://github.com/cloudblue/django-cqrs
repo_name: cloudblue/django-cqrs
repo_url: https://github.com/cloudblue/django-cqrs
edit_uri: ""
copyright: Copyright © 2023 Ingram Micro. All Rights Reserved.
copyright: Copyright © 2023 cloudblue Micro. All Rights Reserved.
extra:
generator: false
social:
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# Copyright © 2023 Ingram Micro Inc. All rights reserved.
# Copyright © 2023 cloudblue Micro Inc. All rights reserved.
Loading
Loading