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
2
votes
1 answer

Android Studio - Common Codebase

So I recently migrated to Android Studio from Eclipse. For the most part, it's better, but I haven't found a good way to maintain a shared codebase between multiple projects. What I want to do is be able to share some code between several of my…
Cybran
  • 83
  • 1
  • 1
  • 8
2
votes
2 answers

Using IntelliJ IDEA to maintain one codebase for free/paid version of app

I need some insight/suggestions/pointers (as detailed as possible) to implement a free and paid version of my android app. I use IntelliJ IDEA for development with SVN. My aim is to maintain one code base which implements ads or paid features by…
TrustNoOne
  • 585
  • 1
  • 5
  • 15
2
votes
2 answers

CodeIgniter Multi-site Setup

I am trying to create multi-site platform using codeigniter. Requirements are: - Same Codebase. - Same Database. Just wanted to know how to achieve multi-site platform if we use same database/codebase? Is there any way we can create separate…
Imran Ali
  • 372
  • 5
  • 16
2
votes
0 answers

Understand a complex code base using a sequence diagram

I am working on a big project with a complex codebase written in java. I want to understand a particular piece of code and i thought getting a sequence diagram of the entry point method would give me a good idea. I use intelliJ and i looked for a…
2
votes
1 answer

Managing a large codebase in Node.js

I am about to embark on a Node.js project with a fairly large codebase. I would prefer to keep my code separate from node_modules. I would ideally like to work with namespaces and folders as I think it would be a nice way to manage things. However,…
Cheetah
  • 13,785
  • 31
  • 106
  • 190
2
votes
1 answer

Handle a same codebase, different app versions in git

I developed a general application, because I need to create some very similar app. I tried to separate the differences, so I have a settings.xml. But it’s not enough because sometimes I need to change the code in a version, but I really want to have…
user2313423
  • 745
  • 3
  • 7
  • 12
2
votes
1 answer

RMI Activation Strange problem

I am trying to get an RMI activatable server to work - but no luck so far. Actually the server seems to run, but the client triggers a strange exception. I have 3 projects: client common server Common is shared code between client and server…
JohnIdol
  • 48,899
  • 61
  • 158
  • 242
2
votes
2 answers

Can't get AllPermission configured for intranet applet. Can anyone help?

After doing a lot of reading and testing I've been unable to give all permissions to an intranet applet through the codeBase grant option. This applet need full permissions because it will have to acess driver libs for OCR readers (which also write…
MadeiraA
  • 23
  • 1
  • 5
2
votes
1 answer

How to embed a java applet located under a different system path

I am trying to use an applet that is located in a jar that is located somewhere else in my system (not in the same project location as the web stuff). I know of a property called codebase which is pointing to where the web for look for the jar that…
Scott
  • 174
  • 5
  • 19
2
votes
3 answers

rmi class can not found exception

I wrote an simple project using java rmi and exported to an executable jar file. When I tries to run it, sometimes i got exceptions and sometimes it works. When I specify -Djava.rmi.server.codebase=file:serverClasses/, it seems it didn't create the…
Progress Programmer
  • 7,076
  • 14
  • 49
  • 54
2
votes
3 answers

Criteria for choosing refactoring instead of a complete re-write

I'm working on a project which has a codebase of about 3500 files probably a few hundred less than that actually. This project is made in PHP and is a quite messy, in this case it means that the documentation is hard to understand OOP and procedural…
Daniel Figueroa
  • 10,348
  • 5
  • 44
  • 66
1
vote
1 answer

Javascript_Java_Interaction applet "Codebase" problem

I saw an article about Javascript_Java_Interaction today at : http://www.rgagnon.com/javadetails/java-0184.html [ You can try the working version on that site ] So I tried it on my PC, after some simple format change the files look like this…
Frank
  • 30,590
  • 58
  • 161
  • 244
1
vote
1 answer

Tomcat Deploy fail in free.hostingjava.it

I am using free.hostingjava.it for my application, but when try to deploy the web app, it gives me an exception: Caused by: java.security.AccessControlException: access denied (java.lang.RuntimePermission…
Edgar Rios
  • 11
  • 1
1
vote
1 answer

How to create website specific configuration files while running multiple ASP.NET websites on a single code base?

I want to create 2 websites on a single code base in asp.net. lets for say : www.domain1.com www.domain2.com I need to keep all the appsetting key name sames but with different values for each of the websites.So i need to maintain two web.config…
Rupendra
  • 608
  • 2
  • 11
  • 42
1
vote
2 answers

Why does my App.Config codebase not help .NET locate my assembly?

I have the following client application and its corresponding config file: namespace Chapter9 { class Program { static void Main(string[] args) { AppDomain.CurrentDomain.ExecuteAssembly("AssemblyPrivate.exe"); …
pkolodziej
  • 1,347
  • 3
  • 17
  • 24