update for 1.2 release and fix executable bits

This commit is contained in:
Stefano Karapetsas 2012-03-11 20:28:11 +01:00
parent 3fe8f220a9
commit 0b694f0d10
304 changed files with 20 additions and 269 deletions

11
AUTHORS Executable file → Normal file
View 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 Maggi <paolo@gnome.org>
Paolo Borelli <pborelli@katamail.com> Paolo Borelli <pborelli@katamail.com>
Steve Frécinaux <code@istique.net> Steve Frécinaux <code@istique.net>
Jesse van den Kieboom <jesse@icecrew.nl> Jesse van den Kieboom <jesse@icecrew.nl>
Old contributors: Old GNOME contributors:
Chema Celorio Chema Celorio
James Willcox <jwillcox@gnome.org> James Willcox <jwillcox@gnome.org>
Federico Mena Quintero <federico@ximian.com> Federico Mena Quintero <federico@ximian.com>

7
BUGS
View File

@ -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

0
COPYING Executable file → Normal file
View File

0
ChangeLog Executable file → Normal file
View File

14
HACKING Executable file → Normal file
View File

@ -4,22 +4,14 @@ guidelines for pluma
pluma source code is maintained using the git version control system pluma source code is maintained using the git version control system
and is available at the following location: and is available at the following location:
git://git.gnome.org/pluma https://github.com/mate-desktop/mate-text-editor
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
Please don't commit directly to the git repository unless Please don't commit directly to the git repository unless
you have been given the green light to commit freely to pluma. you have been given the green light to commit freely to pluma.
When in doubt assume you haven't ;-). When in doubt assume you haven't ;-).
Please attach patches in bugzilla (http://bugzilla.gnome.org). Please attach patches in GitHub.
If the patch fixes a bug that is not reported yet in bugzilla or is If the patch fixes a bug that is not reported yet or is
an enhancement, create a new bugreport. an enhancement, create a new bugreport.
If you are a translator feel free to mark strings for translation, If you are a translator feel free to mark strings for translation,

View File

@ -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
View File

0
NEWS Executable file → Normal file
View File

20
README Executable file → Normal file
View File

@ -1,9 +1,8 @@
General Information General Information
=================== ===================
This is version 2011.12.01 of pluma. pluma is a small and lightweight UTF-8 text pluma is a small and lightweight UTF-8 text editor for the MATE
editor for the MATE environment. Based on gedit, the text editor for the GNOME2 environment. Based on gedit, the text editor for the GNOME2 environment.
environment.
pluma is part of MATE and uses the latest GTK+ and MATE libraries. 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) 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: The official web site is:
http://matsusoft.com.ar/projects/mate/ http://www.mate-desktop.org/
You can download the latest pluma tarball from: You can download the latest pluma tarball from:
https://sourceforge.net/projects/matede/files/ https://pub.mate-desktop.org/releases/
Information about pluma mailing lists can be found at
http://matsusoft.com.ar/projects/mate/
Installation Installation
============ ============
@ -74,13 +68,11 @@ Simple install procedure:
% gzip -cd mate-file-manager.tar.gz | tar xvf - # unpack the sources % gzip -cd mate-file-manager.tar.gz | tar xvf - # unpack the sources
% cd mate-file-manager # change to the toplevel directory % cd mate-file-manager # change to the toplevel directory
% ./configure # run the `configure' script % ./autogen.sh # run the `configure' script
% make # build pluma % make # build pluma
[ Become root if necessary ] [ Become root if necessary ]
% make install # install pluma % make install # install pluma
See the file 'INSTALL' for more detailed information.
How to report bugs 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 it will be more useful if the stack trace is produced running the test
program with the --sync command line option. program with the --sync command line option.
See the file 'BUGS' for the list of known bugs.
Patches Patches
======= =======

View File

@ -12,7 +12,7 @@ PKG_NAME="mate-text-editor"
exit 1 exit 1
} }
which mate-autogen.sh || { which mate-autogen || {
echo "You need to install mate-common from the MATE Git" echo "You need to install mate-common from the MATE Git"
exit 1 exit 1
} }
@ -22,5 +22,5 @@ REQUIRED_MACROS=python.m4
MATE_DATADIR="$mate_datadir" MATE_DATADIR="$mate_datadir"
USE_COMMON_DOC_BUILD=yes USE_COMMON_DOC_BUILD=yes
. mate-autogen.sh . mate-autogen

4
configure.ac Executable file → Normal file
View File

