linksos-commit Mailing List for Links OS: Swift, Secure, Straightforward (Page 6)
Status: Inactive
Brought to you by:
terencevs
You can subscribe to this list here.
| 2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(57) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2003 |
Jan
(135) |
Feb
(3) |
Mar
(86) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ke...@to...> - 2003-01-12 23:50:11
|
Update of /cvsroot/linksos/website/language In directory router-internal.tossell.net:/tmp/cvs-serv5906/language Modified Files: en.php Log Message: Title: Welcome Page Text Changes: Added lots and lots of welcome page text from kye's stat/ Effects: People can figure out what it *is* more easily. a=kennyt Index: en.php =================================================================== RCS file: /cvsroot/linksos/website/language/en.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** en.php 5 Jan 2003 19:50:11 -0000 1.10 --- en.php 12 Jan 2003 23:50:07 -0000 1.11 *************** *** 2,6 **** $lang = array( // welcome ! 'welcome_page' => 'LinksOS is an effort to create a free, modern operating system from the ground up, designed to support modern features. It will be as easy to use and develop for as possible, yet still be fast and sport the best and newest technology available.', // login / logout --- 2,29 ---- $lang = array( // welcome ! 'welcome_page' => ' ! <p>LinksOS is a project aiming to create a free and open source ! multimedia-oriented desktop OS for home and power users.</p> ! <p> ! It is being ! designed and created by a team of enthusiastic developers located all ! around the world, but sharing one common goal: to make the best free ! operating system possible.</p> ! <p align="center">The LinksOS Project has many goals, including:</p> ! ! <p style="position: relative; left: 50px;">- Speed<br> ! - Sleekness<br> ! - Configurability / Tweakability<br> ! - Easy of use for Home users<br> ! - Internet Connectivity<br> ! - A Rich Multimedia Experience</p> ! ! <p align="center">Stay tuned to this website, and sign up for ! linksos-newsletter (signup available at our SourceForge project website, ! <a href="http://www.sf.net/projects/linksos"> ! http://www.sf.net/projects/linksos</a> )</p> ! <p align="left">We also encourage you to look around this website, and ! read anything that interests you. ! ', // login / logout |
|
From: <ke...@to...> - 2003-01-12 23:49:00
|
Update of /cvsroot/linksos/website/include In directory router-internal.tossell.net:/tmp/cvs-serv5853/include Modified Files: news.php Log Message: Title: News display mashing Changes: Added $crush and appropriate <br> , etc. Effects: News display can be chopped down to make it less wide. Maybe a better solution would be to have the first few words, then a link to the rest. a=kennyt Index: news.php =================================================================== RCS file: /cvsroot/linksos/website/include/news.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** news.php 30 Dec 2002 09:18:08 -0000 1.3 --- news.php 12 Jan 2003 23:48:51 -0000 1.4 *************** *** 1,8 **** <? class news { ! function show($num_art) { ! /* Show the num_art most recent articles. * ! * If num_art is not defined, show all articles, * ! * most recent first. Direct echo. */ $news_result = mysql_query('SELECT UNIX_TIMESTAMP(linksos_news.date),linksos_news.title,linksos_news.body,linksos_people.uid,linksos_people.fullname FROM linksos_news,linksos_people WHERE linksos_news.poster = linksos_people.uid ORDER BY linksos_news.news_id DESC'); --- 1,8 ---- <? class news { ! function show($num_art,$crush) { ! /* Show the num_art most recent articles. Compact the display * ! * if $crush is defined. If num_art is not defined, show all * ! * articles, most recent first. Direct echo. */ $news_result = mysql_query('SELECT UNIX_TIMESTAMP(linksos_news.date),linksos_news.title,linksos_news.body,linksos_people.uid,linksos_people.fullname FROM linksos_news,linksos_people WHERE linksos_news.poster = linksos_people.uid ORDER BY linksos_news.news_id DESC'); *************** *** 19,24 **** echo '<table width="100%" style="background-repeat: repeat-x; font-family: Arial; margin: 0px 0px 10px 0px; font-size: 12px; padding: 0; border: 0" cellspacing="0" cellpadding="0"><tr><td valign="top" height="12" width="50%"><b>'; echo date('l j F Y', $article[0]); ! echo ' by ' . perslink($article[3], $article[4]); ! echo '</b></td><td valign="top" style="font-weight: bold; color: #ff0000;">' . $article[1] . '</td></tr>' . '<tr><td height="7" colspan="2" background="image/line_off5.png"></td></tr>' . '<tr><td colspan="3">' . $article[2] . '</td></tr>' . --- 19,26 ---- echo '<table width="100%" style="background-repeat: repeat-x; font-family: Arial; margin: 0px 0px 10px 0px; font-size: 12px; padding: 0; border: 0" cellspacing="0" cellpadding="0"><tr><td valign="top" height="12" width="50%"><b>'; echo date('l j F Y', $article[0]); ! echo ( $crush ? '<br> ' : '' ) . ! ' by ' . perslink($article[3], $article[4]); ! echo '</b></td><td valign="' . ( $crush ? 'bottom' : 'top' ) . ! '" style="font-weight: bold; color: #ff0000;">' . $article[1] . '</td></tr>' . '<tr><td height="7" colspan="2" background="image/line_off5.png"></td></tr>' . '<tr><td colspan="3">' . $article[2] . '</td></tr>' . |
|
From: <ke...@to...> - 2003-01-12 21:42:22
|
Update of /cvsroot/linksos/kernel/hal/prototypes In directory router-internal.tossell.net:/tmp/cvs-serv4385/hal/prototypes Modified Files: io.h Log Message: Title: outportb Fix Changes: Added a space between colons in the asm call within outportb. Effects: Compiles cleanly on g++ 2.9x a=kennyt Index: io.h =================================================================== RCS file: /cvsroot/linksos/kernel/hal/prototypes/io.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** io.h 12 Jan 2003 18:51:06 -0000 1.2 --- io.h 12 Jan 2003 21:42:16 -0000 1.3 *************** *** 14,18 **** { /* Output a byte to a port */ ! asm volatile ("outb %%al,%%dx"::"d" (port), "a" (value)); } --- 14,18 ---- { /* Output a byte to a port */ ! asm volatile ("outb %%al,%%dx": :"d" (port), "a" (value)); } |
|
From: <ke...@to...> - 2003-01-12 21:09:53
|
Update of /cvsroot/linksos/kernel/main In directory router-internal.tossell.net:/tmp/cvs-serv2561/main Modified Files: start.cpp Log Message: Title: Core portability Changes: Made cmain a "C" function, removing mangling. Removed call to kprintf from ASM, and put it into cmain. Effects: Code should compile on other versions of g++, and only one function need be extern "C". a=kennyt Index: start.cpp =================================================================== RCS file: /cvsroot/linksos/kernel/main/start.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** start.cpp 4 Jan 2003 08:12:31 -0000 1.2 --- start.cpp 12 Jan 2003 21:09:49 -0000 1.3 *************** *** 30,34 **** ! void cmain(unsigned long magic, multiboot_info_t addr) { if(magic != MULTIBOOT_BOOTLOADER_MAGIC){ --- 30,34 ---- ! extern "C" void cmain(unsigned long magic, multiboot_info_t addr) { if(magic != MULTIBOOT_BOOTLOADER_MAGIC){ *************** *** 58,60 **** --- 58,65 ---- kprintf("LinksOS v0.0.1a kernel booted.\nI'll loop forever now.\n"); + /* Do that kool kernel stuff */ + + /* Halt */ + kprintf("Halted."); + return; } |
|
From: <ke...@to...> - 2003-01-12 21:09:53
|
Update of /cvsroot/linksos/kernel/boot/x86 In directory router-internal.tossell.net:/tmp/cvs-serv2561/boot/x86 Modified Files: multiboot.S Log Message: Title: Core portability Changes: Made cmain a "C" function, removing mangling. Removed call to kprintf from ASM, and put it into cmain. Effects: Code should compile on other versions of g++, and only one function need be extern "C". a=kennyt Index: multiboot.S =================================================================== RCS file: /cvsroot/linksos/kernel/boot/x86/multiboot.S,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** multiboot.S 12 Jan 2003 18:51:05 -0000 1.5 --- multiboot.S 12 Jan 2003 21:09:49 -0000 1.6 *************** *** 47,61 **** /* Now enter the C main function... */ ! call EXT_C(_Z5cmainm14multiboot_info) ! ! /* Halt. */ ! pushl $halt_message ! call EXT_C(_Z7kprintfPc) loop: hlt jmp loop - - halt_message: - .asciz "Halted." /* Our stack area. */ --- 47,54 ---- /* Now enter the C main function... */ ! call EXT_C(cmain) loop: hlt jmp loop /* Our stack area. */ |
|
From: <ke...@to...> - 2003-01-12 21:02:21
|
Update of /cvsroot/linksos/kernel/main In directory router-internal.tossell.net:/tmp/cvs-serv1966/main Modified Files: Makefile Log Message: Title: Makefile Opt. and Info Changes: Broke CXX lines into smaller pieces. Added 'its all good' message to end of build. Effects: More configurable. a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/main/Makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** Makefile 4 Jan 2003 09:36:42 -0000 1.15 --- Makefile 12 Jan 2003 21:02:15 -0000 1.16 *************** *** 4,8 **** include include.mk ! CFLAGS = $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o OBJS = start.o --- 4,8 ---- include include.mk ! CXXFLAGS+= $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o OBJS = start.o *************** *** 15,19 **** .cpp.o: ! $(CXX) $(CFLAGS) $@ $< .asm.o: --- 15,19 ---- .cpp.o: ! $(CXX) $(CXXFLAGS) $@ $< .asm.o: |
|
From: <ke...@to...> - 2003-01-12 21:02:21
|
Update of /cvsroot/linksos/kernel In directory router-internal.tossell.net:/tmp/cvs-serv1966 Modified Files: Makefile machine.mk Log Message: Title: Makefile Opt. and Info Changes: Broke CXX lines into smaller pieces. Added 'its all good' message to end of build. Effects: More configurable. a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile 12 Jan 2003 18:51:05 -0000 1.8 --- Makefile 12 Jan 2003 21:02:13 -0000 1.9 *************** *** 1,5 **** include machine.mk ! all: kernel kernel: --- 1,7 ---- include machine.mk ! all: clean kernel ! @echo -e "Your build has succeeded! You will find the kernel, complete \n \ ! with multiboot instructions, in ./kernel.bin - Have Fun!" kernel: *************** *** 8,12 **** cd main && make main.o $(LD) -Bstatic -o kernel.bin hal/hal.o boot/boot.o main/main.o -Map main/kernel.map -Ttext 0x100000 --oformat elf32-i386 - # $(CXX) -o kernel.bin hal/hal.o boot/boot.o main/main.o clean: --- 10,13 ---- Index: machine.mk =================================================================== RCS file: /cvsroot/linksos/kernel/machine.mk,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** machine.mk 12 Jan 2003 18:51:05 -0000 1.6 --- machine.mk 12 Jan 2003 21:02:13 -0000 1.7 *************** *** 2,8 **** NOLIBS= -nostdlib -nostdinc -fno-builtin -fno-exceptions # Compilers, etc. LD=ld ! CXX=g++ $(NOLIBS) ASM=as --- 2,11 ---- NOLIBS= -nostdlib -nostdinc -fno-builtin -fno-exceptions + # Global Flags + CXXFLAGS= -pedantic -ansi $(NOLIBS) + # Compilers, etc. LD=ld ! CXX=g++ ASM=as |
|
From: <ke...@to...> - 2003-01-12 18:51:39
|
Update of /cvsroot/linksos/kernel In directory router-internal.tossell.net:/tmp/cvs-serv31339 Modified Files: Makefile machine.mk Log Message: Title: C++ Support Changes: Changed symbol names, command lines, definitions to support c++ building. All g++ calls now include arguments not to include stdlib symbols. Calls to c++ routines in asm call the mangled c++ names, such as _Z7kprintfPc instead of kprintf. io.c's contents are moved into io.h, as inlines are not exported by g++. (Why should they be?) This change breaks portability, which I'll fix next. Effects: LinksOS can now be compiled as c++ code, with the g++ compiler and the gnu as assembler. a=kennyt b=19 Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 3 Jan 2003 23:34:58 -0000 1.7 --- Makefile 12 Jan 2003 18:51:05 -0000 1.8 *************** *** 7,11 **** cd boot && make boot.o cd main && make main.o ! $(LD) -Bstatic -o kernel.bin hal/hal.o boot/boot.o main/main.o -Map main/kernel.map -Ttext 0x100000 clean: --- 7,12 ---- cd boot && make boot.o cd main && make main.o ! $(LD) -Bstatic -o kernel.bin hal/hal.o boot/boot.o main/main.o -Map main/kernel.map -Ttext 0x100000 --oformat elf32-i386 ! # $(CXX) -o kernel.bin hal/hal.o boot/boot.o main/main.o clean: *************** *** 13,15 **** cd hal && make clean cd boot && make clean ! cd main && make clean \ No newline at end of file --- 14,16 ---- cd hal && make clean cd boot && make clean ! cd main && make clean Index: machine.mk =================================================================== RCS file: /cvsroot/linksos/kernel/machine.mk,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** machine.mk 4 Jan 2003 09:36:39 -0000 1.5 --- machine.mk 12 Jan 2003 18:51:05 -0000 1.6 *************** *** 1,7 **** LD=ld ! CC=gcc ! CXX=g++ ASM=as ARCH=x86 ! INCDIRS=-I$(TOPDIR)include \ No newline at end of file --- 1,14 ---- + # We don't want to use the stdlibc++ + NOLIBS= -nostdlib -nostdinc -fno-builtin -fno-exceptions + + # Compilers, etc. LD=ld ! CXX=g++ $(NOLIBS) ASM=as + + # System architecture + # (Currently only x86 is supported. ppc will be available in the future.) ARCH=x86 ! # Base includes ! INCDIRS=-I$(TOPDIR)include -I$(TOPDIR)hal/prototypes \ No newline at end of file |
|
From: <ke...@to...> - 2003-01-12 18:51:12
|
Update of /cvsroot/linksos/kernel/hal/x86 In directory router-internal.tossell.net:/tmp/cvs-serv31339/hal/x86 Modified Files: Makefile Removed Files: io.c Log Message: Title: C++ Support Changes: Changed symbol names, command lines, definitions to support c++ building. All g++ calls now include arguments not to include stdlib symbols. Calls to c++ routines in asm call the mangled c++ names, such as _Z7kprintfPc instead of kprintf. io.c's contents are moved into io.h, as inlines are not exported by g++. (Why should they be?) This change breaks portability, which I'll fix next. Effects: LinksOS can now be compiled as c++ code, with the g++ compiler and the gnu as assembler. a=kennyt b=19 Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/hal/x86/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 4 Jan 2003 09:36:41 -0000 1.7 --- Makefile 12 Jan 2003 18:51:07 -0000 1.8 *************** *** 2,10 **** include $(TOPDIR)/machine.mk - include ../include.mk CFLAGS = $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o ! OBJS = kstdio.o io.o hal.o: $(OBJS) --- 2,9 ---- include $(TOPDIR)/machine.mk CFLAGS = $(INCDIRS) -Wall -O -fomit-frame-pointer -fno-leading-underscore -c -o ! OBJS = kstdio.o hal.o: $(OBJS) *************** *** 18,20 **** clean: ! rm -f *.o *~ \ No newline at end of file --- 17,19 ---- clean: ! rm -f *.o *~ --- io.c DELETED --- |
|
From: <ke...@to...> - 2003-01-12 18:51:12
|
Update of /cvsroot/linksos/kernel/boot/x86 In directory router-internal.tossell.net:/tmp/cvs-serv31339/boot/x86 Modified Files: Makefile multiboot.S Log Message: Title: C++ Support Changes: Changed symbol names, command lines, definitions to support c++ building. All g++ calls now include arguments not to include stdlib symbols. Calls to c++ routines in asm call the mangled c++ names, such as _Z7kprintfPc instead of kprintf. io.c's contents are moved into io.h, as inlines are not exported by g++. (Why should they be?) This change breaks portability, which I'll fix next. Effects: LinksOS can now be compiled as c++ code, with the g++ compiler and the gnu as assembler. a=kennyt b=19 Index: Makefile =================================================================== RCS file: /cvsroot/linksos/kernel/boot/x86/Makefile,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Makefile 4 Jan 2003 09:36:41 -0000 1.8 --- Makefile 12 Jan 2003 18:51:05 -0000 1.9 *************** *** 26,28 **** .S.o: ! $(CC) $(CFLAGS) $@ $< \ No newline at end of file --- 26,28 ---- .S.o: ! $(CXX) $(CFLAGS) $@ $< Index: multiboot.S =================================================================== RCS file: /cvsroot/linksos/kernel/boot/x86/multiboot.S,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** multiboot.S 4 Jan 2003 00:35:12 -0000 1.4 --- multiboot.S 12 Jan 2003 18:51:05 -0000 1.5 *************** *** 47,55 **** /* Now enter the C main function... */ ! call EXT_C(cmain) /* Halt. */ pushl $halt_message ! call EXT_C(kprintf) loop: hlt --- 47,55 ---- /* Now enter the C main function... */ ! call EXT_C(_Z5cmainm14multiboot_info) /* Halt. */ pushl $halt_message ! call EXT_C(_Z7kprintfPc) loop: hlt |
|
From: <ke...@to...> - 2003-01-12 18:51:12
|
Update of /cvsroot/linksos/kernel/hal/prototypes In directory router-internal.tossell.net:/tmp/cvs-serv31339/hal/prototypes Modified Files: io.h Log Message: Title: C++ Support Changes: Changed symbol names, command lines, definitions to support c++ building. All g++ calls now include arguments not to include stdlib symbols. Calls to c++ routines in asm call the mangled c++ names, such as _Z7kprintfPc instead of kprintf. io.c's contents are moved into io.h, as inlines are not exported by g++. (Why should they be?) This change breaks portability, which I'll fix next. Effects: LinksOS can now be compiled as c++ code, with the g++ compiler and the gnu as assembler. a=kennyt b=19 Index: io.h =================================================================== RCS file: /cvsroot/linksos/kernel/hal/prototypes/io.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** io.h 4 Jan 2003 08:28:57 -0000 1.1 --- io.h 12 Jan 2003 18:51:06 -0000 1.2 *************** *** 2,8 **** #define _IO_H ! inline unsigned char inportb(unsigned int port); ! inline void outportb(unsigned int port, unsigned char value); ! #endif --- 2,19 ---- #define _IO_H ! inline unsigned char inportb(unsigned int port) ! { ! /* Input a byte from a port */ ! unsigned char ret; ! ! asm volatile ("inb %%dx,%%al":"=a" (ret):"d" (port)); ! return ret; ! } + inline void outportb(unsigned int port,unsigned char value) + { + /* Output a byte to a port */ + asm volatile ("outb %%al,%%dx"::"d" (port), "a" (value)); + } ! #endif /* ! _IO_H */ |
|
From: <ke...@to...> - 2003-01-12 18:51:12
|
Update of /cvsroot/linksos/kernel/hal In directory router-internal.tossell.net:/tmp/cvs-serv31339/hal Removed Files: include.mk Log Message: Title: C++ Support Changes: Changed symbol names, command lines, definitions to support c++ building. All g++ calls now include arguments not to include stdlib symbols. Calls to c++ routines in asm call the mangled c++ names, such as _Z7kprintfPc instead of kprintf. io.c's contents are moved into io.h, as inlines are not exported by g++. (Why should they be?) This change breaks portability, which I'll fix next. Effects: LinksOS can now be compiled as c++ code, with the g++ compiler and the gnu as assembler. a=kennyt b=19 --- include.mk DELETED --- |
|
From: <bl...@to...> - 2003-01-06 23:28:16
|
Update of /cvsroot/linksos/kernel/hw/x86/native In directory router-internal.tossell.net:/tmp/cvs-serv10350 Added Files: README Log Message: Title: Changes: Effects: a= b= --- NEW FILE: README --- This is the place for native drivers for the kernel. These will be the standerd HW-support compiled in the kernel. No exotic drivers but the bare minimuum so that the kernel will boot on any HW. #fernagut Thibaut |
|
From: <bl...@to...> - 2003-01-06 23:19:07
|
Update of /cvsroot/linksos/kernel/hw/x86/extended In directory router-internal.tossell.net:/tmp/cvs-serv10191 Added Files: README Log Message: Title: Changes: Effects: a= b= --- NEW FILE: README --- These are extended drivers to tune/support your specific system. #blokkie |
|
From: <ke...@to...> - 2003-01-06 04:03:51
|
Update of /cvsroot/linksos/website/content In directory router-internal.tossell.net:/tmp/cvs-serv32559/content Added Files: downloads.php Log Message: Title: Downloads Changes: Added downloads page, which currently just shows snapshot link. Effects: People can download stuff. a=kennyt --- NEW FILE: downloads.php --- <? echo '<a href="http://www.linksos.org/snapshot/linksos-cvs-' . date('m-d-Y') . '.tar.gz">Most recent snapshot (' . date('F jS, Y') . ')</a>'; ?> |
|
From: <st...@to...> - 2003-01-05 21:58:00
|
Update of /cvsroot/linksos/website/language In directory router-internal.tossell.net:/tmp/cvs-serv28819 Modified Files: no.php Log Message: Title: no.php Changes: added 'timezone' and 'view_in_english' Effects: a=kennyt b= Index: no.php =================================================================== RCS file: /cvsroot/linksos/website/language/no.php,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** no.php 28 Dec 2002 00:04:23 -0000 1.12 --- no.php 5 Jan 2003 21:57:56 -0000 1.13 *************** *** 3,7 **** $lang_no = array( // welcome ! 'welcome_page' => 'LinksOS er et forsøk på å lage et fritt, moderne operativsystem fra bunn av, konstruert for å støtte moderne funksjoner. Det vil være så enkelt å bruke og utvikle til som mulig, men fortsatt være raskt og tilby det nyeste innen teknologi.', // login / logout --- 3,7 ---- $lang_no = array( // welcome ! 'welcome_page' => 'LinksOS er et forsøk pÃ¥ Ã¥ lage et fritt, moderne operativsystem fra bunn av, konstruert for Ã¥ støtte moderne funksjoner. Det vil være sÃ¥ enkelt Ã¥ bruke og utvikle til som mulig, men fortsatt være raskt og tilby det nyeste innen teknologi.', // login / logout *************** *** 10,14 **** 'logout_from_acct' => 'Logger ut av konto ', 'login_failed' => 'Innlogging feilet.', ! 'username_passwd_req' => 'Du må skrive inn brukernavn og passord.', 'not_logged_in' => 'Ikke logget inn.', 'login' => 'Brukernavn', --- 10,14 ---- 'logout_from_acct' => 'Logger ut av konto ', 'login_failed' => 'Innlogging feilet.', ! 'username_passwd_req' => 'Du mÃ¥ skrive inn brukernavn og passord.', 'not_logged_in' => 'Ikke logget inn.', 'login' => 'Brukernavn', *************** *** 18,32 **** // general error messages 'page_not_found' => 'Beklager, men siden du leter etter ble ikke funnet.', ! 'page_req_login' => 'Du må være logget inn for å se denne siden.', 'user_not_found' => 'Kunne ikke finne den brukeren.', 'team_not_found' => 'Kunne ikke finne finne gruppen.', // group used instead of team for better sounding translation (done throughout the translation) ! 'num_team_id' => 'Du må taste inn en numerisk gruppe id.', 'page_admin_only' => 'Kun administratorer kan se denne siden.', 'page_lead_admin_only' => 'Kun gruppeledere og administratorer har tilgang til denne siden.', ! 'anon_only_use_acct' => 'Denne siden er kun for anonyme brukere.<br>Når du er logget inn kan du velge språk i kontoinnstillingene.', // acct management ! 'pass_conf_neq' => 'Passord og bekreftelse må være like og eksiterende.', 'acct_options' => 'Kontoinnstillinger', 'password' => 'Passord', --- 18,32 ---- // general error messages 'page_not_found' => 'Beklager, men siden du leter etter ble ikke funnet.', ! 'page_req_login' => 'Du mÃ¥ være logget inn for Ã¥ se denne siden.', 'user_not_found' => 'Kunne ikke finne den brukeren.', 'team_not_found' => 'Kunne ikke finne finne gruppen.', // group used instead of team for better sounding translation (done throughout the translation) ! 'num_team_id' => 'Du mÃ¥ taste inn en numerisk gruppe id.', 'page_admin_only' => 'Kun administratorer kan se denne siden.', 'page_lead_admin_only' => 'Kun gruppeledere og administratorer har tilgang til denne siden.', ! 'anon_only_use_acct' => 'Denne siden er kun for anonyme brukere.<br>NÃ¥r du er logget inn kan du velge sprÃ¥k i kontoinnstillingene.', // acct management ! 'pass_conf_neq' => 'Passord og bekreftelse mÃ¥ være like og eksiterende.', 'acct_options' => 'Kontoinnstillinger', 'password' => 'Passord', *************** *** 48,52 **** 'status' => 'Status', 'status_detail' => 'Status Detaljer', ! 'developers' => 'Utviklere', // administration --- 48,53 ---- 'status' => 'Status', 'status_detail' => 'Status Detaljer', ! 'developers' => 'Utviklere', ! 'timezone' => 'Tidssone', // administration *************** *** 63,72 **** ! 'team_leader_head' => 'Klikk på en person for å forfremme den til gruppeleder.<br>Ved å forfremme noen vil forrige leder bli degradert.<p />', // links, etc 'my_page' => 'Min side', 'got_bugs' => 'Rapporter Feil', // report bugs ! 'language' => 'Språk', 'hosted_by' => 'Server levert av', // server provided by --- 64,73 ---- ! 'team_leader_head' => 'Klikk pÃ¥ en person for Ã¥ forfremme den til gruppeleder.<br>Ved Ã¥ forfremme noen vil forrige leder bli degradert.<p />', // links, etc 'my_page' => 'Min side', 'got_bugs' => 'Rapporter Feil', // report bugs ! 'language' => 'SprÃ¥k', 'hosted_by' => 'Server levert av', // server provided by *************** *** 75,80 **** // customization ! 'choose_language_head' => 'Velg ditt språk nedenfor. Dette valget vil forbli inntil du avslutter denne økten.', ! ); ?> --- 76,85 ---- // customization ! 'choose_language_head' => 'Velg ditt sprÃ¥k nedenfor. Dette valget vil forbli inntil du avslutter denne økten.', ! ); ! ! // documentation ! 'view_in_english' => 'Vis pÃ¥ engelsk', ! ); ?> |
|
From: <ke...@to...> - 2003-01-05 21:50:42
|
Update of /cvsroot/linksos/CVSROOT In directory router-internal.tossell.net:/tmp/cvs-serv28622 Modified Files: modules Log Message: Title: Kernel Location Changes: Moved kernel to /cvsroot/linksos/kernel Effects: Bonsai will be happy and everyone will be forced to re-checkout and get the template. a=kennyt Index: modules =================================================================== RCS file: /cvsroot/linksos/CVSROOT/modules,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** modules 29 Dec 2002 00:08:52 -0000 1.3 --- modules 5 Jan 2003 21:50:31 -0000 1.4 *************** *** 26,28 **** # spread out over the entire source repository. website website ! kernel linksos \ No newline at end of file --- 26,28 ---- # spread out over the entire source repository. website website ! kernel kernel \ No newline at end of file |
|
From: <ke...@to...> - 2003-01-05 19:50:16
|
Update of /cvsroot/linksos/website/language In directory router-internal.tossell.net:/tmp/cvs-serv25877/language Modified Files: en.php Log Message: Title: Timezone Changes: Language-specified timezone; Added timezone display to user info page. Effects: Timezone is localized and is easy to find on a user's page. a=kennyt Index: en.php =================================================================== RCS file: /cvsroot/linksos/website/language/en.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** en.php 30 Dec 2002 08:12:22 -0000 1.9 --- en.php 5 Jan 2003 19:50:11 -0000 1.10 *************** *** 42,45 **** --- 42,46 ---- 'team' => 'Team', 'none' => 'none', + 'not_set' => 'not set', 'edit' => 'edit', 'change' => 'change', *************** *** 48,51 **** --- 49,53 ---- 'status_detail' => 'Status Detail', 'developers' => 'Developers', + 'timezone' => 'Timezone', // administration |
|
From: <ke...@to...> - 2003-01-05 19:50:15
|
Update of /cvsroot/linksos/website/content In directory router-internal.tossell.net:/tmp/cvs-serv25877/content Modified Files: person_edit.php person_summary.php Log Message: Title: Timezone Changes: Language-specified timezone; Added timezone display to user info page. Effects: Timezone is localized and is easy to find on a user's page. a=kennyt Index: person_edit.php =================================================================== RCS file: /cvsroot/linksos/website/content/person_edit.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** person_edit.php 2 Jan 2003 01:26:16 -0000 1.3 --- person_edit.php 5 Jan 2003 19:50:11 -0000 1.4 *************** *** 13,18 **** // if ( $REQUEST["newtimezone"] ) { if ( $_REQUEST["newtimezone"] != $_SESSION["user"][6] ) { ! mysql_query('UPDATE linksos_people SET gmt = \'' . $_REQUEST["newtimezone"] . '\' WHERE uid = ' . $_SESSION["user"][0]) or die('Could not update timezone.<br>'); ! echo 'Timezone updated.<br>'; } // } --- 13,18 ---- // if ( $REQUEST["newtimezone"] ) { if ( $_REQUEST["newtimezone"] != $_SESSION["user"][6] ) { ! mysql_query('UPDATE linksos_people SET gmt = \'' . $_REQUEST["newtimezone"] . '\' WHERE uid = ' . $_SESSION["user"][0]) or die($lang['err_timezone_nup'] . '<br>'); ! echo $lang['timezone_updated'] . '.<br>'; } // } *************** *** 23,27 **** $lang['password'] . ': <input type="password" name="newpassword"><br>' . $lang['confirm'] . ': <input type="password" name="newpasswordconfirm"><br>' . ! 'Timezone: <select name="newtimezone">'; for ( $t = -12; $t < 13; $t++ ) { echo '<option value="' . $t . '"' . ( $t == $_SESSION["user"][6] ? ' selected' : '' ) . '>GMT ' . ($t > 0 ? '+' : ($t == 0 ? '+-' : '-') ) . abs($t) . '</option>'; --- 23,27 ---- $lang['password'] . ': <input type="password" name="newpassword"><br>' . $lang['confirm'] . ': <input type="password" name="newpasswordconfirm"><br>' . ! $lang['timezone'] . ': <select name="newtimezone">'; for ( $t = -12; $t < 13; $t++ ) { echo '<option value="' . $t . '"' . ( $t == $_SESSION["user"][6] ? ' selected' : '' ) . '>GMT ' . ($t > 0 ? '+' : ($t == 0 ? '+-' : '-') ) . abs($t) . '</option>'; Index: person_summary.php =================================================================== RCS file: /cvsroot/linksos/website/content/person_summary.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** person_summary.php 30 Dec 2002 09:18:08 -0000 1.4 --- person_summary.php 5 Jan 2003 19:50:11 -0000 1.5 *************** *** 9,12 **** --- 9,13 ---- '<tr><td>' . $lang['real_name'] . ':</td><td><b>' . $person[2] . '</b></td></tr>' . '<tr><td>' . $lang['email'] . ':</td><td><a href="mailto:' . $person[1] . '@users.sourceforge.net">' . $person[1] . ' at users dot sourceforge dot net</a></td></tr>'; + echo '<tr><td>' . $lang['timezone'] . ':</td><td> ' . ($person[6] != 25 ? 'GMT ' . ( $person[6] > 0 ? '+ ' : ($person[6] == 0 ? '+- ' : '' )) . $person[6] : $lang['not_set']) . '</td></tr>'; $user_grouplist_res = mysql_query('SELECT gid,uid,status FROM linksos_members WHERE uid = ' . $person[0]); echo '<tr><td valign="top">' . $lang['teams'] . ':</td><td>'; |
|
From: <ke...@to...> - 2003-01-05 19:41:36
|
Update of /cvsroot/linksos/website/content In directory router-internal.tossell.net:/tmp/cvs-serv25714/content Modified Files: person_edit.php Log Message: Title: Languages in person_edit Changes: Language-specified timezone in person_edit. Effects: Timezone will appear in other languages. a=kennyt Index: person_edit.php =================================================================== RCS file: /cvsroot/linksos/website/content/person_edit.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** person_edit.php 2 Jan 2003 01:26:16 -0000 1.3 --- person_edit.php 5 Jan 2003 19:41:29 -0000 1.4 *************** *** 13,18 **** // if ( $REQUEST["newtimezone"] ) { if ( $_REQUEST["newtimezone"] != $_SESSION["user"][6] ) { ! mysql_query('UPDATE linksos_people SET gmt = \'' . $_REQUEST["newtimezone"] . '\' WHERE uid = ' . $_SESSION["user"][0]) or die('Could not update timezone.<br>'); ! echo 'Timezone updated.<br>'; } // } --- 13,18 ---- // if ( $REQUEST["newtimezone"] ) { if ( $_REQUEST["newtimezone"] != $_SESSION["user"][6] ) { ! mysql_query('UPDATE linksos_people SET gmt = \'' . $_REQUEST["newtimezone"] . '\' WHERE uid = ' . $_SESSION["user"][0]) or die($lang['err_timezone_nup'] . '<br>'); ! echo $lang['timezone_updated'] . '.<br>'; } // } *************** *** 23,27 **** $lang['password'] . ': <input type="password" name="newpassword"><br>' . $lang['confirm'] . ': <input type="password" name="newpasswordconfirm"><br>' . ! 'Timezone: <select name="newtimezone">'; for ( $t = -12; $t < 13; $t++ ) { echo '<option value="' . $t . '"' . ( $t == $_SESSION["user"][6] ? ' selected' : '' ) . '>GMT ' . ($t > 0 ? '+' : ($t == 0 ? '+-' : '-') ) . abs($t) . '</option>'; --- 23,27 ---- $lang['password'] . ': <input type="password" name="newpassword"><br>' . $lang['confirm'] . ': <input type="password" name="newpasswordconfirm"><br>' . ! $lang['timezone'] . ': <select name="newtimezone">'; for ( $t = -12; $t < 13; $t++ ) { echo '<option value="' . $t . '"' . ( $t == $_SESSION["user"][6] ? ' selected' : '' ) . '>GMT ' . ($t > 0 ? '+' : ($t == 0 ? '+-' : '-') ) . abs($t) . '</option>'; |
|
From: <ke...@to...> - 2003-01-04 09:49:03
|
Update of /cvsroot/linksos/linksos In directory router-internal.tossell.net:/tmp/cvs-serv521 Modified Files: machine.mk Log Message: Title: Include path Changes: Added hal/prototypes to the include path Effects: Hal functions are generally available a=kennyt Index: machine.mk =================================================================== RCS file: /cvsroot/linksos/linksos/machine.mk,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** machine.mk 4 Jan 2003 09:36:39 -0000 1.5 --- machine.mk 4 Jan 2003 09:48:57 -0000 1.6 *************** *** 5,7 **** ARCH=x86 ! INCDIRS=-I$(TOPDIR)include \ No newline at end of file --- 5,7 ---- ARCH=x86 ! INCDIRS=-I$(TOPDIR)include -I$(TOPDIR)hal/prototypes \ No newline at end of file |
|
From: <ke...@to...> - 2003-01-04 09:36:48
|
Update of /cvsroot/linksos/linksos/hal/x86 In directory router-internal.tossell.net:/tmp/cvs-serv32501/hal/x86 Modified Files: Makefile Log Message: Title: Makefile and *CC* Changes: Added .cpp target. Changed GCC to CC. Effects: C++ support coming... a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/hal/x86/Makefile,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Makefile 4 Jan 2003 08:28:57 -0000 1.6 --- Makefile 4 Jan 2003 09:36:41 -0000 1.7 *************** *** 12,16 **** .c.o: ! $(GCC) $(CFLAGS) $@ $< clean: --- 12,19 ---- .c.o: ! $(CC) $(CFLAGS) $@ $< ! ! .cpp.o: ! $(CXX) $(CFLAGS) $@ $< clean: |
|
From: <ke...@to...> - 2003-01-04 09:36:48
|
Update of /cvsroot/linksos/linksos/hal In directory router-internal.tossell.net:/tmp/cvs-serv32501/hal Modified Files: Makefile Log Message: Title: Makefile and *CC* Changes: Added .cpp target. Changed GCC to CC. Effects: C++ support coming... a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/hal/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 3 Jan 2003 23:34:59 -0000 1.4 --- Makefile 4 Jan 2003 09:36:41 -0000 1.5 *************** *** 3,12 **** include $(TOPDIR)/machine.mk - LD = ld - - GCC = gcc - - ASM = NASM - hal.o: hal-$(ARCH).o rm -f hal.o --- 3,6 ---- |
|
From: <ke...@to...> - 2003-01-04 09:36:47
|
Update of /cvsroot/linksos/linksos In directory router-internal.tossell.net:/tmp/cvs-serv32501 Modified Files: machine.mk Log Message: Title: Makefile and *CC* Changes: Added .cpp target. Changed GCC to CC. Effects: C++ support coming... a=kennyt Index: machine.mk =================================================================== RCS file: /cvsroot/linksos/linksos/machine.mk,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** machine.mk 4 Jan 2003 08:36:06 -0000 1.4 --- machine.mk 4 Jan 2003 09:36:39 -0000 1.5 *************** *** 1,4 **** LD=ld ! GCC=gcc ASM=as ARCH=x86 --- 1,5 ---- LD=ld ! CC=gcc ! CXX=g++ ASM=as ARCH=x86 |
|
From: <ke...@to...> - 2003-01-04 09:36:47
|
Update of /cvsroot/linksos/linksos/main In directory router-internal.tossell.net:/tmp/cvs-serv32501/main Modified Files: Makefile Log Message: Title: Makefile and *CC* Changes: Added .cpp target. Changed GCC to CC. Effects: C++ support coming... a=kennyt Index: Makefile =================================================================== RCS file: /cvsroot/linksos/linksos/main/Makefile,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Makefile 3 Jan 2003 23:59:09 -0000 1.14 --- Makefile 4 Jan 2003 09:36:42 -0000 1.15 *************** *** 12,16 **** .c.o: ! $(GCC) $(CFLAGS) $@ $< .asm.o: --- 12,19 ---- .c.o: ! $(CC) $(CFLAGS) $@ $< ! ! .cpp.o: ! $(CXX) $(CFLAGS) $@ $< .asm.o: |