groups

How do I divide a list into groups and store the indices?

Dear reader, I have a list box which holds, say, 6 values. Using buttons it's possible to insert new items into the list box. I can move all of these items up and down using other buttons I've added. For the purpose of understanding we'll call the newly created items (which I want to act as groups/dividers) "groups". What I want to acco...

Python : match string inside double quotes and bracket

Hello,I want to match text inside double quotes and bracket as two groups by use regex, How can I do that? from “作為”(act) ,用於罪行或民事過失時,包括一連串作為、任何違法的不作為和一連串違法的不作為; “行政上訴委員會”(Administrative Appeals Board) 指根據《行政上訴委員會條例》(第442章)設立的行政上訴委員會;(由1994年第6號第32條增補) “成人”、“成年人”(adult)* 指年滿18歲的人; (由1990年第32號第6條修訂) “飛機”、“航空器”(aircraft) 指任何可憑空氣的反作用而在大氣中獲...

Unexpected exception thrown when looking up user information

I have some code that is looking up group memberships from local groups on a machine. For each member, it tries to load some information about the user (eg. find a group and get the names of each of its members). The code: using (DirectoryEntry machine = new DirectoryEntry("WinNT://" + Environment.MachineName + ", Computer")) { usi...

Getting group names your contacts belong to using the gdata module

Hello I am trying to find out how to get the title of groups the contact belongs to. This is how I am getting my other contact information: query = gdata.contacts.service.ContactsQuery() query['showdeleted'] = 'true' query.updated_min = str(lastKnownTime) query.max_results = 5000 feed = gd_client.GetContactsFeed(query.ToUri()) insertCo...

How to purge specific users/groups from a SharePoint site collection?

I am trying to write a utility to find/delete specific users and groups from a SharePoint site collection. At this point I'm using the SiteUsers property of the SPWeb class to do the job, but I'm wondering: why isn't there a similar property in the SPSite class? This seems completely counter-intuitive to me (though at this point nothing ...

wpf user forums / groups

The only forums I know of are: - WPF Disciples; this is a great group because the um, disciples are experts but seems like 1/2 the posts are 'inside' comments between the um, disciples. By design, it is for mere mortals to observe only. - WPF on Codeplex; useful but usually only by way of catching a new release of something. Discussi...

Disable tier pricing for certain customer group in Magento

I know you can set tier prices per group in the admin, but I require six groups with the same tier prices and one with non. So this would require creating seven sets of tier prices for each product. So what i hope to do is hack the function that checks to see if a product has any tier prices associated with it - so it returns a negative...

Authenticate SVN users using local Linux Groups?

Does anyone know how I can configure svn to use local linux groups to authenticate users? For example if we have: devrepo = should be accessible by groups 'dev' and 'prod' productionrepo = should be accessible by only the 'prod' group Due to security limitations of the platform concerned, we cannot use Apache so only svnserve or plai...

MySQL (or PHP?) group results by field data

Hi guys, I have a MySQL database that looks similar to this: ID Group Name 1 1 John 2 1 Andrea 3 1 Jack 4 2 Mike 5 2 Kurt 6 3 Alice I need to sort the results in a html table that looks like this: Group Name ----------------------- 1 John ...

Jquery validation groups

I can't figure out how jquery validation groups work, nor how they should work. I assumed it would serve as to validate conditions that needed more than one element to be tested, is that it? Couldn't find anything about it on the jquery validation docs... ...

check for groups a user is a member of

i have the code to get the members of a local group example administrators private void GetUserGrps() { using (DirectoryEntry groupEntry = new DirectoryEntry("WinNT://./Administrators,group")) { foreach (object member in (IEnumerable)groupEntry.Invoke("Members")) { using (Direc...

list groups from user with ldap

I'm really new to LDAP and just got a connection between my php server and my ad server. I've succefully been able to authenticate users. Now I want to list all groups the users are in to see if he's an admin or not (or there might be another way?). I have this so far: $ldap = ldap_connect("192.168.1.108"); if ($ldap && $bind =...

Display group with no data in Crystal Reports 12

Hi, I am trying to group my data based on age. I use the following database select: select * from ( select 0 range_start, 11 range_end, '0-10 days' date_description from dual union select 11, 21, '11-20 days' from dual union select 21, 31, '21-30 days' from dual union select 31, 99999, '31+ days' from dual) date_helper left outer jo...

In unix, how can I pipe the output of who into the groups command?

I'm trying to do something like this: Say there are 4 users logged into a UNIX machine, a, b, c, and d. Now, to get the groups these guys belong to, I have to type out : groups a b c d. What I am wondering, is if there is a way to do something like who | groups where I can pipe the users currently logged-in to the groups command, wh...

Updating organic groups module in Drupal

Hi there, I've taken over a Drupal website. I'm trying to update the og module. It is currently version 1. I tried to upgrade it to the latest version but when I ran update.php it failed. So I thought I'd just try updating it to version 1.4. However, when I did this I then got the following errors when I ran update.php: # user warning...

Regex - Group Value Replacement

I am not sure if this is possible to do, but I need a way to replace a value of a numbered group specified in the my regex expression with a string declared dynamically at runtime, once a match has been made. Given a simple case, something like... (/)?([A-Za-z0-9])?(/)?$ I would want to be able to plugin a replacement for group 2. I...

How to get all windows groups?

I wrote this to get the groups a particular user belongs to: DirectoryEntry AD = new DirectoryEntry("WinNT://" + Environment.MachineName + ",computer"); DirectoryEntry user = AD.Children.Find(completeUserName, "user"); object obGroups = AD.Invoke("Groups"); foreach (object ob in (IEnumerable)obGroups) { // Create object for each grou...