You can browse the source code for the development focus branch or get a copy of the branch using the command:
bzr branch lp:sapidlib

There are download files available for Sapidlib.

See all merge proposals.

Sapidlib has 7 active branches owned by 3 people and 2 teams. There were 0 commits in the last month.

Bazaar branches

Name Status Last Modified Last Commit
lp:sapidlib
Series: trunk
bug 1 Development 2013-02-05 23:41:20 UTC
229. * Check for brk() and mremap(). ...

Author: Richard Thomas Harrison
Revision Date: 2013-02-05 23:41:20 UTC

  * Check for brk() and mremap().
    Some systems may have sbrk() but not brk().
    Some systems may have mmap() but not mremap().
  * Created brkx() to emulate brk() on systems that don't have it.

lp:sapidlib/lpuni-final
Series: lpuni-final
bug 2 Mature 2008-03-10 21:44:29 UTC
20. Added a missing file needed by the in...

Author: Richard Thomas Harrison
Revision Date: 2008-03-10 21:30:30 UTC

Added a missing file needed by the installer to /etc

lp:~harrison-rt/sapidlib/fluffos 1 Development 2021-12-18 22:01:39 UTC
898. fix backwards.hpp for mac m1

Author: Justin McCormick
Revision Date: 2021-12-18 22:01:39 UTC

fix backwards.hpp for mac m1

lp:~cody-somerville/sapidlib/fluffos 1 Development 2011-01-30 07:21:31 UTC This branch has not been imported yet.
lp:~kyle-mcknight/sapidlib/users_cmd.c bug 1 Development 2008-03-07 03:29:04 UTC
56. added a simple users command to quick...

Author: Kyle A. McKnight
Revision Date: 2008-03-06 23:55:11 UTC

added a simple users command to quickly see the users online without all the extra info

lp:~sapidlib-dev/sapidlib/message_class (Linked to a blueprint) 1 Development 2008-02-20 05:09:27 UTC
52. Modified receive_message() in mobile....

Author: DaelasKai
Revision Date: 2008-02-05 20:17:13 UTC

Modified receive_message() in mobile.c to reference msg_colours.h for the appropriate
color and starting text.

For example:
  message( "success", "message\n", this_player() ); will now show this:
    [%^GREEN%^BOLD%^SUCCESS%^RESET%^]: message\n

In the msg_colours.h I defined the message class "success" to put the header in front
of the actual message. This is not nessesary. Instead, you can just put the pinkfish
tag of the desired color to colorize the message.

One problem with this system of using color tags is if I define the message class "talk"
to be "%^CYAN%^" and do:

message( "talk", "Hello everyone. I am %^RED%^Happy%^RESET%^ to see you!", this_player() );

Then, the message class "talk" will make the "Hello everyone. I am" to show up as cyan
"Happy" will be red and the "to see you!" will be white (because of the RESET).

The workaround to this is to have the following in the code:

    msg = replace_string(msg, "%^RESET%^", col);

and put it above this:
    msg = col + msg + "%^RESET%^";

The only problem this causes is with the first example of using a header text:
    [%^GREEN%^BOLD%^SUCCESS%^RESET%^]:
Then the header text would be written with every %^RESET%^ that is found.
This is bad so using headers should either be discouraged or simply done differently.

An example:
    message( "success", "", this_player() );
    message( "text", "You have successfully....\n", this_player() );

Another example:
    change the replace_string() that we added to a different standardized color tag such
    as %^NOR%^. *shrugs*

lp:~sapidlib-dev/sapidlib/lockdown_d 1 Development 2008-01-02 07:47:06 UTC
26. Modified /lib/adm/daemons/lockdown_d....

Author: DaelasKai
Revision Date: 2008-01-02 07:40:23 UTC

Modified /lib/adm/daemons/lockdown_d.c to allow a file name to be
entered as a reason message. When it checks what the reason is
for the lock, if the message is a file path and the file exists
it displays the contents of the file.

17 of 7 results
You can't create new branches for Sapidlib.