Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
123 views

How to register Lua userdata correct from Delphi?

I am still confused about registering Delphi userdata to Lua. To teach me the principle I tried to implement a Date(Time) type. At the beginning this type should have three functions accessible to ...
6
votes
2answers
793 views

Does Microsoft have a best practices document regarding the storage of App Data vs User Data on different Windows Platforms?

When creating an application that will be targeted to many versions of Windows what is the best practice to determine where application specific data should be stored. Specifically: Application ...
5
votes
1answer
87 views

The right way to provide a Premium update to a free Android App

I have been developing a free game (with ads) on the Android Market. Now quite a few people are requesting me to do a paid version without ads. I have no experience in keeping multiple versions of a ...
4
votes
1answer
654 views

Python objects as userdata in ctypes callback functions

The C function myfunc operates on a larger chunk of data. The results are returned in chunks to a callback function: int myfunc(const char *data, int (*callback)(char *result, void *userdata), void ...
3
votes
2answers
3k views

How to read userData in jqgrid?

I need to pass userData to jqgrid, but can't find any examples of how to do this. Here's my attempt: Sent from the server: { total: 25, page: currentpage, userData: {foo: 'bar'}, rows: myRows ...
3
votes
2answers
728 views

What is a good definition of a “userdata pointer”?

I have searched for a good explanation but can't find one. I could try to write one myself but I'd prefer if someone with better english could help me explain this for Zan Lynx in the comment here. ...
2
votes
1answer
34 views

Saving user textarea contents into browser storage

I'd like to make an autosave feature, but without using server storage and flash. What's the preferred cross browser way to save a textarea, then recall it from browser storage? Internet explorer has ...
2
votes
2answers
69 views

Version control for user created text content

Problem: I am developing a website where users will create, edit and sell stories (basically text files). I want to implement a user-friendly version control for their texts (more or less like Google ...
2
votes
3answers
1k views

iPhone: Save user data in plist, SQLite or cookie?

My app (like most) is going to be leveraging many remote services... so when a user authenticates themselves, I need to store their username and password (or some kind of flag) so that they don't have ...
2
votes
1answer
562 views

codeigniter set_userdata not preserving types in session data

In CodeIgniter 1.7.3 when you use set_userdata to add boolean, integer, and string values, and then immediately read them back, the types are preserved. But if you redirect to another page and read ...
2
votes
1answer
2k views

Can jqGrid summary footer be populated without userdata server request?

I have poured through every question asked on this website related to populating the jqGrid summary footer WITHOUT the userdata being a server request. And the jqGrid wiki resource and just cannot ...
2
votes
2answers
417 views

lua userdata gc

Is it possible for a piece of lua user data to hold reference to a lua object? (Like a table, or another piece of user data?). Basically, what I want to know is: Can I create a piece of userdata in ...
2
votes
1answer
874 views

Copying files from emulator drive to sd card

I see how to mount an SD card in the emulator, but I'm not sure how you move files back and forth between the userdata image and the SD card image. Can someone tell me how to do this?
2
votes
2answers
429 views

SharePoint UserData and the ;# Syntax in returned data

Can a SharePoint expert explain to me the ;# in data returned by the GetListItems() call to the Lists web service? I think I understand what they are doing here. The ;# is almost like a syntax for ...
2
votes
1answer
2k views

Users/Public not writeable in windows 7: where do I put user data?

I've started to become a Good Citizen, as per this question here: http://stackoverflow.com/questions/1066782/domain-compatibility-where-should-shared-data-be-written My user information is now ...
1
vote
1answer
64 views

Can I access the “ME” contact in Windows Phone 7 (Silverlight)

I would like to get my hands on some of the phone owner's details like their picture (The one appearing on their "ME" tile. Preferably as a Microsoft.Phone.UserData.Contact Is this possible? Cheers, ...
1
vote
1answer
160 views

jqgrid click local data column sort (client-side only) wipes userData on grid refresh

I have a grid that is populated by a JSON response (MVC3 controller) that has a userData component for some additional data for grid captions, etc. All that works just fine. I recently switched the ...
1
vote
2answers
386 views

Accessing Light userdata in Lua

I may be misunderstanding their use or misread the documentation, but how do I access members of a struct or class passed to Lua as light userdata? For example if a vector using the following struct ...
1
vote
1answer
190 views

How to retrieve SharePoint user data using LINQ?

I am trying to retrieve data from list using LINQ, and have SPMETAl ran for the latest list version. All data from the list is successfully retrieved besides created by, created, modified by, ...
1
vote
3answers
5k views

asp.net mvc 3 - set global user data

How can I set global user data that retain some information like name, lastname, etc through pages? If I use session variable it expires before auth cookie thanks!
1
vote
1answer
177 views

Efficient custom datatype in Lua

I need a 2d vector-like data structure for use in Lua. So far I've found several solutions to this problem: Classic solution of defining the datatype in pure Lua -- the disadvantage is that all ...
1
vote
1answer
160 views

userdata of a CCNode

I have a CCMenuItemSprite that is instantiate to call a function: ` menuControl = [CCMenu menuWithItems: nil]; //Create the buttons for(int i=1;i<17;i++) { Button *B_image = [Button ...
1
vote
2answers
3k views

JSON and jqGrid. What is “userdata”?

I'm having trouble understanding what all of the fields in a JSON datasource for a jqGrid means and I am not seeing any documentation for it anywhere. The example I'm trying to understand is this: ...
1
vote
1answer
84 views

Getting a visitors Facebook page

Hey guys, this is more of a question out of curiosity, but is it possible to get somebody's Facebook page after they have visited your site? Was thinking maybe a chain of lookup stuff could be used ...
1
vote
1answer
887 views

In MVC app using JQGrid - how to set user data in the controller action

How do you set the userdata in the controller action. The way I'm doing it is breaking my grid. I'm trying a simple test with no luck. Here's my code which does not work. Thanks. var dataJson ...
1
vote
2answers
737 views

What is the difference between LocalUserAppDataPath and UserAppDataPath?

In System.Windows.Forms.Application there are two properties called LocalUserAppDataPath and UserAppDataPath. On this computer (running Vista) these corresponds to ...
1
vote
2answers
1k views

Save reference to Lua's userdata

Not really know how to ask so bare with me please :) #1 Lua: local test = Test(); #2 C: //creating "lua's test" luaL_newmetatable(L, "someTable"); lua_userdata *userData = (lua_userdata ...
1
vote
1answer
805 views

Lua bindings: table vs userdata

When making Lua bindings for C++ classes, should I return tables or userdata objects? Does anyone know any of the pros and cons for each method?
0
votes
0answers
20 views

I need to know how to recover/restore settings on the Android SDK Emulator

I'm running the Android SDK Emulator, and for some reason when I booted it up this morning, it is showing a configuration and settings that are almost a month old. My guess is that when I last closed ...
0
votes
1answer
63 views

How should I send userdata to jqGrid?

ok, here is the thing ... I've this jqGrid and what I need is to sumarize showed data. This jqGrid has definitions as shown bellow jQuery("#myGrid").jqGrid { url:'/loadGrid.php?q=2', ...
0
votes
0answers
27 views

What is the ownership of User Data if I use Facebook as one of the login methods

For example, my website use Facebook to login for a convenient way to signin, and also provide native login. And after Facebook login, I also ask additional information to fulfill the account info ...
0
votes
1answer
93 views

How do I use Selenium IDE to log in as Test User and edit data in “suggestor” fields?

I have created Facebook Test Users using the API. Facebook doesn't allow updates to User profile data, so I created a script for Selenium IDE to log in as each user and update data (work, education, ...
0
votes
1answer
67 views

unsetting some session data in codeigniter

I am saving some data in a session, and certain points in my websites, I am giving the user the option to removes certain parts of the session based on the array key, the array I get when I do, ...
0
votes
2answers
165 views

Wireshark dissector in Lua - userdata

I am new to Lua, and I am building a custom dissector for Wireshark. My situation is this: The wireshark data consists of hex numbers such as 4321 8765 CBA9. What I would like to wind up with is ...
0
votes
1answer
62 views

Start collecting user data after app has already been live for a while

I have a basic question about a facebook app I am building. In the first phase, we are building the app so that it doesn't collect any user information, thus keeping the user from having to click the ...
0
votes
0answers
31 views

ie7: saving webpage + form data for later use

I have a form on my page where people are able to fill in some different values. What i would like to know is if theres is any way for them to fill out the form when they are offline (with the page ...
0
votes
1answer
367 views

jqGrid custom formatter for userData

Is there any workaround to add custom 'formatter' to userData in jqGrid? i found this question and it helps me a lot. below is the code that i use to populate jqGrid. please note that i populate a ...
0
votes
1answer
74 views

read custom userdata in jqGrid

I already did much research and tried a lot, but didn't yet solve the following problem: The objective is to set a specific font color for some rows if a condition is true. The data for the condition ...
0
votes
1answer
866 views

Error 310 (net::ERR_TOO_MANY_REDIRECTS):

what is this error: Error 310 (net::ERR_TOO_MANY_REDIRECTS): There were too many redirects. i use of codeigniter and library SimpleLoginSecure, this my code: ...
0
votes
1answer
78 views

How do I set up a metatable to inherit from another metatable while at the same time chaning the userdata to another type?

This is something I want to do in C++ using the Lua C API. I'm trying to figure out a good way to make userdata derive from a base userdata object. I want to be able to do this: local item = ...
0
votes
1answer
164 views

Howto let a user change account data in 'Accounts and sync'

There is an existing account on the phone that is used for a sync service. The account has some settings that the user entered when he created the account. Theses settings are stored as user data (--> ...
0
votes
1answer
109 views

Add a method to userdata

I am trying to add a method to an existing userdata like this, this however game me an error. local userData = luajava.newInstance("Objects.Block") --creates a userdata from a Java class ...
0
votes
0answers
104 views

Plone 4.0.5 and collective.examples.userdata

Im trying to add member properties (e.g. mobile number). The mobile property shows up fine in the 2 select boxes (what to see when making new user), in dialog when adding new user and when viewing the ...
0
votes
1answer
504 views

FormsAuthentication: UserData lost (but in Cookie)

Asp.Net MVC 3 FormsAuthentication (custom) iPad MobileSafari iframe (same domain) After struggling with formsTicket.UserData not working with MobileSafari (ONLY MoblieSafari), I found out, that ...
0
votes
1answer
67 views

Anonymize user data completley

I am to build a Rails application (not that it actually matter what framework or language is used) that not only does not collect user data, but actively removes it from the server granting users ...
0
votes
1answer
264 views

Setting userdata as namespace in Lua

I have researched this subject and tried various approaches but I can't implement the behavior I have in mind (I'm not even sure it's possible). Basically, I have several userdata objects created in C ...
0
votes
1answer
292 views

View model for custom Userdata on the Layout page

My user is Authenticated but has extra information stored in a FormsAuthenticationTicket then a cookie. // Custom UserData will contain the following | seperated values: // [ FullName | ...
0
votes
2answers
1k views

Unable to populate JqGrid footer with userdata information

I am having a tough time to display footer information using jqGrid. I have followed all the necessary steps to setup footer. The server request is based on some filter condition. The server returns a ...
0
votes
1answer
127 views

CakePHP - How do I globally limit (C)RUD operations on data to the owner of that data?

I have a model where everything is associated somehow to a single user (e.g. User->Client->Profile). Now a user should only be allowed to (C)RUD on his data (only a profile's owner should be ...
0
votes
4answers
46 views

User logging: what dat should be retained?

Background: working a user q&a site where users logged,etc. What user/visitor data should be retained? ip address date/time etc

1 2