aboutsummaryrefslogtreecommitdiff
path: root/campusconnect
Commit message (Collapse)AuthorAgeLines
* Update course_members schema.Heiko Bernloehr2014-06-02-1/+1
| | | | | Added ecs_custom to personIDtype. Reordered personIDtype.
* Added personIDtype to course_members schema.Heiko Bernloehr2014-05-21-0/+1
|
* Fixed deleting whole resources in participants.sh .Heiko Bernloehr2013-08-22-2/+3
| | | | | | E.g. you could call: participant.sh delete /campusconnect/course_members to delete iall messages in /campusconnect/course_members .
* participant.sh now handles events.Heiko Bernloehr2013-08-22-1/+21
| | | | | | | | | | | | | | | | | | | List all events: participant.sh get /sys/events Get oldest event (fifo): participant.sh get /sys/events/fifo Get and delete oldest event (fifo): participant.sh delete /sys/events/fifo FAQ: Q: You want to delete all events. A: Just call "participant.sh delete /sys/events/fifo" in a loop: for i in `seq 10`; do ./participant.sh delete '/sys/events/fifo' ; done This will get and delete always the oldest event. If there no more events you will get back nothing. Just repeat the loop until you don't get anything back.
* Bring back role outside of groups.Heiko Bernloehr2013-08-13-0/+1
| | | | | We should be able to set a role for administrative people outside of groups.
* Fixed typo.Heiko Bernloehr2013-08-13-2/+1
|
* Script for controlling a participant.Heiko Bernloehr2013-08-13-0/+202
| | | | | | With this script you can show and mass delete resource representations of a participant. For a short help just call the script without any options and parameters.
* Bring back "id" attribute to groups in courses resource.Heiko Bernloehr2013-07-18-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | In my mail to cc-devel mailinglist[1] I wrote: * We don't need a special "id" attribute for our groups. They are enumerated implicitely, because they form a sequence. So we could decide to virtually enumerate them by starting with 0 (zero), i.e. we could identify the groups with a tuple of ("lectureID",<sequence number of group>), e.g.: ("lsfproxy.uni-stuttgart.de/campusconnect/courses/443889","0") ("lsfproxy.uni-stuttgart.de/campusconnect/courses/443889","1") ("lsfproxy.uni-stuttgart.de/campusconnect/courses/443889","2") This is because the LMS doesn't give us an unique group id. We get only a simple enumeration of the available groups. If the count of groups changes than the enumeration changes. With hope in the future it is wiser to have such an id. [1] Date: Sun, 26 May 2013 21:23:30 +0200 From: Heiko Bernloehr <Heiko.Bernloehr@FreeIT.de> To: campusconnect-devel@freeit.de Subject: Re: [cc-devel] Simplified course resource Reply-To: campusconnect-devel@freeit.de
* Changes in courses schema.Heiko Bernloehr2013-07-02-13/+47
|
* Changed course_urls schema.Heiko Bernloehr2013-06-24-2/+12
| | | | | course_urls can now contain multiple URLs each with a descriptive title attribute.
* Fixed typo in course resource.Heiko Bernloehr2013-05-27-1/+1
|
* Reworking of course_members resource.Heiko Bernloehr2013-05-27-5/+4
|
* Reworking of courses resource.Heiko Bernloehr2013-05-27-4/+5
|
* Reworking/simplification of courses resource.Heiko Bernloehr2013-05-27-41/+17
|
* New schema properties "availability" and "avatar" in courselinks.Heiko Bernloehr2013-02-28-0/+29
| | | | | The property availability was just forgotten to pick up. Avatar is a special property for StudIP Systems.
* Added allocations property to courselinks schema.Heiko Bernloehr2013-02-28-0/+11
|
* Typo in cc_courselinks schema.Heiko Bernloehr2013-02-28-1/+1
|
* Denying of additional properties added.Heiko Bernloehr2013-01-24-25/+54
|
* Schema reference and denying of additional properties added.Heiko Bernloehr2013-01-24-9/+26
|
* Minor changes in cc_courses schema.Heiko Bernloehr2013-01-24-3/+1
| | | | | | "basicData" -> "maxParticipants" removed "parallelGroups" -> "id" type changed from integer to string "parallelGroups" -> "title" removed (factored out to "basicData")
* "term" attribute factored out into root node.Heiko Bernloehr2013-01-17-1/+0
|
* "term" attribute (optional) for the whole directory tree.Heiko Bernloehr2013-01-11-0/+1
| | | | It's only an additional meta data. Use it or throw it away.
* Factored out the attributes "rootID" and "directoryTreeTitle".Heiko Bernloehr2013-01-07-11/+19
| | | | | | | | | This was done because we have decided that there are no burst transmissions any more. Please see also email thread in cc-devel starting with: Date: Thu, 20 Dec 2012 18:54:25 +0100 Subject: resources and bursts
* Fixed typo in cc_directory_trees schema.Heiko Bernloehr2012-11-28-1/+1
|
* Terms resource added to lsfproxy script.Heiko Bernloehr2012-09-20-1/+5
|
* Organization units resource added to lsfproxy script.Heiko Bernloehr2012-09-20-1/+5
|
* Bugfixing lsfproxy.sh shell incompatibilities.Heiko Bernloehr2012-09-20-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Testscript: DATA_URL_ID=1 DATA_URL1='http://freeit.de' echo `eval expr $"DATA_URL$DATA_URL_ID"` echo $(eval expr $"DATA_URL$DATA_URL_ID") echo $(eval expr \$"DATA_URL$DATA_URL_ID") echo $(eval echo \$"DATA_URL$DATA_URL_ID") In dash (version 0.5.5.1-7.4) all 4 echo commands works as expected and spit out: http://freeit.de http://freeit.de http://freeit.de http://freeit.de In bash (version 4.1.5) you get: DATA_URL1 DATA_URL1 http://freeit.de http://freeit.de One reason for this misbehaviour of the script is because bash interprets the sequence $"string" (see manpage): "... a dollar sign ($"string") will cause the string to be translated according to the current locale ..."
* CampusConnect course_urls schema added.Heiko Bernloehr2012-06-29-0/+9
|
* Fixing lsfproxy.shHeiko Bernloehr2012-06-05-2/+2
| | | | | Fixing typo in curl call (--cacert). Print http header when calling curl (-i).
* Testing prerequisites.Heiko Bernloehr2012-02-23-0/+25
|
* Bugfixing and code shaping.Heiko Bernloehr2012-02-15-10/+11
|
* CampusConnect courselinks schema added.Heiko Bernloehr2011-09-26-0/+65
|
* CampusConnect terms schema added.Heiko Bernloehr2011-09-26-0/+12
|
* Corrected typo in CampusConnect organisation_units schema.Heiko Bernloehr2011-09-26-1/+1
|
* CampusConnect organisation_units schema added.Heiko Bernloehr2011-09-26-0/+18
|
* CampusConnect course_members schema added.Heiko Bernloehr2011-09-26-0/+24
|
* CampusConnect courses schema changed.Heiko Bernloehr2011-09-26-0/+6
| | | | | Added redundant meta data for a supposedly easier using for "stupid" participants.
* CampusConnect directory_trees schema added.Heiko Bernloehr2011-09-23-0/+19
|
* CampusConnect courses schema changed.Heiko Bernloehr2011-09-23-153/+152
| | | | Corrected a curly bracket.
* CampusConnect courses schema added.Heiko Bernloehr2011-09-22-0/+190
|
* Changed LSFproxy query string.Heiko Bernloehr2011-08-29-1/+2
|
* New script simulating LSFproxy.Heiko Bernloehr2011-08-29-0/+231