summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* update for release0.2.0William Jon McCann2007-03-141-0/+18
|
* bump the version arbitrarilyWilliam Jon McCann2007-03-141-2/+2
|
* update todoWilliam Jon McCann2007-03-141-1/+1
|
* add some more docsWilliam Jon McCann2007-03-143-4/+213
|
* add missing instead attributeWilliam Jon McCann2007-03-141-0/+1
|
* don't include the generated html in gitWilliam Jon McCann2007-03-142-318/+0
|
* dont' mark the user properties to be set in the constructorWilliam Jon McCann2007-03-141-2/+2
| | | | | | | | Now that we have two properties (one deprecated) that refer to the same thing we can't require that they are both set during the constructor. Furthermore, we can't require that either of them are set because we don't know which will be used.
* missed a namespace on the permission tagWilliam Jon McCann2007-03-133-70/+70
|
* updated doc dtdWilliam Jon McCann2007-03-132-65/+65
|
* add a new configure option --with-slibdir to use for connectorWilliam Jon McCann2007-03-133-2/+18
| | | | Turns out that just using libdir breaks the .pc file install.
* deprecate the user properties and add unix-user propertiesWilliam Jon McCann2007-03-1315-99/+295
| | | | | Also added deprecated notes to the docs. New code should be using GetUnixUser instead of GetUser etc.
* add more doc stubsWilliam Jon McCann2007-03-136-57/+108
|
* various leak fixesWilliam Jon McCann2007-03-134-21/+68
|
* convert to utf8 and xhtml outputWilliam Jon McCann2007-03-133-62/+64
| | | | Seems to fix some problems with invalid characters showing up.
* add the last bits of spec frameworkWilliam Jon McCann2007-03-1323-771/+1832
| | | | | | The spec is the introspection format extended with docs. There are tools to build docbook and strip the docs to make dbus introspect xml.
* install the connector into libdir by defaultWilliam Jon McCann2007-03-132-3/+2
| | | | | | | | If building the PAM module then it probably should be going into /lib. However, hardcoding /lib makes it very difficult to build as non-root, breaks make distcheck, and probably isn't correct for 64 bit systems. If you are a distro you should probably configure using --libdir=/lib.
* regenerate docsWilliam Jon McCann2007-03-102-54/+54
|
* add the generated doc htmlWilliam Jon McCann2007-03-102-1/+96
|
* give root permission to use the property interfaceWilliam Jon McCann2007-03-091-1/+5
|
* fix the user prop typeWilliam Jon McCann2007-03-091-9/+9
|
* add a few more parameters to session idlWilliam Jon McCann2007-03-092-1/+97
|
* add uuid to cookieWilliam Jon McCann2007-03-091-1/+9
|
* add a tool to autogenerate dbus object ref docsWilliam Jon McCann2007-03-0913-160/+884
| | | | | | | I hope I didn't reinvent a wheel but it seems to work much better than hand coding these refentries. Still need to add support for comments and actual descriptions ala gtk-doc.
* tweak the css for the docsWilliam Jon McCann2007-03-082-15/+66
|
* update all .gitignore filesWilliam Jon McCann2007-03-085-1/+28
|
* add a stub for docbook documentationWilliam Jon McCann2007-03-0811-30/+378
|
* prevent the use of the glib properties interfaceWilliam Jon McCann2007-03-081-1/+3
| | | | | We don't want anyone to be able to directly modify properties. Also make these policies mandatory.
* update todoWilliam Jon McCann2007-03-071-4/+2
|
* remove debug noiseWilliam Jon McCann2007-03-061-1/+1
|
* add very basic idle monitoring of text sessions and rework parameter parsingWilliam Jon McCann2007-03-062-23/+205
| | | | | Rework the parameter parsing so it is a bit more robust and so that parameters can get passed to the constructor.
* use paths.h if availableWilliam Jon McCann2007-03-066-15/+58
|
* add some items in a TODO fileWilliam Jon McCann2007-03-061-0/+24
|
* exit if we can't acquire name at startup and fix a glib warningWilliam Jon McCann2007-03-061-9/+32
|
* add is-local back to the pam moduleWilliam Jon McCann2007-03-061-0/+4
|
* check for empty strings as well as nullWilliam Jon McCann2007-03-061-7/+9
|
* use a slightly more sophisticated rule for adding sessions to static seatWilliam Jon McCann2007-03-062-5/+33
|
* allow for the possibility of matching multiple sessions for deviceWilliam Jon McCann2007-03-061-15/+145
| | | | | | | In the event that there is more than one session that matches a particular tty when the VT changes we use the following rule: 1. take the oldest session where display-device == active VT device 2. take the oldest session where x11-display-device == active VT device
* add x11-display-device to parse tableWilliam Jon McCann2007-03-052-6/+9
|
* try to parse the real meaning of PAM_TTYWilliam Jon McCann2007-03-051-0/+10
|
* fix the example codeWilliam Jon McCann2007-03-051-0/+4
|
* use with_parameters and add remote-host-name if availableWilliam Jon McCann2007-03-051-10/+39
|
* add a with_parameters function to connectorWilliam Jon McCann2007-03-053-194/+255
|
* rename host-name in one more placeWilliam Jon McCann2007-03-051-6/+6
|
* rename host-name to remote-host-name to make it more intuitiveWilliam Jon McCann2007-03-056-47/+44
|
* add x11-display-device to ck-list-sessionsWilliam Jon McCann2007-03-051-6/+22
|
* add two more proc sysdep functionsWilliam Jon McCann2007-03-052-0/+57
|
* add x11-display-device attributeWilliam Jon McCann2007-03-054-100/+164
| | | | | | In certain cases it is necessary to distinguish the display-device (tty of session leader) from the x11-display-device (tty of xorg process).
* use an async job to collect session infoWilliam Jon McCann2007-03-055-78/+681
| | | | | Use an async helper job to collect session info for the OpenSession() method.
* allow uid 0 to use the pam moduleDavid Zeuthen2007-03-051-1/+0
| | | | | | | | | So in Fedora's Rawhide /bin/login is now using libck-connector via the PAM module and CK will track such sessions. However, it doesn't work when root logs in and I think that's a bug. Attached patch should fix it (is already in Rawhide). Thanks. David
* add linux backends for collecting session informationWilliam Jon McCann2007-03-026-10/+560
| | | | | These tools will be used to generate and verify the parameters used to open a session.