summaryrefslogtreecommitdiffstats
path: root/perl-install/any.pm
Commit message (Expand)AuthorAgeFilesLines
* - when skipping bootloader installation, correctly say "None" in summary Pascal Rigaux2008-03-211-3/+5
* ensure $locale->{country} and $locale->{IM} are set correctly even ifPascal Rigaux2008-03-211-0/+1
* - add Xorg.0.log to report.bug.gz (to help diagnose why X failed)Pascal Rigaux2008-03-201-0/+1
* - ask which drive to install bootloader if we don't really know which is firstPascal Rigaux2008-03-201-6/+7
* allow to hide ntp in advanced settingsOlivier Blin2008-03-191-5/+6
* split out configure_time_more (for next commit)Olivier Blin2008-03-191-1/+10
* partially revert previous commit (since there will be no "next commit" on set...Pascal Rigaux2008-03-191-6/+2
* create _ask_boot_bios_drive() out of setupBootloader__boot_bios_drive()Pascal Rigaux2008-03-191-5/+14
* add missing spaceOlivier Blin2008-03-191-1/+1
* do not unconfigure timezone if timezone screen is canceled (#33565)Olivier Blin2008-03-191-1/+2
* - adduserdrake:Pascal Rigaux2008-03-181-0/+4
* - diskdrake --fileshare:Pascal Rigaux2008-01-281-1/+1
* - drakboot:Pascal Rigaux2008-01-171-2/+3
* - localedrake, drakx-finish-install:Pascal Rigaux2008-01-141-3/+4
* - do not sort languages in "choose language" step in graphical mode, since thePascal Rigaux2008-01-111-1/+1
* simplify (sort should not be used together with separator, since tree isPascal Rigaux2007-12-071-1/+1
* (selectLanguage_install) ensure langs are sorted in text modeThierry Vignaud2007-12-061-1/+1
* - localedrake:Pascal Rigaux2007-11-301-1/+1
* drakclock/finish-install: disable DPMS and screensaver when setting time not ...Olivier Blin2007-10-231-0/+11
* - localedrake:Pascal Rigaux2007-10-151-1/+3
* simplify (for next commit)Pascal Rigaux2007-10-151-2/+1
* (display_release_notes) fix release notes window size in !install modeThierry Vignaud2007-10-051-1/+1
* - diskdrake --filesharePascal Rigaux2007-10-041-0/+3
* i don't like \1 :)Pascal Rigaux2007-09-281-1/+1
* (display_release_notes) split it out of acceptLicense()Thierry Vignaud2007-09-271-36/+37
* - localedrake: Pascal Rigaux2007-09-271-5/+4
* (acceptLicense) display nicer HTML release notes rather than raw text versionThierry Vignaud2007-09-261-2/+40
* - on upgrade, don't add resume=xxx if noresume is there (#33953)Pascal Rigaux2007-09-241-5/+10
* read gdm autologin settingsOlivier Blin2007-09-211-3/+5
* - drakboot:Pascal Rigaux2007-09-201-0/+1
* - report_bug: hide grub password (#33634)Pascal Rigaux2007-09-171-1/+1
* replace "require lang" by "use lang"Thierry Vignaud2007-09-171-1/+1
* transform "use lang" into "require lang" (lang.pm doesn't exportThierry Vignaud2007-09-151-1/+1
* drop Move support (unused for quite a long time and superceeded by GlobetrotterThierry Vignaud2007-08-271-2/+0
* drop globetrotter support (unused for quite a long time and superceeded by Md...Thierry Vignaud2007-08-241-9/+5
* rename title of ask_user_and_root() to "User management"Pascal Rigaux2007-08-141-1/+1
* - adduserdrake, finish-install:Pascal Rigaux2007-08-131-40/+44
* - drakboot:Pascal Rigaux2007-08-081-1/+1
* - drakboot -bootPascal Rigaux2007-06-111-1/+5
* do not try to configure dvd devices during install since /dev is wiped out at...Olivier Blin2007-04-301-15/+0
* re-sync after the big svn lossPascal Rigaux2007-04-251-160/+276
* as suggested in bug #21524, display the info on hard drives in the "boot devi...Pascal Rigaux2006-03-091-1/+8
* enable acpi/acpid services when needed, disable them otherwise (#21316)Olivier Blin2006-03-041-2/+6
* fix indentationOlivier Blin2006-02-281-2/+2
* symlink old home directory to new one when renaming user (#21384)Olivier Blin2006-02-281-0/+2
* remove spurious commaOlivier Blin2006-02-281-1/+1
* remove untested patchOlivier Blin2006-02-231-14/+6
* use groupmod to change group when renaming a userOlivier Blin2006-02-231-8/+16
* create lang::lang_changed() to ensure {country} is set according to the lang ...Pascal Rigaux2006-02-231-1/+1
* perl_checker complianceOlivier Blin2006-02-231-1/+1
,text) Newt::Component co; const char * text; void newtTextboxSetHeight(co,height) Newt::Component co; int height; int newtTextboxGetNumLines(co) Newt::Component co; char * newtReflowText(text,width,flexDown,flexUp,actualWidth,actualHeight) char * text; int width; int flexDown; int flexUp; int * actualWidth; int * actualHeight; Newt::Component newtForm(vertBar,help,flags) Newt::Component vertBar; char * help; int flags; void newtFormSetSize(co) Newt::Component co; Newt::Component newtFormGetCurrent(co) Newt::Component co; void newtFormSetBackground(co,color) Newt::Component co; int color; void newtFormSetCurrent(co,subco) Newt::Component co; Newt::Component subco; void newtFormAddComponent(form,co) Newt::Component form; Newt::Component co; void newtFormAddGrid(form,grid,recurse) Newt::Component form; Newt::Grid grid; int recurse; CODE: newtGridAddComponentsToForm(grid,form,recurse); void newtFormSetHeight(co,height) Newt::Component co; int height; void newtFormSetWidth(co,width) Newt::Component co; int width; Newt::Component newtRunForm(form) Newt::Component form; void newtDrawForm(form) Newt::Component form; Newt::Component newtEntry(initialValue,width,flag) const char * initialValue; int width; int flag; CODE: { const char *result; RETVAL = newtEntry(-1, -1, initialValue,width,&result,flag); } OUTPUT: RETVAL void newtEntrySet(co,value,cursorAtEnd) Newt::Component co; const char * value; int cursorAtEnd; char * newtEntryGetValue(co) Newt::Component co; void newtFormDestroy(form) Newt::Component form; MODULE = Newt PACKAGE = Newt::Grid PREFIX = newt Newt::Grid newtCreateGrid(cols,rows) int cols; int rows; Newt::Grid HCloseStacked3(c1, c2, c3) Newt::Component c1; Newt::Component c2; Newt::Component c3; CODE: { RETVAL = newtGridHCloseStacked(NEWT_GRID_COMPONENT, c1, NEWT_GRID_COMPONENT, c2, NEWT_GRID_COMPONENT, c3); } OUTPUT: RETVAL Newt::Grid newtGridBasicWindow(text,middle,buttons) Newt::Component text; Newt::Grid middle; Newt::Grid buttons; Newt::Grid newtGridSimpleWindow(text,middle,buttons) Newt::Component text; Newt::Component middle; Newt::Grid buttons; void newtGridSetField(grid,col,row,type,val,padLeft,padTop,padRight,padBottom,anchor,flags) Newt::Grid grid; int col; int row; enum newtGridElement type; void * val; int padLeft; int padTop; int padRight; int padBottom; int anchor; int flags; void newtGridFree(grid,recurse) Newt::Grid grid; int recurse; void newtGridPlace(grid,left,top) Newt::Grid grid; int left; int top; void newtGridGetSize(grid) Newt::Grid grid; PPCODE: { int width; int height; newtGridGetSize(grid, &width, &height); PUSHs(sv_2mortal(newSViv(width))); PUSHs(sv_2mortal(newSViv(height))); } void newtGridWrappedWindow(grid,title) Newt::Grid grid; char * title; Newt::Grid newtButtonBar(button1, ...) char * button1; PPCODE: { static newtComponent p[11]; int i; EXTEND(SP, items + 1); #define a(i) (char *)SvPV(ST(i),PL_na) PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Grid", newtButtonBar(items > 0 ? a( 0) : NULL, items > 0 ? &p[ 0] : NULL, items > 1 ? a( 1) : NULL, items > 1 ? &p[ 1] : NULL, items > 2 ? a( 2) : NULL, items > 2 ? &p[ 2] : NULL, items > 3 ? a( 3) : NULL, items > 3 ? &p[ 3] : NULL, items > 4 ? a( 4) : NULL, items > 4 ? &p[ 4] : NULL, items > 5 ? a( 5) : NULL, items > 5 ? &p[ 5] : NULL, items > 6 ? a( 6) : NULL, items > 6 ? &p[ 6] : NULL, items > 7 ? a( 7) : NULL, items > 7 ? &p[ 7] : NULL, items > 8 ? a( 8) : NULL, items > 8 ? &p[ 8] : NULL, items > 9 ? a( 9) : NULL, items > 9 ? &p[ 9] : NULL, items > 10 ? a(10) : NULL, items > 10 ? &p[10] : NULL, NULL))); #undef a for (i = 0; i < items; i++) PUSHs(sv_setref_pv(sv_newmortal(), "Newt::Component", p[i])); }