User:Claus chr/Test1: Difference between revisions

From KDE UserBase Wiki
(Created page with "== Test of Input template == <nowiki>{{Input|1=<nowiki>This is verbatim text entered in a template to be displayed as is</ nowiki>}}</nowiki> gives this result {{Inpu...")
 
Line 27: Line 27:
         kDebug() << it["r"].uri();
         kDebug() << it["r"].uri();
     }
     }
</syntaxhighlight>
shorter approach:
<syntaxhighlight lang="css">
.com { color: #93a1a1; }
.lit { color: #195f91; }
.pun, .opn, .clo { color: #93a1a1; }
.fun { color: #dc322f; }
.str, .atv { color: #D14; }
.kwd, .linenums .tag { color: #1e347b; }
.typ, .atn, .dec, .var { color: teal; }
.pln { color: #48484c; }
</syntaxhighlight>
</syntaxhighlight>

Revision as of 19:15, 5 January 2013

Test of Input template

{{Input|1=<nowiki>This is verbatim text entered in a template to be displayed as is</ nowiki>}}

gives this result

This is
verbatim text
  entered in a template
     to be displayed as is

Test of the <code> tag

This snippet <code>short command</code> displayes a short command in the body of text that encloses it.

Syntaxhighlight

The queries can be run via this model -

    QString query = QString::fromLatin1("select ?r where { ?r a nco:Contact . }");
    Soprano::Model* model = Nepomuk2::ResourceManager::instance()->mainModel();
    Soprano::QueryResultIterator it = model->executeQuery( query, Soprano::Query::QueryLanguageSparql );

    while( it.next() ) {
        kDebug() << it["r"].uri();
    }

shorter approach:

.com { color: #93a1a1; }
.lit { color: #195f91; }
.pun, .opn, .clo { color: #93a1a1; }
.fun { color: #dc322f; }
.str, .atv { color: #D14; }
.kwd, .linenums .tag { color: #1e347b; }
.typ, .atn, .dec, .var { color: teal; }
.pln { color: #48484c; }