Shezhu Resource Sharing System 1.19 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Shezhu Resource Sharing System 1.19 (Default branch)
# 1  
Old 01-11-2008
Shezhu Resource Sharing System 1.19 (Default branch)

Image The Shezhu Resource Sharing System is an application for scheduling and booking shared resources such as rooms and equipment. The client only needs a modern Web browser. It has a user friendly point and click interface, visual filters for making block/repeat bookings, concurrent users and double booking prevention, allows local site customization, and supports configurable academic term/semester blocks. License: GNU General Public License v3 Changes:
This release supports Apache 2.2 (default) and MySQL 5 (default). It's anchored to UTC rather than local time, making it more portable. It's licensed under GPLv3.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

Global and non-global zone resource sharing - tricky

hi all, Just a simple question but i cant get the answers in the book - In my globalzone , assuming i have 4 cpus (psrinfo -pv = 0-3), if i set dedicated-cpu (ncpus=2) for my local zone Is my globalzone left with 2 cpus or still 4 cpus ? Does localzone "resource reservation.e.g. cpu in... (6 Replies)
Discussion started by: javanoob
6 Replies

2. UNIX for Advanced & Expert Users

Asynchronus resource sharing between processes?

Hi, say I have some pages which I want to share between two processes asynchronously. Which IPC (inter process communication) mechanism is best for this kind of job to complete? Is the same mechanism work for synchronous sharing? Thanks for the replies. sanzee (2 Replies)
Discussion started by: sanzee007
2 Replies

3. Shell Programming and Scripting

Checking running process status using "grep" on multiple servers in load sharing system.

Suppose i have 3 different servers say x,y and z. Im running some process say ABC and 40 instances for the same is being created. In load sharing suppose on server x, 20 instances are running server y, 10 instances are running server z, 10 instances are running. While checking the... (1 Reply)
Discussion started by: ankitknit
1 Replies

4. AIX

How to install system resource monitoring utilities?

Hello Experts, Topas, nmon, vmon & top monitoring tool not working. We use above AIX utilities to identify cpu and memory usage. I can execute the topas but on execution I receive "SpmiCreateStatSet can't create StatSet" message & no output. I use AIX 5.3, TL3. Please assist to restore... (4 Replies)
Discussion started by: sumit30
4 Replies

5. UNIX for Dummies Questions & Answers

Text book / online resource for learning to program at system/kernel level

Is there any book/resource that one can refer to, to be able to write programs at kernel/system level.. I'm looking for a programming book that could serve as a guide to write kernel codes / system level programming etc.. I have Tannenbaum's Design and Implementation. It addresses theoretical... (2 Replies)
Discussion started by: vishwamitra
2 Replies

6. Linux

Please help me, about the file sharing with windows system

Did anybody can teach me how to set the premission in the samba server? How to i set the premission in one folder but two access right. With one folder but the user access rights is diffirent. One user can full access the folder, and another one user only read only. thx for helping... (1 Reply)
Discussion started by: cloudlor
1 Replies

7. IP Networking

sharing of IP address for load sharing avoiding virtual server & redirection machine

I have RedHat 9.0 installed on three of my servers (PIII - 233MHz) and want that they share a common IP address so that any request made reaches each of the servers. Can anyone suggest how should I setup my LAN. I'm new to networking in Linux so please elaborate and would be thankful for a timely... (2 Replies)
Discussion started by: Rakesh Ranjan
2 Replies
Login or Register to Ask a Question
XtGetResourceList()													       XtGetResourceList()

Name
  XtGetResourceList - get the resource list of a widget class.

Synopsis
  void XtGetResourceList(object_class, resources_return, num_resources_return);
	 WidgetClass object_class;
	 XtResourceList *resources_return;
	 Cardinal *num_resources_return;

Inputs
  object_class
	 Specifies the object class to be queried; may be objectClass or any subclass.

Outputs
  resources_return
	 Returns the resource list.

  num_resources_return
	 Returns the number of entries in the resource list.

Description
  XtGetResourceList() returns the corePart resource list of the specified widget or object class.  If it is called before the widget class is
  initialized it returns the resource list as specified in the widget class record.  If it is called after the widget class has been initial-
  ized,  it returns a merged resource list that includes the resources for all superclasses.  The list returned by XtGetResourceList() should
  be freed using XtFree() when it is no longer needed.

Usage
  Most applications will never need to query the a widget class for the resources it supports.	This function is intended to  support  inter-
  face builders and applications like editres which allow the use to view the available resources and set them interactively.

  To get the constraint resources of a widget class, use XtGetConstraintResourceList().

Structures
  XtResource is defined as follows:

     typedef struct _XtResource {
	String	  resource_name;  /* Resource name */
	String	  resource_class; /* Resource class */
	String	  resource_type;  /* Representation type desired */
	Cardinal  resource_size;  /* Size in bytes of representation */
	Cardinal  resource_offset;/* Offset from base to put resource value */
	String	  default_type;   /* Representation type of specified default */
	XtPointer default_addr;   /* Address of resource default value */
     } XtResource, *XtResourceList;

See Also
  XtGetConstraintResourceList(1).

Xt - Resource Management												       XtGetResourceList()