Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
14k views

WPF: Bind an element to two sources

I currently have two text boxes in which accept any number. I have text block that takes the two numbers entered and calculates the average. I was wondering if there was a way I could bind this text ...
9
votes
5answers
4k views

NetBeans doesnt open project from existing sources

I've installed NetBeans 6.9.1 and installed few updates for it (Help -> Check for Updates). Then i've created a new project from existing sources. After few changes i've closed it. And now i am ...
5
votes
5answers
608 views

Why in maven project layout resources are kept separate from java sources

Why maven keeps resource in a separate "source folder" from the java sources? From my experience, in Java the resource files are mostly treated like java source files, which, when "compiled" just ...
4
votes
1answer
472 views

How to get sources for Grails dependencies

How can I get Ivy to download the sources for dependencies from within Grails? I tried editing all the ivy.xml files I could find as per [1], but no luck. ...
4
votes
3answers
374 views

What is the best way to parse C++ class architecture in Python?

I want to parse c++ sources in Python. Namely, information about the structure of the classes. I need to construct some object in Python that should contain information about c++ class. Something ...
3
votes
3answers
680 views

Using gdb with remote sources

I'm mostly developing C++ applications with g++ on solaris 10, x64 boxes. These applications are built and deployed with symbols, but without sources on the remote site. When debugging you can then ...
2
votes
1answer
1k views

How can I get Android 2.2.1 sources?

I have a repository created with git clone git://android.git.kernel.org/platform/frameworks/base.git But I don't see any specific branch for 2.2.1 version git branch -r The output origin/HEAD ...
2
votes
4answers
3k views

repo sync problem

i am a beginner to android development... i was trying to get the sources for the 1.6 release... but the repo sync operation keeps hanging... i am pasting the last part of the message i get on the ...
1
vote
1answer
511 views

Rails generate: rack not in source

I use Rails 3.0 on Ruby 1.9.2 with RVM. When I try to use 'rails generate', I get the following error: Could not find rack-1.2.2 in any of the sources It also gives me the following warning: NOTE: ...
1
vote
3answers
135 views

Need a design pattern for representing multiple information sources

I'm building a Java application that retrieves information from differing information sources. I'm using a sensor, a set of RecordStores and a few online web services. In the basic application all ...
0
votes
1answer
32 views

Use sources for android on desktop application

I have a number of classes for working with SQLite database, XML and etc. for Android application. Its necessary to make builds of application before releasing new version to Android Market. It ...
0
votes
1answer
27 views

Curl multiple sources [closed]

i need something that will run multiple URLs multiple times. Something like: for ($i=0; $i<4; $i++) { for ($j=0; $j<5; $j++) { // run source // wait } } I cannot use ...
0
votes
1answer
38 views

Where can I download the sources jar for geronimo-commonj_1.1_spec-1.0.jar

The sources jar for geronimo-commonj_1.1_spec-1.0.jar is not found in the maven repo. Where would I be able to download the sources jar/zip?
0
votes
1answer
206 views

Hang on “Loading Kernel Image …”

I took the kernel configuration file from the rowboat sources for the Beagleboard xM DM3730 and used that to successfully compile a uImage of the kernel included in the Cyanogenmod kernel sources ...
0
votes
2answers
149 views

maven assembly plugin - correct use of the exclude term

short: I need to filter all java Files and every META-INF Folder from a set of jars and package the class files and resources into one single jar. I currently use the maven assembly plugin, but am ...
0
votes
1answer
270 views

Compile iReport 4.0.2 from sources with NetBeans 6.5.1 java.io.IOException

I am trying to compile iReport 4.0.2 with NetBeans 6.5.1. On the iReport forums it says that this is the NetBeans platform to which it is compatible. However, I get this error when compiling the ...
0
votes
1answer
82 views

[DisplayTag]Install and configure DisplayTag with Eclipse

I download the last sources : displayTag (v1.2) and I try to configure it with Eclipse but I don't succeed. Maven configuration seems to be ok : I build the jar correctly but when I open a Java Class, ...
0
votes
0answers
19 views

.xdp renderer for ipad programming

Is there way to display .xdp files in ipad programming ? I need to store the file .xdp, editable PDF in a server and just pull it out through program to display it in the application. Please help. ...
0
votes
0answers
399 views

How to dynamically change event sources for fullCalendar (jQuery)?

I am using the jQuery FullCalendar plug-in. I want to load initially the calendar with events as an array. I am doing this like: events: <%= Model.Events %> or eventSources: [{ ...
0
votes
1answer
183 views

How to tell automake that a dependency is generated and thus in builddir and not in sourcedir

I wonder if I can tell automake that a dependency is generated and thus in builddir and not in sourcedir? In my case the generated dependencies look like this: $ head -n2 .deps/dynamic.Po ...
0
votes
1answer
308 views

RPMBUILD //SOURCES

I'm trying to build a RPM for barnyard2-1.9, but when I attempt it I receive this error. These are the last few lines of the rpmbuild output: /usr/bin/install -d -p ...
0
votes
1answer
39 views

in apt-get sources file, what is the “binary” dist?

According to http://pkg.hudson-labs.org/debian , I need to add the following line to my sources.list file: deb http://pkg.hudson-labs.org/debian binary/ But what does the "binary" part mean? The ...
0
votes
3answers
155 views

Java Generic DataSource aggregation framework

I there a framework that i can use to wrap various datasources and make the datasource specific details transparent to the client. Eg a wrapper that can wrap both a jackrabbit content repository and a ...
0
votes
1answer
282 views

maven can't add files in generated-sources for compilation phase

I use thrift to generate code in target/generated-sources. The thrift compiler produces a directory named "gen-java" contains all the java code. When I execute "mvn compile", the code is generated ...
0
votes
1answer
174 views

2 instances same class

Hi everybody I created a main class which displays a frame, then two JPanel are created and pointed. It is supposed for those Jpanel to give a visual display of some values incoming via ...
0
votes
1answer
589 views

Enterprise Library Logging Application Block different sources

We have many assemblies (class libraries) which our main application uses. I want to route the logs of some assemblies to different destinations, but I have one App.Config file, so how may I achieve ...
0
votes
2answers
912 views

Makefile in top level directory and sources in the subdirectories problem

I have a directory called "project". It contains two sub-directories called "client" and "server" and a makefile called "Makefile". client and server have got source files called "client.c" and ...
0
votes
2answers
2k views

MVC. Strongly-typed view difference (MVC sources vs. assembly)

I'm trying to create a strongly typed partial view <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...