Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Thu, 03 May 2012 20:09:23
Commit: 1b377a6059a426ef23ed96040d60587b02a5360d
https://github.com/geany/geany-plugins/commit/1b377a6059a426ef23ed96040d605…
Log Message:
-----------
GeanyPG: Update of README to reflect change to github
Modified Paths:
--------------
geanypg/README
Modified: geanypg/README
16 files changed, 8 insertions(+), 8 deletions(-)
===================================================================
@@ -23,16 +23,16 @@ pinentry (see man 1 pinentry) will be used.
Development
-----------
-You can checkout the current source code from the Subversion repository
-at Sourceforge.net. Get the code from:
+You can checkout the current source code from the git repository at
+github.com. Get the code by:
-svn checkout
-http://geany-plugins.svn.sourceforge.net/svnroot/geany-plugins/trunk/geany-plugins/geanypg
+git clone https://github.com/geany/geany-plugins.git
-If you want to create a patch, please respect the license of GeanyPG as
-well as intellectual property of third parties. Patches that should be
-included to the default distribution must be licensed under the same
-conditions as GeanyPG by the copyright owner (GPL2+).
+If you want to create a patch, please respect the license of
+GeanyPG (GPLv2 or above) as well as intellectual property of
+third. Patches that should be included to the default distribution
+must be licensed under the same conditions as GeanyPG by the
+copyright owner.
Known issues
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Enrico Trotta <enrico.trt(a)gmail.com>
Committer: Enrico Trotta <enrico.trt(a)gmail.com>
Date: Wed, 02 May 2012 20:36:00
Commit: d6582fb2731265f58dca68297c195a35847d0852
https://github.com/geany/geany-plugins/commit/d6582fb2731265f58dca68297c195…
Log Message:
-----------
new task in TODO
Modified Paths:
--------------
geniuspaste/TODO
Modified: geniuspaste/TODO
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -1,4 +1,4 @@
TODO
----
-
- * Make the geany's pastebin the default pastebin
+ [!] Implement saving/loading of settings
+ [-] Make the geany's pastebin the default pastebin
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Enrico <enrico.trt(a)gmail.com>
Committer: Enrico <enrico.trt(a)gmail.com>
Date: Wed, 02 May 2012 20:19:29
Commit: 6acdb3aebb85d978b7b7953ca46a6b884e3da44a
https://github.com/geany/geany-plugins/commit/6acdb3aebb85d978b7b7953ca46a6…
Log Message:
-----------
added handling of errors, overall clean of the code, removed uneeded code
Modified Paths:
--------------
geniuspaste/src/geniuspaste.c
geniuspaste/wscript_build
geniuspaste/wscript_configure
po/POTFILES.in
Modified: geniuspaste/src/geniuspaste.c
47 files changed, 24 insertions(+), 23 deletions(-)
===================================================================
@@ -1,3 +1,4 @@
+
/*
* geniuspaste - paste your code on your favorite pastebin.
*
@@ -30,9 +31,9 @@
#include <geanyplugin.h>
#ifdef G_OS_WIN32
- #define USERNAME getenv("USERNAME")
+ #define USERNAME getenv("USERNAME")
#else
- #define USERNAME getenv("USER")
+ #define USERNAME getenv("USER")
#endif
#define CODEPAD_ORG 0
@@ -48,16 +49,16 @@
static GtkWidget *main_menu_item = NULL;
static const gchar *websites[] = {
- "http://codepad.org",
- "http://pastebin.com/api_public.php",
- "http://pastebin.geany.org/api/",
- "http://dpaste.de/api/",
- "http://sprunge.us/",
+"http://codepad.org",
+"http://pastebin.com/api_public.php",
+"http://pastebin.geany.org/api/",
+"http://dpaste.de/api/",
+"http://sprunge.us/",
};
static struct {
- GtkWidget *combo;
- GtkWidget *check_button;
+ GtkWidget *combo;
+ GtkWidget *check_button;
} widgets;
static gint website_selected;
@@ -65,9 +66,9 @@
PLUGIN_VERSION_CHECK(147)
PLUGIN_SET_INFO("GeniusPaste",
- "Paste your code on your favorite pastebin",
- "0.1",
- "Enrico Trotta");
+ "Paste your code on your favorite pastebin",
+ "0.1",
+ "Enrico Trotta");
static gint indexof(const gchar * string, gchar c)
{
@@ -131,7 +132,7 @@ static void paste(const gchar * website)
"submit", "Submit", NULL);
break;
-
+
case PASTEBIN_COM:
result = g_file_get_contents(f_path, &f_content, &f_lenght, &error);
@@ -145,8 +146,8 @@ static void paste(const gchar * website)
formdata = soup_form_encode("paste_code", f_content, "paste_format",
f_type, "paste_name", f_title, NULL);
break;
-
-
+
+
case DPASTE_DE:
printf("%s\n", f_type);
@@ -165,34 +166,34 @@ static void paste(const gchar * website)
"lexer", f_type, NULL);
break;
-
+
case SPRUNGE_US:
-
+
result = g_file_get_contents(f_path, &f_content, &f_lenght, &error);
if(result == FALSE) {
dialogs_show_msgbox(GTK_MESSAGE_ERROR, "Unable to the the content of the file");
g_error_free(error);
return;
}
-
+
msg = soup_message_new("POST", website);
formdata = soup_form_encode("sprunge", f_content, NULL);
-
+
break;
-
+
case PASTEBIN_GEANY_ORG:
-
+
result = g_file_get_contents(f_path, &f_content, &f_lenght, &error);
if(result == FALSE) {
dialogs_show_msgbox(GTK_MESSAGE_ERROR, "Unable to the the content of the file");
g_error_free(error);
return;
}
-
+
msg = soup_message_new("POST", website);
formdata = soup_form_encode("content", f_content, "author", USERNAME,
"title", f_title, "lexer", f_type, NULL);
-
+
break;
}
Modified: geniuspaste/wscript_build
31 files changed, 31 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+#
+# WAF build script for geany-plugins - Update Checker
+#
+# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+# Copyright 2011-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# $Id$
+
+from build.wafutils import build_plugin
+
+
+name = 'geniuspaste'
+includes = ['geniuspaste/src']
+libraries = ['LIBSOUP']
+
+build_plugin(bld, name, includes=includes, libraries=libraries)
Modified: geniuspaste/wscript_configure
36 files changed, 36 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+#
+# WAF build script for geany-plugins - GeniusPaste
+#
+# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+# Copyright 2011-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# $Id$
+
+from build.wafutils import check_cfg_cached
+
+packages = [
+ ('libsoup-2.4', '2.4.0', 'LIBSOUP')
+ ]
+
+for package_name, package_version, uselib_store in packages:
+ check_cfg_cached(conf,
+ package=package_name,
+ atleast_version=package_version,
+ uselib_store=uselib_store,
+ mandatory=True,
+ args='--cflags --libs')
Modified: po/POTFILES.in
3 files changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -208,6 +208,9 @@ geanyvc/src/vc_svk.c
geanyvc/src/vc_svn.c
geanyvc/src/utils.c
+# GeniusPaste
+geniuspaste/src/geniuspaste.c
+
# GProject
gproject/src/gproject-main.c
gproject/src/gproject-menu.c
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Wed, 02 May 2012 15:59:30
Commit: 84a9329185178d24141486aa8b4a5664758e33c7
https://github.com/geany/geany-plugins/commit/84a9329185178d24141486aa8b4a5…
Log Message:
-----------
Adding GeniusPaste plugin to master branch
Modified Paths:
--------------
build/geniuspaste.m4
configure.ac
geniuspaste/AUTHORS
geniuspaste/COPYING
geniuspaste/ChangeLog
geniuspaste/Makefile.am
geniuspaste/NEWS
geniuspaste/README
geniuspaste/TODO
geniuspaste/src/Makefile.am
geniuspaste/src/geniuspaste.c
geniuspaste/wscript_build
geniuspaste/wscript_configure
po/POTFILES.in
Modified: build/geniuspaste.m4
14 files changed, 14 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,14 @@
+AC_DEFUN([GP_CHECK_GENIUSPASTE],
+[
+ GP_ARG_DISABLE([GeniusPaste], [auto])
+
+ GP_CHECK_PLUGIN_DEPS([GeniusPaste], GENIUSPASTE,
+ [libsoup-2.4 >= 2.4.0])
+
+ GP_STATUS_PLUGIN_ADD([GeniusPaste], [$enable_geniuspaste])
+
+ AC_CONFIG_FILES([
+ geniuspaste/Makefile
+ geniuspaste/src/Makefile
+ ])
+])
Modified: configure.ac
1 files changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -43,6 +43,7 @@ GP_CHECK_GEANYPRJ
GP_CHECK_GEANYSENDMAIL
GP_CHECK_GEANYVC
GP_CHECK_GEANYPG
+GP_CHECK_GENIUSPASTE
GP_CHECK_GPROJECT
GP_CHECK_MULTITERM
GP_CHECK_PRETTYPRINTER
Modified: geniuspaste/AUTHORS
1 files changed, 1 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1 @@
+Enrico Trotta <enrico(dot)trt(at)gmail(dot)com>
Modified: geniuspaste/COPYING
339 files changed, 339 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,339 @@
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
Modified: geniuspaste/ChangeLog
0 files changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
Modified: geniuspaste/Makefile.am
8 files changed, 8 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,8 @@
+if ENABLE_GENIUSPASTE
+include $(top_srcdir)/build/vars.auxfiles.mk
+else
+include $(top_srcdir)/build/vars.docs.mk
+endif
+
+SUBDIRS = src
+plugin = geniuspaste
Modified: geniuspaste/NEWS
0 files changed, 0 insertions(+), 0 deletions(-)
===================================================================
No diff available, check online
Modified: geniuspaste/README
44 files changed, 44 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,44 @@
+GeniusPaste Plugin
+==================
+
+.. contents::
+
+About
+-----
+This plugin allows you to paste your code from Geany in five different
+pastebins. It supports this services:
+
+ * codepad.org
+ * pastebin.com
+ * pastebin.geany.org
+ * dpaste.de
+ * sprunge.us
+
+GeniusPaste detects automatically the syntax of your code and paste it
+with syntax highlighting enabled.
+It also redirects you to the pasted code opening a new browser tab.
+
+Requirements
+------------
+ * GTK+ >= 2.12
+ * libsoup 2.4 >= 2.4.0
+
+Installation
+------------
+This plugin is part of the geany-plugins project.
+See the README file of that package.
+
+License
+-------
+GeniusPaste is distributed under the terms of the GNU General Public
+License as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version. A copy of this
+license can be found in the file COPYING included with the source code
+of this program. If not, you will be able to get a copy by contacting
+the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.
+
+
+Info, questions and more
+------------------------
+Enrico Trotta <enrico(dot)trt(at)gmail(dot)com>
Modified: geniuspaste/TODO
4 files changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,4 @@
+TODO
+----
+
+ * Make the geany's pastebin the default pastebin
Modified: geniuspaste/src/Makefile.am
22 files changed, 22 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,22 @@
+include $(top_srcdir)/build/vars.build.mk
+plugin = geniuspaste
+
+if ENABLE_GENIUSPASTE
+geanyplugins_LTLIBRARIES = geniuspaste.la
+else
+EXTRA_LTLIBRARIES = geniuspaste.la
+endif
+
+geniuspaste_la_SOURCES = geniuspaste.c
+geniuspaste_la_CPPFLAGS = \
+ $(AM_CPPFLAGS) \
+ -DGEANY_VERSION=\"$(GEANY_VERSION)\" \
+ -DG_LOG_DOMAIN=\"GeniusPaste\"
+geniuspaste_la_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(GENIUSPASTE_CFLAGS)
+geniuspaste_la_LIBADD = \
+ $(COMMONLIBS) \
+ $(GENIUSPASTE_LIBS)
+
+include $(top_srcdir)/build/cppcheck.mk
Modified: geniuspaste/src/geniuspaste.c
371 files changed, 371 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,371 @@
+/*
+ * geniuspaste - paste your code on your favorite pastebin.
+ *
+ * Copyright 2012 Enrico "Enrix835" Trotta <enrico.trt(a)gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+ * MA 02110-1301, USA.
+ */
+
+#include "libsoup/soup.h"
+#include "stdlib.h"
+#include "string.h"
+
+#ifdef HAVE_CONFIG_H
+ #include "config.h" /* for the gettext domain */
+#endif
+
+#include <geanyplugin.h>
+
+#ifdef G_OS_WIN32
+ #define OPEN_BROWSER "start"
+ #define USERNAME getenv("USERNAME")
+#else
+ #define OPEN_BROWSER "xdg-open"
+ #define USERNAME getenv("USER")
+#endif
+
+#define CODEPAD_ORG 0
+#define PASTEBIN_COM 1
+#define PASTEBIN_GEANY_ORG 2
+#define DPASTE_DE 3
+#define SPRUNGE_US 4
+
+GeanyPlugin *geany_plugin;
+GeanyData *geany_data;
+GeanyFunctions *geany_functions;
+
+static GtkWidget *main_menu_item = NULL;
+
+static const gchar *websites[] = {
+ "http://codepad.org",
+ "http://pastebin.com/api_public.php",
+ "http://pastebin.geany.org/api/",
+ "http://dpaste.de/api/",
+ "http://sprunge.us/",
+};
+
+static struct {
+ GtkWidget *combo;
+ GtkWidget *check_button;
+} widgets;
+
+
+static gint websites_num = 5;
+static gint website_selected;
+static gchar *welcome_text = NULL;
+static gboolean check_button_is_checked = FALSE;
+
+PLUGIN_VERSION_CHECK(147)
+PLUGIN_SET_TRANSLATABLE_INFO(LOCALEDIR, GETTEXT_PACKAGE, "GeniusPaste",
+ _("Paste your code on your favorite pastebin"),
+ "0.1", "Enrico Trotta");
+
+
+static gint last_indexof(gchar * string, gchar c)
+{
+ gchar * occ = strrchr(string, c);
+ return occ ? strrchr(string, c) - string : -1;
+}
+
+static void paste(const gchar * website)
+{
+ g_type_init();
+
+ SoupSession *session = soup_session_async_new();
+ SoupMessage *msg = NULL;
+
+ GeanyDocument *doc = document_get_current();
+ GeanyFiletype *ft = doc->file_type;
+
+ GError *error;
+
+ gchar *buffer_shell_command;
+ gchar *f_content;
+ gchar *f_type = g_strdup(ft->name);
+ gchar *f_path = doc->real_path;
+ gchar *f_name = doc->file_name;
+ gchar *f_title;
+ gchar *p_url;
+ gchar *formdata = NULL;
+ gchar *temp_body;
+ gchar **tokens_array;
+
+ const gchar *langs_supported_codepad[] = { "C", "C++", "D", "Haskell",
+ "Lua", "OCaml", "PHP", "Perl", "Plain Text",
+ "Python", "Ruby", "Scheme", "Tcl"
+ };
+
+ const gchar *langs_supported_dpaste[] = { "Bash", "C", "CSS", "Diff",
+ "Django/Jinja", "HTML", "IRC logs", "JavaScript", "PHP",
+ "Python console session", "Python Traceback", "Python",
+ "Python3", "Restructured Text", "SQL", "Text only"
+ };
+
+ gint i;
+ gint occ_position;
+ guint status;
+ gsize f_lenght;
+ gboolean result;
+
+ occ_position = last_indexof(f_name, G_DIR_SEPARATOR);
+ f_title = f_name + occ_position + 1;
+
+ switch (website_selected) {
+
+ case CODEPAD_ORG:
+
+ for (i = 0; i < G_N_ELEMENTS(langs_supported_codepad); i++) {
+ if (g_strcmp0(f_type, langs_supported_codepad[i]) == 0)
+ break;
+ else
+ f_type = langs_supported_codepad[8];
+ }
+
+ if ((result =
+ g_file_get_contents(f_path, &f_content, &f_lenght,
+ &error)) == FALSE) {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ "Unable to the the content of the file");
+ g_error_free(error);
+ }
+
+ msg = soup_message_new("POST", website);
+ formdata =
+ soup_form_encode("lang", f_type, "code", f_content, "submit",
+ "Submit", NULL);
+ break;
+
+ case PASTEBIN_COM:
+
+ if ((result =
+ g_file_get_contents(f_path, &f_content, &f_lenght,
+ &error)) == FALSE) {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ "Unable to the the content of the file");
+ g_error_free(error);
+ }
+
+ msg = soup_message_new("POST", website);
+ formdata =
+ soup_form_encode("paste_code", f_content, "paste_format",
+ f_type, "paste_name", f_title, NULL);
+ break;
+
+
+ case DPASTE_DE:
+
+ for (i = 0; i < G_N_ELEMENTS(langs_supported_dpaste); i++) {
+ if (g_strcmp0(f_type, langs_supported_dpaste[i]) == 0)
+ break;
+ else
+ f_type = langs_supported_dpaste[15]; // Text only
+ }
+
+ if ((result =
+ g_file_get_contents(f_path, &f_content, &f_lenght,
+ &error)) == FALSE) {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ "Unable to the the content of the file");
+ g_error_free(error);
+ }
+
+ msg = soup_message_new("POST", website);
+ formdata =
+ soup_form_encode("content", f_content, "title", f_title,
+ "lexer", f_type, NULL);
+
+ break;
+
+ case SPRUNGE_US:
+
+ if ((result =
+ g_file_get_contents(f_path, &f_content, &f_lenght,
+ &error)) == FALSE) {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ "Unable to the the content of the file");
+ g_error_free(error);
+ }
+
+ msg = soup_message_new("POST", website);
+ formdata =
+ soup_form_encode("sprunge", f_content, NULL);
+
+ break;
+
+ case PASTEBIN_GEANY_ORG:
+
+ if ((result =
+ g_file_get_contents(f_path, &f_content, &f_lenght,
+ &error)) == FALSE) {
+ dialogs_show_msgbox(GTK_MESSAGE_ERROR,
+ "Unable to the the content of the file");
+ g_error_free(error);
+ }
+
+ msg = soup_message_new("POST", website);
+ formdata =
+ soup_form_encode("content", f_content, "author", USERNAME,
+ "title", f_title, "lexer", f_type, NULL);
+
+ break;
+
+ }
+
+ soup_message_set_request(msg, "application/x-www-form-urlencoded",
+ SOUP_MEMORY_COPY, formdata, strlen(formdata));
+
+ status = soup_session_send_message(session, msg);
+
+ if(status == 200) {
+
+ p_url = msg->response_body->data;
+
+ /*
+ * codepad.org doesn't return only the url of the new snippet pasted
+ * but an html page. This minimal parser will get the bare url.
+ */
+
+ if (website_selected == CODEPAD_ORG) {
+ temp_body = g_strdup(p_url);
+ tokens_array = g_strsplit(temp_body, "<a href=\"", 0);
+
+ /* copy the first 27 chars because the url is composed by 27 characters.
+ * codepad.org/XXXXXXXX
+ */
+ p_url = g_strndup(tokens_array[5], 27);
+
+ g_free(temp_body);
+ g_strfreev(tokens_array);
+
+ } else if(website_selected == DPASTE_DE) {
+ p_url = g_strndup(p_url + 1, strlen(p_url) - 2);
+
+ } else if(website_selected == SPRUNGE_US) {
+
+ /* in order to enable the syntax highlightning on sprunge.us
+ * it is necessary to append at the returned url a question
+ * mark '?' followed by the file type.
+ *
+ * e.g. sprunge.us/xxxx?c
+ */
+ p_url[strlen(p_url) - 1] = '\0';
+ f_type[0] = g_ascii_tolower(f_type[0]);
+ temp_body = g_strdup_printf("?%s", f_type);
+ g_strlcat(p_url + 1, temp_body, -1);
+ p_url = g_strchomp(p_url);
+ free(temp_body);
+ }
+
+ if (check_button_is_checked) {
+ buffer_shell_command = g_malloc(100 * sizeof(gchar));
+ sprintf(buffer_shell_command, "%s %s", OPEN_BROWSER, p_url);
+ system(buffer_shell_command);
+ g_free(buffer_shell_command);
+ } else {
+ dialogs_show_msgbox(GTK_MESSAGE_INFO, "%s", p_url);
+ }
+
+ if(website_selected == CODEPAD_ORG || website_selected == DPASTE_DE) {
+ g_free(p_url);
+ }
+
+ } else {
+ dialogs_show_msgbox(GTK_MESSAGE_INFO, "Unable to paste the code. Check your connection and retry.\n"
+ "Error code: %d\n", status);
+ }
+
+ g_free(f_content);
+
+}
+
+static void item_activate(GtkMenuItem * menuitem, gpointer gdata)
+{
+ paste(websites[website_selected]);
+}
+
+static void on_configure_response(GtkDialog * dialog, gint response, gpointer * user_data)
+{
+ if (response == GTK_RESPONSE_OK || response == GTK_RESPONSE_APPLY) {
+
+ website_selected =
+ gtk_combo_box_get_active
+ (GTK_COMBO_BOX(widgets.combo));
+
+ if (gtk_toggle_button_get_active
+ (GTK_TOGGLE_BUTTON(widgets.check_button)))
+ check_button_is_checked = TRUE;
+ }
+}
+
+GtkWidget *plugin_configure(GtkDialog * dialog)
+{
+ gint i;
+ GtkWidget *label, *vbox;
+
+ vbox = gtk_vbox_new(FALSE, 6);
+
+ label = gtk_label_new(_("Select a pastebin:"));
+ gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
+
+ widgets.combo = gtk_combo_box_text_new();
+
+ for (i = 0; i < websites_num; i++)
+ gtk_combo_box_text_append_text(GTK_COMBO_BOX_TEXT(widgets.combo),
+ websites[i]);
+
+ gtk_combo_box_set_active(GTK_COMBO_BOX(widgets.combo), 0);
+
+ widgets.check_button =
+ gtk_check_button_new_with_label
+ ("show your paste in a new browser tab");
+
+ gtk_container_add(GTK_CONTAINER(vbox), label);
+ gtk_container_add(GTK_CONTAINER(vbox), widgets.combo);
+ gtk_container_add(GTK_CONTAINER(vbox), widgets.check_button);
+
+ gtk_widget_show_all(vbox);
+
+ g_signal_connect(dialog, "response", G_CALLBACK(on_configure_response),
+ NULL);
+
+ return vbox;
+}
+
+static void add_menu_item()
+{
+ GtkWidget *paste_item;
+
+ paste_item = gtk_menu_item_new_with_mnemonic(_("_Paste it!"));
+ gtk_widget_show(paste_item);
+ gtk_container_add(GTK_CONTAINER(geany->main_widgets->tools_menu),
+ paste_item);
+ g_signal_connect(paste_item, "activate", G_CALLBACK(item_activate),
+ NULL);
+
+ main_menu_item = paste_item;
+}
+
+void plugin_init(GeanyData * data)
+{
+ add_menu_item();
+}
+
+
+void plugin_cleanup(void)
+{
+ gtk_widget_destroy(main_menu_item);
+ g_free(welcome_text);
+}
Modified: geniuspaste/wscript_build
31 files changed, 31 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+#
+# WAF build script for geany-plugins - Update Checker
+#
+# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+# Copyright 2011-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# $Id$
+
+from build.wafutils import build_plugin
+
+
+name = 'geniuspaste'
+includes = ['geniuspaste/src']
+libraries = ['LIBSOUP']
+
+build_plugin(bld, name, includes=includes, libraries=libraries)
Modified: geniuspaste/wscript_configure
36 files changed, 36 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,36 @@
+# -*- coding: utf-8 -*-
+#
+# WAF build script for geany-plugins - GeniusPaste
+#
+# Copyright 2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+# Copyright 2011-2012 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# $Id$
+
+from build.wafutils import check_cfg_cached
+
+packages = [
+ ('libsoup-2.4', '2.4.0', 'LIBSOUP')
+ ]
+
+for package_name, package_version, uselib_store in packages:
+ check_cfg_cached(conf,
+ package=package_name,
+ atleast_version=package_version,
+ uselib_store=uselib_store,
+ mandatory=True,
+ args='--cflags --libs')
Modified: po/POTFILES.in
3 files changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -208,6 +208,9 @@ geanyvc/src/vc_svk.c
geanyvc/src/vc_svn.c
geanyvc/src/utils.c
+# GeniusPaste
+geniuspaste/src/geniuspaste.c
+
# GProject
gproject/src/gproject-main.c
gproject/src/gproject-menu.c
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).