diff --git a/.gitignore b/.gitignore index ac87bb8..20b19ad 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ docs/_build/ -rendered/ venv/ *~ .*.swp diff --git a/configs/admin.config.php b/configs/admin.config.php deleted file mode 100644 index 08ca25a..0000000 --- a/configs/admin.config.php +++ /dev/null @@ -1,34 +0,0 @@ - "installing", "title" => "Installing GNU social"), - array("id" => "queue_daemons", "title" => "Using Queue Daemons"), - array("id" => "backup_restore", "title" => "Backing Up and Restoring"), - array("id" => "upgrading", "title" => "Upgrading Your Installation"), - array("id" => "protocol_overview", "title" => "Protocol Overview"), - array("id" => "contributing", "title" => "Contributing") -); - -?> \ No newline at end of file diff --git a/configs/user.config.php b/configs/user.config.php deleted file mode 100644 index 27b427a..0000000 --- a/configs/user.config.php +++ /dev/null @@ -1,32 +0,0 @@ - "what_is_gnu_social", "title" => "What is GNU social"), - array("id" => "getting_started", "title" => "Getting Started"), - array("id" => "exploring", "title" => "Exploring the Network"), - array("id" => "tags", "title" => "Hashtags and Groups") -); - -?> \ No newline at end of file diff --git a/html/admin/backup_restore.html b/html/admin/backup_restore.html deleted file mode 100644 index 6d9f059..0000000 --- a/html/admin/backup_restore.html +++ /dev/null @@ -1,79 +0,0 @@ -{HEADING:SECTION:backup_procedure:Backing Up} - -

It is important to back up GNU social regularly. If you need to revert to an old backup you will lose any newer notices. Any follows that happened since then will result in mismatched information on your server and remote servers.

- -

You should also back up immediately prior to any upgrade. This is especially important if you are following the nightly branch where serious bugs might slip through.

- -

There are two parts to your GNU social installation and they most both be backed up at the same time.

- -
    -
  1. The files hosted by your webserver. This is a mixture of GNU social code and user data. This a directory probably located somewhere like /var/www/social.
  2. -
  3. The contents of the MariaDB/MySQL database.
  4. -
- -{HEADING:SUBSECTION:backup_web_files:Web Files} - -

You don't need to do anything fancy. Just make sure you have a copy of the folder. If you're using a commercial web hosting service there is probably a button you can press to download an archive of all your files. Note that this normally does not include your database.

- -

If you have shell access on the server, assuming the GNU social folder is located at /var/www/social, you can make a compressed backup in your home directory like this:

- -

- TIMESTAMP=$(date +%Y%m%d-%H%M)
- cd /var/www
- tar -Jcf "~/$TIMESTAMP-social-www.tar.xz" --exclude=.git social -

- -

If you are serving files straight out of the git repository this will back up only the currently checked out copy, not the entire history. (Using a git repository this way is not recommended as you may cause chaos in your database if you accidentally check out the wrong thing.)

- - -{HEADING:SUBSECTION:backup_database:Database} - -

There are many different tools and techniques for backing up MySQL databases. If you're using a commercial web hosting service there will probably be somewhere in the web interface where you can download a copy of the GNU social database.

- -

If you have shell access the simplest way to create a backup is using the tool mysqldump.

- -

- TIMESTAMP=$(date +%Y%m%d-%H%M)
- mysqldump -u "database_username" -p "database_name" | xz -c - > "~/$TIMESTAMP-social.sql.xz" -

- -

You will be prompted for a password. Type in the password for the MySQL user.

- - - -{HEADING:SECTION:restore_procedure:Restoring from a Backup} - -
    -
  1. Stop the queue daemons if they're running.
  2. -
  3. Restore the web files.
  4. -
  5. Restore the database.
  6. -
  7. Restart the queue daemons.
  8. -
- -

If you followed the examples above you might type the following:

- -
cd /var/www/social
-
-# Stop the daemons
-bash ./scripts/stopdaemons.sh
-
-# Delete and restore the web files
-rm -r *
-cd ..
-tar -Jxf ~/20160130-1200-social-www.tar.xz
-
-# Recreate the database (using MySQL root account)
-mysqladmin -u root -p drop social
-mysqladmin -u root -p create social
-mysql -u root -p social
-
-    # Inside mysql client
-    GRANT ALL on social.* TO 'social'@'localhost' IDENTIFIED BY 'the_old_password'; 
-    exit
-
-# Restore the database as the GNU social MySQL user
-xzcat ~/20160130-1200-social.sql.xz | mysql -u social -p social
-
-# Restart the queue daemons
-cd social
-bash ./scripts/startdaemons.sh
diff --git a/html/admin/contributing.html b/html/admin/contributing.html deleted file mode 100644 index f36bdfc..0000000 --- a/html/admin/contributing.html +++ /dev/null @@ -1,11 +0,0 @@ - -{HEADING:SECTION:translations:Translations} - -

For info on helping with translations, see the platform currently in use for translations.gettext system. If you for some reason do not wish to sign up to the Transifex service, you can review the files in the "locale/" sub-directory of GNU social. Each plugin also has its own translation files. - -

To get your own site to use all the translated languages, and you are tracking the git repo, you will need to install at least 'gettext' on your system and then run:

- -

$ make translations

- diff --git a/html/admin/installing.html b/html/admin/installing.html deleted file mode 100644 index 3862109..0000000 --- a/html/admin/installing.html +++ /dev/null @@ -1,388 +0,0 @@ -{HEADING:SECTION:prerequisites:Prerequisites} - -{HEADING:SUBSECTION:choosing_branch:Selecting a branch} - -

GNU social has three different branches of development offering a range of choices between stability and the latest features. - -

-
1.2.x
-
This is the current stable release. The code has been tested for a while.
- -
master
-
master receives more frequent updates and is usually working well.
- -
nightly
-
nightly gets updated the most but is not always working.
-
- -

When you download the source code in {LINK:up_and_running} you will need to know which branch you want to install. You can always move to a more unstable branch but going backwards is not guaranteed to work.

- -

If you want to use Qvitter—that's the plugin that makes GNU social look like Twitter—be aware that it is tested against GNU social nightly. If you are using a different branch and having problems with that plugin try upgrading to nightly.

- -{HEADING:SUBSECTION:choosing_web_config:Web server configuration} - -

You should use HTTPS to encrypt all communications with your GNU social instance. Until recently it cost money to get a trusted certificate but now the Let's Encrypt project enables you to obtain a trusted certificate at no cost.

- -

If you are thinking about starting with HTTP and setting up encryption later, don't do that. You may have problems if you start with HTTP and later move to HTTPS.

