Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
7e7eafb1
Kaydet (Commit)
7e7eafb1
authored
Tem 03, 2012
tarafından
Iain Billett
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added licence headers on java & xml files.
Change-Id: I2b9a62e3426e7842baeac24cf122fc83b4f238da
üst
478ba74a
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
83 additions
and
0 deletions
+83
-0
document_viewer.xml
...mental/LibreOffice4Android/res/layout/document_viewer.xml
+6
-0
file_explorer_grid_item.xml
...ibreOffice4Android/res/layout/file_explorer_grid_item.xml
+6
-0
file_grid.xml
...experimental/LibreOffice4Android/res/layout/file_grid.xml
+6
-0
file_list.xml
...experimental/LibreOffice4Android/res/layout/file_list.xml
+7
-0
file_list_item.xml
...imental/LibreOffice4Android/res/layout/file_list_item.xml
+6
-0
main.xml
android/experimental/LibreOffice4Android/res/layout/main.xml
+7
-0
navigation_grid_item.xml
...l/LibreOffice4Android/res/layout/navigation_grid_item.xml
+7
-0
GridItemAdapter.java
...ffice4Android/src/org/libreoffice/ui/GridItemAdapter.java
+8
-0
LibreOfficeUIActivity.java
...Android/src/org/libreoffice/ui/LibreOfficeUIActivity.java
+8
-0
ListItemAdapter.java
...ffice4Android/src/org/libreoffice/ui/ListItemAdapter.java
+7
-0
PreferenceEditor.java
...fice4Android/src/org/libreoffice/ui/PreferenceEditor.java
+7
-0
WriterViewerActivity.java
...4Android/src/org/libreoffice/ui/WriterViewerActivity.java
+8
-0
No files found.
android/experimental/LibreOffice4Android/res/layout/document_viewer.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"wrap_content"
...
...
android/experimental/LibreOffice4Android/res/layout/file_explorer_grid_item.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
...
...
android/experimental/LibreOffice4Android/res/layout/file_grid.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
...
...
android/experimental/LibreOffice4Android/res/layout/file_list.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
...
...
android/experimental/LibreOffice4Android/res/layout/file_list_item.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"match_parent"
...
...
android/experimental/LibreOffice4Android/res/layout/main.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"fill_parent"
...
...
android/experimental/LibreOffice4Android/res/layout/navigation_grid_item.xml
Dosyayı görüntüle @
7e7eafb1
<!--
This file is part of the LibreOffice project.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-->
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android=
"http://schemas.android.com/apk/res/android"
android:layout_width=
"150dp"
...
...
android/experimental/LibreOffice4Android/src/org/libreoffice/ui/GridItemAdapter.java
Dosyayı görüntüle @
7e7eafb1
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package
org
.
libreoffice
.
ui
;
import
org.libreoffice.R
;
...
...
android/experimental/LibreOffice4Android/src/org/libreoffice/ui/LibreOfficeUIActivity.java
Dosyayı görüntüle @
7e7eafb1
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package
org
.
libreoffice
.
ui
;
import
org.libreoffice.R
;
...
...
android/experimental/LibreOffice4Android/src/org/libreoffice/ui/ListItemAdapter.java
Dosyayı görüntüle @
7e7eafb1
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package
org
.
libreoffice
.
ui
;
import
org.libreoffice.R
;
...
...
android/experimental/LibreOffice4Android/src/org/libreoffice/ui/PreferenceEditor.java
Dosyayı görüntüle @
7e7eafb1
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package
org
.
libreoffice
.
ui
;
import
org.libreoffice.R
;
...
...
android/experimental/LibreOffice4Android/src/org/libreoffice/ui/WriterViewerActivity.java
Dosyayı görüntüle @
7e7eafb1
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package
org
.
libreoffice
.
ui
;
import
org.libreoffice.R
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment