|
Borland Starteam: How to re -check-in a file from a frozen labeled configuration to current configuration with history?
Started by GanYo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If the file does not exist in the current configurationYou....
configuration (View->Select Configuration->Current Configuration) and check-in your file (you will have of the history between the label and your check-in.
|
|
Hi all, I need a good config file format. I plan on putting to table schema. Like symfony, ruby on rails, etc. What is the best file format for configuration file ? Yaml or XML or JSON encoded file ? Which is the best for this purpose ?
Started by Zeck on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
(this is if you're using" [MyPlugin] var1....
My preference is
well documented php file database for user specific configuration just then simply parse the INI file and use your configuration settings like that.
Version 2.6+.
|
|
I have an XML file that contains database settings that may change depending on where it is read. Preferably, I would read those settings from some configuration file. How can this be done?
Started by echoblaze on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Stackoverflow.com/questions/114527/simplest-way-to-have-a-configuration-file-in-a-windows-forms-c-applicationYou can either use the app.config file, or create your own XML file to store them
http = cereals.Deserialize(filestream....
|
Ask your Facebook Friends
|
What is the easiest way to get started with log4j configuration?
Started by flybywire on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
There are a ton of configuration options, and once you learn and understand what's possible.
Put a file named log4j.properties in the root of your classpath:
log4j.rootLogger = ALL, Console the obvious).
|
|
I am creating a framework in PHP and need to have a few configuration files. Some of these files will unavoidably have a large number of entries.
What format would be the best for these config files?
Here is my quantification of best:
Easily parsed by...
Started by macinjosh on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
How about an INI file format? It's a de facto configuration file standard, other for production....
Why don“t you use a PHP file for the configuration?
The benefits are clear:
possible errors it a lot for configuration.
|
|
Hi all,
I am sure that the above question has a straightforward answer but I couldn't easily find it (neither in the documentation nor on stackoverflow.com)
I got the notion that a BeanFactory/ApplicatioContext can be initialized with several bean configuration...
Started by Yaneeve on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You may also want to try this:
ApplicationContext context = new", "validators.xml... .
Mark's answer is fine.
This describes how a configuration file configuration file.
See section 3.2.2.1 in the Spring Reference documentation.
|
|
I am new to Hudson and was wondering if there is a way to check in Hudson's configuration files to source control.
Ideally I want to be able to click some button in the UI that says 'save configuration' and have the Hudson configuration files checked ...
Started by Yuval on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Issues for this:
HUDSON-996 Put configuration under RCS for tracking changes HUDSON-2765 Plugin: Job Configuration History HUDSON-845 job configuration and history Check out a recent post on the Hudson blog:
Keeping your configuration....
|
|
I'd like to reference an external configuration (e.g., *.ini) file that will allow me to set configuration variables for each deployment of my Air application. Unfortunately, I haven't been able to find any information on the best way to approach this...
Started by Huuuze on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's the implementation of the small xml idea:
var....
It might be possible to jam it inside the application .
If you got a lot of configuration options there might be an idea to look a small xml file and parse it with E4X.
I the api docs.
|
|
I have this python code for opening a .cfg file, writing to it and saving it:
import ConfigParser def get_lock_file(): cf = ConfigParser.ConfigParser() cf.read("svn.lock") return cf def save_lock_file(configurationParser): cf = configurationParser config...
Started by perrierism on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If both places call get_lock_file , then cf.set(...) , and then save_lock_file the same file you could have....
To readLooks good to me.
Temp>
Just to note that configuration file handling is simpler with ConfigObj.
|
|
I have a few .net modules/libraries I am referencing from my main application. Each of the modules/libraries can be configured and after I build them they each have a configuration file such as MyModule1.dll.config, MyModule2.dll.config.
When I build ...
Started by Fadeproof on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
My only advice here is to go with whatever....
file.
Then all your configuration is in one place.
People who use your libraries file.
And then reference those files in the main application's configuration file.
|