File: main.html

package info (click to toggle)
appstream-generator 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,864 kB
  • sloc: cpp: 13,398; xml: 259; sh: 235; python: 103; makefile: 19
file content (54 lines) | stat: -rw-r--r-- 2,217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{% extends "base.html" %}

{% block title %}Start{% endblock %}

{% block header_content %}
AppStream data hints for {{project_name}}
{% endblock %}

{% block content %}
<div class="wrapper">

    <h1>Welcome!</h1>
    <p>Welcome to the AppStream Generator HTML pages!</p>
    <p>
      These pages exist to provide a user-friendly view on the issues discovered by the
      AppStream metadata generator while extracting metadata from packages in the {{project_name}} archive.
      They can also be used to take a look at the raw metadata, to spot possible problems
      with the data itself or the generation process.
    </p>

    <h1>Select a suite</h1>
    {% for suite in suites %}
      <h3><a href="{{suite.suite}}/index.html">{{suite.suite}}</a></h3>
    {% endfor %}
    <br/>
    {% for oldsuite in oldsuites %}
      <h3><a href="{{oldsuite.suite}}/index.html">{{oldsuite.suite}}</a></h3>
    {% endfor %}

    <br/><hr/>
    <img src="{{root_url}}/static/img/asgen.png" alt="AppStream Generator Logo" style="margin: 4px; float: right;" />
    <h1>What is AppStream?</h1>
    <p>
      AppStream is a cross-distro XML format to provide metadata for software components and to assign unique identifiers to software.<br/>
      In {{project_name}}, we parse all XML provided by upstream projects as well as other metadata (.desktop-files, ...), and compile a single
      metadata file from it, which is then shipped to users.
    </p>
    <p>
      The generated metadata can for example be used by software centers like GNOME Software or KDE Discover to display a user-friendly application-centric
      view on the package archive.<br/>
      It can also be used by other software to find missing plugins, codecs, fonts, etc. or simply by users to install software on any Linux distribution
      without knowing the exact package name.
    </p>

    <h1>More information</h1>
    <p>
      The offical AppStream specification can be found at <a href="http://www.freedesktop.org/software/appstream/docs/">freedesktop.org</a>.
    </p>
    <p>
      You can find the source-code of the AppStream Generator <a href="https://github.com/ximion/appstream-generator">here</a>.
    </p>

</div>
{% endblock %}