Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
423 views

Storing Hidden Values in HTML (for tooltip, error, defaults) Best Practices

I just saw this JQuery Metadata Plugin by John Resig, Yehuda Katz, Jarn Zaefferer, and Paul McLanahan, in my search for JQuery Form Validation, and that's an interesting idea! I'm wondering what ...
4
votes
6answers
170 views

In C# how do I deserialize XML from an older object into the updated object and ignore missing xml elements?

What I have is a custom settings file that I serialize/deserialize using an XmlSerializer. I have no schema defined and no serialization tags in my object definition, just straight object ...
4
votes
2answers
1k views

Enable/Disable Fn keys from the command line on the Mac

I hardly ever use the function keys on my macbook pro. I mostly just use them for volume, brightness, etc. Now that I've started playing Starcraft 2 a bunch, I want to use them without having to press ...
3
votes
5answers
62 views

How to change method defaults in Python?

I'm building a class, Child, that inherits from another class, Parent. The Parent class has a loadPage method that the Child will use, except that the Child will need to run its own code near the end ...
3
votes
3answers
114 views

Why not force explicit fall-through rather than explicit break for switch statements?

This is not specifically a C# question but it is the C# version of switch that makes me ask the question. Why do I have to explicitly state that I do not want to fall through from one case statement ...
3
votes
1answer
100 views

Is there a Perl interface to Mac OS X defaults?

Mac OS X has an application called defaults which allows one to set and retrieve application configuration variables. Is there a Perl module which allows me to read/write these configuration ...
3
votes
3answers
209 views

function name($param, $line = __LINE__, $file = __FILE__) {};

Is it possible to have a function automatically contain the line number and the file that the function was CALLED in, as if i call __LINE__ or __FILE__ in the function it will use the line and file ...
3
votes
2answers
425 views

How to configure defaults for a parameter with multiple values for a Maven plugin

I'm writing a Maven plugin and I am using default values for all parameters such as this: /** * The file with the site structure. * * @parameter expression="${generateSite.siteFile}" ...
2
votes
1answer
68 views

Reload com.apple.Terminal.plist

I want use a script to modify the preferences of my terminal for my Mac, so it can close the window when exit the terminal. I use this command in the script: /usr/libexec/PlistBuddy -c "Set \"Window ...
2
votes
1answer
150 views

Python: Get user input by letting user edit default value

I've got a script that pulls text from a Web server. I want to give the user (me) an opportunity to edit that text so they can select which part to keep. Ideally, it would be something like this: ...
2
votes
1answer
543 views

Sass variable default scope

I have a problem with using variable defaults in Sass across scopes. My test example is: @mixin foo { $val: 'red' !default; .bar { color: $val; } } ...
1
vote
3answers
29 views

JQuery Accessing Variables in a Plugin

How can I access and set variables in a plugin from document ready. I have found some related questions here on stackoverflow but they didn't help me understand how this can be done. Thank you! ...
1
vote
1answer
110 views

jQuery Plugin settings on multiple instances

I have a problem with settings on multiple instances on a jquery plugin. If I cast my plugin multiple times and alert them on an onclick binding, it always alerts the same parameter. This is my ...
1
vote
1answer
103 views

Change sizing defaults for data types in SSIS

I have a SSIS package with approximately fifty data flows in it that interacts with an Oracle database. We changed data types in Oracle database for about 55 tables / 300+ columns from FLOAT to ...
1
vote
2answers
125 views

Cross-platform configuration, options, settings, preferences, defaults

I'm interested in peoples' views on how best to store preferences and default settings in cross-platform applications. I primarily work in Perl on *nix and Windows but I'm also interested in the ...
1
vote
2answers
112 views

What are the defaults(homepage,controller,etc..) for cakePhp?

I understood (more or less) the separation between the MVC parts in cakePhp, however i cannot understand what are the defaults. meaning: What should i edit in order to change the root-entry-point of ...
1
vote
0answers
218 views

Context-Dependent Model Defaults in Rails from link_to

What's the standard for applying default values to Rails models from links? Here's the situation: There is a model in Spree called ProductGroup, which is a collections of settings defining how to ...
0
votes
2answers
27 views

JQuery Plugin Defaults and Options

How can I turn the following properties / variables in my plugin into defaults and options that can be set from document ready? // plugin js: (function($){ $.fn.myPlugin = function(options){ ...
0
votes
2answers
21 views

Development of a Drag and Drop Plugin

I'm starting to become a plugin creator and don't fully have the hang of it. One problem is I would like to make an default where you have two numbers. And I need to be able to apply them to the code. ...
0
votes
2answers
157 views

<Solved> Qt 4.7 Programming: Start (or don't start) an Application at StartUp [Mac OS X 10.6.2]

I am trying to add my application in start up of Mac OS X. I tried some few ways, but wasn't able to get the result as I want. Methods I tried are as follows: defaults write ...
0
votes
1answer
147 views

Android: How to initialize defaults from XML used by multiple PreferenceActivity instances?

I have multiple PreferenceActivity classes because My main PreferenceActivity XML is essentially an index into multiple kinds of preferences. I am looking for help on how to set the preference ...
0
votes
1answer
122 views

Instance variable not returning a value in iOS application

This problem might be related to Instance variable not retaining value in iOS application. My application has a table view that's supposed to be populated with data from a plist. The plist is ...
0
votes
1answer
24 views

Managing Defaults in Stored Procedures' Parameters

I am working in a DB which has about 10 DEFAULT constraints scattered by two or three different tables, and I need to write a stored procedure which receives as parameters values for all these ...
0
votes
1answer
102 views

Non-zero default value in constructor [closed]

Possible Duplicate: Undefined / Uninitialized default values in a class I have a class in C++ that is created and destroyed fairly often. For debugging, I've added a bool mDebug to the ...
0
votes
1answer
109 views

Xcode 3.2.5: Make “Treat Warnings as Errors” and “Run Static Analyzer” both true for new projects

The Problem Every time I create a new project in Xcode I have to go to Project > Edit Project Settings and navigate to Treat Warnings as Errors and Run Static Analyzer to turn them on. For the life ...
0
votes
1answer
68 views

Reset a subset of columns to their default values in SQL?

I'm looking for a SQL statement or stored procedure to reset the values for a subset of columns in a row to their default values (where so defined) or else to null. There are other columns in the row ...
0
votes
1answer
126 views

iPhone - upgrading from old app preferences

If I build a 1.0 app with 2 strings in the defaults, using registerDefaults. And in a 2.0 version, I decide to remove the first old string, and move the second one (changing its key string) with a new ...
0
votes
1answer
50 views

Does Visual Studio have a setting for saving the swap panes when viewing xaml?

I am constantly swapping panes when viewing xaml (xaml on top, design on bottom or not showing at all). Is there a place in Visual Studio where I can set a default for how I want to view xaml files? ...
0
votes
4answers
213 views

Overriding the Defaults in a struct (c#)

Is it possible to set or override the default state for a structure? As an example I have an enum something{a,b,c,d,e}; and a structure that links 2 values for that enum struct SomethingData { ...
0
votes
1answer
131 views

how to change the default project directory in visual studio 2008

My home directory is located on a rediculously slow network drive. I don't want visual studio to store my files there. It is sluggish, and automaticaly storing auto-restore data freezes visual studio ...
0
votes
1answer
27 views

counteracting existing styles

I have a div with a padding, created and styled by Javascript. This div is created on a page with the following CSS rule: div { width: 100%; } This messes up, as it changes the width of my ...
0
votes
0answers
257 views

Where is the default language data stored in OS 10.6

From a shell in 10.4 or 10.5, I was able to do this: /usr/bin/defaults read NSGlobalDomain AppleLanguages To get the list of the language preference for that particular machine. This was done so ...
0
votes
1answer
1k views

Python ConfigParser lists defaults for variable substitution as if they were part of config values

I'm using ConfigParser to load in data from a configuration file as follows: test.conf: [myfiles] fileone: %(datadir)s/somefile.foo filetwo: %(datadir)s/nudderfile.foo load.py: import ...
0
votes
1answer
1k views

Rails RESTful Routes: override params[:id] or params[:model_id] defaults

I'm trying to understand how to change this rule directly on the map.resources: supposing I have a route: map.resource :user, :as => ':user', :shallow => true do |user| user.resources ...