Skip to content
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
4 changes: 3 additions & 1 deletion core_lib/helpers/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ class HttpHeaders(enum.Enum):
ACCEPT_CHARSET = 'Accept-Charset'
ACCEPT_ENCODING = 'Accept-Encoding'
ACCEPT_LANGUAGE = 'Accept-Language'
ACCEPT_RANGES = 'Accept-Ranges'
# Backward-compatible alias for the old misspelled enum member.
ACCEPT_RANGERS = 'Accept-Ranges'
ACCESS_CONTROL_ALLOW_CREDENTIALS = 'Access-Control-Allow-Credentials'
ACCESS_CONTROL_ALLOW_HEADERS = 'Access-Control-Allow-Headers'
Expand Down Expand Up @@ -69,4 +71,4 @@ class TimeUnit(enum.Enum):
class InstantiateConfigConstants(enum.Enum):
INSTANCE_KEY = '_instance_key_'
RECURSIVE = '_recursive_'
TARGET = '_target_'
TARGET = '_target_'
53 changes: 42 additions & 11 deletions docs/_data/sidebars/core_lib_doc_sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ entries:
url: /project_structure.html
output: web

- title: Glossary
url: /glossary.html
output: web

- title: Core-Lib
output: web
folderitems:
- title: Core Lib Class
- title: The CoreLib Class
url: /core_lib_main_class.html
output: web

Expand Down Expand Up @@ -65,28 +69,43 @@ entries:
url: /job.html
output: web

- title: Middleware
output: web
folderitems:
- title: Middleware
url: /middleware.html
output: web

- title: Connection
output: web
folderitems:
- title: Connection
url: /connection.html
output: web

- title: SqlAlchemy Connection Registry
- title: SQLAlchemy Connection Factory
url: /sql_alchemy_connection.html
output: web

- title: MongoDB Connection Registry
- title: MongoDB Connection Factory
url: /mongodb_connection_factory.html
output: web
- title: Solr Connection Registry

- title: Solr Connection Factory
url: /solr_connection_factory.html
output: web

- title: Neo4j Connection Registry
- title: Neo4j Connection Factory
url: /neo4j_connection_factory.html
output: web

- title: Elasticsearch Connection Factory
url: /elasticsearch_connection_factory.html
output: web

- title: Object Connection Factory
url: /object_connection_factory.html
output: web

- title: Data Layers
output: web
Expand All @@ -103,9 +122,13 @@ entries:
url: /crud.html
output: web

- title: Soft Delete
- title: Soft Delete Handler
url: /soft_delete.html
output: web

- title: SQLAlchemy Custom Types
url: /sqlalchemy_types.html
output: web

- title: Client
output: web
Expand Down Expand Up @@ -159,11 +182,19 @@ entries:
- title: Validation Helpers
url: /validation.html
output: web

- title: Testing Core-lib

- title: Thread Utilities
url: /thread.html
output: web

- title: Constants
url: /constants.html
output: web

- title: Testing Core-Lib
output: web
folderitems:
- title: Testing Core-lib
- title: Testing Core-Lib
url: /test_core_lib.html
output: web

Expand All @@ -174,7 +205,7 @@ entries:
url: /observer.html
output: web

- title: Core Lib Listener
- title: CoreLib Listener
url: /core_lib_listener.html
output: web

Expand Down
Loading