Questions tagged [codebase]

The term codebase, or code base, is used in software development to mean the whole collection of source code used to build a particular application or component.

The codebase for a project is typically stored in a source control repository. A source code repository is a place where large amounts of source code are kept, either publicly or privately. They are often used by multi-developer projects to handle various versions and developers submitting various patches of code in an organized fashion. Subversion and Mercurial are popular tools used to handle this workflow, and are common in open source projects.

152 questions
1
vote
1 answer

Exception: access denied ("java.net.SocketPermission" "localhost:80" "listen,resolve")

Using Eclipse Kepler (Windows 7) for a project which opens a ServerSocket on localhost, port 80. I use a security manager with a policy file located at: C:\Users\John\Developpement\workspace\security\my.policy In Eclipse, for the project launch…
mins
  • 6,478
  • 12
  • 56
  • 75
1
vote
2 answers

Git codebase repo to live site

So created a website on my localhost. And I pushed to codebase, and I want push it to live, how do I do that? here is my order: 1. $ git init (setup on my local) 2. $ git add . 3. $ git commit -m 'initial commit' 4. $ git remote add origin…
test
  • 2,429
  • 15
  • 44
  • 81
1
vote
1 answer

Rmi client not using the codebase

I've been programming rmi for a while, and after like a month I'm still stuck on a tricky issue. I want to send a Serialized object from a server to a client and I want the client to download the class of this object from the server codebase. I…
1
vote
2 answers

JNLP error, code shown is different not as it is in my JNLP

This is the JNLP file showed in pop-up-error after launching application. I know where is the problem - on line 21 there is no slash. But this file was far ago changed and i uploaded it on to server and refreshed everything but it is always showing…
1
vote
0 answers

ClassNotFoundException Applet code after updating JRE 1.7u45

My applet is working fine with JRE1.6. Here is the HTML that defines Applet tag:
baizen
  • 304
  • 6
  • 14
1
vote
2 answers

java.rmi.UnmarshalException: unable to pull client classes by server

I have an RMI client/server set-up on two machines that works fine in a simple situation when the server doesn't require a client-side defned class. However, when I need to use a class defined on the client side I am unable to have the server…
andrewz
  • 4,729
  • 5
  • 49
  • 67
1
vote
4 answers

how to use C# debugger (or anything else) to examine what happens during a GUI event in an open source app?

imagine that you are given a big nice app in C#, with full source code. So you want to figure out what methods are executed when you do a user event, e.g. press a button or press a hotkey or whatever. The codebase is so big that you don't feel like…
1
vote
2 answers

How can I upload to GitHub through Putty?

I'm very new to GitHub and I'm trying to figure out how I can upload to GitHub through Putty. I am using Windows 8 and am using a Linux environment through Putty. I was following this guide:…
Mdjon26
  • 2,145
  • 4
  • 19
  • 29
1
vote
0 answers

Tools and tips on migrating a large user-defined JavaScript codebase?

I help develop and manage software in which (among other things) users can provide their own JavaScript scripts to run macros and the like. We're using Mozilla Rhino in a Java context. We have quite a large "API", wherein there are a variety of well…
1
vote
2 answers

How do you sync changes between multiple codebases?

Let's say I want to create a spinoff of a chat application branded under a different name, different UI, and some changed features. How would one sync changes between these to codebases which are 80% the same? EDIT: Already use git.
Mark Bao
  • 896
  • 1
  • 10
  • 19
1
vote
1 answer

Animate commits inside IDE to learn codebase, an idea?

Go back in time in the codebase and see the commits as an animated explanation of how the codebase was formed. a great way to get into a open source project? For insance if you could play this inside Eclipse, so that the comments the time and the…
user175099
  • 41
  • 2
1
vote
2 answers

Building dynamic HighCharts and image Highcharts with (mostly) one codebase?

We're already creating dynamic HighCharts for our webpages--these have a few javascript dependencies and a chart-generation script. We'd like to start creating PDFs of these charts using the new HighCharts/Node/PhantomJS suite HighCharts has rigged…
AlexMA
  • 9,842
  • 7
  • 42
  • 64
1
vote
2 answers

How to find the code related to a small UI component quickly in a large Android codebase?

I just started my work as an Android developer. My first assignment is to fix several bugs of an App call DailyFinance. One bug is UI related, if you click a button on a certain page, a dialog will pop up, but the dialog is not displayed properly.…
0xmars511
  • 143
  • 1
  • 9
1
vote
1 answer

Merge without Branching from the same code-base?

We had this small development project which hadn't been managed using version control system. Two people were working on the original code-base,so that there were two slightly different copies of the original code-base. Say these copies "copyA" and…
Ashika Umanga Umagiliya
  • 8,988
  • 28
  • 102
  • 185
1
vote
3 answers

Share code base for WP7 and WP8

I'm working on architecture of new business application targeting WP7 and WP8. For WP7 we will use silverlight app model and want to be prepared to reuse the code while moving to WP8 (we will want to use additional features on WP8). Since WP8 will…
Sergei Grebnov
  • 2,633
  • 18
  • 24