diff --git a/doc/EN/devguide.org b/doc/EN/devguide.org index 41f6874d..c8ab299e 100644 --- a/doc/EN/devguide.org +++ b/doc/EN/devguide.org @@ -89,12 +89,12 @@ myappname_variables=(ONION_ONLY MYAPPNAME_ONION_PORT MYAPPNAME_DB_PASSWORD) -function logging_on_xmpp { +function logging_on_myappname { echo -n '' # Commands to turn on logging go here } -function logging_off_xmpp { +function logging_off_myappname { echo -n '' # Commands to turn off logging go here } diff --git a/website/EN/devguide.html b/website/EN/devguide.html index 2307692f..a33ee020 100644 --- a/website/EN/devguide.html +++ b/website/EN/devguide.html @@ -3,7 +3,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- +Freedombone consists of a set of bash scripts. There are a lot of them, but they're not very complicated. If you're familiar with the GNU/Linux commandline and can hack a bash script then you can probably add a new app or fix a bug in the system. There are no trendy development frameworks to learn or to get in your way.
This project doesn't require you to take any special pledge of allegiance or subscribe to any guru's list of commandments. It does not care about your gender, race, national flag or political alignment. It is agnostic towards your religion or lack thereof. It doesn't give one hoot as to whether you are young or old, rich or poor, gay, trans, straight or just "other". It does not care if you like your eggs sunny side up or if you are a vegan.
@@ -274,9 +274,9 @@ This project also has a no bullshit policy. Anyone trying to cause a ruckus by tSuppose you have some internet application which you want to add to the system. To do this you need to create an app script which tells the system how to install/remove and also backup/restore. The script should be designed to work with the current stable version of Debian.
@@ -353,12 +353,12 @@ An example template for an app script is shown below. Copy this and add whatever MYAPPNAME_ONION_PORT MYAPPNAME_DB_PASSWORD) -function logging_on_xmpp { +function logging_on_myappname { echo -n '' # Commands to turn on logging go here } -function logging_off_xmpp { +function logging_off_myappname { echo -n '' # Commands to turn off logging go here } @@ -554,9 +554,9 @@ Submit your working app to -If you want to make your own specially branded version of the mesh images, such as for a particular event, then to change the default desktop backgrounds edit the images within img/backgrounds and to change the available avatars and desktop icons edit the images within img/avatars. Re-create disk images using the instructions shown previously.