Questions tagged [project-layout]

22 questions
1
vote
0 answers

How to avoid base class redefinitions when using Cython to expose C++ classes with inheritance to Python

I am trying to use a library written in c++ from Python. The library consists of multiple classes that are inherited from a base class, each class has its own .cpp and .h files. When using Cython to get access to those classes (I only need the child…
Heinrich
  • 113
  • 1
  • 12
1
vote
2 answers

Python project deployment design

Here is the situation: the company that I'm working in right now gave me the freedom to work with either java or python to develop my applications. The company has mainly experience in java. I have decided to go with python, so they where very happy…
Diones
  • 1,425
  • 2
  • 19
  • 26
1
vote
1 answer

Intra-package references in python and GUI tests

I have problem concerning python packages and testing. I'm writing an application using wx python and have the following basic folder/package structure for the gui parts. The mainframe.py window has a dependency to the logpane.py panel, which is…
Rickard
  • 1,754
  • 1
  • 12
  • 17
1
vote
2 answers

Project Layout and Site Structure in ASP.NET MVC

I'm new to ASP.NET MVC and would like to create and deploy a website using ASP.NET MVC. I have a few old sites that run classic ASP and the site-structure goes like this: web.root (holds website pages) data.files (holds databases) log.files (log…
Jemes
  • 407
  • 1
  • 10
  • 27
1
vote
2 answers

codeigniter where to put common js php code

I have a site developed in codeigniter. In many page of my site I have more equal function javascript/jquery with some string in PHP like this: function change_city_by_nation(nation_id){ var site_url_city ="
Alessandro Minoccheri
  • 35,521
  • 22
  • 122
  • 171
0
votes
0 answers

How to prevent output folder from being showed as possible target (autocomplete)

I've created a small project with the following file structure: . +---include +---StringUtils.h +---Utils.h +---src +---StringUtils.cpp +---Utils.h +---bin +---libutils.so Makefile bin/libutils.so is built with make (both the…
Vlad
  • 519
  • 4
  • 13
0
votes
1 answer

How do I handle symbolics links in projects under source control?

We have several php projects. The projects use the Zend Framework and we also maintain a common core library with various functions. Right now my directory structure looks like this project-1 \application \model …
1
2