openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
AnkhSVN
Settings
|
Report Duplicate
386
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Very Low Activity
Commits
: Listings
Analyzed
13 days
ago. based on code collected
14 days
ago.
Jan 30, 2024 — Jan 30, 2025
Showing page 394 of 398
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Removed the dependencies on the odbc .libs in the build files for the mcpp projects. Added a rule to copy libraries into the build directory for tests
Arild Fines
More...
almost 22 years ago
Maded the nant.build files look for libraries in the lib directory
Arild Fines
More...
almost 22 years ago
M /src/NSvn.Core.Tests.MCpp/ClientContextTest.cpp - Changed TestAuthBaton to account for the fact that svn_auth_next_credentials now only take two parameters. M /src/NSvn.Core.Tests.MCpp/NSvn.Core.Tests.MCpp.vcproj -
Arild Fines
More...
almost 22 years ago
Moved the lib directory into the src directory
Arild Fines
More...
almost 22 years ago
Made the location of the subversion libraries a NAnt property. Use the arg tag to include the resources instead of the resources tag(the resource ended up in the wrong namespace)
Arild Fines
More...
almost 22 years ago
Added the assembly search path in NSvn.Core.build
Arild Fines
More...
almost 22 years ago
Added NAnt build files. Experimenting with Draco.NET continuous integration server
Arild Fines
More...
almost 22 years ago
Added a directory to keep external assemblies that needs to be referenced by the build process
Arild Fines
More...
almost 22 years ago
M /src/NSvn.Core.Tests/AddTest.cs - Added TestAwkwardName, TestAddDirectoryRecursively and TestAddDirectoryNonRecursively. Pulled up the NotifyCallback method. M /src/NSvn.Core.Tests/TestBase.cs - Added the TearDown method, which deletes the directories created. Added the NotifyCallback method, which was pulled up from AddTest. Added the CreateTextFile method which is a utility method to create a text file in the working copy.
Arild Fines
More...
almost 22 years ago
Made the test for Client::Add run M /src/NSvn.Core.Tests/AddTest.cs - TestBasic now checks svn st by calling GetSvnStatus M /src/NSvn.Core.Tests/TestBase.cs - Added the GetSvnStatus method, which returns the svn status code for a path by invoking svn st, and the RunCommand, which runs an arbitrary command and returns the output
Arild Fines
More...
almost 22 years ago
Started implementing Client::Add M /src/NSvn.Core/Stdafx.h - Put the #using NSvn.Common.dll in stdafx.h M /src/NSvn.Core/Client.cpp - Implementation of Client::Add, plus the class Initializer that ensures apr_initialize is called on startup. Also added the CanonicalizePath function, which for now merely converts backslashes to forward slashes in a path(svn expects forward slashes in its API) M /src/NSvn.Core/Client.h - Took the decl of Client::Add out of the commented out block. Added decl for CanonicalizePath A /src/NSvn.Core/SvnClientException.h - The SvnClientException class serves as base class for all exceptions thrown from NSvn::Client. Added a factory method FromSvnError which creates an exception from an svn_error_t* A /src/NSvn.Core/SvnClientException.cpp - Implementation of above M /src/NSvn.Core/NSvn.Core.vcproj - Added the above and belov NSvn.Core files AM /src/NSvn.Core.Tests/wc.zip - Contains a zipped working copy that is extracted before a test is run M /src/NSvn.Core.Tests/NSvn.Core.Tests.csproj - Added the above and below files. A /src/NSvn.Core.Tests/AddTest.cs - Contains a test class for Client::Add. For now the test is pretty trivial. M /src/NSvn.Core.Tests/TestBase.cs - Commented out the Main method M /src/NSvn.Core/ClientContext.cpp - Set ctx->config to an empty hash table in ToSvnContext
Arild Fines
More...
almost 22 years ago
Added the SvnException class, which will serve as a base class for all NSvn exceptions
Arild Fines
More...
almost 22 years ago
Changed the name of IPropertyEditor.Clear to Reset
Arild Fines
More...
almost 22 years ago
[no comment]
Arild Fines
More...
almost 22 years ago
Set the svn:keywords property to Id and added Id headers in all files
Arild Fines
More...
almost 22 years ago
M /src/NSvn.Core/ClientContext.cpp - Moved the implementation of ToSvnClientContextT here M /src/NSvn.Core/ClientContext.h - From here M /src/NSvn.Core.Tests.MCpp/ClientContextTest.cpp - Made it include ClientContext.cpp directly, since .NET assemblies do not export methods with native signatures
Arild Fines
More...
almost 22 years ago
Implemented the AuthenticationBaton -> svn_auth_baton_t conversion.
Arild Fines
More...
almost 22 years ago
Added two more tests; TestAlloc and TestPCalloc
Arild Fines
More...
almost 22 years ago
Added a pre-build event to copy the NSvn.Common.dll file into the output dir of the NSvn.Core.Tests.MCpp project. This makes all the tests run
Arild Fines
More...
almost 22 years ago
Moved the common using statements for the NSvn.Core.Tests.MCpp over into stdafx.h. Note that the TestToSvnContext test is currently broken.
Arild Fines
More...
almost 22 years ago
M J:/vcsharp/finalproject/src/NSvn.Common/IAuthenticationProvider.cs - Temporarily changed the signatures of the methods in the IAuthenticationProvider interface M J:/vcsharp/finalproject/src/NSvn.Common/Credential.cs - Changed the name of InvalidCredential to Credential M J:/vcsharp/finalproject/src/NSvn.Core/StringHelper.h - Added the CopyToPool method, which copies the string to an svn pool M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/StringHelperTest.cpp - Added test for the above M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/StringHelperTest.h - Ditto M J:/vcsharp/finalproject/src/NSvn.Core/Pool.h - Changed the name of Allocated to AllocateObject. Added the PCalloc and Alloc methods, which mirror the functionality of the respective apr functions M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/PoolTest.cpp - Tests for some of the above M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/PoolTest.h - Ditto M J:/vcsharp/finalproject/src/NSvn.Core/ClientContext.h - Added the first_credentials, next_credentials and save_credentials functions. Started implementing the CreateAuthBaton and CreateProvider methods. Code now uses the Alloc and PCalloc methods on the Pool class instead of the apr functions. M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/ClientContextTest.cpp - Started on tests for the above M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/ClientContextTest.h - Ditto M J:/vcsharp/finalproject/src/NSvn.Core.Tests.MCpp/NSvn.Core.Tests.MCpp.vcproj - Removed the TestEnums class
Arild Fines
More...
almost 22 years ago
A /src/NSvn.Core/svnenums.h - Contains mappings of svn enums to .NET enums A /src/NSvn.Core/Notification.h - An object containing the arguments to an notify callback function
Arild Fines
More...
almost 22 years ago
Ffixed bugs, and added new features.
Per
More...
almost 22 years ago
M /src/NSvn/AssemblyInfo.cs - Set the CLSCompliant attribute to true _M /src/NSvn.Core.Tests.MCpp - Set svn:ignore M /src/NSvn.Core.Tests.MCpp/ManagedPointerTest.h - A test for the ManagedPointer class M /src/NSvn.Core.Tests.MCpp/ManagedPointerTest.cpp - Ditto A /src/NSvn.Core.Tests.MCpp/PoolTest.cpp - A test for the Pool class A /src/NSvn.Core.Tests.MCpp/PoolTest.h - Ditto A /src/NSvn.Core.Tests.MCpp/ClientContextTest.cpp - A test for the ClientContext class A /src/NSvn.Core.Tests.MCpp/ClientContextTest.h - Ditto A /src/NSvn.Core.Tests.MCpp/NotificationTest.cpp - A test for the Notification class A /src/NSvn.Core.Tests.MCpp/NotificationTest.h - Ditto M /src/NSvn.Core.Tests.MCpp/NSvn.Core.Tests.MCpp.vcproj - Added new files _M /src/NSvn.Common - Set svn:ignore M /src/NSvn.Common/IAuthenticationProvider.cs - Added the method signatures for FirstCredential, NextCredential and SaveCredentials M /src/NSvn.Core/delegates.h M /src/NSvn.Core/ManagedPointer.h - Added copy ctor and assignment operator M /src/NSvn.Core/StringHelper.h - Added copy ctor and assignment operator. Changed to use xml comments. M /src/NSvn.Core/Pool.h - Made copy ctor and assignment operator private. Added the Allocate method. M /src/NSvn.Core/Client.cpp - Not much M /src/NSvn.Core/Client.h - Not much M /src/NSvn.Core/ClientContext.cpp - Moved implementation out of here M /src/NSvn.Core/ClientContext.h - Into here M /src/NSvn.Core/NSvn.Core.vcproj - Stuff _M /src/NSvn.Core.Tests - Set svn:ignore _M /src/NSvn.Core.Tests/bin - Ditto _M /src/NSvn.Core.Tests/bin/Debug - Ditto
Arild Fines
More...
almost 22 years ago
Worked with enabling/disabling buttons related to menu options selected. (Looked at regular expressions to validate revision number input)
Kristin
More...
almost 22 years ago
Included all the changes for the day.
Per
More...
about 22 years ago
Started designing the Viewlog dialog. Implemented basic functions.
Per
More...
about 22 years ago
Did some minor changes.
Per
More...
about 22 years ago
Redisigned radio buttons. Added filenames to radiobuttons text.
Per
More...
about 22 years ago
Continued implementations on following Forms. Changed design.
Per
More...
about 22 years ago
←
1
2
…
390
391
392
393
394
395
396
397
398
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree