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
<!-- save this file as %PROGRAMFILES%\PlasticSCM5\client\remoting.conf or /opt/plasticscm5/client/remoting.conf --> | |
<configuration> | |
<system.runtime.remoting> | |
<application> | |
<channels> | |
<channel type="Codice.Channels.PlasticTcpChannel, plastictcpchannel" name="normal"> | |
<clientProviders> | |
<provider type="Codice.Channels.ClientSinkProvider, plastictcpchannel" /> | |
<formatter ref="binary" /> | |
</clientProviders> |
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
<!-- NOTE: Replace "@@VERSION@@" by the installed PlasticSCM server version. Example: Replace "@@VERSION@@" by "5.4.16.619" --> | |
<ScriptActions> | |
<Actions> | |
<SetStatus Msg = "Downloading Plastic SCM installer (@@VERSION@@) ..." /> | |
<SetDistraction Msg = "" /> | |
<SetProgress Value = "20" /> | |
<Download |
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
svnrepo=https://SVNSERVER/svn/REPO | |
plasticserver=PLASTICSERVER:PORT | |
for project in `svn ls $svnrepo`; do | |
project=${project%/} # strip final slash | |
echo Processing project $project... | |
echo --------------------------------------------------- | |
# check if repo already exists at Plastic server | |
grepcount=`cm lrep | grep -c $project`; | |
if [ "$grepcount" == "0" ]; then | |
git svn clone $svnrepo/$project --stdlayout |
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
<log4net> | |
<appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> | |
<file value="plastic" /> | |
<staticLogFileName value="false"/> | |
<appendToFile value="false" /> | |
<rollingStyle value="Date" /> | |
<datePattern value="yyyyMMdd-HH".log.txt"" /> | |
<layout type="log4net.Layout.PatternLayout"> | |
<conversionPattern value="%date %-5level %logger - %message%newline" /> |
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
<log4net> | |
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender"> | |
<layout type="log4net.Layout.PatternLayout"> | |
<conversionPattern value="%date %-5level %thread %logger - %message%newline" /> | |
</layout> | |
</appender> | |
<appender name="FileAppender" type="log4net.Appender.FileAppender"> | |
<file value="cm.log.txt" /> | |
<appendToFile value="true" /> |