- -

If you want to use Qvitter be aware that it only supports installations that are installed directly on the domain. That is, the URL to access GNU social needs to be https://www.some.domain/ and not https://www.some.domain/gnusocial/. It also requires you to have {LINK:fancy_urls} enabled. If you're using apache that means you need mod_rewrite and the ability to use .htaccess files.

- -{HEADING:SUBSECTION:php_modules:PHP modules} - -

The following software packages are required for this software to run correctly.

- -
-
PHP 5.5+
-
For newer versions, some functions that are used may be disabled by default, such as the pcntl_* family. See the section on {LINK:queue_daemons} for more information.
- -
MariaDB 5+
-
GNU Social uses, by default, a MariaDB server for data storage. Versions 5.x and 10.x have both reportedly worked well. It is also possible to run MySQL 5.5+.
- -
Web server
-
Apache, lighttpd and nginx will all work. CGI mode is recommended and also some variant of 'suexec' (or a proper setup php-fpm pool)
NOTE: mod_rewrite or its equivalent is extremely useful.
-
- -

Your PHP installation must include the following PHP extensions for a functional setup of GNU social:

- - -
-
openssl
(compiled in for Debian, enabled manually in Arch Linux)
-
php5-curl
Fetching files by HTTP.
-
php5-gd
Image manipulation (scaling).
-
php5-gmp
For Salmon signatures (part of OStatus).
-
php5-intl
Internationalization support (transliteration et al).
-
php5-json
For WebFinger lookups and more.
-
php5-mysqlnd
The native driver for PHP5 MariaDB connections. If you use MySQL, 'php5-mysql' or 'php5-mysqli' may be enough.
-
- -

The above package names are for Debian based systems. In the case of Arch Linux, PHP is compiled with support for most extensions but they require manual enabling in the relevant php.ini file (mostly php5-gmp).

- - -{HEADING:SUBSECTION:better_performance:Better performance} - -

For some functionality, you will also need the following extensions:

- -
-
opcache
-
Improves performance a lot. Included in PHP, must be enabled manually in php.ini for most distributions. Find and set at least: opcache.enable=1
- -
mailparse
-
Efficient parsing of email requires this extension. Submission by email or SMS-over-email uses this.
- -
sphinx
-
A client for the sphinx server, an alternative to MySQL or Postgresql fulltext search. You will also need a Sphinx server to serve the search queries.
- -
gettext
-
For multiple languages. Default on many PHP installs; will be emulated if not present.
- -
exif
-
For thumbnails to be properly oriented.
-
- -

You may also experience better performance from your site if you configure a PHP cache/accelerator. Most distributions come with "opcache" support. Enable it in your php.ini where it is documented together with its settings.

- - -{HEADING:SECTION:installation:Installation} - -{HEADING:SUBSECTION:up_and_running:Getting it up and running} - -

Installing the basic GNU Social web component is relatively easy, especially if you've previously installed PHP/MariaDB packages.

