Questions tagged [externals]

84 questions
0
votes
1 answer

Necessary Apache Redirect to handle absolute svn:external references after a url change

So our Subversion server changed. And with it came a necessary url change, from https://hostname of the previous machine, to a more apt https://svn. Problem is, a lot of the externals use the absolute https://hostname/blah/blah/blah rather than…
0
votes
0 answers

Git submodules as svn externals

We have set of libraries (C++ classes) in our SVN repository. I would like to move them to git, but a problem has arised. Now we incorporate classes into project as svn externals in form: ^/classes/classdir1@1234 class1 ^/classes/classdir13@81…
MoonWolf
  • 91
  • 1
  • 2
  • 7
0
votes
1 answer

How to edit svn externals of a folder using powershell

In order to do a build, I checkout a svn repository which has multiple folders.One of folders has properties -> svn externals pointing to a particular tag number, I need to edit the svn externals to point to a different tag number. I want to pass…
Bhaskar
  • 153
  • 1
  • 3
  • 11
0
votes
0 answers

C++ Unresolved External Function Call

I can't figure out why I'm getting this error. I'm guessing it's because I'm not implementing a function. The Error: Error 2 error LNK2019: unresolved external symbol "private: void __thiscall CGKPRDlg::DisplayError(unsigned long)"…
user4342836
  • 43
  • 2
  • 10
0
votes
1 answer

Run replace command on svn:externals (python)

I am currently writing a python script which needs to run a sed command to replace stuff from the svn:externals data. I tried to run sed on "svn propedit svn:externals ." but the outcome is not the one expected. Does anyone know how to do this ?
Scipion
  • 11,449
  • 19
  • 74
  • 139
0
votes
1 answer

Using SVN for shared codebase with custom content

I have a website that I need to deploy to about 30 customers. They are all the same apart from the branding. Using SVN, I would like to have one base version of the product, and then just the different branded content (images, CSS) for each…
Poinsy
  • 1
  • 1
0
votes
1 answer

Is Subversion's 'Lazy Copy' still lazy when overwriting a previously deleted file?

Is Subversion's 'Lazy Copy' still lazy when overwriting a previously deleted file? I store my externals in a separate folder for each version: i.e say for dojo I'd have: webroot\ scripts\ dojo-v-1.0.0\ dojo-v-1.1.0\ etc. By doing this, for…
JW.
  • 4,821
  • 5
  • 43
  • 60
0
votes
0 answers

Fatal Error LNK1120

So I have checked some of the other posts about this error but I can't seem to track down the issue within my own code. I am working with three separate files. When I call functions in one file, they cause the error. From what I can tell everything…
0
votes
0 answers

Unresolved external errors when using OpenGL

My knowledge of C++ is fairly basic, and I cannot find a solution to my problem anywhere. I'm trying to write a simple OpenGL program, but I cannot seem to even get myself started. Here is my main soure file: #include #include…
Aaron Eads
  • 63
  • 4
0
votes
1 answer

svn externals check for new revisions

We have some externals definitions in our project. The externals are defined with a revision number (we want to keep it that way and don't want to use the head-revision). What we are looking for is some kind of notification that is triggered when a…
rherzog
  • 51
  • 9
0
votes
1 answer

How set external gem into project using svn?

I need to add gem into vendor folder as external using SVN. Path to add gem /vendor/gem_name. Path to svn repo path_to_svn_repos/gem_name/trunk I try to do it, but it remove all another externals and add my gem :( I need to append this gem to…
bmalets
  • 3,207
  • 7
  • 35
  • 64
0
votes
2 answers

Trying to create a pre-commit hook that verify externals

I am currently trying to create a pre-commit hook that prevent user to tag a version of code with external that are not tags. I am just trying to figure out a way to get the external that are specify in a transaction but cant figure out how. The…
wincrasher
  • 121
  • 1
  • 10
0
votes
2 answers

C++ unresolved externals

im writing a game and I have a problem resulting "C++ unresolved externals" ** My Classes:** Terrain.h Class Terrain {}; PhysicsObject.h Class PhysicsObject {}; Physics.h #include PhysicsObject Class Physics : public PhysicsObject { public: …
0
votes
3 answers

SVN externals that are not accessible

I have tried to find some information to my problem, but no luck. So hoping you can help me. Following scenario: We are working on a project with a customer and have an shared SVN-Repository (where our customer has access). Additionally we have an…
joerg
  • 717
  • 2
  • 8
  • 18
0
votes
0 answers

Convert svn externals with copy of corresponding branches

I have a project with many externals, with often branching. When branching I use http://svnxf.codeplex.com to freeze externals to specific revision. But after this impossible to commit in frozen external. Is there a way to automatically replace this…
Alex T
  • 2,067
  • 4
  • 20
  • 27