Commit Graph

218 Commits

Author SHA1 Message Date
Stefan Schmidt 1ced507bf4 tempget: Check return values from fgets()
Without this checking we might operate on wrong data read in. Better check.

SVN revision: 71445
2012-05-26 22:50:06 +00:00
Gustavo Sverzut Barbieri 4305b8e7fe e/docs: do bare documentation for e.
Just some groups and basic description for modules. I'm NOT going back
to this anytime soon, but would be VERY happy if people could do some
screenshots and put the images for each module in docs/img/ folder,
linking to them from each e_mod_main.h



SVN revision: 67362
2012-01-19 23:25:32 +00:00
Carsten Haitzler 861f7bb901 add eina include to tempget and batget
SVN revision: 65337
2011-11-17 11:12:30 +00:00
Boris Faure 27264671d0 e/gadcon: label() returns a const char*
Original patch by Fabien Romano from OpenBSD

SVN revision: 65204
2011-11-14 21:46:57 +00:00
Vincent Torri 7fd3d55bf2 E17: add temperature module for OpenBSD
Patch by Laurent Fanis <laurent@openbsd.org>


SVN revision: 64574
2011-10-31 15:52:42 +00:00
Mike Blumenkrantz c8c9ffc0ea warnings--
SVN revision: 62869
2011-08-26 17:40:42 +00:00
Carsten Haitzler 63cd75a12f tempget -> also do /sys.
SVN revision: 61626
2011-07-24 03:28:13 +00:00
Boris Faure 6048d46024 remove .cvsignore files
SVN revision: 60246
2011-06-12 21:38:37 +00:00
Hannes Janetzek 7f457f1911 e17: add option to have gadcon client settings menu in toplevel again.
added e_menu_item_new_relative(E_Menu, E_Menu_Item *rel) which appends 
 new item to rel or prepends it when rel is NULL.

changed e_gadcon_util_client_menu_append to to take only the gadget menu
 and returns the new toplevel menu that should be shown by gcc
 depending on the setting this is a new menu with gadget menu as submenu
 or the gadet_menu with gadget menu items appended

updated e-modules-extra comes in a minute


SVN revision: 57826
2011-03-17 17:08:36 +00:00
Massimo Maiurana ca72bdc928 updating german translations
SVN revision: 57698
2011-03-11 22:17:19 +00:00
Massimo Maiurana 308534cc44 updating russian translations
SVN revision: 57124
2011-02-17 12:15:59 +00:00
Lars Munch 343f3737b1 This adds thinkpad support to the temperature module. The temperature is
accessible through the thinkpad_acpi kernel module.

Signed-off-by: Lars Munch <lars@segv.dk>


SVN revision: 56192
2011-01-16 15:11:56 +00:00
Mike Blumenkrantz 1fdff41c5e close file sooner so we don't leak fds
SVN revision: 56153
2011-01-16 01:52:45 +00:00
Mike Blumenkrantz 67b1000afa fix compile when ehal is not present
note that illume1 still requires ehal and I have no plans to write an eeze backend for it


SVN revision: 55944
2011-01-06 18:41:58 +00:00
Mike Blumenkrantz 15468f69f6 fix include paths for all these makefiles to add $top_builddir/src/bin instead of $top_srcdir/src/lib
SVN revision: 55884
2011-01-05 17:50:05 +00:00
Massimo Maiurana 4a57615505 updating portuguese translations
SVN revision: 55041
2010-11-28 14:34:04 +00:00
Miculcy Brian 2f8f31fbf5 This commit will change the shelf menu completly:
If you have a Gadget and open the menu over it, all gadget specific options are under a separate submenu. The menu items which the Gadget sets theirself can be put on the main menu tree or on the Gadget submenu.
If you don't see a reason for this, check the ibar menu _before_ and _after_. :)

This api change broke all modules but i already fixed them all. Hope everything works... I also shortend text strings, etc, etc.
Hope you like it! :)


SVN revision: 52041
2010-09-09 14:44:21 +00:00
Lucas De Marchi 25113159a5 Fix common misspellings
Some misspellings were manually reverted since in E there are tons of .po with
phrases in other languages. Other than that all the changes in the following
files were reverted:

 * src/modules/illume/dicts/English_(US).dic
 * src/modules/illume-keyboard/dicts/English_(US).dic


Following misspellings were fixed:

acquited->acquitted
adres->address
adress->address
alreayd->already
aquire->acquire
arbitarily->arbitrarily
cant->can't
Capetown->Cape
carefull->careful
causalities->casualties
Celcius->Celsius
certian->certain
commandoes->commandos
considerd->considered
conveyer->conveyor
dependant->dependent
didnt->didn't
discontentment->discontent
doesnt->doesn't
everytime->every
exemple->example
existance->existence
existant->existent
existince->existence
Farenheit->Fahrenheit
forbad->forbade
funguses->fungi
guage->gauge
guerilla->guerrilla
guerillas->guerrillas
happend->happened
hasnt->hasn't
heros->heroes
inbetween->between
independant->independent
inital->initial
intrusted->entrusted
irregardless->regardless
isnt->isn't
knifes->knives
layed->laid
loosing->losing
marrage->marriage
midwifes->midwives
miniscule->minuscule
monickers->monikers
mroe->more
noone->no one
occured->occurred
omre->more
paralell->parallel
payed->paid
planed->planned
quitted->quit
quizes->quizzes
seperated->separated
seperate->separate
shoudl->should
similiar->similar
simplier->simpler
specifiying->specifying
teh->the
toke->took
torpedos->torpedoes
Tuscon->Tucson
unecessary->unnecessary
useage->usage
usefull->useful
useing->using
waht->what
wanna->want
whith->with
wich->which
withing->within




