This file is indexed.

/usr/share/help/el/gnome-devel-demos/fontchooserwidget.js.page is in gnome-devel-docs 3.18.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" xmlns:its="http://www.w3.org/2005/11/its" xmlns:xi="http://www.w3.org/2001/XInclude" type="guide" style="task" id="fontchooserwidget.js" xml:lang="el">
  <info>
    <title type="text">Γραφικό στοιχείο επιλογής γραμματοσειράς (FontChooserWidget) (JavaScript)</title>
    <link type="guide" xref="beginner.js#font-selectors"/>
    <revision version="0.2" date="2013-06-25" status="review"/>

    <credit type="author copyright">
      <name>Meg Ford</name>
      <email its:translate="no">megford@gnome.org</email>
      <years>2013</years>
    </credit>

    <desc>Ένα γραφικό στοιχείο για επιλογή μιας γραμματοσειράς</desc>
  
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
      <mal:name>Ελληνική μεταφραστική ομάδα GNOME</mal:name>
      <mal:email>team@gnome.gr</mal:email>
      <mal:years>2012-2015</mal:years>
    </mal:credit>
  
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
      <mal:name>Δημήτρης Σπίγγος</mal:name>
      <mal:email>dmtrs32@gmail.com</mal:email>
      <mal:years>2012, 2013</mal:years>
    </mal:credit>
  
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
      <mal:name>Μαρία Θουκιδίδου</mal:name>
      <mal:email>marablack3@gmail.com</mal:email>
      <mal:years>2014</mal:years>
    </mal:credit>
  
    <mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
      <mal:name>Θάνος Τρυφωνίδης</mal:name>
      <mal:email>tomtryf@gmail.com</mal:email>
      <mal:years>2014, 2015</mal:years>
    </mal:credit>
  </info>

  <title>FontChooserWidget</title>

  <media type="image" mime="image/png" src="media/fontchooserwidget.png"/>
  <p>Ένα FontChooserWidget με μια συνάρτηση επανάκλησης.</p>

  <links type="section"/>

  <section id="code">
    <title>Ο χρησιμοποιούμενος κώδικας για παραγωγή αυτού παραδείγματος</title>
    <code mime="application/javascript" style="numbered">//!/usr/bin/gjs

const Gtk = imports.gi.Gtk·
const Lang = imports.lang·

const FontChooserWidgetExample = new Lang.Class ({
    Name: 'Font Chooser Widget Example',

    // Δημιουργία της εφαρμογής itthis
    _init: function () {
        this.application = new Gtk.Application({ application_id: 'org.example.fontchooserwidget' })·

        // Σύνδεση σημάτων 'activate' και 'startup' στις συναρτήσεις επανάκλησης
        this.application.connect('activate', Lang.bind(this, this._onActivate))·
        this.application.connect('startup', Lang.bind(this, this._onStartup))·
    },

    // Η συνάρτηση επανάκλησης για το σήμα 'activate' παρουσιάζει παράθυρα όταν είναι ενεργή
    _onActivate: function() {
        this.window.present()·
    },

    // Η συνάρτηση επανάκλησης για το σήμα 'startup' δομεί τη διεπαφή χρήστη
    _onStartup: function() {
        this._buildUI ()·
    },

    // Δόμηση της διεπαφής χρήστη της εφαρμογής
    _buildUI: function() {
        // Δημιουργία του παραθύρου της εφαρμογής
        this.window = new Gtk.ApplicationWindow  ({ application: this.application,
                                                    window_position: Gtk.WindowPosition.CENTER,
                                                    title: "FontChooserWidget",
                                                    default_width: 200,
                                                    default_height: 200,
                                                    border_width: 10 })·

        this.fontChooser = new Gtk.FontChooserWidget()·
        // Μια προεπιλεγμένη γραμματοσειρά
        this.fontChooser.set_font("Sans")·
        // Κείμενο για προεπισκόπηση της γραμματοσειράς
        this.fontChooser.set_preview_text("This is an example of preview text!")·

        // Σύνδεση σήματος από τον επιλογέα γραμματοσειράς στη συνάρτηση επανάκλησης
        this.fontChooser.connect("notify::font", Lang.bind(this, this._fontCb))·

        // Προσθήκη του επιλογέα γραμματοσειράς στο παράθυρο
        this.window.add(this.fontChooser)·
        this.window.show_all()·
   },

     // Συνάρτηση επανάκλησης:
     _fontCb: function() {
        // Εκτύπωση στο τερματικό
        print("You chose the font " + this.fontChooser.get_font())·
    }
})·

// Εκτέλεση της εφαρμογής
let app = new FontChooserWidgetExample()·
app.application.run (ARGV)·
</code>
  </section>

  <section id="references">
    <title>Αναφορές API</title>
    <p>Σε αυτό το παράδειγμα χρησιμοποιήσαμε τα παρακάτω:</p>
    <list>
      <item><p><link href="http://developer.gnome.org/gtk3/unstable/GtkFontChooserWidget.html">GtkFontChooserWidget</link></p></item>
    </list>
  </section>
</page>