Skip to content

Commit

Permalink
Merge pull request #40 from unckan/38-about
Browse files Browse the repository at this point in the history
About
  • Loading branch information
avdata99 authored Dec 10, 2024
2 parents bf240a7 + 441e78c commit eea1a33
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 18 deletions.
Empty file.
16 changes: 0 additions & 16 deletions ckanext-unckan/ckanext/unckan/templates/home/about.html

This file was deleted.

2 changes: 1 addition & 1 deletion docker/ckan/files/ckan.ini
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ ckan.site_title = UNCKAN
ckan.site_description = CKAN para Universidades
ckan.site_intro_text = "Reemplaza este texto en ckan.site_intro_text"
ckan.site_logo = /base/images/logo_unc_abierta.png
ckan.site_about = "Reemplaza este texto en ckan.site_about"
ckan.site_about = "UNCKAN"
ckan.theme = css/main
ckan.datasets_per_page = 20
package_hide_extras =
Expand Down
2 changes: 1 addition & 1 deletion docker/ckan/setup/prerun.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def create_sysadmin():
command = ["ckan", "-c", ckan_ini, "user", "show", name]

out = subprocess.check_output(command)
if b"User:None" not in re.sub(b"\s", b"", out):
if b"User:None" not in re.sub(b"\\s", b"", out):
print("[prerun] Sysadmin user exists, skipping creation")
return

Expand Down

0 comments on commit eea1a33

Please sign in to comment.