@ -3,12 +3,12 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.63.2) AC_PREREQ(2.63.2)
m4_define(pluma_major_version, 1) 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_micro_version, 0)
m4_define(pluma_version, pluma_major_version.pluma_minor_version.pluma_micro_version) m4_define(pluma_version, pluma_major_version.pluma_minor_version.pluma_micro_version)
AC_INIT([pluma], [pluma_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]) [pluma], [http://mate-desktop.org])
AC_CONFIG_HEADERS(config.h) AC_CONFIG_HEADERS(config.h)

0
data/Makefile.am Executable file → Normal file
View File

0
data/pluma-bugreport.sh.in Executable file → Normal file
View File

0
data/pluma.1 Executable file → Normal file
View File

0
data/pluma.desktop.in.in Executable file → Normal file
View File

0
data/pluma.pc.in Executable file → Normal file
View File

0
data/pluma.schemas.in.in Executable file → Normal file
View File

0
docs/Makefile.am Executable file → Normal file
View File

0
docs/class-diagram.dia Executable file → Normal file
View File

0
docs/reference/Makefile.am Executable file → Normal file
View File

0
docs/reference/pluma-docs.sgml Executable file → Normal file
View File

0
docs/reference/pluma-overrides.txt Executable file → Normal file
View File

0
docs/reference/pluma-sections.txt Executable file → Normal file
View File

0
docs/reference/pluma.types Executable file → Normal file
View File

0
help/C/legal.xml Executable file → Normal file
View File

0
help/C/pluma.xml Executable file → Normal file
View File

0
help/Makefile.am Executable file → Normal file
View File

0
help/ar/ar.po Executable file → Normal file
View File

0
help/bg/bg.po Executable file → Normal file
View File

0
help/ca/ca.po Executable file → Normal file
View File

0
help/cs/cs.po Executable file → Normal file
View File

0
help/da/da.po Executable file → Normal file
View File

0
help/de/de.po Executable file → Normal file
View File

0
help/el/el.po Executable file → Normal file
View File

0
help/es/es.po Executable file → Normal file
View File

0
help/fi/fi.po Executable file → Normal file
View File

0
help/fr/fr.po Executable file → Normal file
View File

0
help/hu/hu.po Executable file → Normal file
View File

0
help/it/it.po Executable file → Normal file
View File

0
help/ja/ja.po Executable file → Normal file
View File

0
help/ko/ko.po Executable file → Normal file
View File

0
help/oc/oc.po Executable file → Normal file
View File

0
help/pluma.omf.in Executable file → Normal file
View File

0
help/pt_BR/pt_BR.po Executable file → Normal file
View File

0
help/ru/ru.po Executable file → Normal file
View File

0
help/sv/sv.po Executable file → Normal file
View File

0
help/th/th.po Executable file → Normal file
View File

0
help/uk/uk.po Executable file → Normal file
View File

0
help/zh_CN/zh_CN.po Executable file → Normal file
View File

0
help/zh_HK/zh_HK.po Executable file → Normal file
View File

0
help/zh_TW/zh_TW.po Executable file → Normal file
View File

0
osx/Info.plist.in Executable file → Normal file
View File

0
osx/Makefile.am Executable file → Normal file
View File

0
pixmaps/Makefile.am Executable file → Normal file
View File

0
pixmaps/pluma-plugin.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

0
pixmaps/pluma.ico Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 9.4 KiB

After

Width:  |  Height:  |  Size: 9.4 KiB

0
plugin-loaders/Makefile.am Executable file → Normal file
View File

0
plugin-loaders/c/Makefile.am Executable file → Normal file
View File

0
plugin-loaders/c/pluma-plugin-loader-c.c Executable file → Normal file
View File

0
plugin-loaders/c/pluma-plugin-loader-c.h Executable file → Normal file
View File

0
plugin-loaders/python/Makefile.am Executable file → Normal file
View File

0
plugin-loaders/python/bindings/Makefile.am Executable file → Normal file
View File

0
plugin-loaders/python/bindings/pluma.defs Executable file → Normal file
View File

0
plugin-loaders/python/bindings/pluma.override Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumacommands.defs Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumacommands.override Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumamessage.override Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumaplugin.override Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumautils.defs Executable file → Normal file
View File

0
plugin-loaders/python/bindings/plumautils.override Executable file → Normal file
View File

0
plugin-loaders/python/pluma-plugin-loader-python.c Executable file → Normal file
View File

0
plugin-loaders/python/pluma-plugin-loader-python.h Executable file → Normal file
View File

0
plugin-loaders/python/pluma-plugin-python.c Executable file → Normal file
View File

0
plugin-loaders/python/pluma-plugin-python.h Executable file → Normal file
View File

0
pluma/Makefile.am Executable file → Normal file
View File

0
pluma/bacon-message-connection.c Executable file → Normal file
View File

0
pluma/bacon-message-connection.h Executable file → Normal file
View File

0
pluma/pluma-app.c Executable file → Normal file
View File

0
pluma/pluma-app.h Executable file → Normal file
View File

0
pluma/pluma-close-button.c Executable file → Normal file
View File

0
pluma/pluma-close-button.h Executable file → Normal file
View File

0
pluma/pluma-commands-documents.c Executable file → Normal file
View File

0
pluma/pluma-commands-edit.c Executable file → Normal file
View File

0
pluma/pluma-commands-file-print.c Executable file → Normal file
View File

0
pluma/pluma-commands-file.c Executable file → Normal file
View File

0
pluma/pluma-commands-help.c Executable file → Normal file
View File

0
pluma/pluma-commands-search.c Executable file → Normal file
View File

0
pluma/pluma-commands-view.c Executable file → Normal file
View File

0
pluma/pluma-commands.h Executable file → Normal file
View File

0
pluma/pluma-debug.c Executable file → Normal file
View File

0
pluma/pluma-debug.h Executable file → Normal file
View File

0
pluma/pluma-dirs.c Executable file → Normal file
View File

0
pluma/pluma-dirs.h Executable file → Normal file
View File

0
pluma/pluma-document-input-stream.c Executable file → Normal file
View File

0
pluma/pluma-document-input-stream.h Executable file → Normal file
View File

0
pluma/pluma-document-loader.c Executable file → Normal file
View File

0
pluma/pluma-document-loader.h Executable file → Normal file
View File

0
pluma/pluma-document-output-stream.c Executable file → Normal file
View File

0
pluma/pluma-document-output-stream.h Executable file → Normal file
View File

0
pluma/pluma-document-saver.c Executable file → Normal file
View File

Some files were not shown because too many files have changed in this diff Show More