-
Notifications
You must be signed in to change notification settings - Fork 140
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
Improvements for user pages #1590
Open
Daniel-KM
wants to merge
44
commits into
omeka:master
Choose a base branch
from
Daniel-KM:feature/user_sites
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Daniel-KM
force-pushed
the
feature/user_sites
branch
2 times, most recently
from
September 18, 2020 13:52
23a791a
to
3cf4e42
Compare
Rebased. |
Resource values improvements
All the overrides are already public and things are assuming that the method just generally is public.
Before we just checked if the object's class name was in an array of valid class names. This does not work when the object is a Doctrine proxy. To fix this, we check if the object is an instanceof one of the valid class names.
Update Font Awesome library to version 5.15.4.
Check instanceof when validating value resource
Makes "required" fields more robust, and fixes usage of elements that Laminas defaults as required (here we're defaulting to not-required). (fix omeka#1779)
The page title for sites was hardcoded to H2. Now one can change it to suite their needs.
Title is passed unescaped. Escaping takes place in the view.
Addd block layout template for page title
Allow theme config to set server-side required
* Remove references to unused regular and brands fonts. * Rename fontawesome sass files so they do not generate css. * Default to 900 font weight.
Adds site permission form elements to add-user and edit-user forms. Permissions are based on batch editing
Daniel-KM
force-pushed
the
feature/user_sites
branch
from
January 6, 2022 12:18
3cf4e42
to
a0493c2
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a merge/simplifications/improvements of various previous pull requests to allow to display and manage sites and site permissions in user pages. Includes #1133, #1186, #1537, #1538, #1539 .