Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision 50ffd323190d5c1d6ff98abf550c174eb47810b7 authored by muncus@gmail.com on 21 January 2012, 19:34:41 UTC, committed by muncus@gmail.com on 21 January 2012, 19:34:41 UTC
stop subject snippet at the first newline, if there is one in the first
40 chars.

git-svn-id: https://klaxon.googlecode.com/svn/trunk@142 c4afc712-db7e-11dd-87b6-9d1a99559f42
1 parent 52df172
  • Files
  • Changes
  • 08c11e4
  • /
  • AndroidManifest.xml
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:50ffd323190d5c1d6ff98abf550c174eb47810b7
directory badge Iframe embedding
swh:1:dir:08c11e47c80e8c1628407c76001fcafe79f6798e
content badge Iframe embedding
swh:1:cnt:947d32b22b969235ce7ffc83fa279696347ccfc6

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.nerdcircus.android.klaxon"
    android:installLocation="auto"
    android:versionCode="27"
    android:versionName="0.27">
    <uses-sdk
        android:minSdkVersion="4"
    />
    <uses-permission android:name="android.permission.RECEIVE_SMS"/>
    <uses-permission android:name="android.permission.RECEIVE_MMS"/>
    <uses-permission android:name="android.permission.SEND_SMS"/>
    <uses-permission android:name="android.permission.READ_SMS"/>
    <uses-permission android:name="android.permission.VIBRATE"/>
    <application android:icon="@drawable/app_icon"
        android:theme="@style/SelectorTheme">
        <activity android:name=".KlaxonList" android:label="@string/app_name" 
            android:launchMode="singleTask" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data android:mimeType="vnd.android.cursor.dir/pages" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:name=".PageViewer" android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <provider android:name=".PagerProvider" android:authorities="org.nerdcircus.android.klaxon" android:multiprocess="true"/>
        <receiver android:name=".SmsPageReceiver" >
            <intent-filter android:priority="100">
                <action android:name="android.provider.Telephony.SMS_RECEIVED" />
            </intent-filter>
            <intent-filter>
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <action android:name="org.nerdcircus.android.klaxon.REPLY" />
            </intent-filter>

        </receiver>
        <!--
        <receiver android:name=".MmsPageReceiver" >
            <intent-filter>
                <action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED"/>
                <data android:mimeType="application/vnd.wap.mms-message" />
            </intent-filter>
        </receiver>
        -->
        <!--
        <receiver android:name=".GmailPageReceiver" >
            <intent-filter>
                <action android:name="android.intent.action.PROVIDER_CHANGED" />
                <data android:scheme="content"
                      android:path="gmail-ls/unread/^i" />
            </intent-filter>
            <intent-filter>
                <data android:mimeType="vnd.android.cursor.item/pages" />
                <action android:name="org.nerdcircus.android.klaxon.REPLY" />
            </intent-filter>
        </receiver>
        -->
        <receiver android:name=".Notifier" >
            <intent-filter>
                <action android:name="org.nerdcircus.android.klaxon.PAGES_VIEWED" />
                <action android:name="org.nerdcircus.android.klaxon.ANNOY" />
            </intent-filter>
            <intent-filter>
                <action android:name="org.nerdcircus.android.klaxon.PAGE_RECEIVED" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
            </intent-filter>
            <intent-filter>
                <!-- this action is called after a reply is sent, to update state -->
                <action android:name="org.nerdcircus.android.klaxon.REPLY_SENT" />
                <data android:mimeType="vnd.android.cursor.item/pages" />
            </intent-filter>
        </receiver>
        <activity android:name=".Preferences" android:label="@string/prefs_activity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name=".Changelog" android:label="Changelog">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
        <activity android:name=".ReplyList" android:label="@string/replylist_activity">
            <intent-filter>
                <action android:name="android.intent.action.PICK" />
                <data android:mimeType="vnd.android.cursor.item/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <activity android:name=".ReplyEditor" android:label="Reply Editor">
            <intent-filter>
                <action android:name="android.intent.action.INSERT" />
                <data android:mimeType="vnd.android.cursor.dir/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.EDIT" />
                <data android:mimeType="vnd.android.cursor.item/reply" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>
</manifest> 
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API