- -
    - -
  1. -

    The source code is distributed using a git repository on GNU's Gitlab server. There are two ways to download it:

    - - - -

    If you want to use git, run the following command. It will download the whole repository and place it in a folder called gnusocial.

    - -

    git clone https://git.gnu.io/gnu/gnu-social.git gnusocial

    - -

    Then select the branch you wish to use.

    - -

    - cd gnusocial
    - git checkout master
    - (or 1.2.x or nightly) -

    - -

    If you would like to download it directly instead, go to the 1.2.x, master or nightly branch on the Gitlab web page. In the top-right corner there is a button to download a zip file containing that branch. If you press the drop-down arrow on the right you can access different types of archive.

    - - Download button on gitlab - -

    Unpack the tarball you downloaded on your Web server. Usually a command like this will work:

    - -

    tar zxf gnu-social-*.tar.gz

    - -

    ...which will make a subdirectory in your current directory. (If you don't have shell access on your Web server, you may have to unpack the tarball on your local computer and FTP the files to the server.)

    -
  2. - -
  3. -

    Whichever way you downloaded GNU social, move the files to a directory of your choosing in your Web root directory. Usually something like this will work:

    - -

    - For a git repository:
    - cd gnusocial
    - mkdir /var/www/gnusocial
    - cp -rv * /var/www/gnusocial -

    - -

    - For a downloaded tarball:
    - mv gnu-social-x.y.z /var/www/gnusocial -

    - -

    This will often make your GNU Social instance available in the gnusocial path of your server, like http://example.net/gnusocial. "social" or "blog" might also be good path names. If you know how to configure virtual hosts on your web server, you can try setting up http://social.example.net/ or the like. - -

    If you have "rewrite" support on your webserver, and you should, then please enable this in order to make full use of your site. This will enable {LINK:fancy_urls} support.

    - -
  4. - -
  5. - -

    Make your target directory writeable by the Web server, please note however that will give all users write access and securing the webserver is not within the scope of this document.

    - -

    chmod a+w /var/www/gnusocial/

    - -

    On some systems, this will work as a more secure alternative:

    - -

    - chgrp www-data /var/www/gnusocial/
    - chmod g+w /var/www/gnusocial/ -

    - -

    If your Web server runs as another user besides www-data, try that user's default group instead. As a last resort, you can create a new group like gnusocial and add the web server's user to the group.

    - -
  6. - -
  7. - -

    You should also take this moment to make your avatar and file sub-directories writeable by the Web server. The insecure way to do this is: - -

    - chmod a+w /var/www/gnusocial/avatar
    - chmod a+w /var/www/gnusocial/file -

    - -

    You can also make the avatar, and file directories just writable by the web server group, as noted above.

    - -
  8. - -
  9. - -

    Create a database to hold your site data. Something like this should work (you will be prompted for your database password):

    - -

    mysqladmin -u "root" -p create social

    - -

    Note that GNU social should have its own database; you should not share the database with another program. You can name it whatever you want, though.

    - -

    (If you don't have shell access to your server, you may need to use a tool like phpMyAdmin to create a database. Check your hosting service's documentation for how to create a new MariaDB database.)

    - -
  10. - -
  11. - -

    Create a new database account that GNU social will use to access the database. If you have shell access, this will probably work from the MariaDB shell:

    - -

    - GRANT ALL on social.*
    - TO 'social'@'localhost'
    - IDENTIFIED BY 'agoodpassword'; -

    - -

    You should change the user identifier social and agoodpassword to your preferred new database username and password. You may want to test logging in to MariaDB as this new user. - -

  12. - -
  13. - -

    In a browser, navigate to the GNU Social install script; something like:

    - -

    https://social.example.net/install.php

    - -

    Enter the database connection information and your site name. The install program will configure your site and install the initial, almost-empty database.

    - -
  14. - -
  15. - -

    You should now be able to navigate to your social site's main directory and see the "Public Timeline", which will probably be empty. You can now register new users, post some notices, edit your profile, etc.

    - -
  16. -
- - -{HEADING:SUBSECTION:fancy_urls:Fancy URLs} - -

By default, GNU Social will use URLs that include the main PHP program's name in them. For example, a user's home profile might be found at either of these URLS depending on the webserver's configuration and capabilities:

- -

- https://social.example.net/index.php/fred
- https://social.example.net/index.php?p=fred -

- -

It's possible to configure the software to use fancy URLs so it looks like this instead:

- -

- https://social.example.net/fred -

- -

These "fancy URLs" are more readable and memorable for users. To use fancy URLs, you must either have Apache 2.x with .htaccess enabled and mod_rewrite enabled, OR know how to configure "url redirection" in your server (like lighttpd or nginx).

- -
    - -
  1. -

    See the instructions for each respective webserver software:

    - -
  2. - -
  3. -

    Assuming your webserver is properly configured and have its settings applied (remember to reload/restart it), you can add this to your GNU social's config.php file:

    - -

    $config['site']['fancy'] = true;

    -
  4. - -
- -

You should now be able to navigate to a "fancy" URL on your server, like:

- -

https://social.example.net/main/register

- - - -{HEADING:SUBSECTION:themes:Themes} - -

As of right now, your ability change the theme is limited to CSS stylesheets and some image files; you can't change the HTML output, like adding or removing menu items, without the help of a plugin.

- -

You can choose a theme using the $config['site']['theme'] element in the config.php file. See below for details.

- -

You can add your own theme by making a sub-directory of the 'theme' subdirectory with the name of your theme. Each theme can have the following files:

- -
-
display.css
a CSS2 file for "default" styling for all browsers. -
logo.png
a logo image for the site.
-
default-avatar-profile.png
a 96x96 pixel image to use as the avatar for users who don't upload their own.
-
default-avatar-stream.png
Ditto, but 48x48. For streams of notices.
-
default-avatar-mini.png
Ditto ditto, but 24x24. For subscriptions listing on profile pages.
-
- -

You may want to start by copying the files from the default theme to your own directory.

- - -{HEADING:SUBSECTION:private:Private} - -

A GNU social node can be configured as "private", which means it will not federate with other nodes in the network. It is not a recommended method of using GNU social and we cannot at the current state of development guarantee that there are no leaks (what a public network sees as features, private sites will likely see as bugs).

- -

Private nodes are however an easy way to easily setup collaboration and image sharing within a workgroup or a smaller community where federation is not a desired feature. Also, it is possible to change this setting and instantly gain full federation features.

- -

Access to file attachments can also be restricted to logged-in users only:

- -
    - -
  1. -

    Add a directory outside the web root where your file uploads will be stored. Use this command as an initial guideline to create it:

    -

    mkdir /var/www/gnusocial-files

    -
  2. - -
  3. -

    Make the file uploads directory writeable by the web server. An insecure way to do this is (to do it properly, read up on UNIX file permissions and configure your webserver accordingly):

    -

    chmod a+x /var/www/gnusocial-files

    -
  4. - -
  5. -

    Tell GNU social to use this directory for file uploads. Add a line like this to your config.php:

    -

    $config['attachments']['dir'] = '/var/www/gnusocial-files';

    -
  6. - -
- - -{HEADING:SECTION:extra_features:Extra features} - -{HEADING:SUBSECTION:sphinx:Sphinx} - -

To use a Sphinx server to search users and notices, you'll need to enable the SphinxSearch plugin. Add to your config.php:

- -

- addPlugin('SphinxSearch');
- $config['sphinx']['server'] = 'searchhost.local'; -

- -

You also need to install, compile and enable the sphinx pecl extension for php on the client side, which itself depends on the sphinx development files.

- -

See plugins/SphinxSearch/README for more details and server setup.

- - -{HEADING:SUBSECTION:sms:SMS} - -

StatusNet supports a cheap-and-dirty system for sending update messages to mobile phones and for receiving updates from the mobile. Instead of sending through the SMS network itself, which is costly and requires buy-in from the wireless carriers, it simply piggybacks on the email gateways that many carriers provide to their customers. So, SMS configuration is essentially email configuration.

- -

Each user sends to a made-up email address, which they keep a secret. Incoming email that is "From" the user's SMS email address, and "To" the users' secret email address on the site's domain, will be converted to a notice and stored in the DB.

- -

For this to work, there must be a domain or sub-domain for which all (or most) incoming email can pass through the incoming mail filter.

- -
    - -
  1. -

    Run the SQL script carrier.sql in your StatusNet database. This will usually work:

    - -

    mysql -u "statusnetuser" --password="statusnetpassword" statusnet < db/carrier.sql

    - -

    This will populate your database with a list of wireless carriers that support email SMS gateways.

    -
  2. - -
  3. -

    Make sure the maildaemon.php file is executable:

    - -

    chmod +x scripts/maildaemon.php

    - -

    Note that "daemon" is kind of a misnomer here; the script is more of a filter than a daemon.

    -
  4. - -
  5. -

    Edit /etc/aliases on your mail server and add the following line:

    - -

    *: /path/to/statusnet/scripts/maildaemon.php

    -
  6. - -
  7. -

    Run whatever code you need to to update your aliases database. For many mail servers (Postfix, Exim, Sendmail), this should work:

    - -

    newaliases

    - -

    You may need to restart your mail server for the new database to take effect.

    -
  8. - -
  9. -

    Set the following in your config.php file:

    - -

    $config['mail']['domain'] = 'yourdomain.example.net';

    -
  10. - -
- -{HEADING:SECTION:after_installation:After installation} - -{HEADING:SUBSECTION:should_run_queue_daemons:Run queue daemons} - -

By default GNU social tries to do regular work such as communicating with remote servers while it is handling HTTP requests for users. This is often insufficient. If possible you should run the queue daemons. Please refer to this section: {LINK:queue_daemons}.

- -{HEADING:SUBSECTION:backups:Backups} - -

There is no built-in system for doing backups in GNU social. You can make backups of a working system by backing up the database and the Web directory. To backup the database use mysqldump and to backup the Web directory, try tar. - -{HEADING:SUBSECTION:about_upgrading:Upgrading} - -Upgrading is strongly recommended to stay up to date with security fixes -and new features. For instructions on how to upgrade GNU social code, -please refer to this section: {LINK:upgrading}.

- diff --git a/html/admin/protocol_overview.html b/html/admin/protocol_overview.html deleted file mode 100644 index 4616009..0000000 --- a/html/admin/protocol_overview.html +++ /dev/null @@ -1,3 +0,0 @@ -GNU social runs primarily on voodoo magic. - -If anybody knows better please advise. diff --git a/html/admin/queue_daemons.html b/html/admin/queue_daemons.html deleted file mode 100644 index dcf9f9c..0000000 --- a/html/admin/queue_daemons.html +++ /dev/null @@ -1,89 +0,0 @@ - -{HEADING:SECTION:queues_and_daemons:Queues and Daemons} - -

Some activities that GNU social needs to do, like broadcast OStatus, SMS, XMPP messages and TwitterBridge operations, can be 'queued' and done by off-line bots instead.

- -

Two mechanisms are available to achieve offline operations:

- - - - -{HEADING:SUBSECTION:opportunisticqm:OpportunisticQM plugin} - -

This plugin is enabled by default. It tries its best to do background jobs during regular HTTP requests, like API or HTML pages calls.

- -

Since queueing system is enabled by default, notices to be broadcasted will be stored, by default, into DB (table queue_item).

- -

Whenever it has time, OpportunisticQM will try to handle some of them.

- -

This is a good solution whether you:

- - - -

In other case, you really should consider enabling the queuedaemon for performance reasons. Background daemons are necessary anyway if you wish to use the Instant Messaging features such as communicating via XMPP.

- - -{HEADING:SUBSECTION:queuedaemon:queuedaemon} - -

If you want to use legacy queuedaemon, you must be able to run long-running offline processes, either on your main Web server or on another server you control. (Your other server will still need all the above prerequisites, with the exception of Apache.) Installing on a separate server is probably a good idea for high-volume sites.

- -
    - -
  1. -

    You'll need the "CLI" (command-line interface) version of PHP installed on whatever server you use.

    - -

    Modern PHP versions in some operating systems have disabled functions related to forking, which is required for daemons to operate. To make this work, make sure that your php-cli config (/etc/php5/cli/php.ini) does NOT have these functions listed under 'disable_functions':

    - - - -

    Other recommended settings for optimal performance are:

    - - -
  2. - -
  3. -

    If you're using a separate server for queues, install GNU social somewhere on the server. You don't need to worry about the .htaccess file, but make sure that your config.php file is close to, or identical to, your Web server's version.

    -
  4. - -
  5. -

    In your config.php files (on the server where you run the queue daemon), set the following variable:

    - -

    $config['queue']['daemon'] = true;

    -
  6. - -
  7. -

    On the queues server, run the command scripts/startdaemons.sh.

    - -

    This will run the queue handlers:

    - -
    -
    queuedaemon.php
    polls for queued items for inbox processing and pushing out to OStatus, SMS, XMPP, etc.
    -
    imdaemon.php
    if an IM plugin is enabled (like XMPP)
    -
    (plugins)
    other daemons, like TwitterBridge ones, that you may have enabled
    -
    -
  8. - -
- -

These daemons will automatically restart in most cases of failure including memory leaks (if a memory_limit is set), but may still die or behave oddly if they lose connections to the XMPP or queue servers.

- -

It may be a good idea to use a daemon-monitoring service, like 'monit', to check their status and keep them running.

- -

All the daemons write their process IDs (pids) to /var/run/ by default. This can be useful for starting, stopping, and monitoring the daemons. If you are running multiple sites on the same machine, it will be necessary to avoid collisions of these PID files by setting a site-specific directory in config.php: - -

$config['daemon']['piddir'] = __DIR__ . '/../run/';

- -

It is also possible to use a STOMP server instead of our kind of hacky home-grown DB-based queue solution. This is strongly recommended for best response time, especially when using XMPP.

- diff --git a/html/admin/upgrading.html b/html/admin/upgrading.html deleted file mode 100644 index 65d8ab3..0000000 --- a/html/admin/upgrading.html +++ /dev/null @@ -1,125 +0,0 @@ -{HEADING:SECTION:gs1.1_to_gs1.2:Nightly or GNU social 1.1.x to GNU social 1.2.x} - -

If you are tracking the GNU social git repository, we currently recommend using the "master" branch (or nightly if you want to use latest features) and follow this procedure:

- -
    - -
  1. -

    Back up your data. The StatusNet upgrade discussions below have some guidelines to back up the database and files (mysqldump and rsync).

    -
  2. - -
  3. -

    Stop your queue daemons (you can run this command even if you do not use the queue daemons):

    - -

    $ bash scripts/stopdaemons.sh

    -
  4. - -
  5. -

    Run the command to fetch the latest sourcecode:

    - -

    $ git pull

    - -

    If you are not using git we recommend following the instructions below for upgrading "StatusNet 1.1.x to GNU social 1.2.x" as they are similar.

    -
  6. - -
  7. -

    Run the upgrade script:

    - -

    $ php scripts/upgrade.php

    - -

    The upgrade script will likely take a long time because it will upgrade the tables to another character encoding and make other automated upgrades. Make sure it ends without errors. If you get errors, create a new issue on the GNU social project page. -

  8. - -
  9. -

    Start your queue daemons again (you can run this command even if you do not use the queue daemons):

    - -

    $ bash scripts/startdaemons.sh

    -
  10. - -
  11. -

    Report any issues at https://git.gnu.io/gnu/gnu-social/issues

    -
  12. - -
- -

If you are using ssh keys to log in to your server, you can make this procedure pretty painless (assuming you have automated backups already). Make sure you "cd" into the correct directory (in this case "htdocs") and use the correct login@hostname combo:

- -
    $ ssh social@domain.example 'cd htdocs
-            && bash scripts/stopdaemons.sh
-            && git pull
-            && time php scripts/upgrade.php
-            && bash scripts/startdaemons.sh'
-
- - - -{HEADING:SECTION:sn1.1_to_gs1.2:StatusNet 1.1.x to GNU social 1.2.x} - -

We cannot support migrating from any other version of StatusNet than 1.1.1. If you are running a StatusNet version lower than this, please follow the upgrade procedures for each respective StatusNet version.

- -

You are now running StatusNet 1.1.1 and want to migrate to GNU social 1.2.x. Beware there may be changes in minimum required version of PHP and the modules required, so review the INSTALL file (php5-intl is a newly added dependency for example).

- -

Before you begin: Make backups. Always make backups. Of your entire directory structure and the database too. All tables. All data. Alles.

- -
    - -
  1. -

    Make a backup of everything. To backup the database, you can use a variant of this command (you will be prompted for the database password):

    - -

    $ mysqldump -u dbuser -p dbname > social-backup.sql

    -
  2. - -
  3. -

    Stop your queue daemons.

    - -

    $ bash scripts/stopdaemons.sh

    - -

    Not everyone runs queue daemons, but the above command won't hurt.

    -
  4. - -
  5. -

    Unpack your GNU social code to a fresh directory. You can do this by cloning our git repository:

    - -

    $ git clone https://git.gnu.io/gnu/gnu-social.git gnusocial

    -
  6. - -
  7. -

    Synchronize your local files to the GNU social directory. These will be the local files such as avatars, config and files:

    - - - -

    This command will point you in the right direction on how to do it:

    - -

    $ rsync -avP statusnet/{.htaccess,avatar,file,local,config.php} gnusocial/

    -
  8. - -
  9. -

    Replace your old StatusNet directory with the new GNU social directory in your webserver root.

    -
  10. - -
  11. -

    Run the upgrade script:

    - -

    $ php scripts/upgrade.php

    - -

    The upgrade script will likely take a long time because it will upgrade the tables to another character encoding and make other automated upgrades. Make sure it ends without errors. If you get errors, create a new issue on the GNU social project page. -

  12. - -
  13. -

    Start your queue daemons:

    - -

    $ bash scripts/startdaemons.sh

    -
  14. - -
  15. -

    Report any issues at https://git.gnu.io/gnu/gnu-social/issues

    -
  16. - -
- diff --git a/html/common/footer.html b/html/common/footer.html deleted file mode 100644 index 9679f10..0000000 --- a/html/common/footer.html +++ /dev/null @@ -1,14 +0,0 @@ -
- -
- - - - - diff --git a/html/common/header.html b/html/common/header.html deleted file mode 100644 index ca1d5f8..0000000 --- a/html/common/header.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - {PAGE_TITLE} - {TITLE} - GNU social - - -
-
- -

{TITLE}

-
- - \ No newline at end of file diff --git a/html/common/toc-h1.html b/html/common/toc-h1.html deleted file mode 100644 index 20404fd..0000000 --- a/html/common/toc-h1.html +++ /dev/null @@ -1 +0,0 @@ -
{TOC_ENTRY_NUMBER} {TOC_ENTRY_TITLE}
\ No newline at end of file diff --git a/html/common/toc-h2.html b/html/common/toc-h2.html deleted file mode 100644 index af4d256..0000000 --- a/html/common/toc-h2.html +++ /dev/null @@ -1 +0,0 @@ -
{TOC_ENTRY_NUMBER} {TOC_ENTRY_TITLE}
\ No newline at end of file diff --git a/html/common/toc-h3.html b/html/common/toc-h3.html deleted file mode 100644 index 68bdf00..0000000 --- a/html/common/toc-h3.html +++ /dev/null @@ -1 +0,0 @@ -
{TOC_ENTRY_NUMBER} {TOC_ENTRY_TITLE}
\ No newline at end of file diff --git a/html/common/toc.html b/html/common/toc.html deleted file mode 100644 index a9bc4f6..0000000 --- a/html/common/toc.html +++ /dev/null @@ -1,2 +0,0 @@ -

Contents

- diff --git a/html/user/exploring.html b/html/user/exploring.html deleted file mode 100644 index 5b6a767..0000000 --- a/html/user/exploring.html +++ /dev/null @@ -1,101 +0,0 @@ - - - -{HEADING:SECTION:exploring:Exploring the network} - -

To get the most out of GNU social you need to find your way around the various servers.

- -{HEADING:SUBSECTION:exploring_timelines:The different timelines} - -

If you've used Twitter before you're used to the Home timeline. This shows messages posted by people you follow. Because GNU social consists of separate servers you can browse three different timelines:

- -
-
Home
People you follow
-
Public / Public Timeline
Everybody on this server
-
Network / The Whole Known Network
Everybody that this server knows about
-
- -

This is how it would look if you followed two people on the same server as you, plus two people from different servers:

- - -Difference between home and public timelines - - -{HEADING:SECTION:following:Following} - -

Thanks to federation it is easy to follow both people on the same server as you and on different servers. However, following someone on a different server can require a couple of extra clicks.

- -

If you're on one of the Quitter servers (or any server that uses the Qvitter plugin) there is an easy way to do both. See {LINK:remote_follow_qvitter}.

- -{HEADING:SUBSECTION:local_follow:Following people on the same server} - -

Click on their username to go to their user page. There you will find a button to follow them. It will look like one of these:

- -Stock GNU social subscribe button -Qvitter follow button - -

Click the button. Their notices will now appear in your Home timeline.

- - -{HEADING:SUBSECTION:remote_follow:Following people on other servers} - -

First go to their user page. You can always get there by clicking on their username. This will take you to the server where that person has their account.

- -

Suppose your account is on quitter.no and you clicked on a user who is on quitter.se. Your browser will now be at an address like https://quitter.se/some_user. You will not be logged in on the remote server—you're just a public visitor. Don't try to log in or create an account; it's not necessary.

- -

The page might look completely different from what you're used to! Every server can have its own custom style. What you need to look for is the remote follow button. Here are three examples:

- -Qvitter remote follow button -Stock GNU social subscribe button (same as for local) -LoadAverage subscribe button - -

Click on it. A box will pop up asking what your account is, in email address format. If your username is fido and your server is quitter.no you would type fido@quitter.no. Then click Subscribe or Remote follow as appropriate.

- - -Entering your address - - -

You might (or might not) be taken to an intermediate screen like this one. Check the details are correct and click Subscribe again.

- - -Remote follow, next step - - -

You will now be taken back your own server where you're logged in. You will be shown profile information about the user you are about to follow. To complete the process click the Confirm button. It will look something like this:

- -Stock confirm button -Quitter.no confirm button (I guess qvitter hasn't styled it) - -

You are now following that person. Notices that they post from now on will now appear in your Home timeline. If someone else on your server was already following them you might get some older ones as well.

- - -{HEADING:SUBSECTION:remote_follow_qvitter:Following people using Qvitter} - -

Qvitter has a handy shortcut for following people regardless of whether or not they're on the same server as you. Hover your mouse pointer over their name. A popup will appear. Click the Follow button.

- - -Hovering over a name in qvitter - - -

It will change to Following. You're all done.

- - -Now following - - - -{HEADING:SUBSECTION:remote_follow_manual:Following people using manual subscription URL} - -

Note: This is not the usual way to follow someone but it's a technique some people find convenient.

- -

You can initiate a remote follow directly from your own server. To do this visit /main/ostatussub on your server. For example if you are logged in to quitter.se you would go to https://quitter.se/main/ostatussub. You will get to a page with an error like this:

- - -First page of the ostatussub confirmation - - -

Enter a profile address such as https://quitter.no/doctorow and click Continue. You will jump straight to the confirmation screen as shown above.

- - - - diff --git a/html/user/getting_started.html b/html/user/getting_started.html deleted file mode 100644 index 5f5d13e..0000000 --- a/html/user/getting_started.html +++ /dev/null @@ -1,148 +0,0 @@ -{HEADING:SECTION:choosing_a_server:Choosing a server} - -

You have to make one decision to get on GNU social: which server to use. If you're technically inclined and want to host your own then you can do that. For everyone else there are many choices available. Many of them are listed on this webpage.

- -

If you don't want to shop around, these are some popular choices, particularly for English speakers:

- - - -

There is a small advantage in choosing either a local server or a server where you already know people. Every server has a user directory that lists all the accounts registered there. This can make it easier for others to stumble across you.

- -

Although there are many servers not all of them allow members of the public to create new accounts. The administrator of each server can turn this feature on or off.

- - - -{HEADING:SECTION:registering:Registering an account} - -

In this example we will use Quitter.no, which allows new users to register freely. This server looks very similar to Twitter because it is using a plugin called Qvitter. If you don't like the appearance then you can simply pick a different server.

- -

It has a Sign Up section on the bottom-left of the home page. Enter your basic information and click Sign up to Quitter.no:

- - -Sign Up section of quitter.no - - -

You will be prompted for extra information:

- - -Sign Up Details section of quitter.no - - -

Your nickname is the main name for your account. You won't be able to change it so choose carefully. You can also set a "Full Name" that appears on your profile and alongside your notices. Don't feel obligated to use any real information—anonymous and pseudonymous users are very welcome on GNU social.

- -

A working email address is normally required for account verification. You can use it to receive email notifications too.

- -

Choose a good password. As always it is a good idea to use a password that you don't use anywhere else. Free software like KeePassX can help you generate and remember your passwords.

- -

Press the Sign up to Quitter.no button. You can start using your account right away but you should confirm your email address when the email comes through.

- -

Congratulations! You're on GNU social!

- - - -{HEADING:SECTION:publishing:Publishing a notice} - -

Depending on which server you're using you might see something different once you log in. Here are two examples:

- - -Publishing a notice on a standard server - - -Publishing a notice on a Qvitter server - - -

In both cases you have a text box to type a message. Click inside it, type a notice, then click Send to publish it to your followers.

- -{HEADING:SECTION:repeat_reply:Favouriting, Repeating and Replying} - -

After you have followed a few of your friends and interesting people on the network you will see their posts on your "HOME" newsfeed. Below each post are some icons that allow you to interact with the notice and/or the original poster.

- -

Clicking on the will add a post text field to the page and allow you to respond to the post. Your reply will then appear as a threaded notice underneath the original post, as in this example:

- - -Replying to a notice - - -

Clicking on the will add the post to your list of favourite posts. This also pings the original poster alerting them that you favourited the post. You can see your list of favourite posts by clicking on the "FAVOURITES" link on the left navigation bar. If you are using Chimo's Reverse Favourites plugin you can see who has favourited your previous posts. - -

Clicking on the will repeat the notice so that it will be shared to your own list of followers, and as such probably implies another more explicit favour to the original post.

- -{HEADING:SECTION:groups_tags:Hashtags, Mentions and Groups} - -

In addition to the above methods to interact with followers network, GNU social also supports features you will find familiar with other social networks. You can mention someone else in a post by using the '@' prefix. This example shows how to mention someone, and how the post will look after you post it.

- - -Mentioning a user in a post - - -

You don't have to use the full 'username@domain.tld' format when mentioning someone. If you leave out the full '@domain.tld' part of a user you are mentioning then you are limiting the scope to people on your local instance and your followers. - -

The social network hashtag '#' prefixed before a word, eg #federated makes keywords trend on your home feed and across the federated network as more people use the same hashtag

- -

Groups are an optional part of GNU social. Each social instance can have one or more groups based on a topic. Then local users of the instance as well as remote social users can subscribe to the group. A group is similar to a user in GNU social but you refer to a group using the '!' prefix instead of the '@' prefix.

- -

When you find a group on your local GNU social instance, or a remote instance you can follow it in a similar way to following users, simply enter your GNU social username when prompted after clicking on the "Join" button.

- -

You can post a notice to the group by mentioning the group with a '!' prefix, for example:

- - -Making a post mentioning a group. - - -

Your post will then appear in your follower's feeds as well as anyone else subscribed to the group who may or may not also follow you.

- -{HEADING:SECTION:account_names:Referring to your account} - -

For somebody else to find you on GNU social you need to give them two pieces of information:

- -
    -
  1. What server you're on—for example, quitter.no
  2. -
  3. Your account name. That's the one starting with an @—for example, @fred -
- -

There are three different ways of referring to your account and they're useful at different times.

- -{HEADING:SUBSECTION:account_profile_url:Your profile URL} - -

If you want someone to check out your account the easiest thing is to give them a link to your profile. They don't need a GNU social account of their own. If they have one and they want to follow you they will be able to do that easily from this page.

- -

To access your profile click on your name. On quitter.no it's in the top-left and looks vaguely like this:

- -Link to your profile on quitter.no - -

On a more standard server you can look for something in the menu called Profile:

- -Link to your profile on a standard GNU social server - -

Either way once you get there your browser will be at a URL that looks similar to this:

- -

https://quitter.no/fred

- -

Take that URL and give it to the person who wants to see your account.

- - -{HEADING:SUBSECTION:account_email_format:Doing a remote follow} - -

Another way to describe your account is like an email address. You write your username, move the @ from the start to the end, then write the server without any https or slashes:

- -

fred@quitter.no

- -

This is what you need to type in if you are doing a Remote Follow—that is, following someone on a different server from you. More about that in a later section: {LINK:remote_follow}.

- - - -{HEADING:SUBSECTION:account_at_format:Writing notices} - -

If you're writing a notice and want to mention another user simply tag their account with an @ like this: @fred - Have you met @sandra? She's a colleague of mine.

- -

You might be thinking that the server part is missing. You're right! But GNU social is clever. If you use an @ tag in a notice it assumes you must be talking about someone you follow. It looks through its database to find which account has that name and fills out the server part behind the scenes.

- - -{HEADING:SECTION:getting_started_next_steps:Next steps} - -

In this part you signed up for GNU social and sent your first notice. This will quickly get boring unless you find some other people to follow. The next part describes the different ways you can explore the GNU social network and see what everyone else is saying.

- diff --git a/html/user/tags.html b/html/user/tags.html deleted file mode 100644 index c864ba9..0000000 --- a/html/user/tags.html +++ /dev/null @@ -1,85 +0,0 @@ -{HEADING:SECTION:tags:Tags} - -On GNU social you will sometimes see words with a # or a ! in front of them. The first is a hashtag; the second is a group. They are boths ways of linking together posts that relate to the same topic. They work in different ways. - -{HEADING:SECTION:hashtags:Hashtags} - -{HEADING:SUBSECTION:hashtags_using:Using hashtags} - -

If you put a # in front of a word like #this then that word becomes a clickable link. When you click it you are shown messages from everyone that contain that same hashtag. It allows you to quickly find others who were posting about the same topic, or to bring your post to the attention of those who are watching the tag. Twitter turned the concept into a household name and it's now a staple of microblogging.

- -Typing a hashtag in a post - -

Click on the link in a post to see all posts that include the tag:

- -Browsing a hashtag stream - -

Note that this cannot show posts from the entire GNU social network. This limitation is explained more in the next section.

- -

For network-wide conversations about particular topics, see the section about {LINK:groups}. Groups perform a similar function to hashtags and they use a ! instead of a #.

- -{HEADING:SUBSECTION:hashtags_limits:The limited reach of hashtags} - -

Hashtags are somewhat limited in GNU social because your server does not have a complete view of the network. Suppose your server has 10 accounts on it. Obviously it knows about every post that those 10 people make. If each person follows 10 different people on remote servers, that's 100 extra people. All together your server knows about the posts from 110 accounts.

- -

If you click on a hashtag on your server, it's only ever possible to see posts from those 110 people.

- -

Note also that hashtags are linked to the server where you posted. If your account is on quitter.no and you use the tag #newyearseve, anyone who clicks on it will see quitter.no's list. If somebody on quitter.se uses the same tag, clicking on that tag will show you quitter.se's list. These lists might be different because each server has a different view of the network.

- -

The GNU social federation has lots of benefits but you can see that it makes hashtags a little complicated. {LINK:groups} are a popular alternative that are more reliable.

- -{HEADING:SUBSECTION:hashtags_subscribing:Hashtag subscriptions} - -

You can subscribe to hashtags on your own server. This means that any time your server sees a post containing the hashtag, that post will appear in your Home timeline regardless of whether you normally follow the person who sent it.

- -

The button to subscribe appears when you click on a hashtag. Note that this is not visible if you are using Qvitter (i.e. any of the "quitter" servers). You can access it by switching to the "classic" mode.

- -Subscribing to a hashtag - -

Once you are subscribed, not only will those posts appear in your home timeline, but you will also get quick access to the tag in your left menu. From there you can unsubscribe again.

- -Subscribed to a hashtag - - - - -{HEADING:SECTION:groups:Groups} - -{HEADING:SUBSECTION:groups_using:Joining groups} - -

A group is effectively a noticeboard hosted on a particular server. If you join as a member of a group you can post messages to it by including a group tag. Every time a member makes a post to the group it is submitted to the hosting server. The hosting server then passes it on to all the members. This means that if you join you are guaranteed to see every post in your Home timeline. This is different from subscribing to {LINK:hashtags}, which are shown on a best-effort basis.

- -

You will probably first notice a group in your timeline as a link you can click:

- -A group in a timeline - -

Clicking on the word !tinsel takes you to the group page on the hosting server. If you want to join the group, click the Join button:

- -Join group button - -

You can also browse groups on your server by clicking on the Groups menu item:

- -Groups in the left menu in stock GNU social - -

To post a message to the group, first ensure you have joined. Then use its nickname inside your post, like !tinsel.

- - -{HEADING:SUBSECTION:groups_creating:Creating groups} - -

If you want to start a new group on your own server then you can do that. Click on Groups in the menu item and then click the Create a new group link:

- -Link to create a new group - -

You will have to fill in some initial information about the new group, like this:

- -Form for creating a new group - -

Once the group is created, anyone who has joined can post to it by using its nickname (!tinsel) or any of its aliases (!sparkly).

- -

You will start off as the single administrator of the group. When you visit the group page on your server you will have links to edit settings and set a logo.

- -Group admin page - -

To make another user an admin of the group, click the relevant button next to them:

- -Making another user a group admin diff --git a/html/user/what_is_gnu_social.html b/html/user/what_is_gnu_social.html deleted file mode 100644 index 4335080..0000000 --- a/html/user/what_is_gnu_social.html +++ /dev/null @@ -1,21 +0,0 @@ -{HEADING:SECTION:what_is_gnu_social:What is GNU social} - -

GNU social is a social network for microblogging. It enables you to publish short notices including URLs and pictures. If you're interested in what someone has to say you can follow them. When you log in to your account you see a timeline containing all of the notices from people that you follow. You can have a conversation with another person by replying to each other's notices.

- - -Homepage of gnusocial.no - - -

You may have seen this sort of thing before. GNU social is special for two main reasons: it's decentralised, and it's free software.

- -

Being decentralised means that there is no single server that controls GNU social. Instead, many servers are run by different people around the world. These servers communicate with each other to form a federation. You can create an account on any one of them. Although the servers sometimes look different, ultimately it doesn't matter which one you choose—you're still part of the same network as everyone else.

- -Diagram of federated servers - -

If one server suffers an outage it's inconvenient for the people who have an account on that particular server. The rest of the network continues to operate as normal. This makes GNU social highly resilient. Censorship is difficult as servers can be located anywhere in the world.

- -

Because GNU social is free software it's here to stay. A corporate social network might disappear or start running advertisements when the venture capital runs out. The GNU social code is available to everybody and there are many servers where it's free to create an account.

- -

This is a social network that does what's best for the people who use it—not what makes the most money.

- - diff --git a/render.php b/render.php deleted file mode 100644 index 6be453e..0000000 --- a/render.php +++ /dev/null @@ -1,220 +0,0 @@ - $config["title"]); - - $rev_id = exec("git rev-parse --short HEAD", $output, $retval); - if ($retval != 0) { - $rev_id = "unknown"; - } - $substitutions["{GIT_REV_ID}"] = $rev_id; - date_default_timezone_set('UTC'); - $substitutions["{TIMESTAMP}"] = date("Y-m-d H:i:s e"); - - - // Copy resources across - $resources_to_copy = array_merge(glob("resources/common/*"), glob($config["resources_dir"] . "/*")); - $res_out_dir = $config["output_dir"] . "/" . $config["resources_output_dir"]; - - if (!is_dir($res_out_dir)) { - mkdir($res_out_dir, 0777, true); - } - foreach ($resources_to_copy as $res) { - $res_name = basename($res); - $substitutions["{RES:$res_name}"] = $config["resources_output_dir"] . "/$res_name"; - copy($res, "$res_out_dir/$res_name"); - } - - if (!is_dir($config["output_dir"])) { - mkdir($config["output_dir"], 0777, true); - } - - // We need to pre-process all the pages to get the section headings ready - $sections = array(); // entries are associative arrays - $template_texts = array(); - $page_no = 1; - foreach ($config["pages"] as $page) { - // Read in the text - $template_html = $config["html_dir"] . "/" . $page["id"] . ".html"; - $text = file_get_contents($template_html); - - $section_no = 0; - $subsection_no = 0; - - // Look for things we need to convert to h1, h2, h3 - preg_match_all("/{HEADING:(PAGE|SECTION|SUBSECTION):([^:]*):([^}]+)}/", $text, $section_matches); - $originals = $section_matches[0]; - $types = $section_matches[1]; - $ids = $section_matches[2]; - $titles = $section_matches[3]; - - // TOC gets its info from the config file, not from an h1 which may or may not be present - $page_id = $page["id"]; - $sections[] = array("type" => "PAGE", "page" => "$page_id.html", "section" => "", "number" => "$page_no.", "title" => $page["title"]); - $page_title = $page["title"]; - $substitutions["{LINK:$page_id}"] = "$page_title"; - - for ($i = 0; $i < count($types); $i++) { - $tag = "h1"; - $number = "$page_no."; - if ($types[$i] == "SECTION") { - $tag = "h2"; - $section_no++; - $subsection_no = 0; - $number = "$page_no.$section_no."; - } - if ($types[$i] == "SUBSECTION") { - $tag = "h3"; - $subsection_no++; - $number = "$page_no.$section_no.$subsection_no."; - } - - // If we have an ID - $anchor_start = ""; - $anchor_end = ""; - if (strlen($ids[$i]) > 0 && $types[$i] != "PAGE") { // pages are always added the TOC and have empty section_id - // Add it to the TOC array - $sections[] = array("type" => $types[$i], "page" => "$page_id.html", "section" => $ids[$i], "number" => $number, "title" => $titles[$i]); - // Also create an internal anchor - $anchor_start = ""; - $anchor_end = ""; - } - - $final_tag = "<$tag>$anchor_start$number $titles[$i]$anchor_end"; - - // Replace the template with the tag - $text = str_replace($originals[$i], $final_tag, $text); - - // Now create substitutions for this tag so other pages can refer to them - $page_id = $page["id"]; - $section_id = $ids[$i]; - $title = $titles[$i]; - $substitutions["{LINK:$section_id}"] = "$title"; - $substitutions["{TITLE:$section_id}"] = $title; - } - - // Save the text for later - $template_texts[$page["id"]] = $text; - $page_no++; - } - - // Render each page - for ($i = 0; $i < count($config["pages"]); $i++) { - $page = $config["pages"][$i]; - - // Configure page-specific substitutions - $substitutions["{PREV_URL}"] = ""; - $substitutions["{PREV_TITLE}"] = ""; - $substitutions["{NEXT_URL}"] = ""; - $substitutions["{NEXT_TITLE}"] = ""; - $substitutions["{TOC_URL}"] = "index.html"; - $substitutions["{TOC_TITLE}"] = "Contents"; - $substitutions["{PAGE_TITLE}"] = $page["title"]; - - if (isset($config["pages"][$i-1])) { - $prev_page = $config["pages"][$i-1]; - $substitutions["{PREV_URL}"] = $prev_page["id"] . ".html"; - $substitutions["{PREV_TITLE}"] = $prev_page["title"]; - } - if (isset($config["pages"][$i+1])) { - $next_page = $config["pages"][$i+1]; - $substitutions["{NEXT_URL}"] = $next_page["id"] . ".html"; - $substitutions["{NEXT_TITLE}"] = $next_page["title"]; - } - - - $template_html = $config["html_dir"] . "/" . $page["id"] . ".html"; - $out_html = $config["output_dir"] . "/" . $page["id"] . ".html"; - - if (is_file($out_html)) { - unlink($out_html); - } - - append_file_and_sub($out_html, "html/common/header.html", $substitutions); - $text = do_substitutions($template_texts[$page["id"]], $substitutions); - file_put_contents($out_html, $text, FILE_APPEND); - append_file_and_sub($out_html, "html/common/footer.html", $substitutions); - } - - // Render the index / TOC now that we have all the information at hand - $toc_html = $config["output_dir"] . "/index.html"; - $toc_text = file_get_contents("html/common/toc.html"); - $toc_h1 = file_get_contents("html/common/toc-h1.html"); - $toc_h2 = file_get_contents("html/common/toc-h2.html"); - $toc_h3 = file_get_contents("html/common/toc-h3.html"); - - foreach ($sections as $section) { - $start = $toc_h1; - if ($section["type"] == "SECTION") $start = $toc_h2; - if ($section["type"] == "SUBSECTION") $start = $toc_h3; - - $toc_subs["{TOC_ENTRY_NUMBER}"] = $section["number"]; - $toc_subs["{TOC_ENTRY_TITLE}"] = $section["title"]; - $toc_subs["{TOC_ENTRY_PAGE}"] = $section["page"]; - $toc_subs["{TOC_ENTRY_SECTION}"] = $section["section"]; - - $line = do_substitutions($start, $toc_subs); - $toc_text .= "$line\n"; - } - - $substitutions["{PREV_URL}"] = ""; - $substitutions["{PREV_TITLE}"] = ""; - $substitutions["{NEXT_URL}"] = $config["pages"][0]["id"] . ".html"; - $substitutions["{NEXT_TITLE}"] = $config["pages"][0]["title"]; - $substitutions["{PAGE_TITLE}"] = "Contents"; - - // Write it to disk - if (is_file($toc_html)) { - unlink($toc_html); - } - append_file_and_sub($toc_html, "html/common/header.html", $substitutions); - file_put_contents($toc_html, $toc_text, FILE_APPEND); - append_file_and_sub($toc_html, "html/common/footer.html", $substitutions); - - // This manual is all done - echo "Manual '" . $config["title"] . "' completed rendering at: " . $config["output_dir"] . "\n\n"; -} - -function append_file_and_sub($dest, $src, $substitutions) { - // Read in starting text - $text = file_get_contents($src); - - $text = do_substitutions($text, $substitutions); - - // Append processed text to the destination file - touch($dest); - file_put_contents($dest, $text, FILE_APPEND); -} - - -function do_substitutions($text, $substitutions) { - // Perform all template substitutions - foreach ($substitutions as $from => $to) { - $text = str_replace($from, $to, $text); - } - - return $text; -} - - - -?> \ No newline at end of file