Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin-settings
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
af3
plugin-settings
Commits
2969c2f4
Commit
2969c2f4
authored
14 years ago
by
Florian Hölzl
Browse files
Options
Downloads
Patches
Plain Diff
added subversion config and README
parent
1b10c778
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fortiss-std-env/settings/README
+23
-0
23 additions, 0 deletions
fortiss-std-env/settings/README
fortiss-std-env/settings/config
+97
-0
97 additions, 0 deletions
fortiss-std-env/settings/config
with
120 additions
and
0 deletions
fortiss-std-env/settings/README
0 → 100644
+
23
−
0
View file @
2969c2f4
This folder contains eclipse and subversion configurations.
Note that changes to these files should be approved by the quality assurance team.
Changing the first file requires all users to update their local copy manually.
Changing the Eclipse preference files takes effect after users update their
checked out copy.
File Description
config Subversion configuration to be copied to your personal subversion
directory (e.g. ~/.subversion/config, %USERPROFILE%\Application Data\Subversion\config)
@see_also "https://cwiki.apache.org/GMOxDEV/subversion-client-configuration.html"
org.eclipse.jdt.core.prefs
org.eclipse.jdt.ui.prefs
Eclipse Java Properties to be used in each fortiss plugin. This changes project settings
of the project, so everyone who checked out that project works with the same setting.
INSTALL: in order to enable these settings for your plugin, follow these steps:
1. Make sure the plugin folders ".settings" sub-folder is also checked in.
2. If the sub-folder contains these two files, delete them (from the repository, too).
3. Add or change the svn property "svn:externals" of ".settings" folder to include the
following two lines (this creates a file link to the two files contained in this
README's folder):
^/fortiss-std-env/settings/org.eclipse.jdt.core.prefs org.eclipse.jdt.core.prefs
^/fortiss-std-env/settings/org.eclipse.jdt.ui.prefs org.eclipse.jdt.ui.prefs
This diff is collapsed.
Click to expand it.
fortiss-std-env/settings/config
0 → 100644
+
97
−
0
View file @
2969c2f4
[helpers]
### Set editor to the command used to invoke your text editor.
### This will override the environment variables that Subversion
### examines by default to find this information ($EDITOR,
### et al).
editor-cmd = emacs
### Section for configuring tunnel agents.
[tunnels]
### Configure svn protocol tunnel schemes here. By default, only
### the 'ssh' scheme is defined. You can define other schemes to
### be used with 'svn+scheme://hostname/path' URLs. A scheme
### definition is simply a command, optionally prefixed by an
### environment variable name which can override the command if it
### is defined. The command (or environment variable) may contain
### arguments, using standard shell quoting for arguments with
### spaces. The command will be invoked as:
### <command> <hostname> svnserve -t
### (If the URL includes a username, then the hostname will be
### passed to the tunnel agent as <user>@<hostname>.) If the
### built-in ssh scheme were not predefined, it could be defined
### as:
# ssh = $SVN_SSH ssh
### If you wanted to define a new 'rsh' scheme, to be used with
### 'svn+rsh:' URLs, you could do so as follows:
# rsh = rsh
### Or, if you wanted to specify a full path and arguments:
# rsh = /path/to/rsh -l myusername
### On Windows, if you are specifying a full path to a command,
### use a forward slash (/) or a paired backslash (\\) as the
### path separator. A single backslash will be treated as an
### escape for the following character.
### Section for configuring miscelleneous Subversion options.
[miscellany]
### Set global-ignores to a set of whitespace-delimited globs
### which Subversion will ignore in its 'status' output, and
### while importing or adding files and directories.
global-ignores = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store build dist target
### Set log-encoding to the default encoding for log messages
# log-encoding = latin1
### Set use-commit-times to make checkout/update/switch/revert
### put last-committed timestamps on every file touched.
# use-commit-times = yes
### Set no-unlock to prevent 'svn commit' from automatically
### releasing locks on files.
# no-unlock = yes
### Set enable-auto-props to 'yes' to enable automatic properties
### for 'svn add' and 'svn import', it defaults to 'no'.
### Automatic properties are defined in the section 'auto-props'.
enable-auto-props = yes
[auto-props]
*.c = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.cpp = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.h = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.dsp = svn:eol-style=CRLF
*.dsw = svn:eol-style=CRLF
*.sh = svn:executable;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
.cmd = svn:mime-type=text/plain;svn:eol-style=CRLF
*.bat = svn:mime-type=text/plain;svn:eol-style=CRLF
Makefile = svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.obj = svn:mime-type=application/octet-stream
*.bin = svn:mime-type=application/octet-stream
*.bmp = svn:mime-type=image/bmp
*.class = svn:mime-type=application/java
*.doc = svn:mime-type=application/msword
*.exe = svn:mime-type=application/octet-stream
*.gif = svn:mime-type=image/gif
*.gz = svn:mime-type=application/x-gzip
*.jar = svn:mime-type=application/java-archive
*.jpg = svn:mime-type=image/jpeg
*.jpeg = svn:mime-type=image/jpeg
*.pdf = svn:mime-type=application/pdf
*.png = svn:mime-type=image/png
*.tgz = svn:mime-type=application/octet-stream
*.tif = svn:mime-type=image/tiff
*.tiff = svn:mime-type=image/tiff
*.zip = svn:mime-type=application/zip
*.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.tex = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.xml = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.ent = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.dtd = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.xsd = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.xsl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.wsdl = svn:mime-type=text/xml;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.htm = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.html = svn:mime-type=text/html;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.css = svn:mime-type=text/css;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.js = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.jsp = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.txt = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.java = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.properties = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
*.sql = svn:mime-type=text/plain;svn:eol-style=native;svn:keywords=Date Author Id Revision HeadURL
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment