gmodulo-commits Mailing List for Gmodulo
Status: Beta
Brought to you by:
inean
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(21) |
Jun
(3) |
Jul
(22) |
Aug
(8) |
Sep
|
Oct
|
Nov
|
Dec
|
---|
From: Carlos MartÃn <in...@us...> - 2007-08-31 16:38:50
|
Update of /cvsroot/gmodulo/gmodulo-shell/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv31818/src Added Files: gsapp.py gsbrowsecmds.py gscommand.py gscommandmanager.py gserror.py gsextensioncmds.py gsformat.py gshelpcmds.py gshostcmds.py gsshellcmds.py gstalk.py Log Message: added missing files --- NEW FILE: gsbrowsecmds.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gstalk.py --- ### ### Copyright 2002 Ximian, Inc. ### ### This program is free software; you can redistribute it and/or modify ### it under the terms of the GNU General Public License, version 2, ### as published by the Free Software Foundation. ### ### 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ### import sys import os import stat show_messages = 1 show_verbose = 0 show_warnings = 1 show_errors = 1 show_debug = 0 be_terse = 0 # Check to see if stdout has been redirected to a file. stdout_is_file = 0 if stat.S_ISREG(os.fstat(sys.stdout.fileno())[stat.ST_MODE]): stdout_is_file = 1 def message(str): if show_messages: print str esc = "" def message_status(str): if show_messages and not be_terse: # If we've redirected to a file, don't print escape characters if stdout_is_file: print str else: print esc + "[1G" + str + esc + "[0K", sys.stdout.flush() def message_finished(str, force_output=0): if show_messages and (force_output or not be_terse): # If we've redirected to a file, don't print escape characters if stdout_is_file: print str else: print esc + "[1G" + str + esc + "[0K" def verbose(str): if show_verbose: print str def warning(str): if show_warnings: print "Warning: " + str def error(str): if show_errors: print "ERROR: " + str def fatal(str): error(str) sys.exit(1) def debug(str): if show_debug: print "DEBUG: " + str def prompt(str): sys.stdout.write(str + " ") sys.stdout.flush() return raw_input() --- NEW FILE: gsshellcmds.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gsapp.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gshostcmds.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gscommand.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gshelpcmds.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gsformat.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gscommandmanager.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gserror.py --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gsextensioncmds.py --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/gmodulo/gmodulo-shell/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv31022/src Removed Files: gtcommand.py gtfactory.py gtformat.py gtpmain.py gtpshellcmds.py gtpsystemcmds.py gtshell.py gttalk.py Log Message: s/gt/gs --- gtpshellcmds.py DELETED --- --- gtpmain.py DELETED --- --- gtpsystemcmds.py DELETED --- --- gttalk.py DELETED --- --- gtcommand.py DELETED --- --- gtfactory.py DELETED --- --- gtformat.py DELETED --- --- gtshell.py DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:33:49
|
Update of /cvsroot/gmodulo/gmodulo-shell/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23115/src Modified Files: Makefile.am README gmodulo-shell.in Removed Files: gtfault.py gtpprefscmds.py gtpusercmds.py gtputil.py gtserver.py Log Message: --- gtpprefscmds.py DELETED --- --- gtfault.py DELETED --- --- gtserver.py DELETED --- --- gtpusercmds.py DELETED --- Index: gmodulo-shell.in =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/src/gmodulo-shell.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gmodulo-shell.in 17 Jun 2007 16:26:51 -0000 1.1 --- gmodulo-shell.in 30 Aug 2007 18:33:46 -0000 1.2 *************** *** 1,59 **** ! #!/usr/bin/env @PYTHON@ ! ! ### ! ### Copyright 2004 Carlos MartÃn ! ### Copyright 2004 Universidad de Salamnaca ! ### ! ### This program is free software; you can redistribute it and/or modify ! ### it under the terms of the GNU General Public License, version 2, ! ### as published by the Free Software Foundation. ! ### ! ### 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ! ### ! ! try: ! import sys ! import os ! ! gt_dir = "@DDIR@/gt" ! # This is where we look for binary extensions (like the fast ! # unmarshaller). ! gt_lib_dir = "@LIBDIR@/gt" ! gt_version = "@VERSION@" ! # FIXME: This has a special check to allow us to run gt in-place ! # without having done a "make install". We might want to take this ! # out at some point. ! if not (os.path.isfile("./gtpmain.py") \ ! or (os.path.isdir(gt_dir) and os.path.isfile(gt_dir + "/gtpmain.py"))): ! print "ERROR: Gmodulo Provider Command Line Test Client (gtp) doesn't appear to be" ! print "ERROR: installed properly. Please check your installation." sys.exit(1) ! ! ! sys.path.append(gt_dir) ! sys.path.append(gt_lib_dir) ! import gtpmain ! ! if "--gt-profile" in sys.argv: import profile sys.stderr.write("*** Profiling Enabled ***\n") ! sys.argv = filter(lambda x:x != "--gt-profile", sys.argv) ! profile.run("gtpmain.main(gt_version, gt_dir)") else: ! gtpmain.main(gt_version, gt_dir) except KeyboardInterrupt: ! # Just quietly exit if we got a ^C ! print sys.exit(0) --- 1,52 ---- ! #!/usr/bin/env python ! # -*- mode: Python; indent-tabs-mode: nil; coding: utf-8 -*- ! # ! # Copyright 2004, 2007 Carlos MartÃn ! # Copyright 2004, 2007 Universidad de Salamnaca ! # ! # This program is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License, version 2, ! # as published by the Free Software Foundation. ! # ! # 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ! # ! import os ! import sys ! try: ! gs_dir = "@gsdir@" ! gs_version = "@version@" ! gs_profile = "--gs-profile" ! # check that app is well configured ! if not (os.path.isfile("./gsapp.py") or os.path.isfile(gs_dir + "/gsapp.py")): ! sys.stderr.write ("ERROR: Gmodulo Shell Command Line Client doesn't appear to be\n") ! sys.stderr.write ("ERROR: installed properly. Please check your installation.\n") sys.exit(1) ! ! # append gs_dir path and import ! sys.path.append(gs_dir) ! from gsapp import GsApp ! ! if gs_profile in sys.argv: import profile + sys.stderr.write("*** Profiling Enabled ***\n") ! sys.argv = filter(lambda x:x != gs_profile, sys.argv) ! profile.run("GsApp(gs_dir, gs_version).run()") else: ! GsApp(gs_dir, gs_version).run() ! except KeyboardInterrupt: ! sys.stderr.write ("\n\nExiting on user cancel.\n") sys.exit(0) --- gtputil.py DELETED --- Index: Makefile.am =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/src/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 17 Jun 2007 16:38:42 -0000 1.2 --- Makefile.am 30 Aug 2007 18:33:46 -0000 1.3 *************** *** 1,31 **** - gtexecdir = $(bindir) - gtexec_DATA = gmodulo-shell NULL= ! gtsupportdir = $(datadir)/gmodulo-shell-1 ! gtsupport_DATA = \ ! gtpmain.py \ ! gtserver.py \ ! gtputil.py \ ! gtcommand.py \ ! gtfault.py \ ! gttalk.py \ ! gtfactory.py \ ! gtformat.py \ ! gtshell.py \ $(NULL) ! gtcmdsdir = $(gtsupportdir)/commands ! gtcmds_DATA = \ ! gtpprefscmds.py \ ! gtpsystemcmds.py \ ! gtpusercmds.py \ ! gtpshellcmds.py \ $(NULL) ! CLEAN_FILES = $(gtexec_DATA) ! EXTRA_DIST = $(gtsupport_DATA) $(gtcmds_DATA) README - install-exec-hook: - chmod 0755 $(DESTDIR)$(gtexecdir)/$(gtexec_DATA) --- 1,47 ---- NULL= + bin_SCRIPTS = gmodulo-shell ! # gmodulo shell framework ! gsdir = $(datadir)/gmodulo-shell-1 ! gs_DATA = \ ! gsapp.py \ ! gserror.py \ ! gscommandmanager.py \ ! gscommand.py \ ! gstalk.py \ ! gsformat.py \ ! $(NULL) ! ! # gmodulo shell commands ! gscmdsdir = $(gsdir)/commands ! gscmds_DATA = \ ! gshelpcmds.py \ ! gshostcmds.py \ ! gsshellcmds.py \ ! gsextensioncmds.py \ ! gsbrowsecmds.py \ $(NULL) + EXTRA_DIST = \ + $(gs_DATA) \ + $(gscmds_DATA) \ + gmodulo-shell.in \ + README ! CLEANFILES = \ ! $(bin_SCRIPTS) \ ! *.pyc \ $(NULL) ! $(bin_SCRIPTS): $(top_srcdir)/src/$(bin_SCRIPTS).in ! @echo generate gmodulo-shell ... ! @sed -e "s|\@gsdir\@|$(gsdir)|" \ ! -e "s|\@version\@|$(PACKAGE_VERSION)|" \ ! $(top_srcdir)/src/$@.in > $@ ! ! @echo Set permissions to $(bin_SCRIPTS) script ! @chmod 0755 $(bin_SCRIPTS) ! ! ! Index: README =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/src/README,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** README 6 Jul 2004 19:37:13 -0000 1.1.1.1 --- README 30 Aug 2007 18:33:46 -0000 1.2 *************** *** 1,3 **** A brief roadmapt to file naming convenctions: ! o gtp-* : Gmodulo Provider test source. ! o gtm-* : Gmodulo Monkey test source. --- 1,3 ---- A brief roadmapt to file naming convenctions: ! o gs*-cmds : Gmodulo Shell Commands ! o gs* : Gmodulo Shell Framework |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:33:48
|
Update of /cvsroot/gmodulo/gmodulo-shell/packing/rpm/fedora In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23115/packing/rpm/fedora Modified Files: gmodulo-shell.spec.in.in Log Message: Index: gmodulo-shell.spec.in.in =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/packing/rpm/fedora/gmodulo-shell.spec.in.in,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gmodulo-shell.spec.in.in 29 May 2007 19:45:08 -0000 1.1 --- gmodulo-shell.spec.in.in 30 Aug 2007 18:33:46 -0000 1.2 *************** *** 21,26 **** Group: Development/Languages Requires: %{python} ! Requires: pyebdl >= @PYEBDL_REQUIRED@ ! Requires: pygobject2 >= @PYGOBJECT_REQUIRED@ %description --- 21,26 ---- Group: Development/Languages Requires: %{python} ! Requires: ebdl-python >= @PYEBDL_REQUIRED@ ! Requires: pygobject2 >= @PYGOBJECT_REQUIRED@ %description |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:33:48
|
Update of /cvsroot/gmodulo/gmodulo-shell In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23115 Modified Files: Makefile.am configure.in Log Message: Index: Makefile.am =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile.am 29 May 2007 19:45:06 -0000 1.2 --- Makefile.am 30 Aug 2007 18:33:46 -0000 1.3 *************** *** 1 **** --- 1,4 ---- SUBDIRS = src packing + + snapshot: + $(MAKE) dist distdir=$(PACKAGE)-$(VERSION)+snap`LANG=en_US date +"%Y%m%d"` Index: configure.in =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-shell/configure.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configure.in 29 May 2007 19:45:06 -0000 1.3 --- configure.in 30 Aug 2007 18:33:46 -0000 1.4 *************** *** 44,48 **** packing/rpm/fedora/gmodulo-shell.spec.in src/Makefile - src/gmodulo-shell ]) AC_OUTPUT --- 44,47 ---- |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:32:22
|
Update of /cvsroot/gmodulo/gmodulo-console/data In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22332/data Modified Files: Makefile.am gmodulo-console.desktop.in.in Added Files: gmodulo-console-icon.svg Removed Files: gmodulo-console-icon.png Log Message: * Fixes for gnome-2.20 Index: gmodulo-console.desktop.in.in =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-console/data/gmodulo-console.desktop.in.in,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gmodulo-console.desktop.in.in 27 Oct 2006 16:35:16 -0000 1.1.1.1 --- gmodulo-console.desktop.in.in 30 Aug 2007 18:32:20 -0000 1.2 *************** *** 1,15 **** [Desktop Entry] ! Name=Kernel Module Admin Tool ! Name[es]=Administrador de Módulos del Núcleo Comment=Admin your kernel modules. Also handle remote ones ! Comment[es]=Adminitra modules, tanto de modo local como en máquinas remotas ! ! Categories=GNOME;GTK;Application;Utility;SystemSetup; ! Exec=/usr/bin/gmodulo-console %U ! Terminal=false Type=Application ! StartupNotify=true ! Icon=gmodulo-console-icon Encoding=UTF-8 X-GNOME-DocPath=gmodulo-console/gmodulo-console.xml X-Desktop-File-Install-Version=0.10 --- 1,17 ---- [Desktop Entry] ! Name=Gmodulo Kernel Module Admin Tool ! Name[es]=Administrador de Módulos del Núcleo Gmodulo ! GenericName=Kernel Module Admin Tool ! GenericName[es]=Administrador de Módulos del Núcleo Comment=Admin your kernel modules. Also handle remote ones ! Comment[es]=Adminitra tus módulos del kernel local o remotamente ! Icon=/usr/share/gmodulo-console/icons/gmodulo-console-icon.svg ! Exec=gmodulo-console Type=Application ! Terminal=false Encoding=UTF-8 + Categories=System; + StartupNotify=true + X-GNOME-DocPath=gmodulo-console/gmodulo-console.xml X-Desktop-File-Install-Version=0.10 --- NEW FILE: gmodulo-console-icon.svg --- <?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="32.000000px" height="32.000000px" id="svg1307" sodipodi:version="0.32" inkscape:version="0.42" sodipodi:docbase="/home/andreas/projekt/tango" sodipodi:docname="extention-32.svg"> <defs id="defs1309"> <linearGradient id="linearGradient5940"> <stop style="stop-color:#9db029;stop-opacity:1;" offset="0" id="stop5942" /> <stop style="stop-color:#9db029;stop-opacity:0;" offset="1" id="stop5944" /> </linearGradient> <linearGradient inkscape:collect="always" id="linearGradient3558"> <stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop3560" /> <stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop3562" /> </linearGradient> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3558" id="radialGradient3564" cx="22.571428" cy="34.193878" fx="22.571428" fy="34.193878" r="15.571428" gradientTransform="matrix(1.000000,-9.124409e-15,3.212315e-16,0.571617,-0.814760,10.06937)" gradientUnits="userSpaceOnUse" /> <linearGradient inkscape:collect="always" id="linearGradient4960"> <stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop4962" /> <stop style="stop-color:#ffffff;stop-opacity:0;" offset="1" id="stop4964" /> </linearGradient> <linearGradient id="linearGradient4069"> <stop style="stop-color:#549a10;stop-opacity:1.0000000" offset="0" id="stop4071" /> <stop style="stop-color:#8ae234" offset="1" id="stop4073" /> </linearGradient> <linearGradient inkscape:collect="always" xlink:href="#linearGradient4069" id="linearGradient4075" x1="35.392464" y1="39.277515" x2="14.344166" y2="16.68527" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.651683,0.000000,0.000000,0.651683,0.370921,0.522475)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient4960" id="linearGradient4966" x1="16.461405" y1="15.329672" x2="35.404129" y2="43.029778" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.651683,0.000000,0.000000,0.651683,0.370921,0.522475)" /> <radialGradient inkscape:collect="always" xlink:href="#linearGradient3558" id="radialGradient3524" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.000000,-9.124409e-15,3.212315e-16,0.571617,-0.814760,10.06937)" cx="22.571428" cy="34.193878" fx="22.571428" fy="34.193878" r="15.571428" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient4069" id="linearGradient3526" gradientUnits="userSpaceOnUse" x1="35.392464" y1="39.277515" x2="14.344166" y2="16.68527" gradientTransform="translate(34.10799,37.80458)" /> <linearGradient inkscape:collect="always" xlink:href="#linearGradient4960" id="linearGradient3528" gradientUnits="userSpaceOnUse" x1="16.461405" y1="15.329672" x2="35.404129" y2="43.029778" gradientTransform="translate(34.10799,37.80458)" /> </defs> <sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="39.597980" inkscape:cx="15.367710" inkscape:cy="26.754317" inkscape:current-layer="layer1" showgrid="true" inkscape:grid-bbox="true" inkscape:document-units="px" stroke="#4e9a06" fill="#73d216" inkscape:window-width="1280" inkscape:window-height="949" inkscape:window-x="0" inkscape:window-y="25" /> <metadata id="metadata1312"> <rdf:RDF> <cc:Work rdf:about=""> <dc:format>image/svg+xml</dc:format> <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> <dc:title>Extention</dc:title> <dc:creator> <cc:Agent> <dc:title>Andreas Nilsson</dc:title> </cc:Agent> </dc:creator> <dc:source>http://tango-project.org</dc:source> <dc:subject> <rdf:Bag> <rdf:li>extention</rdf:li> <rdf:li>addon</rdf:li> <rdf:li>plugin</rdf:li> <rdf:li>puzzle</rdf:li> </rdf:Bag> </dc:subject> <cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" /> </cc:Work> <cc:License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/"> <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> <cc:requires rdf:resource="http://web.resource.org/cc/Attribution" /> <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> </cc:License> </rdf:RDF> </metadata> <g id="layer1" inkscape:label="Layer 1" inkscape:groupmode="layer"> <path sodipodi:type="arc" style="opacity:0.25268814;color:#000000;fill:url(#radialGradient3564);fill-opacity:1.0000000;fill-rule:nonzero;stroke:none;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000;visibility:visible;display:inline;overflow:visible" id="path3556" sodipodi:cx="22.571428" sodipodi:cy="30.857143" sodipodi:rx="15.571428" sodipodi:ry="10.142858" d="M 38.142857 30.857143 A 15.571428 10.142858 0 1 1 7.0000000,30.857143 A 15.571428 10.142858 0 1 1 38.142857 30.857143 z" transform="matrix(0.917644,0.000000,0.000000,0.224876,-4.001563,22.58332)" /> <path style="opacity:1.0000000;fill:url(#linearGradient4075);fill-opacity:1.0000000;fill-rule:evenodd;stroke:#428404;stroke-width:1.0000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" d="M 11.444431,3.4812385 C 11.400385,4.3357173 12.480566,5.7318806 12.486411,6.5185468 C 12.488894,6.8527898 12.433581,8.1863179 12.303125,8.4872494 L 6.5398027,8.4872494 L 6.5233452,15.208880 C 4.0618203,15.166200 3.5228746,14.203523 1.9777647,14.588715 C 0.99040153,15.643249 0.85152250,19.740412 3.9068870,19.758111 C 5.0350850,19.779876 5.7864192,19.102030 6.5398027,19.086063 L 6.5398027,28.495600 L 13.725772,28.472326 C 13.837651,27.440475 12.409719,25.761681 12.433113,24.428192 C 12.456218,22.903214 13.890070,21.603322 15.519020,21.473517 C 17.147971,21.343711 18.946767,22.383992 18.942145,24.428192 C 18.988358,26.345058 17.712992,25.416001 17.637639,28.495600 C 17.884289,28.495600 22.120770,28.495600 24.566521,28.495600 C 24.566521,28.495600 24.537883,20.041992 24.545758,19.810192 C 24.611588,17.839478 26.872936,20.401412 28.573195,20.442799 C 30.887746,20.383641 31.496468,14.568066 28.569403,14.496444 C 27.216882,14.569730 26.260776,15.427433 24.549408,15.377363 L 24.543247,8.4872494 L 16.998734,8.4872494 C 16.966564,7.4431182 18.289932,4.8125983 18.267188,3.5161501 C 18.242999,1.9196885 16.756949,1.4982027 14.921494,1.5000058 C 12.541885,1.5023207 11.440163,2.0987667 11.444431,3.4812385 z " id="rect1315" sodipodi:nodetypes="cscccccccccscccsccccccsc" /> <path style="opacity:0.69999999;fill:none;fill-opacity:1.0000000;fill-rule:evenodd;stroke:url(#linearGradient4966);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-dashoffset:0.0000000;stroke-opacity:1.0000000" d="M 12.462440,3.5485452 C 12.513328,4.4953851 13.523095,5.0569117 13.518775,7.0054540 C 13.518708,7.0359014 13.128970,9.4395876 13.069785,9.4646448 L 7.5372879,9.4762819 L 7.4746746,16.147680 C 4.4292472,16.409347 5.0066822,15.769335 2.6532430,15.603146 C 2.1027364,16.590411 1.9371234,19.074433 4.3219242,19.091395 C 5.1891078,19.145166 5.9251185,17.770454 7.5193184,17.804526 L 7.5408971,27.502845 C 9.9823892,27.495410 10.935286,27.520891 12.309292,27.513457 C 12.172122,26.780672 11.439698,25.751263 11.462117,24.275575 C 11.501714,21.925976 13.531410,20.480551 15.658388,20.493851 C 17.785367,20.507152 19.959121,21.979178 19.983786,24.252300 C 19.923334,26.310303 18.845653,26.306944 18.901453,27.512486 C 19.137813,27.512486 21.180666,27.524123 23.524382,27.524123 C 23.524382,27.524123 23.532472,19.050813 23.537400,18.828611 C 23.584026,16.627420 27.315592,19.308836 28.389334,19.348497 C 30.162972,19.291807 29.955977,15.676542 28.006816,15.607908 C 27.998664,15.602374 25.147954,16.274443 23.507983,16.226462 L 23.516197,9.4646448 L 15.913086,9.4646448 C 15.684768,7.8880620 17.233819,4.7078410 17.212023,3.4654794 C 17.233397,2.1756659 15.661918,2.5099678 15.005688,2.4952382 C 12.725926,2.4440671 12.493262,2.6659621 12.462440,3.5485452 z " id="path4067" sodipodi:nodetypes="cscccccccccscccsccccccsc" /> </g> </svg> Index: Makefile.am =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-console/data/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 27 Oct 2006 16:35:16 -0000 1.1.1.1 --- Makefile.am 30 Aug 2007 18:32:20 -0000 1.2 *************** *** 10,14 **** appicondir = $(datadir)/gmodulo-console/icons ! appicon_DATA =gmodulo-console-icon.png gmodulo-console-plugin.png applogodir = $(datadir)/gmodulo-console/logo --- 10,14 ---- appicondir = $(datadir)/gmodulo-console/icons ! appicon_DATA =gmodulo-console-icon.svg gmodulo-console-plugin.png applogodir = $(datadir)/gmodulo-console/logo --- gmodulo-console-icon.png DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:32:21
|
Update of /cvsroot/gmodulo/gmodulo-console/packing/rpm/fedora In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22332/packing/rpm/fedora Modified Files: gmodulo-console.spec.in.in Log Message: * Fixes for gnome-2.20 Index: gmodulo-console.spec.in.in =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-console/packing/rpm/fedora/gmodulo-console.spec.in.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** gmodulo-console.spec.in.in 29 May 2007 19:41:28 -0000 1.2 --- gmodulo-console.spec.in.in 30 Aug 2007 18:32:20 -0000 1.3 *************** *** 77,81 **** Requires: gtk2-devel >= @LIBGTK_REQUIRED@ Requires: ebdl-devel >= @LIBEBDL_REQUIRED@ ! Requires: libglade2-devel >= @LIBGADE_REQUIRED@ Requires: dbus-glib-devel >= @LIBDBUS_GLIB_REQUIRED@ --- 77,81 ---- Requires: gtk2-devel >= @LIBGTK_REQUIRED@ Requires: ebdl-devel >= @LIBEBDL_REQUIRED@ ! Requires: libglade2-devel >= @LIBGLADE_REQUIRED@ Requires: dbus-glib-devel >= @LIBDBUS_GLIB_REQUIRED@ |
From: Carlos MartÃn <in...@us...> - 2007-08-30 18:32:21
|
Update of /cvsroot/gmodulo/gmodulo-console/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv22332/src Modified Files: gc-prefs-manager.c Log Message: * Fixes for gnome-2.20 Index: gc-prefs-manager.c =================================================================== RCS file: /cvsroot/gmodulo/gmodulo-console/src/gc-prefs-manager.c,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** gc-prefs-manager.c 27 Oct 2006 16:34:40 -0000 1.1.1.1 --- gc-prefs-manager.c 30 Aug 2007 18:32:20 -0000 1.2 *************** *** 1,2 **** --- 1,3 ---- + /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* *************** *** 298,302 **** static gchar* ! gdk_color_to_string (GdkColor color) { gc_debug (DEBUG_PREFS); --- 299,303 ---- static gchar* ! gc_prefs_manager_color_to_string (GdkColor color) { gc_debug (DEBUG_PREFS); *************** *** 348,352 **** g_return_val_if_fail (key != NULL, FALSE); ! str_color = gdk_color_to_string (val); g_return_val_if_fail (str_color != NULL, FALSE); --- 349,353 ---- g_return_val_if_fail (key != NULL, FALSE); ! str_color = gc_prefs_manager_color_to_string (val); g_return_val_if_fail (str_color != NULL, FALSE); |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/themes/Gmodulo/images In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/themes/Gmodulo/images Removed Files: Makefile.am favicon.ico ftp.png htaccess http.png https.png interwiki.png logo.png mailto.png png.png signature.png url.png Log Message: Remove unused wiki --- interwiki.png DELETED --- --- ftp.png DELETED --- --- url.png DELETED --- --- Makefile.am DELETED --- --- mailto.png DELETED --- --- htaccess DELETED --- --- https.png DELETED --- --- logo.png DELETED --- --- favicon.ico DELETED --- --- signature.png DELETED --- --- http.png DELETED --- --- png.png DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/themes/Gmodulo In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/themes/Gmodulo Removed Files: Makefile.am config.wml gmodulo-printer.css gmodulo-wiki.css htaccess themeinfo.php Log Message: Remove unused wiki --- gmodulo-printer.css DELETED --- --- gmodulo-wiki.css DELETED --- --- htaccess DELETED --- --- Makefile.am DELETED --- --- themeinfo.php DELETED --- --- config.wml DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/themes/Gmodulo/buttons In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/themes/Gmodulo/buttons Removed Files: Makefile.am RSS.png htaccess valid-xhtml10.png vcss.gif vcss.png vxhtml10.gif Log Message: Remove unused wiki --- vxhtml10.gif DELETED --- --- vcss.png DELETED --- --- htaccess DELETED --- --- vcss.gif DELETED --- --- RSS.png DELETED --- --- Makefile.am DELETED --- --- valid-xhtml10.png DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/themes In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/themes Removed Files: Makefile.am htaccess Log Message: Remove unused wiki --- htaccess DELETED --- --- Makefile.am DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/schemas In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/schemas Removed Files: Makefile.am htaccess minisql.sql mysql.sql psql.sql Log Message: Remove unused wiki --- htaccess DELETED --- --- Makefile.am DELETED --- --- mysql.sql DELETED --- --- psql.sql DELETED --- --- minisql.sql DELETED --- |
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/themes/Gmodulo/templates In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki/themes/Gmodulo/templates Removed Files: Makefile.am actionbar.tmpl blogform.tmpl body.tmpl bottom.tmpl browse-footer.tmpl browse.tmpl content.tmpl debug.tmpl dialog.tmpl editpage.tmpl frame-footer.tmpl frame-header.tmpl frame-left.tmpl frameset.tmpl head.tmpl homepage.tmpl htaccess html.tmpl htmldump.tmpl info.tmpl login.tmpl navbar.tmpl nochanges.tmpl redirect.tmpl savepage.tmpl searchbar.tmpl signin.tmpl top.tmpl userprefs.tmpl viewsource.tmpl wikiblog.tmpl Log Message: Remove unused wiki --- bottom.tmpl DELETED --- --- body.tmpl DELETED --- --- savepage.tmpl DELETED --- --- blogform.tmpl DELETED --- --- wikiblog.tmpl DELETED --- --- frame-header.tmpl DELETED --- --- top.tmpl DELETED --- --- frame-footer.tmpl DELETED --- --- browse-footer.tmpl DELETED --- --- userprefs.tmpl DELETED --- --- info.tmpl DELETED --- --- editpage.tmpl DELETED --- --- login.tmpl DELETED --- --- content.tmpl DELETED --- --- dialog.tmpl DELETED --- --- Makefile.am DELETED --- --- frame-left.tmpl DELETED --- --- browse.tmpl DELETED --- --- searchbar.tmpl DELETED --- --- actionbar.tmpl DELETED --- --- head.tmpl DELETED --- --- htmldump.tmpl DELETED --- --- homepage.tmpl DELETED --- --- nochanges.tmpl DELETED --- --- viewsource.tmpl DELETED --- --- debug.tmpl DELETED --- --- signin.tmpl DELETED --- --- htaccess DELETED --- --- redirect.tmpl DELETED --- --- html.tmpl DELETED --- --- navbar.tmpl DELETED --- --- frameset.tmpl DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:26:25
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv2924/wiki Removed Files: Makefile.am htaccess index.wml Log Message: Remove unused wiki --- htaccess DELETED --- --- Makefile.am DELETED --- --- index.wml DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:13:03
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/locale/po In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28963/po Removed Files: es.po phpwiki.pot Log Message: --- phpwiki.pot DELETED --- --- es.po DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:13:03
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/locale In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28963 Removed Files: Makefile README htaccess make-php-trans.awk update-makefile.sh Log Message: --- README DELETED --- --- update-makefile.sh DELETED --- --- htaccess DELETED --- --- make-php-trans.awk DELETED --- --- Makefile DELETED --- |
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/pgsrc In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv28003/pgsrc Removed Files: AddingPages AllPages AllUsers BackLinks CalendarPlugin CategoryCategory CategoryHomePages CommentPlugin DebugInfo EditText ExternalSearchPlugin FindPage FullRecentChanges FullTextSearch FuzzyPages GoodStyle HomePage HomePageAlias HowToUseWiki InterWiki InterWikiMap InterWikiSearch LikePages LinkIcons MagicPhpWikiURLs Makefile.am MoreAboutMechanics MostPopular NewMarkupTestPage OldMarkupTestPage OldStyleTablePlugin OldTextFormattingRules OrphanedPages PageGroupTest PageGroupTestFour PageGroupTestOne PageGroupTestThree PageGroupTestTwo PageHistory PageInfo PgsrcTranslation PhotoAlbumPlugin PhpHighlightPlugin PhpWeatherPlugin PhpWiki PhpWikiAdministration PhpWikiAdministration%2FRemove PhpWikiDocumentation PluginManager RandomPage RecentChanges RecentEdits RecentVisitors RedirectToPlugin ReleaseNotes SandBox SteveWainstead TextFormattingRules TitleSearch TranscludePlugin UserPreferences WabiSabi WantedPages WikiPlugin WikiWikiWeb htaccess Log Message: --- CategoryCategory DELETED --- --- RedirectToPlugin DELETED --- --- CategoryHomePages DELETED --- --- OldStyleTablePlugin DELETED --- --- DebugInfo DELETED --- --- WikiWikiWeb DELETED --- --- RandomPage DELETED --- --- TextFormattingRules DELETED --- --- PageGroupTestOne DELETED --- --- HowToUseWiki DELETED --- --- UserPreferences DELETED --- --- RecentEdits DELETED --- --- NewMarkupTestPage DELETED --- --- CalendarPlugin DELETED --- --- PageGroupTestTwo DELETED --- --- PhpHighlightPlugin DELETED --- --- WantedPages DELETED --- --- BackLinks DELETED --- --- RecentVisitors DELETED --- --- PgsrcTranslation DELETED --- --- GoodStyle DELETED --- --- PhpWikiDocumentation DELETED --- --- WikiPlugin DELETED --- --- SandBox DELETED --- --- Makefile.am DELETED --- --- PageGroupTest DELETED --- --- PageGroupTestFour DELETED --- --- OrphanedPages DELETED --- --- PluginManager DELETED --- --- HomePage DELETED --- --- LikePages DELETED --- --- FullTextSearch DELETED --- --- HomePageAlias DELETED --- --- MoreAboutMechanics DELETED --- --- FullRecentChanges DELETED --- --- AllPages DELETED --- --- MostPopular DELETED --- --- PageHistory DELETED --- --- PhpWikiAdministration%2FRemove DELETED --- --- OldMarkupTestPage DELETED --- --- TranscludePlugin DELETED --- --- InterWiki DELETED --- --- InterWikiMap DELETED --- --- FuzzyPages DELETED --- --- EditText DELETED --- --- AllUsers DELETED --- --- AddingPages DELETED --- --- RecentChanges DELETED --- --- PhpWikiAdministration DELETED --- --- InterWikiSearch DELETED --- --- SteveWainstead DELETED --- --- PhotoAlbumPlugin DELETED --- --- ReleaseNotes DELETED --- --- PhpWiki DELETED --- --- WabiSabi DELETED --- --- PhpWeatherPlugin DELETED --- --- ExternalSearchPlugin DELETED --- --- FindPage DELETED --- --- htaccess DELETED --- --- CommentPlugin DELETED --- --- PageGroupTestThree DELETED --- --- MagicPhpWikiURLs DELETED --- --- TitleSearch DELETED --- --- LinkIcons DELETED --- --- PageInfo DELETED --- --- OldTextFormattingRules DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 18:02:29
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/db In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv23945/db Removed Files: Makefile.am htaccess Log Message: --- htaccess DELETED --- --- Makefile.am DELETED --- |
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/plugin In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/plugin Removed Files: AllPages.php AllUsers.php BackLinks.php CacheTest.php Calendar.php Comment.php EditMetaData.php ExternalSearch.php FrameInclude.php FullTextSearch.php FuzzyPages.php HelloWorld.php IncludePage.php InterWikiSearch.php LikePages.php Makefile.am MostPopular.php OldStyleTable.php OrphanedPages.php PageGroup.php PageHistory.php PageInfo.php PageTrail.php PhotoAlbum.php PhpHighlight.php PhpWeather.php PluginManager.php PrevNext.php RandomPage.php RawHtml.php RecentChanges.php RecentChangesCached.php RedirectTo.php SiteMap.php SystemInfo.php TexToPng.php TitleSearch.php Transclude.php UnfoldSubpages.php UserPreferences.php VisualWiki.php WantedPages.php WikiAdminRemove.php WikiAdminSelect.php WikiAdminUtils.php WikiBlog.php WikiForm.php _BackendInfo.php _MailifyPage.php _PreferencesInfo.php text2png.php Log Message: --- UserPreferences.php DELETED --- --- RandomPage.php DELETED --- --- RedirectTo.php DELETED --- --- SiteMap.php DELETED --- --- text2png.php DELETED --- --- MostPopular.php DELETED --- --- WikiForm.php DELETED --- --- WikiAdminUtils.php DELETED --- --- EditMetaData.php DELETED --- --- TexToPng.php DELETED --- --- WantedPages.php DELETED --- --- _BackendInfo.php DELETED --- --- PhpWeather.php DELETED --- --- InterWikiSearch.php DELETED --- --- Calendar.php DELETED --- --- WikiBlog.php DELETED --- --- RecentChangesCached.php DELETED --- --- PageTrail.php DELETED --- --- AllPages.php DELETED --- --- FrameInclude.php DELETED --- --- RawHtml.php DELETED --- --- PageGroup.php DELETED --- --- FuzzyPages.php DELETED --- --- PhotoAlbum.php DELETED --- --- OrphanedPages.php DELETED --- --- Transclude.php DELETED --- --- Makefile.am DELETED --- --- OldStyleTable.php DELETED --- --- TitleSearch.php DELETED --- --- PhpHighlight.php DELETED --- --- PageHistory.php DELETED --- --- WikiAdminRemove.php DELETED --- --- HelloWorld.php DELETED --- --- SystemInfo.php DELETED --- --- IncludePage.php DELETED --- --- _MailifyPage.php DELETED --- --- ExternalSearch.php DELETED --- --- Comment.php DELETED --- --- VisualWiki.php DELETED --- --- PluginManager.php DELETED --- --- PrevNext.php DELETED --- --- BackLinks.php DELETED --- --- RecentChanges.php DELETED --- --- AllUsers.php DELETED --- --- UnfoldSubpages.php DELETED --- --- LikePages.php DELETED --- --- CacheTest.php DELETED --- --- WikiAdminSelect.php DELETED --- --- _PreferencesInfo.php DELETED --- --- FullTextSearch.php DELETED --- --- PageInfo.php DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 17:59:57
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/pear/DB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/pear/DB Removed Files: Makefile.am Pager.php common.php fbsql.php ibase.php ifx.php ldap.php msql.php mssql.php mysql.php oci8.php odbc.php pgsql.php storage.php sybase.php Log Message: --- odbc.php DELETED --- --- msql.php DELETED --- --- storage.php DELETED --- --- fbsql.php DELETED --- --- ibase.php DELETED --- --- sybase.php DELETED --- --- Pager.php DELETED --- --- Makefile.am DELETED --- --- oci8.php DELETED --- --- mssql.php DELETED --- --- mysql.php DELETED --- --- pgsql.php DELETED --- --- ldap.php DELETED --- --- ifx.php DELETED --- --- common.php DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 17:59:54
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/pear/Cache/Container In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/pear/Cache/Container Removed Files: Makefile.am file.php imgfile.php Log Message: --- file.php DELETED --- --- Makefile.am DELETED --- --- imgfile.php DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 17:59:53
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/pear In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/pear Removed Files: Cache.php DB.php LICENSE Makefile.am PEAR.php Log Message: --- PEAR.php DELETED --- --- Makefile.am DELETED --- --- DB.php DELETED --- --- LICENSE DELETED --- --- Cache.php DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 17:59:53
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/pear/Cache In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/pear/Cache Removed Files: Container.php Error.php Makefile.am Log Message: --- Error.php DELETED --- --- Makefile.am DELETED --- --- Container.php DELETED --- |
From: Carlos MartÃn <in...@us...> - 2007-07-24 17:59:45
|
Update of /cvsroot/gmodulo/gmodulo-web/site/wiki/lib/XMLRPC In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv21791/XMLRPC Removed Files: Makefile.am xmlrpc.inc xmlrpcs.inc Log Message: --- Makefile.am DELETED --- --- xmlrpc.inc DELETED --- --- xmlrpcs.inc DELETED --- |