Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
176 views

ASP.Net profiles: difficulty setting up and using profile fields

I'm currently trying to use ASP.Net Profiles to store additional user information about users that register on our site. Relevant sample code: UserProfile.cs public class UserProfile: ...
5
votes
1answer
2k views

Maven Change a value in a file based on profile

I have a properties file called ApplicationResources.properties in my application with a property that changes depending on the environment. Let us say the property is: ...
3
votes
4answers
588 views

Maven: Depending on inheriting artifact causes build error

Given three POM files: C depends on B. B inherits from A. I can build A and B C fails to build because of its dependency on B. The full source-code and build output is included below for your ...
3
votes
2answers
885 views

maven profile dependency

I have a maven module with 2 profile profile-a and profile-b profile-a can be used independent but profile-b should be run with profile-a mvn install -P profile-a // valid mvn ...
3
votes
1answer
191 views

Maven build for different profiles

We're trying to migrate from current Ant build to Maven. In the current project, we've different properites files for each of the env say qa.properties, prod.properties & dev.properties. The ...
3
votes
4answers
747 views

Django registration and multiple profiles

I'm using django-registration in my application. I want to create different kinds of users with different profiles. For example, one user is a teacher and another user is a student. How can I modify ...
3
votes
2answers
2k views

iPhone App IDs and Provisioning… Does App ID get used instead of provisioning ID if I decide to use Push?

This is a question that has been bugging me for a while. I started my app (now submitted -- not yet approved) not wishing to get into the mess that is APNS (Push). I did the following: iPhone ...
3
votes
3answers
676 views

Place to store user settings in Sharepoint besides profiles

Is user profiles an appropriate place to store things like number of items per page in a custom grid user selected? (I you can store it in the view, but it won't be per user this way). My first ...
2
votes
2answers
61 views

Custom domain name mapping to user profile.

Currently, user profiles are in the format of website.com/username which is fine. However, some heavier users wish to use custom domain names. This is similar to Tumblr. Users are given a subdomain of ...
2
votes
2answers
168 views

How to show content only made by user in user profile? PHP / MySQL

I'm new in programming. I hope somebody will help me out with this one. I have a website with user profiles. Users can simply write articles. Currently all articles from every user are displayed in ...
2
votes
1answer
171 views

Mixing .NET assemblies (.NET 3.5 and .NET 4.0 Client profile)

We would like to deploy our application targeting the .NET 4.0 Client profile because I believe it is now deployed on most Windows 7 PCs. Some of the components we use do require .NET 4.0 so its not ...
2
votes
1answer
60 views

I'm having difficulty working out how to do permissions for my Django models? (not admin)

I have a range of models for my Django project. Everyone with a login has a Profile. A Profile will have certain permission access to the different parts of the website... Be able to view or edit ...
2
votes
3answers
317 views

Which Django/Pinax app should I use? There are so many, and I just want the simplest one

I want a "settings" page where the user can submit his hometown/biography/email settings and upload his avatar We will be building a mobile app that uses HTTP Rest API to update the user's profile, ...
2
votes
1answer
339 views

How to build multiple configurations of an artifact (e.g. WAR etc.) with Maven?

due to the modular nature of some of our current applications, we have a need to understand how to setup Maven to produces mutliple configurations of the same artifact (in our case a WAR file), ...
2
votes
2answers
588 views

How to create a profile php code?

I just started with PHP and my SQL databases, I have learned how to create databases, and create register forms that store the information on the databases, but I do not know how to keep people from ...
2
votes
1answer
121 views

How to create different asp.net User Profiles

Is possible define different profiles a the same time? I have two type of users in my web site and they have different properties. Using asp.net profile is possible to define two or more profiles with ...
2
votes
4answers
640 views

Django - how to write users and profiles handling in best way?

I am writing simple site that requires users and profiles to be handled. The first initial thought is to use django's build in user handling, but then the user model is too narrow and does not contain ...
2
votes
2answers
4k views

Maven server authentication as profile properties

I am trying to setup a shared authentication system on a build server. We have several maven projects that declares how the deployment should be done regarding the different teams that we have (each ...
1
vote
1answer
48 views

Generating custom WAR archives with Maven profiles

I need to produce different WARs from a Maven project, according to values that vary between profiles. For some files, I have default values that may be overwritten by configuration. For example, I ...
1
vote
2answers
37 views

Required fields in user profiles in Django

I'm following Beginning Django E-Commerce but I found a part regarding user profiles a bit perplexing. Basically, I have an abstract class like this: class BaseOrderInfo(models.Model): class Meta: ...
1
vote
3answers
65 views

Builds for different platforms the Maven way

I have a project with a submodule a:jar which needs a different set of dependencies, depending for which platform it is compiled. The code is the same for all platforms. E.g. on Android the ...
1
vote
5answers
121 views

Maven: Selecting Parent Project Based On Profile

I have a maven project - it is a plugin for jenkins. It's parent should be a: <parent> <groupId>org.jenkins-ci.plugins</groupId> <artifactId>plugin</artifactId> ...
1
vote
1answer
167 views

RoR: Devise and Profiles

I'm a complete Rails noob and I'm working on my first rails app. I'd like each user to have a profile, separate from the users table, but linked by id. I did this alright in PHP before, but rails ...
1
vote
0answers
44 views

DSACryptoProvider fails with mandatory or temporary profiles

The following code fails when the user is logged on under a mandatory or temporary profile. private static bool VerifySignature(byte[] signature, byte[] data) { DSACryptoServiceProvider ...
1
vote
0answers
49 views

How to search google profiles by keywords

Is there any api which enables searching google profiles by keyword, such as in the url http://www.google.com/profiles?q=Reiner for now, the only solution I find is to scrapping here I show my ...
1
vote
2answers
262 views

Storing user profile data in the users table or separate profile table?

I'm developing a quick side project that needs a users table, and I want them to be able to store profile data. I was already reaching for the ASP.NET profile provider when I realized that users will ...
1
vote
2answers
470 views

Managing Multiple Chrome Profiles - OSX

I'm running this shell script as an app in OSX to initiate multiple instances of Chrome with a fresh personal folder: do shell script "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome ...
1
vote
1answer
609 views

Maven - Calling a module from Parent POM based on the profile

I have a module which is supposed to produce two artifacts (war's). The only difference between the two WAR's is the web.xml being used. I did this with the help of Maven Profiles... <parent> ...
1
vote
1answer
968 views

Maven Build multiple profiles in one go

It is our policy to only build 1 deployable jar. all environment-specific configurations are kept separate, and we build them all together at once. so under our current Ant process, we have a ...
1
vote
1answer
629 views

PHP User Profile System

I am looking for some suggestions for creating a User Profile System. I have just finished a user management application with the usual controls like Login, Registration, Password Reset, Admin section ...
1
vote
2answers
271 views

Maven Profile - Activate Profile depending on packaging

I have a POM which declares web application stuff that is common to my projects. I use this as the parent for all web applications. Is it possible to activate a profile only when the packaging is ...
1
vote
1answer
610 views

how to handle multiple profiles per user?

I'm doing something that doesn't feel very efficient. From my code below, you can probably see that I'm trying to allow for multiple profiles of different types attached to my custom user object ...
1
vote
2answers
2k views

SharePoint User Profile Search

Is there a way to search profiles in MOSS from the object model? I need to search for profiles that have a certain value set on their profile and then perform some action for them. I need to write ...
1
vote
1answer
50 views

Whats a solution for using Profiles in asp.net Web Applications?

What solutions are available to access Profile information since Web Applications do not expose ProfileCommon class like Web Site projects do.
1
vote
1answer
334 views

ASP.NET Profiles - Add a profile to an existing user

How do you add a profile entry (consisting of a guid, two strings, and an integer) to an existing user in the default SQL profile and membership providers? I can do this either via a sql query or C# ...
1
vote
2answers
430 views

ASP.Net MVC & Memberships

I would really appreciate some feedback on what I am trying to achieve: The problem: I would like to authorize a user of my application to a single action on the controller. For e.g.: a user can ...
0
votes
1answer
17 views

Adding a method to Django Profiles

I extended the User model in Django by using Profiles. As you know, creating a new user doesn't create a new profile linked to that user, so we need to add an auxiliary method, something like this: ...
0
votes
2answers
328 views

How to set active spring 3.1 environment profile via a properites file and not via an env variable or system property

We use the new environment profiles feature of spring 3.1. We currently set the active profile by setting the environment variable spring.profiles.active=xxxxx on the server to which we deploy the ...
0
votes
1answer
34 views

Get list of installed profiles

Is there any way to programmatically get list of installed Provisioning/Configuration profiles from iPhone (located in Settings/General/Profiles)? Regards.
0
votes
1answer
27 views

Where to access member profiles? Facebook Registration

I have successfully added Facebook Registration System into my (HTML) website. To try, I have asked a few friends to get registered. They have filled up the form on my website (which is modified to ...
0
votes
1answer
54 views

how do i make a profile page with posts

Basically if the title is to cryptic (i don't know how to make it sound right) I want it to say there is a profile.php?id=1234 or something similar and basically have a database with posts that have ...
0
votes
1answer
78 views

Codeigniter Auth Library - username public profiles for specific group, disabled for other groups

currently working on an application that has 3 distinct user groups. Admins, Entrants and General Users. Admins will have a backend and can do anything, that's ok not a problem. Entrants must have a ...
0
votes
0answers
21 views

Windows Registry: Identify “real” users using class ID within sub authority list in SID

I'm trying to manually enumerate from the registry a list of "real" users who locally log onto a single Windows 7 machine. The class ID within the sub authority list that I can get from the SIDs in ...
0
votes
0answers
53 views

Any way to add custom profile to android app?

I am currently working on Profile Manager app which allows the user to create his own custom profile, say he want to create a "meeting" profile.. so he will enter the ringer volume level and my ...
0
votes
1answer
70 views

Using DataContext Type in Web.Config Profile Properties

Hoping someone has an idea on how to use a type from my linq-to-sql datacontext as the type attribute in my web.config providers property. <profile enabled="true"> ...
0
votes
2answers
73 views

Why am I getting an error in my web.config file

I have the following section added to my web.config: <system.webServer> <caching> <profiles> <add extension=".html" policy="CacheUntilChange" kernelCachePolicy="DontCache" ...
0
votes
1answer
75 views

searching users from facebook, with their name and other attributes !

I want to create a search engine for Facebook. It should search users on social networking site Facebook. So can I use Graph API for the purpose ?? or is there any other technology available which I ...
0
votes
0answers
73 views

Custom Profile Provider for MySQL without xml?

I am using mysql, and would like to be able to use the profile provider in my ASP.NET web application project. I found a custom profile provider, but it stores data in xml format. I followed the ...
0
votes
1answer
208 views

How to properly set up multi profile maven project?

Hey, I'm talking about profiles within pom.xml of a project. Could please anybody explain to me, why if I have 2 profiles in pom definition and I run test phase from one of the profiles, both the Main ...
0
votes
1answer
811 views

can generic Bluetooth dongle be used for printers that support printing over Bluetooth?

I have tried using a Bluetooth dongle (Advik) with my "KodakESP-3+2445" printer. I have created an Android client to connect to this printer. I select a UUID for OPP (Object Push Profile) and was able ...

1 2