update for 1.2 release and fix executable bits
This commit is contained in:
11
AUTHORS
Executable file → Normal file
11
AUTHORS
Executable file → Normal file
@@ -1,13 +1,18 @@
|
||||
Active authors:
|
||||
MATE authors:
|
||||
|
||||
Perberos <perberos@gmail.com>
|
||||
Steve Zesch <stevezesch2@gmail.com>
|
||||
Stefano Karapetsas <stefano@karapetsas.com>
|
||||
|
||||
GNOME authors:
|
||||
|
||||
Paolo Maggi <paolo@gnome.org>
|
||||
Paolo Borelli <pborelli@katamail.com>
|
||||
Steve Frécinaux <code@istique.net>
|
||||
Jesse van den Kieboom <jesse@icecrew.nl>
|
||||
|
||||
Old contributors:
|
||||
Old GNOME contributors:
|
||||
|
||||
Chema Celorio
|
||||
James Willcox <jwillcox@gnome.org>
|
||||
Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
|
7
BUGS
7
BUGS
@@ -1,7 +0,0 @@
|
||||
Search on http://bugzilla.gnome.org for a list of known pluma's bug.
|
||||
|
||||
If you find a new bug, please report it at
|
||||
http://bugzilla.gnome.org/enter_bug.cgi?product=pluma.
|
||||
|
||||
Thanks,
|
||||
Paolo
|
14
HACKING
Executable file → Normal file
14
HACKING
Executable file → Normal file
@@ -4,22 +4,14 @@ guidelines for pluma
|
||||
pluma source code is maintained using the git version control system
|
||||
and is available at the following location:
|
||||
|
||||
git://git.gnome.org/pluma
|
||||
|
||||
Or if you have an account on MATE servers:
|
||||
|
||||
ssh://USERNAME@git.gnome.org/git/pluma
|
||||
|
||||
A Web Interface is available at:
|
||||
|
||||
http://git.gnome.org/cgit/pluma
|
||||
https://github.com/mate-desktop/mate-text-editor
|
||||
|
||||
Please don't commit directly to the git repository unless
|
||||
you have been given the green light to commit freely to pluma.
|
||||
When in doubt assume you haven't ;-).
|
||||
|
||||
Please attach patches in bugzilla (http://bugzilla.gnome.org).
|
||||
If the patch fixes a bug that is not reported yet in bugzilla or is
|
||||
Please attach patches in GitHub.
|
||||
If the patch fixes a bug that is not reported yet or is
|
||||
an enhancement, create a new bugreport.
|
||||
|
||||
If you are a translator feel free to mark strings for translation,
|
||||
|
12
MAINTAINERS
12
MAINTAINERS
@@ -1,12 +0,0 @@
|
||||
Paolo Borelli
|
||||
E-mail: pborelli@gnome.org
|
||||
Userid: pborelli
|
||||
|
||||
Paolo Maggi
|
||||
E-mail: paolo@gnome.org
|
||||
Userid: paolo
|
||||
|
||||
Jesse van den Kieboom
|
||||
E-mail: jessevdk@gnome.org
|
||||
Userid: jessevdk
|
||||
|
0
Makefile.am
Executable file → Normal file
0
Makefile.am
Executable file → Normal file
20
README
Executable file → Normal file
20
README
Executable file → Normal file
@@ -1,9 +1,8 @@
|
||||
General Information
|
||||
===================
|
||||
|
||||
This is version 2011.12.01 of pluma. pluma is a small and lightweight UTF-8 text
|
||||
editor for the MATE environment. Based on gedit, the text editor for the GNOME2
|
||||
environment.
|
||||
pluma is a small and lightweight UTF-8 text editor for the MATE
|
||||
environment. Based on gedit, the text editor for the GNOME2 environment.
|
||||
|
||||
pluma is part of MATE and uses the latest GTK+ and MATE libraries.
|
||||
Complete MATE integration is featured, with support for Drag and Drop (DnD)
|
||||
@@ -52,16 +51,11 @@ the file 'COPYING' for more information.
|
||||
|
||||
The official web site is:
|
||||
|
||||
http://matsusoft.com.ar/projects/mate/
|
||||
http://www.mate-desktop.org/
|
||||
|
||||
You can download the latest pluma tarball from:
|
||||
|
||||
https://sourceforge.net/projects/matede/files/
|
||||
|
||||
Information about pluma mailing lists can be found at
|
||||
|
||||
http://matsusoft.com.ar/projects/mate/
|
||||
|
||||
https://pub.mate-desktop.org/releases/
|
||||
|
||||
Installation
|
||||
============
|
||||
@@ -74,13 +68,11 @@ Simple install procedure:
|
||||
|
||||
% gzip -cd mate-file-manager.tar.gz | tar xvf - # unpack the sources
|
||||
% cd mate-file-manager # change to the toplevel directory
|
||||
% ./configure # run the `configure' script
|
||||
% ./autogen.sh # run the `configure' script
|
||||
% make # build pluma
|
||||
[ Become root if necessary ]
|
||||
% make install # install pluma
|
||||
|
||||
See the file 'INSTALL' for more detailed information.
|
||||
|
||||
|
||||
How to report bugs
|
||||
==================
|
||||
@@ -112,8 +104,6 @@ In the bug report please include:
|
||||
it will be more useful if the stack trace is produced running the test
|
||||
program with the --sync command line option.
|
||||
|
||||
See the file 'BUGS' for the list of known bugs.
|
||||
|
||||
|
||||
Patches
|
||||
=======
|
||||
|
@@ -12,7 +12,7 @@ PKG_NAME="mate-text-editor"
|
||||
exit 1
|
||||
}
|
||||
|
||||
which mate-autogen.sh || {
|
||||
which mate-autogen || {
|
||||
echo "You need to install mate-common from the MATE Git"
|
||||
exit 1
|
||||
}
|
||||
@@ -22,5 +22,5 @@ REQUIRED_MACROS=python.m4
|
||||
MATE_DATADIR="$mate_datadir"
|
||||
USE_COMMON_DOC_BUILD=yes
|
||||
|
||||
. mate-autogen.sh
|
||||
. mate-autogen
|
||||
|
||||
|
4
configure.ac
Executable file → Normal file
4
configure.ac
Executable file → Normal file
@@ -3,12 +3,12 @@ dnl Process this file with autoconf to produce a configure script.
|
||||
AC_PREREQ(2.63.2)
|
||||
|
||||
m4_define(pluma_major_version, 1)
|
||||
m4_define(pluma_minor_version, 1)
|
||||
m4_define(pluma_minor_version, 2)
|
||||
m4_define(pluma_micro_version, 0)
|
||||
m4_define(pluma_version, pluma_major_version.pluma_minor_version.pluma_micro_version)
|
||||
|
||||
AC_INIT([pluma], [pluma_version],
|
||||
[https://github.com/mate-desktop/mate-text-editor],
|
||||
[https://github.com/mate-desktop/mate-text-editor/issues],
|
||||
[pluma], [http://mate-desktop.org])
|
||||
|
||||
AC_CONFIG_HEADERS(config.h)
|
||||
|
0
data/Makefile.am
Executable file → Normal file
0
data/Makefile.am
Executable file → Normal file
0
data/pluma-bugreport.sh.in
Executable file → Normal file
0
data/pluma-bugreport.sh.in
Executable file → Normal file
0
data/pluma.1
Executable file → Normal file
0
data/pluma.1
Executable file → Normal file
0
data/pluma.desktop.in.in
Executable file → Normal file
0
data/pluma.desktop.in.in
Executable file → Normal file
0
data/pluma.pc.in
Executable file → Normal file
0
data/pluma.pc.in
Executable file → Normal file
0
data/pluma.schemas.in.in
Executable file → Normal file
0
data/pluma.schemas.in.in
Executable file → Normal file
0
docs/Makefile.am
Executable file → Normal file
0
docs/Makefile.am
Executable file → Normal file
0
docs/class-diagram.dia
Executable file → Normal file
0
docs/class-diagram.dia
Executable file → Normal file
0
docs/reference/Makefile.am
Executable file → Normal file
0
docs/reference/Makefile.am
Executable file → Normal file
0
docs/reference/pluma-docs.sgml
Executable file → Normal file
0
docs/reference/pluma-docs.sgml
Executable file → Normal file
0
docs/reference/pluma-overrides.txt
Executable file → Normal file
0
docs/reference/pluma-overrides.txt
Executable file → Normal file
0
docs/reference/pluma-sections.txt
Executable file → Normal file
0
docs/reference/pluma-sections.txt
Executable file → Normal file
0
docs/reference/pluma.types
Executable file → Normal file
0
docs/reference/pluma.types
Executable file → Normal file
0
help/C/legal.xml
Executable file → Normal file
0
help/C/legal.xml
Executable file → Normal file
0
help/C/pluma.xml
Executable file → Normal file
0
help/C/pluma.xml
Executable file → Normal file
0
help/Makefile.am
Executable file → Normal file
0
help/Makefile.am
Executable file → Normal file
0
help/ar/ar.po
Executable file → Normal file
0
help/ar/ar.po
Executable file → Normal file
0
help/bg/bg.po
Executable file → Normal file
0
help/bg/bg.po
Executable file → Normal file
0
help/ca/ca.po
Executable file → Normal file
0
help/ca/ca.po
Executable file → Normal file
0
help/cs/cs.po
Executable file → Normal file
0
help/cs/cs.po
Executable file → Normal file
0
help/da/da.po
Executable file → Normal file
0
help/da/da.po
Executable file → Normal file
0
help/de/de.po
Executable file → Normal file
0
help/de/de.po
Executable file → Normal file
0
help/el/el.po
Executable file → Normal file
0
help/el/el.po
Executable file → Normal file
0
help/es/es.po
Executable file → Normal file
0
help/es/es.po
Executable file → Normal file
0
help/fi/fi.po
Executable file → Normal file
0
help/fi/fi.po
Executable file → Normal file
0
help/fr/fr.po
Executable file → Normal file
0
help/fr/fr.po
Executable file → Normal file
0
help/hu/hu.po
Executable file → Normal file
0
help/hu/hu.po
Executable file → Normal file
0
help/it/it.po
Executable file → Normal file
0
help/it/it.po
Executable file → Normal file
0
help/ja/ja.po
Executable file → Normal file
0
help/ja/ja.po
Executable file → Normal file
0
help/ko/ko.po
Executable file → Normal file
0
help/ko/ko.po
Executable file → Normal file
0
help/oc/oc.po
Executable file → Normal file
0
help/oc/oc.po
Executable file → Normal file
0
help/pluma.omf.in
Executable file → Normal file
0
help/pluma.omf.in
Executable file → Normal file
0
help/pt_BR/pt_BR.po
Executable file → Normal file
0
help/pt_BR/pt_BR.po
Executable file → Normal file
0
help/ru/ru.po
Executable file → Normal file
0
help/ru/ru.po
Executable file → Normal file
0
help/sv/sv.po
Executable file → Normal file
0
help/sv/sv.po
Executable file → Normal file
0
help/th/th.po
Executable file → Normal file
0
help/th/th.po
Executable file → Normal file
0
help/uk/uk.po
Executable file → Normal file
0
help/uk/uk.po
Executable file → Normal file
0
help/zh_CN/zh_CN.po
Executable file → Normal file
0
help/zh_CN/zh_CN.po
Executable file → Normal file
0
help/zh_HK/zh_HK.po
Executable file → Normal file
0
help/zh_HK/zh_HK.po
Executable file → Normal file
0
help/zh_TW/zh_TW.po
Executable file → Normal file
0
help/zh_TW/zh_TW.po
Executable file → Normal file
0
osx/Info.plist.in
Executable file → Normal file
0
osx/Info.plist.in
Executable file → Normal file
0
osx/Makefile.am
Executable file → Normal file
0
osx/Makefile.am
Executable file → Normal file
0
pixmaps/Makefile.am
Executable file → Normal file
0
pixmaps/Makefile.am
Executable file → Normal file
0
pixmaps/pluma-plugin.png
Executable file → Normal file
0
pixmaps/pluma-plugin.png
Executable file → Normal file
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
0
pixmaps/pluma.ico
Executable file → Normal file
0
pixmaps/pluma.ico
Executable file → Normal file
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
0
plugin-loaders/Makefile.am
Executable file → Normal file
0
plugin-loaders/Makefile.am
Executable file → Normal file
0
plugin-loaders/c/Makefile.am
Executable file → Normal file
0
plugin-loaders/c/Makefile.am
Executable file → Normal file
0
plugin-loaders/c/pluma-plugin-loader-c.c
Executable file → Normal file
0
plugin-loaders/c/pluma-plugin-loader-c.c
Executable file → Normal file
0
plugin-loaders/c/pluma-plugin-loader-c.h
Executable file → Normal file
0
plugin-loaders/c/pluma-plugin-loader-c.h
Executable file → Normal file
0
plugin-loaders/python/Makefile.am
Executable file → Normal file
0
plugin-loaders/python/Makefile.am
Executable file → Normal file
0
plugin-loaders/python/bindings/Makefile.am
Executable file → Normal file
0
plugin-loaders/python/bindings/Makefile.am
Executable file → Normal file
0
plugin-loaders/python/bindings/pluma.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/pluma.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/pluma.override
Executable file → Normal file
0
plugin-loaders/python/bindings/pluma.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumacommands.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/plumacommands.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/plumacommands.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumacommands.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumamessage.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumamessage.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumaplugin.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumaplugin.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumautils.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/plumautils.defs
Executable file → Normal file
0
plugin-loaders/python/bindings/plumautils.override
Executable file → Normal file
0
plugin-loaders/python/bindings/plumautils.override
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-loader-python.c
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-loader-python.c
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-loader-python.h
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-loader-python.h
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-python.c
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-python.c
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-python.h
Executable file → Normal file
0
plugin-loaders/python/pluma-plugin-python.h
Executable file → Normal file
0
pluma/Makefile.am
Executable file → Normal file
0
pluma/Makefile.am
Executable file → Normal file
0
pluma/bacon-message-connection.c
Executable file → Normal file
0
pluma/bacon-message-connection.c
Executable file → Normal file
0
pluma/bacon-message-connection.h
Executable file → Normal file
0
pluma/bacon-message-connection.h
Executable file → Normal file
0
pluma/pluma-app.c
Executable file → Normal file
0
pluma/pluma-app.c
Executable file → Normal file
0
pluma/pluma-app.h
Executable file → Normal file
0
pluma/pluma-app.h
Executable file → Normal file
0
pluma/pluma-close-button.c
Executable file → Normal file
0
pluma/pluma-close-button.c
Executable file → Normal file
0
pluma/pluma-close-button.h
Executable file → Normal file
0
pluma/pluma-close-button.h
Executable file → Normal file
0
pluma/pluma-commands-documents.c
Executable file → Normal file
0
pluma/pluma-commands-documents.c
Executable file → Normal file
0
pluma/pluma-commands-edit.c
Executable file → Normal file
0
pluma/pluma-commands-edit.c
Executable file → Normal file
0
pluma/pluma-commands-file-print.c
Executable file → Normal file
0
pluma/pluma-commands-file-print.c
Executable file → Normal file
0
pluma/pluma-commands-file.c
Executable file → Normal file
0
pluma/pluma-commands-file.c
Executable file → Normal file
0
pluma/pluma-commands-help.c
Executable file → Normal file
0
pluma/pluma-commands-help.c
Executable file → Normal file
0
pluma/pluma-commands-search.c
Executable file → Normal file
0
pluma/pluma-commands-search.c
Executable file → Normal file
0
pluma/pluma-commands-view.c
Executable file → Normal file
0
pluma/pluma-commands-view.c
Executable file → Normal file
0
pluma/pluma-commands.h
Executable file → Normal file
0
pluma/pluma-commands.h
Executable file → Normal file
0
pluma/pluma-debug.c
Executable file → Normal file
0
pluma/pluma-debug.c
Executable file → Normal file
0
pluma/pluma-debug.h
Executable file → Normal file
0
pluma/pluma-debug.h
Executable file → Normal file
0
pluma/pluma-dirs.c
Executable file → Normal file
0
pluma/pluma-dirs.c
Executable file → Normal file
0
pluma/pluma-dirs.h
Executable file → Normal file
0
pluma/pluma-dirs.h
Executable file → Normal file
0
pluma/pluma-document-input-stream.c
Executable file → Normal file
0
pluma/pluma-document-input-stream.c
Executable file → Normal file
0
pluma/pluma-document-input-stream.h
Executable file → Normal file
0
pluma/pluma-document-input-stream.h
Executable file → Normal file
0
pluma/pluma-document-loader.c
Executable file → Normal file
0
pluma/pluma-document-loader.c
Executable file → Normal file
0
pluma/pluma-document-loader.h
Executable file → Normal file
0
pluma/pluma-document-loader.h
Executable file → Normal file
0
pluma/pluma-document-output-stream.c
Executable file → Normal file
0
pluma/pluma-document-output-stream.c
Executable file → Normal file
0
pluma/pluma-document-output-stream.h
Executable file → Normal file
0
pluma/pluma-document-output-stream.h
Executable file → Normal file
0
pluma/pluma-document-saver.c
Executable file → Normal file
0
pluma/pluma-document-saver.c
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user