The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

How do I disable AppleMail's testing if smtp server is online?

AppleMail seems to checking if smtp servers are online by default. However, virus scanners/and intrusion detections script check for hosts tying to access SMTP servers. The combination is causing our ...
1
vote
1answer
43 views

bash command line arguments replacing defaults for variables

I have a script which has several input files, generally these are defaults stored in a standard place and called by the script. However sometimes it is necessary to run it with changed inputs. In ...
0
votes
1answer
114 views

Use Shell Script to write to plist Dictionary child Boolean

I'm trying to modify a system plist in an Platypus script-based app (Mac), though I have a feeling my question may have a more general answer. The question is: What is the correct Terminal syntax for ...
0
votes
1answer
126 views

Xcode User Defaults unrecognized selector error

I'm getting started to use User Defaults on Cocoa and I'm getting an [NSConcreteData alphaComponent]: unrecognized selector sent to instance 0x100123660 error. Here is the source code : ...
0
votes
1answer
390 views

Python 2.7 - Read and/or write options to ini file

i need some help with some (basic) python code: from ConfigParser import SafeConfigParser import os inifile=os.path.basename(__file__)+".ini" def GetOption(Section, Option, Default): while True: ...
1
vote
4answers
226 views

Default Values for function parameters in Python [duplicate]

Possible Duplicate: default value of parameter as result of instance method While it is possible to set default values to function parameters in python: def ...
0
votes
0answers
75 views

Value stored to 'defaults' during its initialization is never read

Value stored to 'defaults' during its initialization is never read I get this error on the first line of code about not reading but I am reading the saved settings and if I remove this line, the code ...
1
vote
2answers
256 views

How to change the default browser in Windows?

I have created a simple browser in c# for a couple family members. I want to set it as the default browser either from an installer or from the program. I want to do the same thing as Chrome or ...
2
votes
1answer
59 views

How to specify a function as the default of a scriptblock parameter in a PowerShell function?

Given these powershell functions where foo takes a scriptblock as parameter: function bar($name) { "Hello World $name" } function foo([scriptblock]$fun={}) { &$fun "Bart" } Is it ...
1
vote
3answers
55 views

Html override settings

I have my css file set up so that this happens for all pages on my site: body,html{ height:100%; } div#right{ height:100% } I want one page to be an exception. How do I override and use the ...
0
votes
1answer
154 views

defaults write help (Mac)

I am trying to set a preference for Firefox to open in 32bit mode on 130 macs via Apple Remote Desktop. The easiest way to do this usually is with defaults write unfortunately I havent found any ...
0
votes
1answer
51 views

jQuery plugin defaults containing complex objects

Is the following definition of defaults bad practice? var defaults = { name:'', surname:'', address:{ part1:'', part2:'', postCode:'' } }; If only part1 in ...
0
votes
1answer
198 views

Set default meeting length on iOS?

This appears to be the command to set the default meeting length for iCal events: defaults write com.apple.iCal 'Default duration in minutes for new event' X Where X is 30 means that the default ...
2
votes
1answer
366 views

python argparse augment sub-command defaults via global options

I would like to be able to use the global options from an argparse.ArgumentParser object to override/augment the defaults values for a sub-command. An example would be that displayed help reflects ...
1
vote
1answer
70 views

setting pcregrep color default

i know you can set grep color defaults using the environment variables $GREP_OPTIONS and $GREP_COLOR, but i can't seem to find any way to set the default color options with pcregrep... i have export ...
1
vote
1answer
1k views

How to change the default version of python in a linux machine ?(not just symlink) [closed]

I have multiple versions of python installed in ubuntu (precise) for various reasons and uses. I have python 2.7 and python 2.6. I need to make python 2.6 the default and not python 2.7. I updated ...
0
votes
3answers
194 views

In Mercurial, how to run original command if default arguments are present?

I have configured hg log in ~/.hgrc to only list commits from the current branch by default: [defaults] log = --branch . However, occasionally I'd like to really see commits from all branches. Is ...
2
votes
0answers
75 views

Override plugin options default values

$.fn.formreg=function(options){ options = $.extend({}, $.fn.formreg.defaults, options); return this.each(function() { var $this = $(this) ; }); }; $.fn.formreg.defaults={ ...
0
votes
1answer
199 views

Apache Thrift: Assign default values to enclosed struct

In an IDL file, I have struct CaseInfo { 1: CaseID = '', 2: EvID = 'foobar', } struct Case { 1: CaseInfo CaseInfo, 2: string key = '', } When an instance of a Case object is ...
0
votes
4answers
281 views

How to reset PHP array to its default keys and values

I have PHP array: $curl_options = array( CURLOPT_PORT => 80, CURLOPT_CONNECTTIMEOUT => 10, CURLOPT_TIMEOUT => 30 ); Then I add new elements and change some values: ...
0
votes
1answer
308 views

Default error messages in grails

I want to know where Grails sets default error messages. For example I've got this one in my message.properties file. When I try to save data with wrong value, this message appears. But I can't ...
0
votes
1answer
621 views

Clear laucher defaults programaticaly

I am trying to delete default laucher parameters (to let user choose another app) with android.permission.SET_PREFERRED_APPLICATIONS. I googled that this is not possible, but there is a kidzone app ...
0
votes
2answers
674 views

Datatables jquery plugin - setting defaults

I'm trying to set default configurations to be used everytime the datatable plugin is called, but it is not working. The defaults are just ignored. Example: $.extend($.fn.dataTableExt.defaults, { ...
0
votes
2answers
98 views

Error with using defaults in copy constructor of a templated class

I have the following templated classes, template <typename Real> class Marker { typedef Wm5::Vector3<Real> Position ; typedef Wm5::Vector3<Real> Normal ; typedef ...
0
votes
1answer
162 views

jQuery plugin multiple instances not receiving default settings

I'm currently writing a plugin and have run into and issue that, from searching stackoverflow, have an idea of what's wrong, but no clue how to code it. The plugin is really long right now, so I've ...
1
vote
1answer
945 views

Defaults in Symfony2 routing not being passed properly

I am currently trying to configure a routing option in Symfony2 so /cms will route to /cms/role/view. However, the passing of defaults doesn't seem to work properly. ...
0
votes
2answers
99 views

WP7 Default dates

I have released an app which,. within its functionality displays date and time strings. I am aware of the differing formats across cultures - however in some cases I had hardcoded values- for example ...
2
votes
2answers
606 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){ ...
1
vote
3answers
95 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! ...
0
votes
2answers
34 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. ...
2
votes
1answer
1k 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 ...
6
votes
6answers
2k 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 ...
3
votes
1answer
1k 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 ...
0
votes
2answers
531 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
557 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 ...
3
votes
5answers
76 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 ...
4
votes
3answers
356 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 ...
0
votes
1answer
232 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
36 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
177 views

Non-zero default value in constructor [duplicate]

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 ...
2
votes
1answer
384 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: ...
0
votes
1answer
272 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
222 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 ...
10
votes
1answer
4k 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; } } ...
0
votes
1answer
245 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 ...
3
votes
1answer
134 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 ...
1
vote
1answer
81 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? ...
1
vote
1answer
196 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 ...
0
votes
4answers
1k 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 { ...
2
votes
2answers
274 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 2