I've been working with a document repository using XQuery (via Java and .NET interfaces) and was wondering if anyone has any recommendations for unit testing XQuery modules?
We have a code base composed of many projects. Currently each time we add a project on SVN we must reconfigure CruiseControl to start build and test on such project.
I'm looking for a tool (better if open source) able to scan the SVN repository and find new projects by itself.
A project can be "a SVN folder containing trunk, tags, branches subfolders".
Even better if the tool supports multistaged continous integration and build on demand.
Thanks
I'd like to embed code from my SVN repository into my website, using PHP. The SVN has public anonymous access, so the PHP code should be fine reading it.
The code on said SVN is java, and so far I've had no luck finding a syntax-highlighter to make the code more readable. Ideally I'd like one that uses CSS classes so that I can change the colors to match the look of the website.
Could someone point me to a PHP library that highlights Java code?
I need to allow access to an svn repository using email addresses as the user name. I can log in to the server over ssh no problem by changing the email address "@" to a "$" like so:
ssh [email protected]
Unfortunately, the same does not work for svn+ssh. This gets me nowhere:
svn ls svn+ssh://[email protected]/home/accountname/data/svn/repos
Anyone know how this is usually done?
Hi there.
I don't know exactly how it happened, but I have a versioned ".svn" directory
in my repository. Don't ask me how it got there.
If I tell svn to delete it, it does not want to, since .svn is a reserved argument.
Force does not work.
Any ideas?
Do you compile your code before committing it to the repository, even when you only change a few comments? I know comments are typically ignored by compilers, but I find myself doing this often out of habit.
I would like to see if the working copy will fit onto my hard drive and don't want to waste time and bandwith.
So my question is: Is it possible to determine the size of the working copy before checkout?
I do have access to the repository, but its filesize does not say anything.
We have a problem in cloning a repository created in unix in to a Windows box.
Git fails while checking out a lengthy file that has more than 32 characters in windows.
The file name is given below.
BaseFCS_x0020_OnLine_x0020_Identicheck_x0020_verification_x0020_serviceConsumer.java*
Is there a way to fix this issue in Git?
I'm trying to locate the "throbber" (or "spinner") image used in the Firefox 3.6x chrome to show that a request is being processed:
I'm not familiar with the source code structure for Firefox, and a simple search hasn't yielded the answer.
Does anyone know which file I'm looking for? (E.g. can you provide a link to the file in the Mercurial repository, or tell me how to find it?).
This is sort of a follow-up to this question.
If there are multiple blobs with the same contents, they are only stored once in the git repository because their SHA-1's will be identical. How would one go about finding all duplicate files for a given tree?
Would you have to walk the tree and look for duplicate hashes, or does git provide backlinks from each blob to all files in a tree that reference it?
I have made a simple batch file for backing up my repository changes and rebuildig, but it always stops executing after the backup command is run. Have anyone here ever seen this happen before?
What are some non commercial deployment tools that allows a developer to speficy:
a branch/tag,
a revision and a
target machine to deploy code to?
I was wondering if there's a ccnet plugin of some sort that would allow the above to be specified.
I know this could be done with a NAnt deploy script. However considering we're mostly using gui tools for feedback, plus the tortoise svn repository browser, it be cool to lear if there's an GUI simple GUI tool/plugin
cheers.
I'm designing an image repository. I want to uncouple the filename from the image html link. For instance:
image in filesystem is called images/items/12543.jpg
HTML is <img src="images/car.jpg" />
Does anyone strongly discourages me to rewrite all image requests using PHP so when retrieving images/car.jpg, Apache really replies content from images/items/12543.jpg?
I don't know if I may get performance problems.
How can I check if I have any uncommitted changes in my git repository:
Changes added to the index but not committed
Untracked files
from a script?
git-status seems to always return zero with git version 1.6.4.2.
I had to restructure the projects in SVN as it was not added as per the recommended repository structure (no tags, branches and trunk folders). However after moving projects to the new structure we have lost the history of all the files.
How can I get back the history of all the files?
I want to be able to create a python decorator that automatically "registers" class methods in a global repository (with some properties).
Example code:
class my_class(object):
@register(prop1,prop2)
def my_method( arg1,arg2 ):
# method code here...
@register(prop3,prop4)
def my_other_method( arg1,arg2 ):
# method code here...
I want that when loading is done, somewhere there will be a dict containing:
{ "my_class.my_method" : ( prop1, prop2 )
"my_class.my_other_method" : ( prop3, prop4 ) }
Is this possible?
Is it possible to push to 2 or more remote repositories at the same
time?
I only want to mirror the main repository, where most if not all the
pulls will come from.
Hi,
I have generated a public key, private key pair.
I've set the public key to the site.
How to use the console in windows to clone a git repository?
What do I do with the private key?
I keep getting: the remote end hung up unexp.
Thanks
I need to build a Java app with considerable IO requirements, supporting tens of thousands of concurrent TCP connections.
I found a library called Raining Sockets which seems intended to make it easier to use Java's asynchronous NIO package, but the last update was 6 years ago.
Are there other libraries, that are preferably still under active development, and with a public maven repository, that I should look at?
Oops! It seems I did something wrong the last time I merged two branches in my repository:
This was far from what I was expecting. Is there a way to arrange this mess and obtain something like the following? What did I did wrong?
Hi, I'm importing a project into a svn repository using netbeans 6.8, and there's a whole subtree I don't want to import. Is there an efficient way to exclude it or will I just have to go file by file telling it to skip them ?
Thanks
I'm hosting my own svn repository on ubuntu 8.04. Is there a way for svn to send emails to team members whenever a commit has happened?
If coding is required, the only language I'm able to use on a linux server is PHP. So I could write a php script to be triggered by svn.
Can anyone tell me how to hook up my php script to an svn commit? Or is there another way to do this?
I have the following project layout:
MVC UI
|...CustomerController (ICustomerRepository - how do I instantiate this?)
Data Model
|...ICustomerRepository
DAL (Separate Data access layer, references Data Model to get the IxRepositories)
|...CustomerRepository (inherits ICustomerRepository)
What's the correct way to say ICustomerRepository repository = new CustomerRepository(); when the Controller has no visibility to the DAL project? Or am I doing this completely wrong?
Hi,
I am running a subversion service on my localhost, I want users on the LAN to be able to access this repository without being prompted for username and password. Is there any way to do this.
I'm working with Maven pom files, and I don't wish to source control iml files.
When I open a project, IntelliJ seems to add some of the iml files it creates to the SVN source control. How can I prevent this?
I have "*.iml" in an "svn:ignore" property on the repository root, but it doesn't seem to prevent IntelliJ from adding the imls.