simplesitesearch 0.0.1__tar.gz → 0.0.2.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {simplesitesearch-0.0.1/simplesitesearch.egg-info → simplesitesearch-0.0.2.dev1}/PKG-INFO +14 -9
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/README.md +13 -8
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/setup.cfg +1 -1
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/setup.py +1 -1
- simplesitesearch-0.0.2.dev1/simplesitesearch/__init__.py +3 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1/simplesitesearch.egg-info}/PKG-INFO +14 -9
- simplesitesearch-0.0.1/simplesitesearch/__init__.py +0 -1
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/LICENSE +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/MANIFEST.in +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/pyproject.toml +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch/cms_apps.py +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch/templates/simplesitesearch/pagination.html +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch/templates/simplesitesearch/search_results.html +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch/urls.py +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch/views.py +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/SOURCES.txt +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/dependency_links.txt +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/not-zip-safe +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/requires.txt +0 -0
- {simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplesitesearch
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2.dev1
|
|
4
4
|
Summary: Reptile Simple Site Search django app
|
|
5
5
|
Home-page: https://github.com/reptiletech/simplesitesearch
|
|
6
6
|
Author: Reptile Tech
|
|
@@ -48,6 +48,7 @@ Dynamic: requires-python
|
|
|
48
48
|
|
|
49
49
|
A simple Django app for site search functionality with Django CMS integration. This package provides a clean, easy-to-use search interface that can be integrated into Django CMS projects.
|
|
50
50
|
|
|
51
|
+
> **Note**: This is a development version (0.0.2.dev1). The package is still under active development and may have breaking changes in future releases.
|
|
51
52
|
|
|
52
53
|
## Features
|
|
53
54
|
|
|
@@ -242,15 +243,19 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
242
243
|
|
|
243
244
|
## Changelog
|
|
244
245
|
|
|
245
|
-
### 0.0.
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
|
|
246
|
+
### 0.0.2.dev1
|
|
247
|
+
- Updated Django CMS configuration instructions for clarity
|
|
248
|
+
- Clarified Application ID setting (should be 'site_search')
|
|
249
|
+
- Improved documentation flow and user experience
|
|
250
|
+
|
|
251
|
+
### 0.0.1.dev1
|
|
252
|
+
- Initial development release
|
|
253
|
+
- Django CMS integration
|
|
254
|
+
- Pagination support
|
|
255
|
+
- Multi-language support
|
|
256
|
+
- Basic search functionality
|
|
251
257
|
- Template customization support
|
|
252
258
|
- Support for Python 3.6+ and Django 2.2+
|
|
253
|
-
- Reptile Search API
|
|
254
|
-
- Comprehensive documentation and setup instructions
|
|
259
|
+
- Updated API endpoint to use Reptile Search API
|
|
255
260
|
|
|
256
261
|
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A simple Django app for site search functionality with Django CMS integration. This package provides a clean, easy-to-use search interface that can be integrated into Django CMS projects.
|
|
4
4
|
|
|
5
|
+
> **Note**: This is a development version (0.0.2.dev1). The package is still under active development and may have breaking changes in future releases.
|
|
5
6
|
|
|
6
7
|
## Features
|
|
7
8
|
|
|
@@ -196,15 +197,19 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
196
197
|
|
|
197
198
|
## Changelog
|
|
198
199
|
|
|
199
|
-
### 0.0.
|
|
200
|
-
-
|
|
201
|
-
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
|
|
200
|
+
### 0.0.2.dev1
|
|
201
|
+
- Updated Django CMS configuration instructions for clarity
|
|
202
|
+
- Clarified Application ID setting (should be 'site_search')
|
|
203
|
+
- Improved documentation flow and user experience
|
|
204
|
+
|
|
205
|
+
### 0.0.1.dev1
|
|
206
|
+
- Initial development release
|
|
207
|
+
- Django CMS integration
|
|
208
|
+
- Pagination support
|
|
209
|
+
- Multi-language support
|
|
210
|
+
- Basic search functionality
|
|
205
211
|
- Template customization support
|
|
206
212
|
- Support for Python 3.6+ and Django 2.2+
|
|
207
|
-
- Reptile Search API
|
|
208
|
-
- Comprehensive documentation and setup instructions
|
|
213
|
+
- Updated API endpoint to use Reptile Search API
|
|
209
214
|
|
|
210
215
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: simplesitesearch
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.2.dev1
|
|
4
4
|
Summary: Reptile Simple Site Search django app
|
|
5
5
|
Home-page: https://github.com/reptiletech/simplesitesearch
|
|
6
6
|
Author: Reptile Tech
|
|
@@ -48,6 +48,7 @@ Dynamic: requires-python
|
|
|
48
48
|
|
|
49
49
|
A simple Django app for site search functionality with Django CMS integration. This package provides a clean, easy-to-use search interface that can be integrated into Django CMS projects.
|
|
50
50
|
|
|
51
|
+
> **Note**: This is a development version (0.0.2.dev1). The package is still under active development and may have breaking changes in future releases.
|
|
51
52
|
|
|
52
53
|
## Features
|
|
53
54
|
|
|
@@ -242,15 +243,19 @@ For support and questions, please open an issue on the [GitHub repository](https
|
|
|
242
243
|
|
|
243
244
|
## Changelog
|
|
244
245
|
|
|
245
|
-
### 0.0.
|
|
246
|
-
-
|
|
247
|
-
-
|
|
248
|
-
-
|
|
249
|
-
|
|
250
|
-
|
|
246
|
+
### 0.0.2.dev1
|
|
247
|
+
- Updated Django CMS configuration instructions for clarity
|
|
248
|
+
- Clarified Application ID setting (should be 'site_search')
|
|
249
|
+
- Improved documentation flow and user experience
|
|
250
|
+
|
|
251
|
+
### 0.0.1.dev1
|
|
252
|
+
- Initial development release
|
|
253
|
+
- Django CMS integration
|
|
254
|
+
- Pagination support
|
|
255
|
+
- Multi-language support
|
|
256
|
+
- Basic search functionality
|
|
251
257
|
- Template customization support
|
|
252
258
|
- Support for Python 3.6+ and Django 2.2+
|
|
253
|
-
- Reptile Search API
|
|
254
|
-
- Comprehensive documentation and setup instructions
|
|
259
|
+
- Updated API endpoint to use Reptile Search API
|
|
255
260
|
|
|
256
261
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.0.1'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/not-zip-safe
RENAMED
|
File without changes
|
{simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/requires.txt
RENAMED
|
File without changes
|
{simplesitesearch-0.0.1 → simplesitesearch-0.0.2.dev1}/simplesitesearch.egg-info/top_level.txt
RENAMED
|
File without changes
|