SVN revision: 52006
2010-09-08 23:59:07 +00:00
Sebastian Dransfeld e2c4df0689 formatting
SVN revision: 51720
2010-08-29 10:57:05 +00:00
Lucas De Marchi 63f07459a0 Convert (hopefully) all comparisons to NULL
Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;


other cases:

a == NULL                         !a
a != NULL                         a




SVN revision: 51487
2010-08-21 13:52:25 +00:00
Christopher Michael 2cd2f124dd Add UNUSED where needed.
Fix formatting.



SVN revision: 51405
2010-08-19 15:27:13 +00:00
Cedric BAIL 9617253990 * edje: fix count that lead to memleak.
SVN revision: 51047
2010-08-12 15:07:26 +00:00
Cedric BAIL 288403f62b * edje: fix for updated edje file format.
SVN revision: 51037
2010-08-12 13:26:09 +00:00
Cedric BAIL 068d07757f * edje: converting edje file to make them compatible with old and new
loader. I didn't expect so many of them, maybe some one can take care
	of reducing their number (0 would be a good target).


SVN revision: 50938
2010-08-09 18:05:22 +00:00
Lucas De Marchi 6638a10e20 FORMATTING
* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0



SVN revision: 50816
2010-08-04 16:57:32 +00:00
Cedric BAIL c6a118d738 * e: remove warning due to Ecore API change.
SVN revision: 49833
2010-06-24 16:19:12 +00:00
Christopher Michael 8f8bc172e3 Oops, didn't mean to add a space there :(
SVN revision: 49778
2010-06-21 02:47:02 +00:00
Christopher Michael d257679726 Remove decimals for udev temperature.
SVN revision: 49777
2010-06-21 02:40:10 +00:00
Mike Blumenkrantz 75c99812b9 possibly ignore broken temp sensors
SVN revision: 49323
2010-05-30 07:33:21 +00:00
Christopher Michael 8b97b2ee11 Don't need tempget for udev processing.
Don't need exe data handlers for udev processing.
Cut down on the number of rogue tempget processes (if using Internal
method).
Fix some formatting.
Use PATH_MAX and E_FREE.



SVN revision: 49167
2010-05-23 22:23:14 +00:00
Mike Blumenkrantz ee49a80a1b weed out stupid fake values and add a 4th sensor
SVN revision: 49150
2010-05-23 00:50:36 +00:00
Mike Blumenkrantz 74d4467447 screw it, I'm just going to make this an aggregate of ALL temp sensors regardless of what they are. people with crazy hardware rejoice!
SVN revision: 49149
2010-05-23 00:27:31 +00:00
Mike Blumenkrantz 97529addef match eeze changes, add init/shutdown calls to illume2 keyboard
SVN revision: 49130
2010-05-22 07:04:26 +00:00
Christopher Michael 0a06d5d298 Fix code formatting.
SVN revision: 49123
2010-05-22 03:05:45 +00:00
Mike Blumenkrantz 44340314e7 add a digit to format string for hilarious people that use degrees F (HI DEVILHORNS!!!!!!!!!!!!!)
SVN revision: 49120
2010-05-22 02:19:02 +00:00
Mike Blumenkrantz 95ee44e8c1 updates to match eeze changes
SVN revision: 49119
2010-05-22 01:55:28 +00:00
Mike Blumenkrantz 20afd3f85e change calculation to require less calls, possibly fix a bug
SVN revision: 49080
2010-05-21 02:00:41 +00:00
Mike Blumenkrantz 6932b46ccf update for multicpu sensors
SVN revision: 49079
2010-05-20 21:31:44 +00:00
Mike Blumenkrantz 19e7a56f65 I'm really bad at this whole subversion thing...
SVN revision: 49070
2010-05-20 17:13:14 +00:00
Carsten Haitzler 276fbbb674 stick in dummy file so it compile... bad disco! bad!
SVN revision: 49064
2010-05-20 11:47:07 +00:00
Mike Blumenkrantz 95c4186748 add full udev support for temp module:
if e is compiled with eeze as the preferred backend, a new config page will appear in the settings for the temperature module where internal and udev are selectable options.
udev mode should support ALL possible hardware, so if you've been having issues with the current temp module, try udev mode!
also note that udev mode provides an extra amount of precision for hahas; it also still obeys the configurable polling intervals.
please test and report all bugs!


SVN revision: 49062
2010-05-20 10:12:41 +00:00
Carsten Haitzler 136c1216dc make src utf8.
SVN revision: 49060
2010-05-20 09:19:26 +00:00
Carsten Haitzler a7b95ba2ef patch from Ticket #543
SVN revision: 48353
2010-04-27 04:24:08 +00:00
Hannes Janetzek 5ef6f8bf5b fix some more warnings
SVN revision: 48345
2010-04-26 18:26:49 +00:00
Christopher Michael 98dbcf9403 New Temperature config dialog.
- Works on small resolutions.
 - Fixes issues wrt radio widgets (in old dialog they would not always work
correctly).



SVN revision: 47798
2010-04-07 01:31:09 +00:00
Miculcy Brian b80eca5ad3 remove the now useless title
SVN revision: 47002
2010-03-08 16:09:21 +00:00
Carsten Haitzler a53ae6818e more ecore-txt --
SVN revision: 45797
2010-02-02 07:18:33 +00:00
Carsten Haitzler 16f85793f2 no mroe txt!
SVN revision: 45795
2010-02-02 06:50:38 +00:00
Sebastian Dransfeld 49ef5a77f9 Remove Ecore_Txt
SVN revision: 45791
2010-02-02 04:50:04 +00:00
Carsten Haitzler d57b58c4c3 fix distcheck!
SVN revision: 45426
2010-01-22 05:11:19 +00:00