This file contains hidden or 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
| diff --git a/admin/tool/dbtransfer/cli/migrate.php b/admin/tool/dbtransfer/cli/migrate.php | |
| index 0d32e2ae..dea01740 100644 | |
| --- a/admin/tool/dbtransfer/cli/migrate.php | |
| +++ b/admin/tool/dbtransfer/cli/migrate.php | |
| @@ -49,6 +49,10 @@ Options: | |
| --dbport=NUMBER Database port. | |
| --prefix=STRING Table prefix for above database tables. | |
| --dbsocket=PATH Use database sockets. Available for some databases only. | |
| +--dbcollation=COLLATION Use database collation for mysql/mariadb | |
| +-r, --retry=BOOLEAN Retry to copy tables. If the number of records is the |
This file contains hidden or 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
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", | |
| "copyFormatting": "none", | |
| "copyOnSelect": true, | |
| "defaultProfile": "{5d7ce2e3-c26e-47a1-b9e6-fe449aaf75d0}", | |
| "initialCols": 150, | |
| "initialRows": 40, | |
| // Add custom keybindings to this array. | |
| // To unbind a key combination from your defaults.json, set the command to "unbound". | |
| // To learn more about keybindings, visit https://aka.ms/terminal-keybindings |
This file contains hidden or 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
| { | |
| "manifest_version": 2, | |
| "name": "Nextcloud for Filelink", | |
| "description": "Nextcloud provider for Thunderbird Filelink", | |
| "version": "1.8", | |
| "author": "Olivier Paroz", | |
| "homepage_url": "https://github.com/nextcloud/nextcloud-filelink", | |
| "legacy": { | |
| "type": "xul", | |
| "options" : { |
This file contains hidden or 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
| # Usage: scoop install-vector <app> [options] | |
| # Summary: Install apps | |
| # Help: e.g. The usual way to install an app (uses your local 'buckets'): | |
| # scoop install git | |
| # | |
| # To install an app from a manifest at a URL: | |
| # scoop install https://raw.githubusercontent.com/ScoopInstaller/Main/master/bucket/runat.json | |
| # | |
| # To install an app from a manifest on your computer | |
| # scoop install \path\to\app.json |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Select and export SSH_AUTH_SOCK | |
| # | |
| # @author Jun Futagawa | |
| LIST=$(ls -t /tmp/ | grep ssh-) | |
| SUFFIX=" (latest)" | |
| declare -a SSH_AUTH_SOCK_ARRAY=() |
This file contains hidden or 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
| #!/bin/bash | |
| # | |
| # Merge tool for rpmnew file | |
| # | |
| # @author Jun Futagawa | |
| RPMNEW_FILE="$1" | |
| DEFAULT_FILE="$2" | |
| if [[ -z "${RPMNEW_FILE}" ]]; then |
This file contains hidden or 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
| import org.ofbiz.core.entity.EntityUtil | |
| import com.atlassian.jira.component.ComponentAccessor | |
| import com.atlassian.jira.permission.ProjectPermissionCategory | |
| import com.atlassian.jira.scheme.SchemeEntity | |
| def projectManager = ComponentAccessor.getProjectManager() | |
| def permissionManager = ComponentAccessor.getPermissionManager() | |
| def permissionSchemeManager = ComponentAccessor.getPermissionSchemeManager() |
This file contains hidden or 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
| import com.atlassian.jira.component.ComponentAccessor | |
| import com.atlassian.jira.issue.IssueManager | |
| import com.atlassian.jira.issue.MutableIssue | |
| import com.atlassian.jira.issue.comments.Comment | |
| import com.atlassian.jira.issue.comments.CommentManager | |
| String issueKey = 'CHURA-XX' | |
| IssueManager issueManager = ComponentAccessor.issueManager | |
| CommentManager commentManager = ComponentAccessor.commentManager |
This file contains hidden or 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
| import org.ofbiz.core.entity.EntityUtil | |
| import com.atlassian.jira.component.ComponentAccessor | |
| import com.atlassian.jira.permission.ProjectPermissionCategory | |
| def projectManager = ComponentAccessor.getProjectManager() | |
| def permissionManager = ComponentAccessor.getPermissionManager() | |
| def permissionSchemeManager = ComponentAccessor.getPermissionSchemeManager() | |
| def permissionCategories = [ |
This file contains hidden or 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
| import java.util.List; | |
| import org.junit.Test; | |
| import org.mixer2.Mixer2Engine; | |
| import org.mixer2.jaxb.xhtml.Article; | |
| import org.mixer2.jaxb.xhtml.Body; | |
| import org.mixer2.jaxb.xhtml.H1; | |
| import org.mixer2.jaxb.xhtml.Html; | |
| import org.mixer2.jaxb.xhtml.P; | |
| import org.mixer2.jaxb.xhtml.Section; |