Search: \.*

Education/LI10708 Web Changed Changed by
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco

Avaliação

Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões laboratoriais.

A nota final será obtida como a média das 3 notas parciais.

Notas

Resultados

Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
  • 1ª prova de avaliação:
    semana de 5 a 10 de Novembro, durante as aulas.
  • 2ª prova de avaliação:
    7 a 13 de Dezembro, durante as aulas.
  • 3ª prova de avaliação:
    semana de 21 a 25 de Janeiro, durante as aulas.

  • EXAME DE RECURSO:
    • DATA: 15/02,
    • HORA: 9:30,
    • SALA: DI-0.11

LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco

Sessão Laboratorial 1


Nesta primeira sessão pretende-se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite-se que os alunos já dispõem de algum tipo de contacto com a utilização de computadores.

Login e Apresentação do Sistema MacOSX

Após a introdução do login e da password (o docente informará qual é...) o computador exibe um écran como o apresentado:

A barra no topo do écran - o menu - diz respeito à aplicação activa e contém funcionalidades dessa aplicação (tais como abrir um novo ficheiro, gravar, etc). Na parte inferior do écran existe a barra de ferramentas que disponibiliza o acesso rápido a algumas aplicações (inicia aplicação com um click; arrastando um ficheiro sobre o icon: inicia a aplicação abrindo imediatamente o ficheiro em causa).

Na barra de ferramentas encontramos (entre outras) as aplicações:

  • O Finder é a aplicação responsável por manter a sessão do utilizador. O seu aspecto mais visível é a interacção com o sistema de ficheiros. Por seu intermédio podemos aceder/manipular a informação contida no disco (ficheiros, directorias, etc.).
  • O Terminal é a aplicação que permite interagir, em modo de comando, com o sistema operativo MacOSX (o sistema Unix da Apple). A sua utilização requer portanto o conhecimento de alguns comandos desse sistema, tornando-se menos intuitiva do que a manipulação da interface gráfica do sistema. É no entanto muito mais flexível e permite-nos realizar operações não acessíveis pela interface gráfica.
  • O Safari é um browser WWW. Permite consultar páginas Web (e.g. a página da disciplina).
  • O Trash permite remover ficheiros/directorias, arrastando o que se pretende remover para cima do icon.

O Finder

Esta aplicação permite interagir de uma forma visual com o sistema de ficheiros. Algumas das operações básicas que se podem fazer são acessíveis na barra superior no item File.

finder_file.jpg

Podemos abrir uma nova janela de visualização ou criar uma nova directoria. Note-se que esta directoria será uma sub-directoria da que estamos neste momento a visualizar (se não estiver nenhuma janela do Finder aberta, será criada como uma sub-directoria da Desktop que contém os elementos visíveis no fundo do écran).

Note a existência de uma directoria com icon representando uma casa, que se refere à sua directoria base (Home). A própria Desktop é uma sub-directoria dessa.

Tarefa 1 - Crie na sua Home uma directoria chamada Aula1.

O Terminal

Através do Terminal também podemos interagir, de uma forma textual, com o sistema de ficheiros. Podemos por exemplo listar o conteúdo de uma directoria (ls), remover um ficheiro (rm), visualizar o conteúdo de um ficheiro (cat) ou mover/mudar o nome de um ficheiro (mv). Podemos além disso efectuar toda uma série de acções, incluindo o início de programas.

Tarefa 2 - Inicie o Terminal e usando o comando cd (change directory) vá para a directoria Aula1 criada atras. Use ainda o comando ls -la para visualizar o conteúdo dessa directoria. Note que o comando cd, quando usado sem argumentos, o posiciona na sua Home.

Vamos agora usar um editor de texto para criar um ficheiro. Nesta primeira fase vamos usar o editor vi, comum a todos os sistemas Unix.

Quando estamos a usar o vi podemos estar em dois modos de funcionamento:

  • modo comando é o modo inicial e podemos invocar comandos: (a, i, e o) servem para passar a modo inserção; :s guarda as alterações efectuadas; (:q, :x e ZZ) terminam a execução do vi.
  • modo inserção onde podemos inserir o texto. Para voltar ao modo de comando devemos usar a tecla "Esc".

Emacs

Um outro editor de texto muito utilizado em sistemas Unix é o Emacs. Tal como fizemos para o vi, vamos aqui descrever a utilização mais rudimentar deste editor de texto. Este programa pode ser encontrado na directoria Applications e tem como icon um gnu.

Aquamacs.png

Para abrir um determinado ficheiro usa-se o comando "CTRL-x CTRL-f". Alternativamente, podemos usar o item File da barra superior do ecran. Aqui, uma das opções é abrir um ficheiro (Open File) ou uma nova janela (New). No final da edição devemos guardar o ficheiro editado, usando Save ou Save As, dependendo se o ficheiro já existia ou não.

Tarefa 3: Crie na directoria Aula1 um ficheiro com nome Grupo.txt, com a identificação dos membros do grupo (número e nome). Utilize para o efeito um dos editores de texto referidos atrás (Emacs ou vi).

LaTeX

Para produzir relatórios e outros documentos, vamos utilizar o sistema LaTeX. Este "processador de texto" distingue-se de outros (como o MS Word, do Windows) por promover a separação entre conteúdo e apresentação. Assim, o processo de criação de um documento passa pelas seguintes fases:

  • o utilizador utiliza um qualquer editor de texto para criar um ficheiro com a informação que irá dar origem ao documento (com a extensão .tex, por exemplo teste.tex)
  • executa-se o comando pdflatex que processará o documento resultando um ficheiro em formato PDF (Portable Document Format) (seguindo com o exemplo, executando pdflatex teste.tex produziria o ficheiro teste.pdf).

No Mac, está disponível o TexShop - uma aplicação que contém o editor de texto próprio e que facilita a utilização do LaTeX (produzir o documento resume-se a primir no botão typeset).

TexShop.jpg

Naturalmente que o ficheiro .tex que contém a informação para o documento deve adoptar um formato específico. De facto, para além do conteúdo que queremos ver no documento final, teremos de dar indicações ao LaTeX que lho permita produzir o resultado pretendido (qual o título, o autor, quais a várias secções, etc.). Comecemos então por ver um exemplo de um tal ficheiro:

\documentclass[12pt]{article}
\usepackage[portuges]{babel}
\usepackage[mac]{inputenc}

\begin{document}

\title{Um Documento de Exemplo}
\author{Eu}
\date{\today}

\maketitle

\section{Primeira Secção}

Isto é o texto que aparece na primeira secção...

\section{Segunda Secção}

Isto já é a segunda secção. Agora vou referir:

\begin{itemize}
\item Um ponto...
\item Outro ponto...
\end{itemize}

\end{document}

Uma breve explicação do conteúdo apresentado:

  • Quando uma palavra é precedida pelo carácter \, é um comando para o LaTeX. Os argumentos para estes comando (quando existem) são envolvidos em chavetas.
  • As linhas até ao \begin{document} são designadas por preâmbulo. Este inicia-se obrigatoriamente com o comando \documentclass que serve para indicar ao LaTeX qual o estilo de documento adoptado (neste caso article, mas existem também book, letter, etc.). Os restantes comandos utilizados no preâmbulo destinam-se a preparar o LaTeX para lidar com os caracteres acentuados presentes no Português.
  • O conteúdo do documento encontra-se entre as linhas \begin{document} e \end{document} (o que designamos por o ambiente document).
  • O comando \maketitle visualiza o título do documento (com a informação previamente registada pelos comandos \title, \author e \date).
  • O comando \section marca o início de uma secção (como argumento aceita o título da secção)
  • O ambiente itemize permite enumerar vários pontos (cada um deles é precedido pelo comando \item).

Após o processamento descrito, obteríamos o seguinte documento:

teste.jpg

Obviamente que a explicação aqui apresentada é muito incompleta, e o exemplo não ilustra minimamente as enorme potencialidades do LaTeX para produzir documentos de elevada qualidade gráfica. Recomenda-se vivamente a leitura do pequeno livro Uma não tão pequena introdução ao LaTeX2e.

Tarefa 4: Crie o ficheiro teste.tex com o conteúdo acima apresentado, compile-o (comando pdflatex teste.tex) e visualize-o (comando open teste.pdf, ou com um duplo click no Finder).

Mini-projecto individual

  • Instale no seu computador pessoal uma distribuição apropriada do LaTeX (veja, na secção "links úteis" da página da disciplina, diferentes alternativas de distribuições para os vários sistemas operativos).
  • Acompanhe a leitura de "Uma não tão pequena introdução ao LaTeX2e" com experimentações na sua instalação do LaTeX (no sub-título desse livro, lê-se que bastam 137 minutos para a sua leitura. O que podemos afirmar é que vale definitivamente a pena, mesmo que demore um pouco mais...).
  • Produza um documento contendo o seu curriculum vitae (identificação pessoal, escolas onde obteve os vários graus de ensino, hobbies, etc.)
  • Envie por email o documento produzido para o (seu) docente da disciplina.
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco

Material Disponibilizado

Bibliografia de Apoio

Guiões

Links Úteis

WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web The Education/LI10708 web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 Copyright 2020 by contributing authors 2020-10-30T14:39:19Z WebStatistics http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebStatistics 2020-10-30T14:39:19Z Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ... (last changed by TWikiGuest) TWikiGuest AvaliaLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/AvaliaLI1 2008-02-13T13:21:06Z Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ... (last changed by OlgaPacheco) OlgaPacheco Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/Avisos 2008-02-11T10:33:58Z 1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ... (last changed by OlgaPacheco) OlgaPacheco MatDispLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/MatDispLI1 2007-11-14T10:39:48Z Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ... (last changed by OlgaPacheco) OlgaPacheco WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebHome 2007-10-09T15:10:42Z em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ... (last changed by ManuelBernardoBarbosa) ManuelBernardoBarbosa WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSideBar 2007-10-08T12:48:28Z Tópicos Apresentação Avaliação Material Disponibilizado Avisos (last changed by OlgaPacheco) OlgaPacheco LI1Aula1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/LI1Aula1 2007-10-04T11:05:34Z Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ... (last changed by OlgaPacheco) OlgaPacheco WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicActions 2007-10-03T09:53:04Z (last changed by AlcinoCunha) AlcinoCunha WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebPreferences 2007-10-03T09:51:12Z Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ... (last changed by AlcinoCunha) AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebCss 2007-05-03T08:33:47Z .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopBar 2007-02-13T14:43:04Z (last changed by AlcinoCunha) AlcinoCunha WebLeftBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebLeftBar 2007-02-13T10:35:33Z Apresentação Sumários Projectos Material (last changed by AlcinoCunha) AlcinoCunha WebTopicList http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicList 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebSearchAdvanced http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearchAdvanced 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebTopicCreator http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicCreator 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebIndex http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebIndex 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor

50 Recent Changes in TWiki Web retrieved at 17:06 (GMT)

WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest
Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ...
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco
Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ...
Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ...
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco
Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ...
WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa
em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ...
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco
Tópicos Apresentação Avaliação Material Disponibilizado Avisos
LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco
Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ...
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha
Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ...
WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/LI10708 web"}% /Education/LI10708
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
Found 21 topics.

See also: rss-small RSS feed, recent changes with 50, 100, 200, 500, 1000 topics, all changes

WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; }

.natBreadCrumbs { width:0px; height:0px; overflow:hidden; }

.avisos { color: #444; font-size:12px; }

.natWebTitle { font-size:25px; }

.natMainFooterContents, .natMainHeaderContents { padding:0px; margin:0px 0px; }

WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa

Licenciatura em Engenharia Informática

1º Ano - 1º Semestre
Ano lectivo 2007/2008


Apresentação

Na actual estrutura da Licenciatura em Engenharia Informática, esta é a primeira de uma série de unidades curriculares designadas por Laboratórios de Informática. Como o seu próprio nome sugere, estas unidades curriculares agregam as componentes laboratoriais (de informática) das várias temáticas leccionadas no semestre.

Nesta primeira instância, concentrar-nos-emos nos seguintes tópicos:

  • Prática de programação na linguagem Haskell.
  • Utilização do LaTeX na elaboração de relatórios e outros documentos.

Horário Lectivo

Turnos Horário Sala Docente
P1 3ªfeira 14:00-16:00 DI 0.11 jbb
P2 3ªfeira 16:00-18:00 DI 0.11 mbb
P3 4ªfeira 11:00-13:00 DI 0.11 jgr
P4 5ªfeira 11:00-13:00 DI 0.11 jgr
P5 5ªfeira 14:00-16:00 DI 0.11 omp
P6 6ªfeira 14:00-16:00 DI 0.11 omp

Equipa Docente/Horário de Atendimento

Sigla Docente Horário
jgr Jorge Gustavo Rocha  
jbb José Bernardo Barros  
mbb Manuel Bernardo Barbosa 2a Feira 14:00-16:00
omp Olga Martins Pacheco 6.ªfeira 11:00-13:00

WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
Education/LI10708 Web Changed Changed by
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco
Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ...
Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ...
LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco
Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ...
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco
Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ...
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa
em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ...
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha
Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ...
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/LI10708 web"}% /Education/LI10708
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco
Tópicos Apresentação Avaliação Material Disponibilizado Avisos
WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest
Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
Found 21 topics.

See also the faster WebTopicList

WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação
Sumários
Projectos
Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
This is a subscription service to be automatically notified by e-mail when topics change in this Education/LI10708 web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your WikiName in alphabetical order to this list:

Web Changes Notification Service

Each TWiki web has an automatic e-mail notification service that sends you an e-mail with links to all of the topics modified since the last alert.

Users subscribe to email notifications using their WikiName or an alternative email address, and can specify the webs/topics they wish to track using one of these bullet list formats:

three spaces * [ webname . ] wikiName - SMTP mail address
three spaces * [ webName . ] wikiName
three spaces * SMTP mail address
three spaces * SMTP mail address : topics
three spaces * [ webname . ] wikiName : topics

In the above examples, topics is a space-separated list of topic names. The user may further customize the specific content they will receive using the following formats:

  • Specify topics without a Web. prefix
  • Topics must exist in this web.
  • Topics may be specified using * wildcards
  • Each topic may optionally be preceded by a '+' or '-' sign. The '+' sign means "subscribe to this topic" (the same as not putting anything). The '-' sign means "unsubscribe" or "don't send notifications regarding this topic". This allows users to elect to filter out certain topics (and their children, to an arbitrary depth). Topic filters ('-') take precedence over topic includes ('+').
  • Each topic may optionally be followed by an integer in parentheses, indicating the depth of the tree of children below that topic. Changes in all these children will be detected and reported along with changes to the topic itself. Note This uses the TWiki "Topic parent" feature.
  • Each topic may optionally be immediately followed by an exclamation mark ! or a question mark ? with no intervening spaces, indicating that the topic (and children if there is a tree depth specifier as well) should be mailed out as complete topics instead of change summaries. ! causes the topic to be mailed every time even if there have been no changes, ? will mail the topic only if there have been changes to it. This only makes sense for subscriptions.

For example: Subscribe Daisy to all changes to topics in this web.

   * daisy.cutter@flowers.com
Subscribe Daisy to all changes in all webs that start with Web.
   * daisy.cutter@flowers.com: Web*
Subscribe Daisy to changes to topics starting with Petal, and their immediate children, WeedKillers and children to a depth of 3, and all topics that match start with Pretty and end with Flowers e.g. PrettyPinkFlowers
   * TWiki.DaisyCutter: Petal* (1) TWiki.WeedKillers (3) Pretty*Flowers
Subscribe StarTrekFan to changes to all topics that start with Star except those that end in Wars, sInTheirEyes or shipTroopers.
   * TWiki.StarTrekFan: Star* - *Wars - *sInTheirEyes - *shipTroopers
Subscribe Daisy to the full content of NewsLetter whenever it has changed
   * daisy@flowers.com: TWiki.NewsLetter?
Subscribe buttercup to NewsLetter and its immediate children, even if it hasn't changed.
   * buttercup@flowers.com: TWiki.NewsLetter! (1)
Subscribe GardenGroup (which includes Petunia) to all changed topics under AllnewsLetters to a depth of 3. Then unsubscribe Petunia from the ManureNewsLetter, which she would normally get as a member of GardenGroup? :
   * TWiki.GardenGroup: TWiki.AllNewsLetters? (3)
   * petunia@flowers.com: - TWiki.ManureNewsLetter
A user may be listed many times in the WebNotify topic. Where a user has several lines in WebNotify that all match the same topic, they will only be notified about changes that topic once (though they will still receive individual mails for news topics).

If a TWiki group is listed for notification, the group will be recursively expanded to the e-mail addresses of all members.

TIP Tip: List names in alphabetical order to make it easier to find the names.

Note for System Administrators: Notification is supported by an add-on to the TWiki kernel called the MailerContrib. See the MailerContrib topic for details of how to set up this service.

Note: If you prefer a news feed, point your reader to WebRss (for RSS 1.0 feeds) or WebAtom (for ATOM 1.0 feeds). Learn more at WebRssBase and WebAtomBase, respectively.

Related topics: WebChangesAlert, TWikiUsers, TWikiRegistration

WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha

Education/LI10708 Web Preferences

The following settings are web preferences of the Education.LI10708 web. These preferences overwrite the site-level preferences in TWiki.TWikiPreferences and Main.TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: TWikiGuest in the Main web).

Web Preferences Settings

These settings override the defaults for this web only. See full list of defaults with explanation. Many of the settings below are commented out. Remove the # sign to enable a local customisation.

Natural Skin configuration

  • Set SKIN=nat

  • Set SKINSTYLE = Plain
  • Set STYLEBORDER = thin
  • Set STYLEBUTTONS = off
  • Set STYLESIDEBAR = left
  • Set STYLEVARIATION = none
  • Set STYLESEARCHBOX = off

  • Set PAGETITLE = Laboratório de Informática 1

  • Set NATWEBLOGO = Laboratório de Informática 1

  • Set WEBCOPYRIGHT = This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.

  • List of topics of the Education/LI10708 web:

 #D0D0D0 
  • Web-specific background color: (Pick a lighter one of the StandardColors).
    • Set WEBBGCOLOR = #D0D0D0
    • Note: This setting is automatically configured when you create a web

  • Image, URL and alternate tooltip text of web's logo.
    Note: Don't add your own local logos to the TWikiLogos topic; create your own logos topic instead.

  • Set WEBLOGOURL = WebHome
  • Set #WEBLOGOIMG =
  • Set WEBLOGOIMG =
  • Set WEBLOGOALT = Laboratório de Informática 1

  • List this web in the SiteMap. If you want the web listed, then set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Use links that include the name of the web, i.e. Education/LI10708.Topic links.
    Note: Unlike other variables, the setting of SITEMAPLIST is not inherited from parent webs. It has to be set in every web that is to be listed in the SiteMap
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = Laboratório de Informática 1
    • Set SITEMAPUSETO =
    • Note: Above settings are automatically configured when you create a web

  • Exclude web from a web="all" search: (Set to on for hidden webs).
    • Set NOSEARCHALL =
    • Note: This setting is automatically configured when you create a web

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • #Set NOAUTOLINK =
    • Note: You can still use the [[...][...]] syntax to link topics if you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics for this web:
    • WebTopicEditTemplate? : Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default topic template

  • Comma separated list of forms that can be attached to topics in this web. See TWikiForms for more information.
    • Set WEBFORMS =

  • Users or groups who are not / are allowed to view / change / rename topics in the Education/LI10708 web: (See TWikiAccessControl). Remove the # to enable any of these settings. Remember that an empty setting is a valid setting; setting DENYWEBVIEW to nothing means that anyone can view the web.

  • Web preferences that are not allowed to be overridden by user or topic preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Help on Preferences

  • A preference setting is defined by:
    3 or 6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • A preferences setting can be disabled with a # sign. Remove the # sign to enable a local customisation. Example:
  • Preferences are used as TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #D0D0D0
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce your own preferences variables and use them in your topics and templates.

Related Topics

Tools

WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
TWiki search results for \.* http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 The Education/LI10708 web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. en-us Copyright 2020 by contributing authors TWiki Administrator [webmaster@di.uminho.pt] The contributing authors of TWiki TWiki DIUM.Education/LI10708 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 /twiki/pub/Main/LocalLogos/um_eengP.jpg AvaliaLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/AvaliaLI1 Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ... (last changed by OlgaPacheco) 2008-02-13T13:21:06Z OlgaPacheco Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/Avisos 1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ... (last changed by OlgaPacheco) 2008-02-11T10:33:58Z OlgaPacheco MatDispLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/MatDispLI1 Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ... (last changed by OlgaPacheco) 2007-11-14T10:39:48Z OlgaPacheco WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebHome em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ... (last changed by ManuelBernardoBarbosa) 2007-10-09T15:10:42Z ManuelBernardoBarbosa WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSideBar Tópicos Apresentação Avaliação Material Disponibilizado Avisos (last changed by OlgaPacheco) 2007-10-08T12:48:28Z OlgaPacheco LI1Aula1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/LI1Aula1 Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ... (last changed by OlgaPacheco) 2007-10-04T11:05:34Z OlgaPacheco WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicActions (last changed by AlcinoCunha) 2007-10-03T09:53:04Z AlcinoCunha WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebPreferences Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ... (last changed by AlcinoCunha) 2007-10-03T09:51:12Z AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebCss .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) 2007-05-03T08:33:47Z AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopBar (last changed by AlcinoCunha) 2007-02-13T14:43:04Z AlcinoCunha WebLeftBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebLeftBar Apresentação Sumários Projectos Material (last changed by AlcinoCunha) 2007-02-13T10:35:33Z AlcinoCunha WebChanges http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebChanges (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebIndex http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebIndex (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebSearch http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearch (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebSearchAdvanced http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearchAdvanced (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebTopicCreator http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicCreator (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor

Web Search

Search: \.*

Found 0 topics.

  Advanced search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:       
(otherwise search Education/LI10708 Web only)

Other search options:
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor

Advanced Search

Search: \.*

Education/LI10708 Web Changed Changed by
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco

Avaliação

Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões laboratoriais.

A nota final será obtida como a média das 3 notas parciais.

Notas

Resultados

Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
  • 1ª prova de avaliação:
    semana de 5 a 10 de Novembro, durante as aulas.
  • 2ª prova de avaliação:
    7 a 13 de Dezembro, durante as aulas.
  • 3ª prova de avaliação:
    semana de 21 a 25 de Janeiro, durante as aulas.

  • EXAME DE RECURSO:
    • DATA: 15/02,
    • HORA: 9:30,
    • SALA: DI-0.11

LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco

Sessão Laboratorial 1


Nesta primeira sessão pretende-se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite-se que os alunos já dispõem de algum tipo de contacto com a utilização de computadores.

Login e Apresentação do Sistema MacOSX

Após a introdução do login e da password (o docente informará qual é...) o computador exibe um écran como o apresentado:

A barra no topo do écran - o menu - diz respeito à aplicação activa e contém funcionalidades dessa aplicação (tais como abrir um novo ficheiro, gravar, etc). Na parte inferior do écran existe a barra de ferramentas que disponibiliza o acesso rápido a algumas aplicações (inicia aplicação com um click; arrastando um ficheiro sobre o icon: inicia a aplicação abrindo imediatamente o ficheiro em causa).

Na barra de ferramentas encontramos (entre outras) as aplicações:

  • O Finder é a aplicação responsável por manter a sessão do utilizador. O seu aspecto mais visível é a interacção com o sistema de ficheiros. Por seu intermédio podemos aceder/manipular a informação contida no disco (ficheiros, directorias, etc.).
  • O Terminal é a aplicação que permite interagir, em modo de comando, com o sistema operativo MacOSX (o sistema Unix da Apple). A sua utilização requer portanto o conhecimento de alguns comandos desse sistema, tornando-se menos intuitiva do que a manipulação da interface gráfica do sistema. É no entanto muito mais flexível e permite-nos realizar operações não acessíveis pela interface gráfica.
  • O Safari é um browser WWW. Permite consultar páginas Web (e.g. a página da disciplina).
  • O Trash permite remover ficheiros/directorias, arrastando o que se pretende remover para cima do icon.

O Finder

Esta aplicação permite interagir de uma forma visual com o sistema de ficheiros. Algumas das operações básicas que se podem fazer são acessíveis na barra superior no item File.

finder_file.jpg

Podemos abrir uma nova janela de visualização ou criar uma nova directoria. Note-se que esta directoria será uma sub-directoria da que estamos neste momento a visualizar (se não estiver nenhuma janela do Finder aberta, será criada como uma sub-directoria da Desktop que contém os elementos visíveis no fundo do écran).

Note a existência de uma directoria com icon representando uma casa, que se refere à sua directoria base (Home). A própria Desktop é uma sub-directoria dessa.

Tarefa 1 - Crie na sua Home uma directoria chamada Aula1.

O Terminal

Através do Terminal também podemos interagir, de uma forma textual, com o sistema de ficheiros. Podemos por exemplo listar o conteúdo de uma directoria (ls), remover um ficheiro (rm), visualizar o conteúdo de um ficheiro (cat) ou mover/mudar o nome de um ficheiro (mv). Podemos além disso efectuar toda uma série de acções, incluindo o início de programas.

Tarefa 2 - Inicie o Terminal e usando o comando cd (change directory) vá para a directoria Aula1 criada atras. Use ainda o comando ls -la para visualizar o conteúdo dessa directoria. Note que o comando cd, quando usado sem argumentos, o posiciona na sua Home.

Vamos agora usar um editor de texto para criar um ficheiro. Nesta primeira fase vamos usar o editor vi, comum a todos os sistemas Unix.

Quando estamos a usar o vi podemos estar em dois modos de funcionamento:

  • modo comando é o modo inicial e podemos invocar comandos: (a, i, e o) servem para passar a modo inserção; :s guarda as alterações efectuadas; (:q, :x e ZZ) terminam a execução do vi.
  • modo inserção onde podemos inserir o texto. Para voltar ao modo de comando devemos usar a tecla "Esc".

Emacs

Um outro editor de texto muito utilizado em sistemas Unix é o Emacs. Tal como fizemos para o vi, vamos aqui descrever a utilização mais rudimentar deste editor de texto. Este programa pode ser encontrado na directoria Applications e tem como icon um gnu.

Aquamacs.png

Para abrir um determinado ficheiro usa-se o comando "CTRL-x CTRL-f". Alternativamente, podemos usar o item File da barra superior do ecran. Aqui, uma das opções é abrir um ficheiro (Open File) ou uma nova janela (New). No final da edição devemos guardar o ficheiro editado, usando Save ou Save As, dependendo se o ficheiro já existia ou não.

Tarefa 3: Crie na directoria Aula1 um ficheiro com nome Grupo.txt, com a identificação dos membros do grupo (número e nome). Utilize para o efeito um dos editores de texto referidos atrás (Emacs ou vi).

LaTeX

Para produzir relatórios e outros documentos, vamos utilizar o sistema LaTeX. Este "processador de texto" distingue-se de outros (como o MS Word, do Windows) por promover a separação entre conteúdo e apresentação. Assim, o processo de criação de um documento passa pelas seguintes fases:

  • o utilizador utiliza um qualquer editor de texto para criar um ficheiro com a informação que irá dar origem ao documento (com a extensão .tex, por exemplo teste.tex)
  • executa-se o comando pdflatex que processará o documento resultando um ficheiro em formato PDF (Portable Document Format) (seguindo com o exemplo, executando pdflatex teste.tex produziria o ficheiro teste.pdf).

No Mac, está disponível o TexShop - uma aplicação que contém o editor de texto próprio e que facilita a utilização do LaTeX (produzir o documento resume-se a primir no botão typeset).

TexShop.jpg

Naturalmente que o ficheiro .tex que contém a informação para o documento deve adoptar um formato específico. De facto, para além do conteúdo que queremos ver no documento final, teremos de dar indicações ao LaTeX que lho permita produzir o resultado pretendido (qual o título, o autor, quais a várias secções, etc.). Comecemos então por ver um exemplo de um tal ficheiro:

\documentclass[12pt]{article}
\usepackage[portuges]{babel}
\usepackage[mac]{inputenc}

\begin{document}

\title{Um Documento de Exemplo}
\author{Eu}
\date{\today}

\maketitle

\section{Primeira Secção}

Isto é o texto que aparece na primeira secção...

\section{Segunda Secção}

Isto já é a segunda secção. Agora vou referir:

\begin{itemize}
\item Um ponto...
\item Outro ponto...
\end{itemize}

\end{document}

Uma breve explicação do conteúdo apresentado:

  • Quando uma palavra é precedida pelo carácter \, é um comando para o LaTeX. Os argumentos para estes comando (quando existem) são envolvidos em chavetas.
  • As linhas até ao \begin{document} são designadas por preâmbulo. Este inicia-se obrigatoriamente com o comando \documentclass que serve para indicar ao LaTeX qual o estilo de documento adoptado (neste caso article, mas existem também book, letter, etc.). Os restantes comandos utilizados no preâmbulo destinam-se a preparar o LaTeX para lidar com os caracteres acentuados presentes no Português.
  • O conteúdo do documento encontra-se entre as linhas \begin{document} e \end{document} (o que designamos por o ambiente document).
  • O comando \maketitle visualiza o título do documento (com a informação previamente registada pelos comandos \title, \author e \date).
  • O comando \section marca o início de uma secção (como argumento aceita o título da secção)
  • O ambiente itemize permite enumerar vários pontos (cada um deles é precedido pelo comando \item).

Após o processamento descrito, obteríamos o seguinte documento:

teste.jpg

Obviamente que a explicação aqui apresentada é muito incompleta, e o exemplo não ilustra minimamente as enorme potencialidades do LaTeX para produzir documentos de elevada qualidade gráfica. Recomenda-se vivamente a leitura do pequeno livro Uma não tão pequena introdução ao LaTeX2e.

Tarefa 4: Crie o ficheiro teste.tex com o conteúdo acima apresentado, compile-o (comando pdflatex teste.tex) e visualize-o (comando open teste.pdf, ou com um duplo click no Finder).

Mini-projecto individual

  • Instale no seu computador pessoal uma distribuição apropriada do LaTeX (veja, na secção "links úteis" da página da disciplina, diferentes alternativas de distribuições para os vários sistemas operativos).
  • Acompanhe a leitura de "Uma não tão pequena introdução ao LaTeX2e" com experimentações na sua instalação do LaTeX (no sub-título desse livro, lê-se que bastam 137 minutos para a sua leitura. O que podemos afirmar é que vale definitivamente a pena, mesmo que demore um pouco mais...).
  • Produza um documento contendo o seu curriculum vitae (identificação pessoal, escolas onde obteve os vários graus de ensino, hobbies, etc.)
  • Envie por email o documento produzido para o (seu) docente da disciplina.
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco

Material Disponibilizado

Bibliografia de Apoio

Guiões

Links Úteis

WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web The Education/LI10708 web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 Copyright 2020 by contributing authors 2020-10-30T14:39:19Z WebStatistics http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebStatistics 2020-10-30T14:39:19Z Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ... (last changed by TWikiGuest) TWikiGuest AvaliaLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/AvaliaLI1 2008-02-13T13:21:06Z Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ... (last changed by OlgaPacheco) OlgaPacheco Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/Avisos 2008-02-11T10:33:58Z 1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ... (last changed by OlgaPacheco) OlgaPacheco MatDispLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/MatDispLI1 2007-11-14T10:39:48Z Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ... (last changed by OlgaPacheco) OlgaPacheco WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebHome 2007-10-09T15:10:42Z em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ... (last changed by ManuelBernardoBarbosa) ManuelBernardoBarbosa WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSideBar 2007-10-08T12:48:28Z Tópicos Apresentação Avaliação Material Disponibilizado Avisos (last changed by OlgaPacheco) OlgaPacheco LI1Aula1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/LI1Aula1 2007-10-04T11:05:34Z Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ... (last changed by OlgaPacheco) OlgaPacheco WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicActions 2007-10-03T09:53:04Z (last changed by AlcinoCunha) AlcinoCunha WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebPreferences 2007-10-03T09:51:12Z Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ... (last changed by AlcinoCunha) AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebCss 2007-05-03T08:33:47Z .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopBar 2007-02-13T14:43:04Z (last changed by AlcinoCunha) AlcinoCunha WebLeftBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebLeftBar 2007-02-13T10:35:33Z Apresentação Sumários Projectos Material (last changed by AlcinoCunha) AlcinoCunha WebTopicList http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicList 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebSearchAdvanced http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearchAdvanced 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebTopicCreator http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicCreator 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor WebIndex http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebIndex 2006-11-15T19:43:52Z (last changed by TWikiContributor) TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor

50 Recent Changes in TWiki Web retrieved at 17:06 (GMT)

WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest
Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ...
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco
Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ...
Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ...
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco
Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ...
WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa
em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ...
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco
Tópicos Apresentação Avaliação Material Disponibilizado Avisos
LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco
Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ...
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha
Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ...
WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/LI10708 web"}% /Education/LI10708
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
Found 21 topics.

See also: rss-small RSS feed, recent changes with 50, 100, 200, 500, 1000 topics, all changes

WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; }

.natBreadCrumbs { width:0px; height:0px; overflow:hidden; }

.avisos { color: #444; font-size:12px; }

.natWebTitle { font-size:25px; }

.natMainFooterContents, .natMainHeaderContents { padding:0px; margin:0px 0px; }

WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa

Licenciatura em Engenharia Informática

1º Ano - 1º Semestre
Ano lectivo 2007/2008


Apresentação

Na actual estrutura da Licenciatura em Engenharia Informática, esta é a primeira de uma série de unidades curriculares designadas por Laboratórios de Informática. Como o seu próprio nome sugere, estas unidades curriculares agregam as componentes laboratoriais (de informática) das várias temáticas leccionadas no semestre.

Nesta primeira instância, concentrar-nos-emos nos seguintes tópicos:

  • Prática de programação na linguagem Haskell.
  • Utilização do LaTeX na elaboração de relatórios e outros documentos.

Horário Lectivo

Turnos Horário Sala Docente
P1 3ªfeira 14:00-16:00 DI 0.11 jbb
P2 3ªfeira 16:00-18:00 DI 0.11 mbb
P3 4ªfeira 11:00-13:00 DI 0.11 jgr
P4 5ªfeira 11:00-13:00 DI 0.11 jgr
P5 5ªfeira 14:00-16:00 DI 0.11 omp
P6 6ªfeira 14:00-16:00 DI 0.11 omp

Equipa Docente/Horário de Atendimento

Sigla Docente Horário
jgr Jorge Gustavo Rocha  
jbb José Bernardo Barros  
mbb Manuel Bernardo Barbosa 2a Feira 14:00-16:00
omp Olga Martins Pacheco 6.ªfeira 11:00-13:00

WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
Education/LI10708 Web Changed Changed by
AvaliaLI1 13 Feb 2008 - 13:21 - r3 OlgaPacheco
Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ...
Avisos 11 Feb 2008 - 10:33 - r8 OlgaPacheco
1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ...
LI1Aula1 04 Oct 2007 - 11:05 - NEW OlgaPacheco
Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ...
MatDispLI1 14 Nov 2007 - 10:39 - r3 OlgaPacheco
Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ...
WebAtom 24 Jan 2006 - 06:07 - r2 TWikiContributor
TWiki's Education/LI10708 web
WebChanges 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebCss 03 May 2007 - 08:33 - r4 AlcinoCunha
.natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ...
WebHome 09 Oct 2007 - 15:10 - r21 ManuelBernardoBarbosa
em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ...
WebIndex 15 Nov 2006 - 19:43 - r4 TWikiContributor
WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação Sumários Projectos Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
TWikiGuest example #64;your.company .WebChangesAlert, ., .TWikiRegistration
WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha
Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ...
WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
" else "TWiki's Education/LI10708 web"}% /Education/LI10708
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco
Tópicos Apresentação Avaliação Material Disponibilizado Avisos
WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest
Statistics for Education/LI10708 Web Month: Topic views: Topic saves: File uploads: Most popular topic views: Top contributors for topic ...
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor
Found 21 topics.

See also the faster WebTopicList

WebLeftBar 13 Feb 2007 - 10:35 - r5 AlcinoCunha
Apresentação
Sumários
Projectos
Material
WebNotify 28 Mar 2005 - 09:40 - r5 TWikiContributor
This is a subscription service to be automatically notified by e-mail when topics change in this Education/LI10708 web. This is a convenient service, so you do not have to come back and check all the time if something has changed. To subscribe, please add a bullet with your WikiName in alphabetical order to this list:

Web Changes Notification Service

Each TWiki web has an automatic e-mail notification service that sends you an e-mail with links to all of the topics modified since the last alert.

Users subscribe to email notifications using their WikiName or an alternative email address, and can specify the webs/topics they wish to track using one of these bullet list formats:

three spaces * [ webname . ] wikiName - SMTP mail address
three spaces * [ webName . ] wikiName
three spaces * SMTP mail address
three spaces * SMTP mail address : topics
three spaces * [ webname . ] wikiName : topics

In the above examples, topics is a space-separated list of topic names. The user may further customize the specific content they will receive using the following formats:

  • Specify topics without a Web. prefix
  • Topics must exist in this web.
  • Topics may be specified using * wildcards
  • Each topic may optionally be preceded by a '+' or '-' sign. The '+' sign means "subscribe to this topic" (the same as not putting anything). The '-' sign means "unsubscribe" or "don't send notifications regarding this topic". This allows users to elect to filter out certain topics (and their children, to an arbitrary depth). Topic filters ('-') take precedence over topic includes ('+').
  • Each topic may optionally be followed by an integer in parentheses, indicating the depth of the tree of children below that topic. Changes in all these children will be detected and reported along with changes to the topic itself. Note This uses the TWiki "Topic parent" feature.
  • Each topic may optionally be immediately followed by an exclamation mark ! or a question mark ? with no intervening spaces, indicating that the topic (and children if there is a tree depth specifier as well) should be mailed out as complete topics instead of change summaries. ! causes the topic to be mailed every time even if there have been no changes, ? will mail the topic only if there have been changes to it. This only makes sense for subscriptions.

For example: Subscribe Daisy to all changes to topics in this web.

   * daisy.cutter@flowers.com
Subscribe Daisy to all changes in all webs that start with Web.
   * daisy.cutter@flowers.com: Web*
Subscribe Daisy to changes to topics starting with Petal, and their immediate children, WeedKillers and children to a depth of 3, and all topics that match start with Pretty and end with Flowers e.g. PrettyPinkFlowers
   * TWiki.DaisyCutter: Petal* (1) TWiki.WeedKillers (3) Pretty*Flowers
Subscribe StarTrekFan to changes to all topics that start with Star except those that end in Wars, sInTheirEyes or shipTroopers.
   * TWiki.StarTrekFan: Star* - *Wars - *sInTheirEyes - *shipTroopers
Subscribe Daisy to the full content of NewsLetter whenever it has changed
   * daisy@flowers.com: TWiki.NewsLetter?
Subscribe buttercup to NewsLetter and its immediate children, even if it hasn't changed.
   * buttercup@flowers.com: TWiki.NewsLetter! (1)
Subscribe GardenGroup (which includes Petunia) to all changed topics under AllnewsLetters to a depth of 3. Then unsubscribe Petunia from the ManureNewsLetter, which she would normally get as a member of GardenGroup? :
   * TWiki.GardenGroup: TWiki.AllNewsLetters? (3)
   * petunia@flowers.com: - TWiki.ManureNewsLetter
A user may be listed many times in the WebNotify topic. Where a user has several lines in WebNotify that all match the same topic, they will only be notified about changes that topic once (though they will still receive individual mails for news topics).

If a TWiki group is listed for notification, the group will be recursively expanded to the e-mail addresses of all members.

TIP Tip: List names in alphabetical order to make it easier to find the names.

Note for System Administrators: Notification is supported by an add-on to the TWiki kernel called the MailerContrib. See the MailerContrib topic for details of how to set up this service.

Note: If you prefer a news feed, point your reader to WebRss (for RSS 1.0 feeds) or WebAtom (for ATOM 1.0 feeds). Learn more at WebRssBase and WebAtomBase, respectively.

Related topics: WebChangesAlert, TWikiUsers, TWikiRegistration

WebPreferences 03 Oct 2007 - 09:51 - r17 AlcinoCunha

Education/LI10708 Web Preferences

The following settings are web preferences of the Education.LI10708 web. These preferences overwrite the site-level preferences in TWiki.TWikiPreferences and Main.TWikiPreferences, and can be overwritten by user preferences (your personal topic, eg: TWikiGuest in the Main web).

Web Preferences Settings

These settings override the defaults for this web only. See full list of defaults with explanation. Many of the settings below are commented out. Remove the # sign to enable a local customisation.

Natural Skin configuration

  • Set SKIN=nat

  • Set SKINSTYLE = Plain
  • Set STYLEBORDER = thin
  • Set STYLEBUTTONS = off
  • Set STYLESIDEBAR = left
  • Set STYLEVARIATION = none
  • Set STYLESEARCHBOX = off

  • Set PAGETITLE = Laboratório de Informática 1

  • Set NATWEBLOGO = Laboratório de Informática 1

  • Set WEBCOPYRIGHT = This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.

  • List of topics of the Education/LI10708 web:

 #D0D0D0 
  • Web-specific background color: (Pick a lighter one of the StandardColors).
    • Set WEBBGCOLOR = #D0D0D0
    • Note: This setting is automatically configured when you create a web

  • Image, URL and alternate tooltip text of web's logo.
    Note: Don't add your own local logos to the TWikiLogos topic; create your own logos topic instead.

  • Set WEBLOGOURL = WebHome
  • Set #WEBLOGOIMG =
  • Set WEBLOGOIMG =
  • Set WEBLOGOALT = Laboratório de Informática 1

  • List this web in the SiteMap. If you want the web listed, then set SITEMAPLIST to on, do not set NOSEARCHALL, and add the "what" and "use to..." description for the site map. Use links that include the name of the web, i.e. Education/LI10708.Topic links.
    Note: Unlike other variables, the setting of SITEMAPLIST is not inherited from parent webs. It has to be set in every web that is to be listed in the SiteMap
    • Set SITEMAPLIST = on
    • Set SITEMAPWHAT = Laboratório de Informática 1
    • Set SITEMAPUSETO =
    • Note: Above settings are automatically configured when you create a web

  • Exclude web from a web="all" search: (Set to on for hidden webs).
    • Set NOSEARCHALL =
    • Note: This setting is automatically configured when you create a web

  • Prevent automatic linking of WikiWords and acronyms (if set to on); link WikiWords (if empty); can be overwritten by web preferences:
    • #Set NOAUTOLINK =
    • Note: You can still use the [[...][...]] syntax to link topics if you disabled WikiWord linking. The <noautolink> ... </noautolink> syntax can be used to prevents links within a block of text.

  • Default template for new topics for this web:
    • WebTopicEditTemplate? : Default template for new topics in this web. (Site-level is used if topic does not exist)
    • TWiki.WebTopicEditTemplate: Site-level default topic template

  • Comma separated list of forms that can be attached to topics in this web. See TWikiForms for more information.
    • Set WEBFORMS =

  • Users or groups who are not / are allowed to view / change / rename topics in the Education/LI10708 web: (See TWikiAccessControl). Remove the # to enable any of these settings. Remember that an empty setting is a valid setting; setting DENYWEBVIEW to nothing means that anyone can view the web.

  • Web preferences that are not allowed to be overridden by user or topic preferences:
    • Set FINALPREFERENCES = NOSEARCHALL, ATTACHFILESIZELIMIT, WIKIWEBMASTER, WEBCOPYRIGHT, WEBTOPICLIST, DENYWEBVIEW, ALLOWWEBVIEW, DENYWEBCHANGE, ALLOWWEBCHANGE, DENYWEBRENAME, ALLOWWEBRENAME

Help on Preferences

  • A preference setting is defined by:
    3 or 6 spaces * Set NAME = value
    Example:
    • Set WEBBGCOLOR = #FFFFC0
  • A preferences setting can be disabled with a # sign. Remove the # sign to enable a local customisation. Example:
  • Preferences are used as TWikiVariables by enclosing the name in percent signs. Example:
    • When you write variable %WEBBGCOLOR% , it gets expanded to #D0D0D0
  • The sequential order of the preference settings is significant. Define preferences that use other preferences first, i.e. set WEBCOPYRIGHT before WIKIWEBMASTER since %WEBCOPYRIGHT% uses the %WIKIWEBMASTER% variable.
  • You can introduce your own preferences variables and use them in your topics and templates.

Related Topics

Tools

WebRss 28 Mar 2005 - 09:40 - r4 TWikiContributor
TWiki search results for \.* http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 The Education/LI10708 web of TWiki. TWiki is a Web-Based Collaboration Platform for the Enterprise. en-us Copyright 2020 by contributing authors TWiki Administrator [webmaster@di.uminho.pt] The contributing authors of TWiki TWiki DIUM.Education/LI10708 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708 /twiki/pub/Main/LocalLogos/um_eengP.jpg AvaliaLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/AvaliaLI1 Avaliação Serão realizadas três provas de avaliação ao longo do ano, em datas a divulgar oportunamente. Esta avaliação será efectuada no horário normal das sessões ... (last changed by OlgaPacheco) 2008-02-13T13:21:06Z OlgaPacheco Avisos http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/Avisos 1ª prova de avaliação: semana de 5 a 10 de Novembro, durante as aulas. 2ª prova de avaliação: 7 a 13 de Dezembro, durante as aulas. 3ª prova de avalia ... (last changed by OlgaPacheco) 2008-02-11T10:33:58Z OlgaPacheco MatDispLI1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/MatDispLI1 Material Disponibilizado Bibliografia de Apoio not so short introduction to LaTeX2e (tradução portuguesa) Guiões 1 2 3 4 Links Úteis ... (last changed by OlgaPacheco) 2007-11-14T10:39:48Z OlgaPacheco WebHome http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebHome em Engenharia Informática 1º Ano 1º Semestre Ano lectivo 2007/2008 Apresentação Na actual estrutura da Licenciatura em Engenharia Informática, esta é a ... (last changed by ManuelBernardoBarbosa) 2007-10-09T15:10:42Z ManuelBernardoBarbosa WebSideBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSideBar Tópicos Apresentação Avaliação Material Disponibilizado Avisos (last changed by OlgaPacheco) 2007-10-08T12:48:28Z OlgaPacheco LI1Aula1 http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/LI1Aula1 Sessão Laboratorial 1 Nesta primeira sessão pretende se familiarizar os alunos com o ambiente de programação que será utilizado nesta unidade curricular. Admite se ... (last changed by OlgaPacheco) 2007-10-04T11:05:34Z OlgaPacheco WebTopicActions http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicActions (last changed by AlcinoCunha) 2007-10-03T09:53:04Z AlcinoCunha WebPreferences http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebPreferences Education/LI10708 Web Preferences The following settings are web preferences of the Education/LI10708 web. These preferences overwrite the site level preferences ... (last changed by AlcinoCunha) 2007-10-03T09:51:12Z AlcinoCunha WebCss http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebCss .natRevision { width:0px; height:0px; overflow:hidden; } .natBreadCrumbs { width:0px; height:0px; overflow:hidden; } .avisos { color: #444; font size ... (last changed by AlcinoCunha) 2007-05-03T08:33:47Z AlcinoCunha WebTopBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopBar (last changed by AlcinoCunha) 2007-02-13T14:43:04Z AlcinoCunha WebLeftBar http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebLeftBar Apresentação Sumários Projectos Material (last changed by AlcinoCunha) 2007-02-13T10:35:33Z AlcinoCunha WebChanges http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebChanges (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebIndex http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebIndex (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebSearch http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearch (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebSearchAdvanced http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebSearchAdvanced (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor WebTopicCreator http://wiki.di.uminho.pt/twiki/bin/view/Education/LI10708/WebTopicCreator (last changed by TWikiContributor) 2006-11-15T19:43:52Z TWikiContributor
WebSearch 15 Nov 2006 - 19:43 - r3 TWikiContributor

Web Search

Search: \.*

Found 0 topics.

  Advanced search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:       
(otherwise search Education/LI10708 Web only)

Other search options:
WebSearchAdvanced 15 Nov 2006 - 19:43 - r3 TWikiContributor

Warning
Can't INCLUDE TWiki.WebSearchAdvanced repeatedly, topic is already included.
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco

Tópicos

Avisos

  • 1ª prova de avaliação:
    semana de 5 a 10 de Novembro, durante as aulas.
  • 2ª prova de avaliação:
    7 a 13 de Dezembro, durante as aulas.
  • 3ª prova de avaliação:
    semana de 21 a 25 de Janeiro, durante as aulas.

  • EXAME DE RECURSO:
    • DATA: 15/02,
    • HORA: 9:30,
    • SALA: DI-0.11

WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest

Statistics for Education/LI10708 Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Oct 2020 2613 0 0 2152 WebHome
129 WebPreferences
 82 WebStatistics
 24 WebChanges
 22 WebNotify
 20 MatDispLI1
 19 WebIndex
 19 Avisos
 19 AvaliaLI1
 18 WebTopicList
 16 WebSearchAdvanced
 
Sep 2020 1592 0 0 1290 WebHome
 62 WebPreferences
 47 WebStatistics
 18 WebIndex
 18 Avisos
 16 MatDispLI1
 15 WebNotify
 14 WebTopicList
 13 WebChanges
 13 LI1Aula1
 12 WebSearchAdvanced
 
Aug 2020 1307 0 0 884 WebHome
 65 WebPreferences
 64 WebStatistics
 29 WebNotify
 28 WebChanges
 24 MatDispLI1
 22 LI1Aula1
 21 WebIndex
 21 Avisos
 19 WebSideBar
 18 WebTopicCreator
 
Jul 2020 1260 0 0 844 WebHome
 67 WebPreferences
 42 WebStatistics
 41 Avisos
 32 MatDispLI1
 25 WebNotify
 24 WebChanges
 21 AvaliaLI1
 19 WebIndex
 19 WebTopBar
 19 LI1Aula1
 
Jun 2020 1265 0 0 890 WebHome
 45 WebPreferences
 44 Avisos
 30 WebStatistics
 28 MatDispLI1
 28 AvaliaLI1
 23 WebNotify
 20 WebSearchAdvanced
 20 WebCss
 18 WebTopicActions
 17 WebTopicCreator
 
May 2020 849 0 0 648 WebHome
 36 WebPreferences
 22 Avisos
 16 WebStatistics
 14 WebNotify
 12 AvaliaLI1
 11 WebCss
 10 WebIndex
  9 WebSearchAdvanced
  9 WebTopicActions
  9 WebSearch
 
Apr 2020 790 0 0 605 WebHome
 33 WebPreferences
 17 Avisos
 13 AvaliaLI1
 11 WebCss
 11 WebTopBar
 10 WebSideBar
 10 WebStatistics
 10 LI1Aula1
  9 WebTopicList
  9 WebNotify
 
Mar 2020 766 0 0 605 WebHome
 33 WebPreferences
 15 LI1Aula1
 14 Avisos
 10 WebCss
  9 WebLeftBar
  9 MatDispLI1
  8 WebChanges
  7 WebTopicList
  7 WebSearchAdvanced
  7 WebIndex
 
Feb 2020 867 0 0 690 WebHome
 29 WebPreferences
 14 MatDispLI1
 13 Avisos
 13 AvaliaLI1
 12 WebSearch
 12 WebStatistics
 11 WebIndex
  9 WebCss
  8 WebTopicCreator
  8 WebTopicActions
 
Jan 2020 670 0 0 557 WebHome
 14 WebPreferences
 10 WebTopicList
 10 Avisos
  8 WebChanges
  8 WebLeftBar
  7 WebSearchAdvanced
  7 LI1Aula1
  6 WebNotify
  6 WebSearch
  6 WebSideBar
 
Dec 2019 757 0 0 657 WebHome
 20 WebPreferences
  8 AvaliaLI1
  8 WebStatistics
  6 Avisos
  6 WebChanges
  5 WebSearchAdvanced
  5 WebTopicActions
  4 WebTopicList
  4 WebTopicCreator
  4 WebIndex
 
Nov 2019 671 0 0 534 WebHome
 15 WebPreferences
 10 WebSearch
  9 WebTopicList
  9 WebCss
  9 WebSideBar
  9 WebStatistics
  8 WebTopicActions
  8 WebNotify
  8 WebLeftBar
  7 WebIndex
 
Oct 2019 910 0 0 816 WebHome
 25 WebPreferences
  8 Avisos
  6 WebSearch
  6 WebChanges
  6 WebLeftBar
  6 MatDispLI1
  6 AvaliaLI1
  6 LI1Aula1
  4 WebTopicCreator
  4 WebNotify
 
Sep 2019 716 0 0 570 WebHome
 40 WebPreferences
 11 AvaliaLI1
 10 MatDispLI1
  9 WebChanges
  8 Avisos
  8 WebStatistics
  8 LI1Aula1
  6 WebSearchAdvanced
  6 WebTopicCreator
  6 WebCss
 
Aug 2019 1679 0 0 1385 WebHome
136 WebPreferences
 33 WebStatistics
 11 WebIndex
 11 Avisos
 11 AvaliaLI1
 10 WebTopicActions
 10 MatDispLI1
  9 WebTopicList
  9 WebTopBar
  9 LI1Aula1
 
Jul 2019 1013 0 0 853 WebHome
 82 WebStatistics
 29 WebPreferences
  7 WebSearch
  5 WebTopicCreator
  4 WebNotify
  4 WebChanges
  3 MatDispLI1
  3 WebCss
  3 AvaliaLI1
  3 Avisos
 
Jun 2019 802 0 0 658 WebHome
 41 WebPreferences
 15 WebStatistics
 10 MatDispLI1
  9 Avisos
  8 WebChanges
  7 LI1Aula1
  6 WebSearchAdvanced
  6 AvaliaLI1
  5 WebTopicList
  5 WebIndex
 
May 2019 1238 0 0 1167 WebHome
 31 WebPreferences
  5 WebChanges
  4 WebLeftBar
  4 MatDispLI1
  3 WebTopicList
  3 WebTopicActions
  3 WebIndex
  3 WebSearch
  3 LI1Aula1
  2 WebSearchAdvanced
 
Apr 2019 107 0 0 102 WebHome
  5 WebPreferences
 
Mar 2019 1259 0 0 1194 WebHome
 26 WebPreferences
  5 AvaliaLI1
  4 WebChanges
  4 MatDispLI1
  4 LI1Aula1
  3 WebSearchAdvanced
  2 WebTopicCreator
  2 WebIndex
  2 WebTopicActions
  2 WebNotify
 
Feb 2019 1476 0 0 1394 WebHome
 41 WebPreferences
 26 LI1Aula1
  3 AvaliaLI1
  3 WebSearch
  2 WebChanges
  1 WebTopicList
  1 MatDispLI1
  1 WebIndex
  1 WebTopicActions
  1 WebCss
 
Jan 2019 3980 0 0 3788 WebHome
136 WebPreferences
  6 Avisos
  6 LI1Aula1
  5 WebSearchAdvanced
  5 WebSearch
  5 WebChanges
  5 AvaliaLI1
  4 WebNotify
  4 WebTopBar
  3 WebLeftBar
 
Dec 2018 4246 0 0 4015 WebHome
171 WebPreferences
  7 Avisos
  7 WebChanges
  6 AvaliaLI1
  5 WebSearchAdvanced
  5 WebIndex
  4 WebNotify
  4 WebSideBar
  4 LI1Aula1
  3 WebTopicList
 
Nov 2018 5649 0 0 5303 WebHome
282 WebPreferences
 14 LI1Aula1
  6 WebStatistics
  5 WebSideBar
  5 WebLeftBar
  5 MatDispLI1
  3 WebIndex
  3 WebNotify
  3 WebSearch
  3 WebChanges
 
Oct 2018 5502 0 0 5151 WebHome
283 WebPreferences
 13 LI1Aula1
  6 WebChanges
  5 WebTopicList
  5 AvaliaLI1
  4 WebCss
  4 MatDispLI1
  4 WebTopBar
  3 WebTopicCreator
  3 WebTopicActions
 
Aug 2018 4482 0 0 4237 WebHome
209 WebPreferences
  6 LI1Aula1
  5 WebSearch
  4 Avisos
  3 WebTopicActions
  3 MatDispLI1
  3 AvaliaLI1
  2 WebIndex
  2 WebTopBar
  2 WebStatistics
 
Jul 2018 3379 0 0 3175 WebHome
153 WebPreferences
  5 Avisos
  5 WebStatistics
  5 WebTopBar
  4 WebTopicCreator
  4 WebIndex
  3 WebSearchAdvanced
  3 WebCss
  3 WebSideBar
  3 AvaliaLI1
 
Jun 2018 1891 0 0 1792 WebHome
 91 WebPreferences
  2 WebStatistics
  1 WebTopicList
  1 WebTopicCreator
  1 WebIndex
  1 LI1Aula1
  1 Avisos
  1 WebChanges
 
May 2018 3193 0 0 2977 WebHome
170 WebPreferences
  6 WebIndex
  4 WebTopicList
  4 WebChanges
  4 AvaliaLI1
  3 WebSideBar
  3 WebLeftBar
  3 WebStatistics
  3 LI1Aula1
  2 WebTopicActions
 
Apr 2018 6813 0 0 6293 WebHome
444 WebPreferences
  9 WebIndex
  8 MatDispLI1
  7 AvaliaLI1
  7 WebStatistics
  7 LI1Aula1
  6 Avisos
  5 WebTopicCreator
  4 WebTopicList
  3 WebSearchAdvanced
 
Mar 2018 10164 0 0 9122 WebHome
820 WebPreferences
 25 WebChanges
 21 AvaliaLI1
 21 WebStatistics
 18 Avisos
 18 MatDispLI1
 15 WebIndex
 14 WebTopicList
 14 WebSearch
 14 WebNotify
 
Feb 2018 3199 0 0 2798 WebHome
305 WebPreferences
 23 LI1Aula1
 15 WebChanges
  6 WebTopicCreator
  6 WebSearch
  5 WebSearchAdvanced
  5 WebIndex
  4 WebTopicList
  4 Avisos
  4 AvaliaLI1
 
Jan 2018 1270 0 0 872 WebHome
231 WebPreferences
 25 WebChanges
 14 LI1Aula1
 13 AvaliaLI1
 12 Avisos
 10 WebIndex
 10 WebSearch
 10 MatDispLI1
  9 WebNotify
  8 WebStatistics
 
Dec 2017 275 0 0 119 WebHome
 28 WebPreferences
 25 WebChanges
 10 WebIndex
  9 WebSearchAdvanced
  8 WebTopicCreator
  8 AvaliaLI1
  7 WebSearch
  7 WebSideBar
  7 WebTopBar
  7 LI1Aula1
 
Nov 2017 47 0 0  14 WebHome
  7 WebPreferences
  5 MatDispLI1
  3 WebSearchAdvanced
  3 WebSideBar
  3 WebChanges
  2 WebIndex
  2 Avisos
  2 WebLeftBar
  1 WebTopicCreator
  1 WebTopicActions
 
Oct 2017 89 0 0  20 WebHome
  7 WebPreferences
  6 WebTopicActions
  6 WebIndex
  5 WebTopicCreator
  5 Avisos
  5 MatDispLI1
  5 AvaliaLI1
  5 LI1Aula1
  4 WebSearchAdvanced
  4 WebLeftBar
 
Sep 2017 135 0 0  30 WebHome
 10 WebChanges
  9 LI1Aula1
  8 WebTopBar
  8 WebStatistics
  7 WebIndex
  7 WebCss
  7 Avisos
  7 WebSideBar
  6 WebPreferences
  5 WebTopicActions
 
Aug 2017 94 0 0  18 WebHome
  8 WebChanges
  6 WebSearch
  6 WebPreferences
  6 AvaliaLI1
  6 WebStatistics
  5 WebIndex
  5 WebNotify
  5 LI1Aula1
  4 WebTopicList
  4 WebCss
 
Jul 2017 95 0 0  18 WebHome
 13 WebPreferences
 11 WebStatistics
  6 WebTopicList
  6 MatDispLI1
  5 WebTopicCreator
  5 Avisos
  5 WebLeftBar
  4 WebSideBar
  4 WebChanges
  4 AvaliaLI1
 
Jun 2017 144 0 0  39 WebHome
 14 WebPreferences
  9 WebChanges
  8 LI1Aula1
  7 WebIndex
  7 WebCss
  7 WebStatistics
  6 WebSearch
  6 AvaliaLI1
  5 WebTopicList
  5 WebTopicActions
 
May 2017 134 0 0  26 WebHome
 21 WebPreferences
 10 AvaliaLI1
  9 MatDispLI1
  9 WebStatistics
  7 WebSearch
  7 Avisos
  6 WebTopBar
  5 WebTopicCreator
  5 WebIndex
  5 WebChanges
 
Apr 2017 85 0 0  15 WebHome
  8 WebPreferences
  7 WebLeftBar
  7 WebStatistics
  6 WebTopicList
  6 AvaliaLI1
  4 WebSearchAdvanced
  4 WebCss
  4 WebSideBar
  3 WebIndex
  3 Avisos
 
Mar 2017 118 0 0  47 WebHome
 15 WebPreferences
 10 WebStatistics
  7 AvaliaLI1
  6 WebCss
  6 Avisos
  5 MatDispLI1
  4 WebTopicCreator
  3 WebSideBar
  3 WebLeftBar
  3 WebChanges
 
Feb 2017 147 0 0  34 WebHome
 12 WebPreferences
 10 WebCss
  9 LI1Aula1
  9 WebStatistics
  7 WebTopicActions
  7 Avisos
  7 AvaliaLI1
  7 WebTopBar
  6 WebTopicCreator
  6 WebSideBar
 
Jan 2017 53 0 0  16 WebHome
  6 WebStatistics
  5 WebSearch
  4 WebChanges
  3 Avisos
  3 WebSideBar
  2 WebTopicList
  2 WebTopicCreator
  2 WebIndex
  2 WebCss
  2 LI1Aula1
 
Dec 2016 89 0 0  18 WebHome
 12 WebStatistics
 11 WebPreferences
  7 WebIndex
  6 AvaliaLI1
  5 Avisos
  5 WebChanges
  4 WebLeftBar
  3 WebCss
  3 WebSideBar
  3 LI1Aula1
 
Nov 2016 104 0 0  33 WebHome
 13 WebPreferences
  9 WebSideBar
  7 WebStatistics
  6 MatDispLI1
  5 WebIndex
  5 Avisos
  4 WebChanges
  4 AvaliaLI1
  4 WebTopBar
  3 WebCss
 
Oct 2016 79 0 0  14 WebPreferences
 13 WebHome
  5 Avisos
  4 WebTopicActions
  4 WebCss
  4 WebNotify
  4 WebSideBar
  4 WebChanges
  4 WebStatistics
  3 WebTopicList
  3 WebTopicCreator
 
Sep 2016 33 0 0   6 WebHome
  5 WebChanges
  3 AvaliaLI1
  3 WebStatistics
  3 Avisos
  3 WebSideBar
  2 WebTopicList
  2 WebPreferences
  1 WebSearchAdvanced
  1 WebTopicCreator
  1 WebIndex
 
Aug 2016 89 0 0  14 WebHome
  9 WebStatistics
  7 WebPreferences
  6 Avisos
  6 WebLeftBar
  5 WebTopicCreator
  5 WebCss
  5 MatDispLI1
  5 WebTopBar
  4 WebSideBar
  4 LI1Aula1
 
Jul 2016 65 0 0  15 WebHome
  7 WebStatistics
  6 WebPreferences
  5 WebIndex
  5 WebChanges
  4 WebTopicList
  4 WebSideBar
  3 WebTopicCreator
  3 WebCss
  3 WebLeftBar
  2 WebTopicActions
 
Jun 2016 71 0 0  22 WebHome
 11 WebStatistics
  7 WebPreferences
  5 WebSearch
  4 WebIndex
  3 WebNotify
  3 Avisos
  3 WebChanges
  3 AvaliaLI1
  2 WebCss
  2 WebSideBar
 
May 2016 71 0 0  12 WebStatistics
  7 WebHome
  7 WebSearch
  6 WebPreferences
  5 Avisos
  5 LI1Aula1
  4 AvaliaLI1
  3 WebCss
  3 WebNotify
  3 WebChanges
  3 WebTopBar
 
Apr 2016 63 0 0  14 WebHome
  8 WebSideBar
  5 LI1Aula1
  4 WebIndex
  3 WebTopicList
  3 WebTopicCreator
  3 WebTopicActions
  3 WebCss
  3 AvaliaLI1
  3 WebStatistics
  3 WebLeftBar
 
Mar 2016 39 0 0  11 WebPreferences
  8 WebHome
  3 WebStatistics
  2 MatDispLI1
  2 WebCss
  2 LI1Aula1
  2 Avisos
  2 WebChanges
  2 WebLeftBar
  1 WebSearchAdvanced
  1 WebTopicCreator
 
Feb 2016 84 0 0  14 WebHome
 12 WebStatistics
  9 WebPreferences
  5 WebSearch
  5 WebNotify
  5 WebSideBar
  5 WebChanges
  5 WebTopBar
  4 WebLeftBar
  3 Avisos
  3 MatDispLI1
 
Jan 2016 88 0 0  15 WebStatistics
 10 WebHome
  9 WebPreferences
  7 WebIndex
  6 LI1Aula1
  5 WebTopicCreator
  5 WebChanges
  4 AvaliaLI1
  4 WebTopBar
  3 WebTopicList
  3 WebTopicActions
 
Dec 2015 90 0 0  16 WebHome
  9 WebStatistics
  8 WebChanges
  7 WebIndex
  5 WebNotify
  5 WebPreferences
  5 WebTopBar
  4 WebTopicActions
  4 WebCss
  4 WebSearch
  4 Avisos
 
Nov 2015 95 0 0  17 WebStatistics
 13 WebHome
 10 WebSideBar
  7 WebChanges
  6 WebTopBar
  5 WebTopicList
  4 WebTopicCreator
  4 WebIndex
  4 Avisos
  4 WebPreferences
  4 AvaliaLI1
 
Oct 2015 127 0 0  15 WebHome
 13 Avisos
 13 WebStatistics
 10 WebPreferences
 10 MatDispLI1
 10 AvaliaLI1
  8 WebSideBar
  8 WebChanges
  7 WebIndex
  6 WebTopBar
  5 WebTopicActions
 
Sep 2015 115 0 0  15 WebPreferences
 14 WebHome
 12 WebStatistics
 11 WebChanges
  7 WebSearchAdvanced
  6 Avisos
  6 AvaliaLI1
  5 WebCss
  5 WebNotify
  4 WebTopicList
  4 WebTopicCreator
 
Aug 2015 345 0 0 108 WebHome
 61 WebStatistics
 55 WebPreferences
 21 WebChanges
  9 WebIndex
  7 WebSearchAdvanced
  7 WebTopicList
  7 WebSearch
  6 WebTopicCreator
  6 WebTopicActions
  6 WebLeftBar
 
Jul 2015 276 0 0  87 WebHome
 33 WebPreferences
 15 WebNotify
 15 Avisos
 15 WebStatistics
 12 LI1Aula1
 11 WebTopicList
 11 WebIndex
 10 WebSearch
  9 MatDispLI1
  9 AvaliaLI1
 
Jun 2015 142 0 0  28 WebHome
 24 WebPreferences
 18 WebChanges
 17 WebStatistics
  7 WebNotify
  6 WebSearch
  6 LI1Aula1
  5 WebTopicList
  5 WebCss
  5 AvaliaLI1
  4 WebTopicActions
 
May 2015 200 0 0  62 WebHome
 17 WebPreferences
 14 WebStatistics
 10 WebSearch
 10 Avisos
 10 AvaliaLI1
  9 WebChanges
  9 LI1Aula1
  8 WebNotify
  8 MatDispLI1
  7 WebIndex
 
Apr 2015 114 0 0  42 WebHome
 12 WebPreferences
  8 WebNotify
  6 Avisos
  6 MatDispLI1
  5 WebSearch
  5 LI1Aula1
  5 WebStatistics
  3 WebTopicCreator
  3 WebTopicActions
  3 WebSideBar
 
Mar 2015 139 0 0  35 WebHome
 14 WebStatistics
 10 WebPreferences
  9 WebSideBar
  8 WebLeftBar
  8 WebTopBar
  6 WebIndex
  6 MatDispLI1
  6 LI1Aula1
  5 AvaliaLI1
  4 WebSearchAdvanced
 
Feb 2015 216 0 0  48 WebHome
 24 WebPreferences
 16 WebStatistics
 13 Avisos
 13 WebChanges
 10 WebTopicList
 10 WebSearch
 10 WebSideBar
 10 AvaliaLI1
  9 MatDispLI1
  9 WebTopBar
 
Jan 2015 181 0 0  46 WebHome
 26 WebStatistics
 10 WebTopicList
  9 WebTopicCreator
  9 WebIndex
  9 WebPreferences
  8 WebSearch
  7 Avisos
  7 MatDispLI1
  6 WebNotify
  6 AvaliaLI1
 
Dec 2014 464 0 0 142 WebHome
 53 WebStatistics
 26 WebChanges
 22 WebPreferences
 18 Avisos
 17 WebSideBar
 17 LI1Aula1
 16 MatDispLI1
 16 AvaliaLI1
 14 WebTopicList
 14 WebIndex
 
Nov 2014 510 0 0 247 WebHome
 54 WebPreferences
 26 WebStatistics
 23 Avisos
 20 MatDispLI1
 19 WebChanges
 19 AvaliaLI1
 14 WebSearch
 11 WebTopicList
  9 WebIndex
  8 WebTopicCreator
 
Oct 2014 190 0 0  49 WebHome
 26 WebPreferences
 17 WebChanges
 13 WebSearch
 12 WebIndex
 11 LI1Aula1
 10 WebStatistics
  8 AvaliaLI1
  7 WebNotify
  7 MatDispLI1
  5 WebTopBar
 
Sep 2014 349 0 0  56 WebPreferences
 53 WebStatistics
 45 WebHome
 31 WebChanges
 18 WebSearch
 13 WebIndex
 13 WebCss
 13 AvaliaLI1
 11 Avisos
 11 WebLeftBar
 11 MatDispLI1
 
Aug 2014 895 0 0 257 WebHome
177 WebPreferences
123 WebStatistics
 36 WebChanges
 26 MatDispLI1
 25 AvaliaLI1
 24 WebIndex
 23 WebSearch
 23 Avisos
 20 WebNotify
 19 WebSearchAdvanced
 
Jul 2014 186 0 0  51 WebHome
 20 WebPreferences
 14 WebStatistics
 10 Avisos
 10 AvaliaLI1
  8 WebChanges
  7 WebTopicActions
  7 WebSearch
  7 MatDispLI1
  6 WebSearchAdvanced
  6 WebTopicCreator
 
Jun 2014 72 0 0  16 WebStatistics
 12 WebHome
  9 AvaliaLI1
  6 WebPreferences
  4 WebTopicCreator
  4 MatDispLI1
  4 WebTopBar
  3 WebLeftBar
  2 WebTopicList
  2 WebTopicActions
  2 LI1Aula1
 
May 2014 37 0 0  11 WebHome
  5 WebPreferences
  4 WebSearch
  3 MatDispLI1
  3 WebStatistics
  2 AvaliaLI1
  2 WebTopBar
  1 WebIndex
  1 WebNotify
  1 LI1Aula1
  1 WebChanges
 
Apr 2014 18 0 0   5 WebStatistics
  5 WebHome
  3 WebPreferences
  2 WebTopicActions
  1 AvaliaLI1
  1 LI1Aula1
  1 WebCss
 
Mar 2014 492 0 0 230 WebHome
133 WebPreferences
 27 WebStatistics
 11 WebSideBar
 10 WebSearch
  9 MatDispLI1
  7 WebSearchAdvanced
  7 Avisos
  7 WebChanges
  7 WebTopBar
  7 LI1Aula1
 
Feb 2014 272 0 0  59 WebHome
 39 WebStatistics
 23 LI1Aula1
 15 WebPreferences
 14 Avisos
 13 WebIndex
 13 WebSearch
 13 WebChanges
 12 MatDispLI1
 10 WebTopicList
  9 WebSearchAdvanced
 
Jan 2014 268 0 0  45 WebHome
 41 WebStatistics
 21 WebPreferences
 20 LI1Aula1
 14 WebSearch
 13 WebChanges
 12 WebTopicList
 10 WebIndex
 10 WebTopicActions
 10 Avisos
  9 MatDispLI1
 
Dec 2013 247 0 0  35 WebHome
 30 WebStatistics
 25 WebPreferences
 15 AvaliaLI1
 14 WebSearch
 14 Avisos
 11 WebCss
 11 LI1Aula1
 10 WebTopicActions
  9 WebSearchAdvanced
  9 WebIndex
 
Nov 2013 173 0 0  52 WebHome
 13 WebIndex
 12 WebChanges
 11 WebStatistics
  9 Avisos
  9 LI1Aula1
  8 WebPreferences
  7 WebTopicList
  7 WebNotify
  6 WebSearch
  6 WebTopBar
 
Oct 2013 163 0 0  75 WebHome
 13 AvaliaLI1
  9 Avisos
  9 WebChanges
  7 MatDispLI1
  6 LI1Aula1
  5 WebIndex
  5 WebSideBar
  5 WebPreferences
  5 WebStatistics
  4 WebSearchAdvanced
 
Sep 2013 99 0 0  21 WebHome
 12 WebStatistics
  9 WebChanges
  7 MatDispLI1
  6 AvaliaLI1
  5 WebIndex
  5 WebSearch
  4 Avisos
  4 WebPreferences
  4 LI1Aula1
  3 WebTopicList
 
Aug 2013 91 0 0  17 WebStatistics
 10 AvaliaLI1
  9 Avisos
  6 WebHome
  6 WebCss
  6 WebSearch
  5 WebIndex
  5 LI1Aula1
  4 WebTopicList
  3 WebSearchAdvanced
  3 WebNotify
 
Jul 2013 268 0 0 104 WebStatistics
 20 WebHome
 17 WebIndex
 16 WebPreferences
 12 Avisos
 10 MatDispLI1
  9 WebSearchAdvanced
  9 WebCss
  9 WebSideBar
  9 WebChanges
  8 LI1Aula1
 
Jun 2013 164 0 0  24 WebStatistics
 19 WebHome
 15 WebPreferences
 11 WebSearch
  9 WebCss
  9 AvaliaLI1
  8 WebTopicList
  8 WebIndex
  8 LI1Aula1
  7 WebNotify
  7 Avisos
 
May 2013 127 0 0  28 WebHome
 20 WebStatistics
  8 MatDispLI1
  8 AvaliaLI1
  7 WebPreferences
  7 LI1Aula1
  6 Avisos
  6 WebChanges
  5 WebIndex
  5 WebSearch
  4 WebTopicList
 
Apr 2013 170 0 0  91 WebStatistics
 12 WebHome
  8 LI1Aula1
  6 WebIndex
  6 WebCss
  6 WebPreferences
  6 WebChanges
  5 WebSearchAdvanced
  4 WebTopicList
  4 WebTopicActions
  4 WebSideBar
 
Mar 2013 103 0 0  29 WebStatistics
 11 WebHome
 10 WebPreferences
  7 Avisos
  6 WebSearchAdvanced
  5 WebSearch
  5 MatDispLI1
  4 WebIndex
  4 WebNotify
  4 AvaliaLI1
  4 WebTopBar
 
Feb 2013 74 0 0  24 WebStatistics
 13 WebHome
  5 WebPreferences
  4 WebTopicCreator
  4 Avisos
  4 WebChanges
  3 WebTopicList
  3 WebSearch
  2 WebIndex
  2 WebCss
  2 WebNotify
 
Jan 2013 152 0 0 108 WebStatistics
 10 WebHome
  6 WebPreferences
  5 Avisos
  5 WebSideBar
  4 AvaliaLI1
  2 WebTopicList
  2 MatDispLI1
  2 WebIndex
  2 LI1Aula1
  2 WebNotify
 
Dec 2012 189 0 0 113 WebStatistics
  8 WebIndex
  6 WebSearchAdvanced
  6 WebHome
  6 WebPreferences
  6 AvaliaLI1
  6 LI1Aula1
  5 Avisos
  5 MatDispLI1
  4 WebTopicList
  4 WebTopicActions
 
Nov 2012 293 0 0 118 WebStatistics
 19 WebHome
 17 WebIndex
 15 WebSearchAdvanced
 14 AvaliaLI1
 12 WebPreferences
 11 WebChanges
 11 LI1Aula1
 10 MatDispLI1
  8 WebTopicCreator
  8 WebCss
 
Oct 2012 316 0 0 198 WebStatistics
 23 WebHome
 12 WebIndex
 11 WebPreferences
 10 Avisos
  8 WebSearchAdvanced
  7 WebTopBar
  6 WebChanges
  6 MatDispLI1
  6 AvaliaLI1
  5 WebTopicList
 
Sep 2012 211 0 0 137 WebStatistics
 19 WebHome
  7 WebPreferences
  6 AvaliaLI1
  5 WebSearchAdvanced
  5 Avisos
  4 WebTopicCreator
  4 WebIndex
  4 MatDispLI1
  3 WebLeftBar
  3 LI1Aula1
 
Aug 2012 63 0 0  15 WebStatistics
 11 WebHome
  5 WebSearch
  5 WebPreferences
  4 WebIndex
  3 WebNotify
  3 WebChanges
  3 WebTopBar
  2 WebSearchAdvanced
  2 WebTopicList
  2 Avisos
 
Jul 2012 304 0 0 214 WebStatistics
 19 WebHome
 11 WebChanges
  8 WebNotify
  8 WebSideBar
  6 WebPreferences
  6 AvaliaLI1
  5 WebTopicList
  5 WebTopicActions
  3 WebSearchAdvanced
  3 WebSearch
 
Jun 2012 236 0 0 176 WebStatistics
 18 WebHome
  6 WebSearchAdvanced
  6 Avisos
  6 AvaliaLI1
  4 WebIndex
  3 WebTopicCreator
  3 WebPreferences
  3 MatDispLI1
  2 WebTopicActions
  2 WebChanges
 
May 2012 148 0 0  50 WebStatistics
 24 WebHome
 12 WebIndex
  8 WebPreferences
  6 AvaliaLI1
  5 WebTopicActions
  5 WebSideBar
  5 WebLeftBar
  4 WebTopicList
  4 Avisos
  4 WebChanges
 
Apr 2012 187 0 0  61 WebHome
 55 WebStatistics
 11 WebPreferences
 10 WebChanges
  7 WebSideBar
  5 WebTopicList
  5 AvaliaLI1
  5 WebTopBar
  4 WebIndex
  4 WebNotify
  4 WebLeftBar
 
Mar 2012 296 0 0 228 WebStatistics
 15 WebHome
  7 WebIndex
  7 LI1Aula1
  7 WebPreferences
  5 WebChanges
  4 WebTopicList
  4 AvaliaLI1
  4 WebNotify
  3 WebTopBar
  3 WebSearch
 
Feb 2012 272 0 0 188 WebStatistics
 27 WebHome
  8 WebIndex
  6 WebPreferences
  4 WebSearchAdvanced
  4 Avisos
  4 WebChanges
  4 AvaliaLI1
  4 LI1Aula1
  3 MatDispLI1
  3 WebTopBar
 
Jan 2012 116 0 0  35 WebHome
 16 WebStatistics
 10 WebPreferences
  9 WebChanges
  9 LI1Aula1
  6 AvaliaLI1
  5 WebTopBar
  4 Avisos
  3 WebSearchAdvanced
  3 WebTopicCreator
  3 WebNotify
 
Dec 2011 358 0 0 128 WebHome
 77 WebStatistics
 24 WebPreferences
 18 Avisos
 13 MatDispLI1
 12 WebCss
 12 AvaliaLI1
 11 LI1Aula1
  9 WebTopicList
  9 WebSideBar
  8 WebChanges
 
Nov 2011 849 0 0 376 WebStatistics
173 WebHome
 82 WebPreferences
 30 WebChanges
 21 WebSearchAdvanced
 19 Avisos
 17 WebIndex
 14 WebSideBar
 13 LI1Aula1
 12 WebTopicActions
 12 WebLeftBar
 
Oct 2011 280 0 0  95 WebStatistics
 42 WebHome
 27 WebPreferences
 14 WebIndex
 14 WebChanges
 10 WebSearch
  9 WebSideBar
  8 Avisos
  8 MatDispLI1
  7 WebTopicList
  7 AvaliaLI1
 
Sep 2011 256 0 0  73 WebHome
 25 WebPreferences
 19 WebStatistics
 16 WebSideBar
 14 Avisos
 11 WebIndex
 11 MatDispLI1
 10 WebChanges
  9 WebSearch
  9 WebNotify
  8 WebTopicList
 
Aug 2011 514 0 0 215 WebHome
 35 WebPreferences
 28 WebSideBar
 23 WebLeftBar
 22 WebChanges
 21 WebStatistics
 21 LI1Aula1
 17 WebCss
 17 Avisos
 15 WebNotify
 13 WebIndex
 
Jul 2011 667 0 0 296 WebStatistics
117 WebHome
 25 Avisos
 25 WebPreferences
 23 AvaliaLI1
 20 WebLeftBar
 17 WebTopicList
 17 WebNotify
 17 WebChanges
 16 WebSideBar
 15 WebIndex
 
Jun 2011 270 0 0  70 WebHome
 26 WebStatistics
 17 WebPreferences
 15 WebIndex
 14 LI1Aula1
 13 WebSearch
 13 WebSideBar
 10 WebTopicList
 10 Avisos
  9 WebChanges
  9 AvaliaLI1
 
May 2011 380 0 0 159 WebHome
 27 WebPreferences
 18 WebStatistics
 17 WebIndex
 16 WebSearch
 15 Avisos
 15 LI1Aula1
 13 AvaliaLI1
 12 WebTopicList
 11 WebChanges
 11 MatDispLI1
 
Apr 2011 416 0 0  63 WebHome
 40 WebPreferences
 35 WebSideBar
 27 Avisos
 27 WebLeftBar
 19 WebCss
 19 WebStatistics
 18 WebTopicCreator
 18 LI1Aula1
 17 WebNotify
 16 WebIndex
 
Mar 2011 305 0 0  69 WebHome
 34 WebPreferences
 22 Avisos
 16 WebCss
 15 WebIndex
 15 WebSideBar
 15 WebStatistics
 14 WebNotify
 14 AvaliaLI1
 14 LI1Aula1
 12 WebTopicList
 
Feb 2011 123 0 0  12 WebIndex
 12 WebStatistics
 10 WebTopicList
  9 WebHome
  8 AvaliaLI1
  7 WebTopicActions
  7 WebCss
  7 WebSearch
  7 LI1Aula1
  6 WebTopicCreator
  6 WebPreferences
 
Jan 2011 264 0 0  54 WebHome
 17 AvaliaLI1
 16 WebTopicList
 15 WebTopicCreator
 15 WebChanges
 14 WebIndex
 14 WebSearch
 14 WebPreferences
 14 MatDispLI1
 14 WebStatistics
 13 Avisos
 
Dec 2010 308 0 0  56 WebHome
 36 WebStatistics
 24 AvaliaLI1
 23 WebPreferences
 21 Avisos
 19 WebChanges
 17 WebIndex
 17 MatDispLI1
 14 WebLeftBar
 12 WebSearch
 12 WebSideBar
 
Nov 2010 229 0 0  20 WebIndex
 19 WebSearchAdvanced
 18 WebHome
 16 WebPreferences
 14 WebTopicList
 14 WebTopicActions
 13 WebStatistics
 11 WebSearch
 11 Avisos
 11 WebSideBar
 11 LI1Aula1
 
Oct 2010 116 0 0  15 WebHome
 14 WebTopicCreator
 14 WebCss
 13 WebPreferences
  6 Avisos
  6 WebChanges
  6 AvaliaLI1
  5 WebIndex
  5 WebSearch
  5 WebNotify
  4 WebTopicList
 
Sep 2010 300 0 0  63 WebHome
 35 WebPreferences
 33 WebStatistics
 19 Avisos
 19 WebChanges
 14 WebTopicCreator
 13 WebTopicList
 13 WebIndex
 11 WebSearch
 11 AvaliaLI1
 10 WebSearchAdvanced
 
Aug 2010 707 0 0 329 WebStatistics
 85 WebHome
 39 WebPreferences
 34 WebSideBar
 20 WebCss
 20 WebChanges
 19 WebTopicList
 19 WebLeftBar
 18 LI1Aula1
 15 WebSearchAdvanced
 14 WebTopicCreator
 
Jul 2010 24 0 0   5 LI1Aula1
  2 WebHome
  2 WebNotify
  2 WebStatistics
  2 WebSideBar
  1 WebTopicList
  1 WebTopicCreator
  1 MatDispLI1
  1 WebIndex
  1 WebCss
  1 AvaliaLI1
 
Jun 2010 275 0 0  61 WebHome
 28 WebPreferences
 27 WebStatistics
 19 Avisos
 12 WebIndex
 12 MatDispLI1
 12 LI1Aula1
 11 WebSearchAdvanced
 11 WebCss
 10 WebTopBar
  9 WebTopicActions
 
May 2010 419 0 0 107 WebHome
 37 WebPreferences
 24 AvaliaLI1
 23 WebIndex
 22 WebStatistics
 21 Avisos
 21 WebChanges
 18 MatDispLI1
 17 WebTopicList
 17 WebTopicActions
 16 WebTopicCreator
 
Apr 2010 232 0 0  30 WebStatistics
 29 WebHome
 14 WebIndex
 14 AvaliaLI1
 12 Avisos
 12 WebLeftBar
 11 WebTopicActions
 11 MatDispLI1
 11 LI1Aula1
 10 WebSearchAdvanced
 10 WebPreferences
 
Mar 2010 333 0 0  45 WebStatistics
 28 WebPreferences
 25 WebSideBar
 23 WebHome
 22 WebLeftBar
 21 Avisos
 19 WebIndex
 17 WebCss
 16 MatDispLI1
 16 AvaliaLI1
 14 WebTopicCreator
 
Feb 2010 306 0 0  46 WebStatistics
 40 WebHome
 21 Avisos
 16 MatDispLI1
 15 WebTopicActions
 15 WebPreferences
 15 AvaliaLI1
 14 WebIndex
 14 WebSideBar
 14 WebChanges
 13 WebTopicList
 
Jan 2010 332 0 0  44 WebStatistics
 34 WebHome
 33 WebChanges
 24 AvaliaLI1
 23 MatDispLI1
 17 WebTopBar
 16 WebCss
 16 Avisos
 16 WebSideBar
 15 WebIndex
 14 LI1Aula1
 
Dec 2009 312 0 0  62 WebHome
 42 WebStatistics
 23 WebIndex
 22 AvaliaLI1
 19 WebLeftBar
 19 MatDispLI1
 17 WebTopicCreator
 14 WebPreferences
 12 WebSearch
 12 Avisos
 11 WebTopicList
 
Nov 2009 495 0 0 204 WebHome
 39 Avisos
 35 WebStatistics
 24 MatDispLI1
 20 WebPreferences
 18 WebIndex
 17 AvaliaLI1
 17 LI1Aula1
 15 WebTopicList
 14 WebTopicActions
 12 WebTopBar
 
Oct 2009 240 0 0 102 WebHome
 20 WebStatistics
 14 MatDispLI1
 13 WebIndex
 11 WebTopicList
 11 Avisos
 10 WebTopicActions
 10 WebChanges
 10 WebTopBar
  9 AvaliaLI1
  8 WebSearch
 
Sep 2009 52 0 0  16 WebHome
  3 Avisos
  3 MatDispLI1
  3 AvaliaLI1
  2 WebSearchAdvanced
  2 WebTopicList
  2 WebTopicCreator
  2 WebTopicActions
  2 WebIndex
  2 WebCss
  2 WebPreferences
 
Aug 2009 426 0 0  46 Avisos
 31 WebHome
 31 WebStatistics
 26 WebLeftBar
 26 AvaliaLI1
 25 WebTopicList
 24 WebSearchAdvanced
 24 WebTopBar
 21 WebSearch
 21 WebSideBar
 20 WebIndex
 
Jul 2009 290 0 0  45 WebStatistics
 44 WebPreferences
 28 WebNotify
 26 Avisos
 24 WebHome
 14 WebSearch
 14 AvaliaLI1
 13 WebLeftBar
 11 WebTopicCreator
 11 MatDispLI1
  8 WebCss
 
Jun 2009 284 0 0  43 WebStatistics
 35 WebHome
 21 Avisos
 19 AvaliaLI1
 18 WebTopicCreator
 18 WebChanges
 16 MatDispLI1
 13 WebIndex
 12 WebPreferences
 11 WebTopicList
 11 WebLeftBar
 
May 2009 209 0 0  27 WebHome
 20 AvaliaLI1
 18 WebStatistics
 15 Avisos
 14 WebTopicCreator
 14 MatDispLI1
 10 WebTopicList
 10 WebPreferences
 10 WebTopBar
  9 LI1Aula1
  8 WebIndex
 
Apr 2009 192 0 0  35 WebPreferences
 26 WebStatistics
 14 WebTopicCreator
 13 WebIndex
 12 WebSearchAdvanced
 11 WebHome
 11 MatDispLI1
 11 AvaliaLI1
 10 WebNotify
  8 Avisos
  5 WebTopicList
 
Mar 2009 419 0 0  79 WebHome
 41 WebPreferences
 36 WebStatistics
 26 WebIndex
 23 Avisos
 23 WebChanges
 22 WebLeftBar
 22 AvaliaLI1
 20 WebSideBar
 20 MatDispLI1
 19 WebCss
 
Feb 2009 340 0 0  44 Avisos
 42 WebHome
 27 MatDispLI1
 26 WebStatistics
 23 LI1Aula1
 22 AvaliaLI1
 21 WebTopicList
 17 WebCss
 16 WebPreferences
 15 WebIndex
 14 WebSideBar
 
Jan 2009 302 0 0  41 WebHome
 29 WebStatistics
 25 Avisos
 20 WebIndex
 20 WebLeftBar
 20 MatDispLI1
 17 AvaliaLI1
 16 LI1Aula1
 15 WebTopicList
 14 WebTopicCreator
 14 WebPreferences
 
Dec 2008 504 0 0  76 WebHome
 59 WebStatistics
 41 MatDispLI1
 41 AvaliaLI1
 34 Avisos
 29 WebTopicList
 28 LI1Aula1
 26 WebIndex
 22 WebCss
 22 WebSideBar
 20 WebTopicCreator
 
Nov 2008 372 0 0  61 WebHome
 36 MatDispLI1
 33 AvaliaLI1
 29 Avisos
 22 WebStatistics
 18 WebPreferences
 18 LI1Aula1
 17 WebIndex
 16 WebTopicList
 16 WebCss
 15 WebTopicCreator
 
Oct 2008 492 0 0  79 WebHome
 42 AvaliaLI1
 39 MatDispLI1
 38 Avisos
 31 WebStatistics
 28 WebPreferences
 24 LI1Aula1
 22 WebLeftBar
 21 WebSideBar
 20 WebIndex
 19 WebSearchAdvanced
 
Sep 2008 402 0 0  85 WebHome
 33 Avisos
 32 MatDispLI1
 26 WebSideBar
 26 AvaliaLI1
 25 WebLeftBar
 22 WebStatistics
 16 WebSearch
 15 WebTopicList
 15 LI1Aula1
 14 WebTopicCreator
 
Aug 2008 607 0 0 112 WebHome
 47 AvaliaLI1
 46 WebStatistics
 43 MatDispLI1
 42 Avisos
 30 WebTopicList
 29 WebSideBar
 27 WebTopicCreator
 27 WebTopicActions
 27 WebIndex
 27 WebCss
 
Jul 2008 1182 0 0 311 WebHome
 82 MatDispLI1
 77 WebPreferences
 77 AvaliaLI1
 69 Avisos
 54 WebSideBar
 52 WebStatistics
 46 WebLeftBar
 43 WebIndex
 42 WebCss
 41 WebTopicList
 
Jun 2008 1218 0 0 318 WebHome
130 WebPreferences
 91 WebStatistics
 77 Avisos
 60 MatDispLI1
 54 WebSideBar
 49 AvaliaLI1
 44 WebChanges
 42 WebIndex
 42 WebCss
 42 WebLeftBar
 
May 2008 632 0 0 131 WebStatistics
108 WebHome
 50 MatDispLI1
 45 Avisos
 41 AvaliaLI1
 24 WebPreferences
 21 WebTopicList
 20 WebTopicCreator
 20 WebIndex
 20 WebTopicActions
 20 WebChanges
 
Apr 2008 679 0 0 161 WebHome
 74 WebStatistics
 59 MatDispLI1
 59 AvaliaLI1
 50 Avisos
 37 WebPreferences
 24 WebTopicActions
 22 WebSideBar
 21 WebIndex
 20 LI1Aula1
 20 WebTopBar
 
Mar 2008 988 0 0 387 WebHome
159 AvaliaLI1
 83 MatDispLI1
 68 WebStatistics
 48 Avisos
 27 WebPreferences
 21 WebIndex
 20 WebNotify
 19 WebChanges
 19 WebTopBar
 18 WebLeftBar
 
Feb 2008 8412 12 0 3607 AvaliaLI1
3555 WebHome
805 MatDispLI1
108 WebStatistics
 85 Avisos
 33 WebChanges
 23 WebIndex
 22 WebCss
 19 WebSearch
 18 WebTopBar
 17 LI1Aula1
 12 OlgaPacheco
Jan 2008 1764 1 0 604 WebHome
370 MatDispLI1
345 AvaliaLI1
 99 WebStatistics
 54 Avisos
 34 WebChanges
 26 WebIndex
 25 LI1Aula1
 21 WebLeftBar
 21 WebTopBar
 20 WebCss
  1 OlgaPacheco
Dec 2007 2954 0 0 1099 WebHome
614 MatDispLI1
522 AvaliaLI1
116 WebPreferences
 81 WebStatistics
 71 Avisos
 57 WebChanges
 55 WebSideBar
 43 WebLeftBar
 42 WebIndex
 41 WebCss
 
Nov 2007 2290 3 0 839 WebHome
726 MatDispLI1
429 AvaliaLI1
 39 Avisos
 33 WebStatistics
 28 WebPreferences
 27 WebChanges
 23 LI1Aula1
 20 WebIndex
 19 WebSearch
 15 WebTopicActions
  3 OlgaPacheco
Oct 2007 3176 36 0 1293 WebHome
1141 MatDispLI1
308 AvaliaLI1
 54 Avisos
 53 WebPreferences
 34 WebChanges
 34 WebStatistics
 32 LI1Aula1
 28 WebSearch
 27 WebSideBar
 25 WebIndex
 26 OlgaPacheco
  8 AlcinoCunha
  1 ManuelBernardoBarbosa
  1 JoseBarros
Sep 2007 458 0 0  78 WebHome
 52 WebStatistics
 44 MetodosFormais?
 35 AnaliseTesteSoftware?
 33 CalculoSistemasInformacao?
 28 ProcessosArquitecturasSoftware?
 26 WebPreferences
 25 ProjectoIntegrado?
 25 Modulos?
 17 Avisos
 15 WebSideBar
 
Aug 2007 645 0 0 104 WebHome
 59 WebStatistics
 52 MetodosFormais?
 43 AnaliseTesteSoftware?
 40 ProcessosArquitecturasSoftware?
 36 WebPreferences
 33 CalculoSistemasInformacao?
 30 WebChanges
 27 ProjectoIntegrado?
 25 Modulos?
 23 WebSideBar
 
Jul 2007 646 0 0 126 WebHome
 51 MetodosFormais?
 48 CalculoSistemasInformacao?
 42 AnaliseTesteSoftware?
 41 ProcessosArquitecturasSoftware?
 40 WebPreferences
 39 ProjectoIntegrado?
 28 Avisos
 25 Modulos?
 23 WebTopBar
 20 WebSideBar
 
Jun 2007 581 0 0  79 WebHome
 67 MetodosFormais?
 51 AnaliseTesteSoftware?
 46 ProcessosArquitecturasSoftware?
 40 CalculoSistemasInformacao?
 34 Modulos?
 31 WebPreferences
 27 ProjectoIntegrado?
 26 WebSearch
 20 WebSideBar
 19 Avisos
 
May 2007 784 61 9 200 WebHome
104 MetodosFormais?
 75 AnaliseTesteSoftware?
 50 Modulos?
 49 ProcessosArquitecturasSoftware?
 45 CalculoSistemasInformacao?
 35 ProjectoIntegrado?
 22 WebSearch
 18 WebSideBar
 18 WebPreferences
 17 WebStatistics
 40 AlcinoCunha
 30 JoseNunoOliveira
Apr 2007 144 16 1  19 WebHome
 12 MetodosFormais?
 10 Modulos?
  9 CalculoSistemasInformacao?
  8 AnaliseTesteSoftware?
  8 WebPreferences
  8 WebChanges
  8 ProcessosArquitecturasSoftware?
  7 WebSideBar
  7 ProjectoIntegrado?
  6 Avisos
 17 AlcinoCunha
Mar 2007 1244 15 5 417 WebHome
352 MaterialApoio?
 89 Projectos?
 71 Programa?
 66 Sumarios?
 56 Funcionamento?
 19 WebSideBar
 18 WebPreferences
 17 Avisos
 13 WebTopicList
 13 WebChanges
 20 AlcinoCunha
Feb 2007 1223 135 8 397 WebHome
150 MaterialApoio?
115 Funcionamento?
115 Programa?
 88 Sumarios?
 85 WebPreferences
 57 Projectos?
 39 WebSideBar
 31 WebCSS?
 13 WebSearch
 13 ViewSkinAlcinoTemplate?
140 AlcinoCunha
  3 LuisSoaresBarbosa

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor

Create New Topic in Education/LI10708 Web

Topic name:


It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.

Topic parent:

Use template:

View templates


info Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor

See also the verbose WebIndex.

Found 21 topics.

  Simple search | Help
TIP: to search for all topics that contain "SOAP", "WSDL", a literal "web service", but not "shampoo", write: soap wsdl "web service" -shampoo
Search where:


(otherwise search Education/LI10708 Web only)
Sort results by:


Make search:
(semicolon ; for and) about regular expression search
Don't show:

Do show: about BookView
Limit results to: (all to show all topics)

Other search options:
WebSideBar 08 Oct 2007 - 12:48 - r8 OlgaPacheco

Tópicos

Avisos

  • 1ª prova de avaliação:
    semana de 5 a 10 de Novembro, durante as aulas.
  • 2ª prova de avaliação:
    7 a 13 de Dezembro, durante as aulas.
  • 3ª prova de avaliação:
    semana de 21 a 25 de Janeiro, durante as aulas.

  • EXAME DE RECURSO:
    • DATA: 15/02,
    • HORA: 9:30,
    • SALA: DI-0.11

WebStatistics 30 Oct 2020 - 14:39 - r2235 TWikiGuest

Statistics for Education/LI10708 Web

Month: Topic
views:
Topic
saves:
File
uploads:
Most popular
topic views:
Top contributors for
topic save and uploads:
Oct 2020 2613 0 0 2152 WebHome
129 WebPreferences
 82 WebStatistics
 24 WebChanges
 22 WebNotify
 20 MatDispLI1
 19 WebIndex
 19 Avisos
 19 AvaliaLI1
 18 WebTopicList
 16 WebSearchAdvanced
 
Sep 2020 1592 0 0 1290 WebHome
 62 WebPreferences
 47 WebStatistics
 18 WebIndex
 18 Avisos
 16 MatDispLI1
 15 WebNotify
 14 WebTopicList
 13 WebChanges
 13 LI1Aula1
 12 WebSearchAdvanced
 
Aug 2020 1307 0 0 884 WebHome
 65 WebPreferences
 64 WebStatistics
 29 WebNotify
 28 WebChanges
 24 MatDispLI1
 22 LI1Aula1
 21 WebIndex
 21 Avisos
 19 WebSideBar
 18 WebTopicCreator
 
Jul 2020 1260 0 0 844 WebHome
 67 WebPreferences
 42 WebStatistics
 41 Avisos
 32 MatDispLI1
 25 WebNotify
 24 WebChanges
 21 AvaliaLI1
 19 WebIndex
 19 WebTopBar
 19 LI1Aula1
 
Jun 2020 1265 0 0 890 WebHome
 45 WebPreferences
 44 Avisos
 30 WebStatistics
 28 MatDispLI1
 28 AvaliaLI1
 23 WebNotify
 20 WebSearchAdvanced
 20 WebCss
 18 WebTopicActions
 17 WebTopicCreator
 
May 2020 849 0 0 648 WebHome
 36 WebPreferences
 22 Avisos
 16 WebStatistics
 14 WebNotify
 12 AvaliaLI1
 11 WebCss
 10 WebIndex
  9 WebSearchAdvanced
  9 WebTopicActions
  9 WebSearch
 
Apr 2020 790 0 0 605 WebHome
 33 WebPreferences
 17 Avisos
 13 AvaliaLI1
 11 WebCss
 11 WebTopBar
 10 WebSideBar
 10 WebStatistics
 10 LI1Aula1
  9 WebTopicList
  9 WebNotify
 
Mar 2020 766 0 0 605 WebHome
 33 WebPreferences
 15 LI1Aula1
 14 Avisos
 10 WebCss
  9 WebLeftBar
  9 MatDispLI1
  8 WebChanges
  7 WebTopicList
  7 WebSearchAdvanced
  7 WebIndex
 
Feb 2020 867 0 0 690 WebHome
 29 WebPreferences
 14 MatDispLI1
 13 Avisos
 13 AvaliaLI1
 12 WebSearch
 12 WebStatistics
 11 WebIndex
  9 WebCss
  8 WebTopicCreator
  8 WebTopicActions
 
Jan 2020 670 0 0 557 WebHome
 14 WebPreferences
 10 WebTopicList
 10 Avisos
  8 WebChanges
  8 WebLeftBar
  7 WebSearchAdvanced
  7 LI1Aula1
  6 WebNotify
  6 WebSearch
  6 WebSideBar
 
Dec 2019 757 0 0 657 WebHome
 20 WebPreferences
  8 AvaliaLI1
  8 WebStatistics
  6 Avisos
  6 WebChanges
  5 WebSearchAdvanced
  5 WebTopicActions
  4 WebTopicList
  4 WebTopicCreator
  4 WebIndex
 
Nov 2019 671 0 0 534 WebHome
 15 WebPreferences
 10 WebSearch
  9 WebTopicList
  9 WebCss
  9 WebSideBar
  9 WebStatistics
  8 WebTopicActions
  8 WebNotify
  8 WebLeftBar
  7 WebIndex
 
Oct 2019 910 0 0 816 WebHome
 25 WebPreferences
  8 Avisos
  6 WebSearch
  6 WebChanges
  6 WebLeftBar
  6 MatDispLI1
  6 AvaliaLI1
  6 LI1Aula1
  4 WebTopicCreator
  4 WebNotify
 
Sep 2019 716 0 0 570 WebHome
 40 WebPreferences
 11 AvaliaLI1
 10 MatDispLI1
  9 WebChanges
  8 Avisos
  8 WebStatistics
  8 LI1Aula1
  6 WebSearchAdvanced
  6 WebTopicCreator
  6 WebCss
 
Aug 2019 1679 0 0 1385 WebHome
136 WebPreferences
 33 WebStatistics
 11 WebIndex
 11 Avisos
 11 AvaliaLI1
 10 WebTopicActions
 10 MatDispLI1
  9 WebTopicList
  9 WebTopBar
  9 LI1Aula1
 
Jul 2019 1013 0 0 853 WebHome
 82 WebStatistics
 29 WebPreferences
  7 WebSearch
  5 WebTopicCreator
  4 WebNotify
  4 WebChanges
  3 MatDispLI1
  3 WebCss
  3 AvaliaLI1
  3 Avisos
 
Jun 2019 802 0 0 658 WebHome
 41 WebPreferences
 15 WebStatistics
 10 MatDispLI1
  9 Avisos
  8 WebChanges
  7 LI1Aula1
  6 WebSearchAdvanced
  6 AvaliaLI1
  5 WebTopicList
  5 WebIndex
 
May 2019 1238 0 0 1167 WebHome
 31 WebPreferences
  5 WebChanges
  4 WebLeftBar
  4 MatDispLI1
  3 WebTopicList
  3 WebTopicActions
  3 WebIndex
  3 WebSearch
  3 LI1Aula1
  2 WebSearchAdvanced
 
Apr 2019 107 0 0 102 WebHome
  5 WebPreferences
 
Mar 2019 1259 0 0 1194 WebHome
 26 WebPreferences
  5 AvaliaLI1
  4 WebChanges
  4 MatDispLI1
  4 LI1Aula1
  3 WebSearchAdvanced
  2 WebTopicCreator
  2 WebIndex
  2 WebTopicActions
  2 WebNotify
 
Feb 2019 1476 0 0 1394 WebHome
 41 WebPreferences
 26 LI1Aula1
  3 AvaliaLI1
  3 WebSearch
  2 WebChanges
  1 WebTopicList
  1 MatDispLI1
  1 WebIndex
  1 WebTopicActions
  1 WebCss
 
Jan 2019 3980 0 0 3788 WebHome
136 WebPreferences
  6 Avisos
  6 LI1Aula1
  5 WebSearchAdvanced
  5 WebSearch
  5 WebChanges
  5 AvaliaLI1
  4 WebNotify
  4 WebTopBar
  3 WebLeftBar
 
Dec 2018 4246 0 0 4015 WebHome
171 WebPreferences
  7 Avisos
  7 WebChanges
  6 AvaliaLI1
  5 WebSearchAdvanced
  5 WebIndex
  4 WebNotify
  4 WebSideBar
  4 LI1Aula1
  3 WebTopicList
 
Nov 2018 5649 0 0 5303 WebHome
282 WebPreferences
 14 LI1Aula1
  6 WebStatistics
  5 WebSideBar
  5 WebLeftBar
  5 MatDispLI1
  3 WebIndex
  3 WebNotify
  3 WebSearch
  3 WebChanges
 
Oct 2018 5502 0 0 5151 WebHome
283 WebPreferences
 13 LI1Aula1
  6 WebChanges
  5 WebTopicList
  5 AvaliaLI1
  4 WebCss
  4 MatDispLI1
  4 WebTopBar
  3 WebTopicCreator
  3 WebTopicActions
 
Aug 2018 4482 0 0 4237 WebHome
209 WebPreferences
  6 LI1Aula1
  5 WebSearch
  4 Avisos
  3 WebTopicActions
  3 MatDispLI1
  3 AvaliaLI1
  2 WebIndex
  2 WebTopBar
  2 WebStatistics
 
Jul 2018 3379 0 0 3175 WebHome
153 WebPreferences
  5 Avisos
  5 WebStatistics
  5 WebTopBar
  4 WebTopicCreator
  4 WebIndex
  3 WebSearchAdvanced
  3 WebCss
  3 WebSideBar
  3 AvaliaLI1
 
Jun 2018 1891 0 0 1792 WebHome
 91 WebPreferences
  2 WebStatistics
  1 WebTopicList
  1 WebTopicCreator
  1 WebIndex
  1 LI1Aula1
  1 Avisos
  1 WebChanges
 
May 2018 3193 0 0 2977 WebHome
170 WebPreferences
  6 WebIndex
  4 WebTopicList
  4 WebChanges
  4 AvaliaLI1
  3 WebSideBar
  3 WebLeftBar
  3 WebStatistics
  3 LI1Aula1
  2 WebTopicActions
 
Apr 2018 6813 0 0 6293 WebHome
444 WebPreferences
  9 WebIndex
  8 MatDispLI1
  7 AvaliaLI1
  7 WebStatistics
  7 LI1Aula1
  6 Avisos
  5 WebTopicCreator
  4 WebTopicList
  3 WebSearchAdvanced
 
Mar 2018 10164 0 0 9122 WebHome
820 WebPreferences
 25 WebChanges
 21 AvaliaLI1
 21 WebStatistics
 18 Avisos
 18 MatDispLI1
 15 WebIndex
 14 WebTopicList
 14 WebSearch
 14 WebNotify
 
Feb 2018 3199 0 0 2798 WebHome
305 WebPreferences
 23 LI1Aula1
 15 WebChanges
  6 WebTopicCreator
  6 WebSearch
  5 WebSearchAdvanced
  5 WebIndex
  4 WebTopicList
  4 Avisos
  4 AvaliaLI1
 
Jan 2018 1270 0 0 872 WebHome
231 WebPreferences
 25 WebChanges
 14 LI1Aula1
 13 AvaliaLI1
 12 Avisos
 10 WebIndex
 10 WebSearch
 10 MatDispLI1
  9 WebNotify
  8 WebStatistics
 
Dec 2017 275 0 0 119 WebHome
 28 WebPreferences
 25 WebChanges
 10 WebIndex
  9 WebSearchAdvanced
  8 WebTopicCreator
  8 AvaliaLI1
  7 WebSearch
  7 WebSideBar
  7 WebTopBar
  7 LI1Aula1
 
Nov 2017 47 0 0  14 WebHome
  7 WebPreferences
  5 MatDispLI1
  3 WebSearchAdvanced
  3 WebSideBar
  3 WebChanges
  2 WebIndex
  2 Avisos
  2 WebLeftBar
  1 WebTopicCreator
  1 WebTopicActions
 
Oct 2017 89 0 0  20 WebHome
  7 WebPreferences
  6 WebTopicActions
  6 WebIndex
  5 WebTopicCreator
  5 Avisos
  5 MatDispLI1
  5 AvaliaLI1
  5 LI1Aula1
  4 WebSearchAdvanced
  4 WebLeftBar
 
Sep 2017 135 0 0  30 WebHome
 10 WebChanges
  9 LI1Aula1
  8 WebTopBar
  8 WebStatistics
  7 WebIndex
  7 WebCss
  7 Avisos
  7 WebSideBar
  6 WebPreferences
  5 WebTopicActions
 
Aug 2017 94 0 0  18 WebHome
  8 WebChanges
  6 WebSearch
  6 WebPreferences
  6 AvaliaLI1
  6 WebStatistics
  5 WebIndex
  5 WebNotify
  5 LI1Aula1
  4 WebTopicList
  4 WebCss
 
Jul 2017 95 0 0  18 WebHome
 13 WebPreferences
 11 WebStatistics
  6 WebTopicList
  6 MatDispLI1
  5 WebTopicCreator
  5 Avisos
  5 WebLeftBar
  4 WebSideBar
  4 WebChanges
  4 AvaliaLI1
 
Jun 2017 144 0 0  39 WebHome
 14 WebPreferences
  9 WebChanges
  8 LI1Aula1
  7 WebIndex
  7 WebCss
  7 WebStatistics
  6 WebSearch
  6 AvaliaLI1
  5 WebTopicList
  5 WebTopicActions
 
May 2017 134 0 0  26 WebHome
 21 WebPreferences
 10 AvaliaLI1
  9 MatDispLI1
  9 WebStatistics
  7 WebSearch
  7 Avisos
  6 WebTopBar
  5 WebTopicCreator
  5 WebIndex
  5 WebChanges
 
Apr 2017 85 0 0  15 WebHome
  8 WebPreferences
  7 WebLeftBar
  7 WebStatistics
  6 WebTopicList
  6 AvaliaLI1
  4 WebSearchAdvanced
  4 WebCss
  4 WebSideBar
  3 WebIndex
  3 Avisos
 
Mar 2017 118 0 0  47 WebHome
 15 WebPreferences
 10 WebStatistics
  7 AvaliaLI1
  6 WebCss
  6 Avisos
  5 MatDispLI1
  4 WebTopicCreator
  3 WebSideBar
  3 WebLeftBar
  3 WebChanges
 
Feb 2017 147 0 0  34 WebHome
 12 WebPreferences
 10 WebCss
  9 LI1Aula1
  9 WebStatistics
  7 WebTopicActions
  7 Avisos
  7 AvaliaLI1
  7 WebTopBar
  6 WebTopicCreator
  6 WebSideBar
 
Jan 2017 53 0 0  16 WebHome
  6 WebStatistics
  5 WebSearch
  4 WebChanges
  3 Avisos
  3 WebSideBar
  2 WebTopicList
  2 WebTopicCreator
  2 WebIndex
  2 WebCss
  2 LI1Aula1
 
Dec 2016 89 0 0  18 WebHome
 12 WebStatistics
 11 WebPreferences
  7 WebIndex
  6 AvaliaLI1
  5 Avisos
  5 WebChanges
  4 WebLeftBar
  3 WebCss
  3 WebSideBar
  3 LI1Aula1
 
Nov 2016 104 0 0  33 WebHome
 13 WebPreferences
  9 WebSideBar
  7 WebStatistics
  6 MatDispLI1
  5 WebIndex
  5 Avisos
  4 WebChanges
  4 AvaliaLI1
  4 WebTopBar
  3 WebCss
 
Oct 2016 79 0 0  14 WebPreferences
 13 WebHome
  5 Avisos
  4 WebTopicActions
  4 WebCss
  4 WebNotify
  4 WebSideBar
  4 WebChanges
  4 WebStatistics
  3 WebTopicList
  3 WebTopicCreator
 
Sep 2016 33 0 0   6 WebHome
  5 WebChanges
  3 AvaliaLI1
  3 WebStatistics
  3 Avisos
  3 WebSideBar
  2 WebTopicList
  2 WebPreferences
  1 WebSearchAdvanced
  1 WebTopicCreator
  1 WebIndex
 
Aug 2016 89 0 0  14 WebHome
  9 WebStatistics
  7 WebPreferences
  6 Avisos
  6 WebLeftBar
  5 WebTopicCreator
  5 WebCss
  5 MatDispLI1
  5 WebTopBar
  4 WebSideBar
  4 LI1Aula1
 
Jul 2016 65 0 0  15 WebHome
  7 WebStatistics
  6 WebPreferences
  5 WebIndex
  5 WebChanges
  4 WebTopicList
  4 WebSideBar
  3 WebTopicCreator
  3 WebCss
  3 WebLeftBar
  2 WebTopicActions
 
Jun 2016 71 0 0  22 WebHome
 11 WebStatistics
  7 WebPreferences
  5 WebSearch
  4 WebIndex
  3 WebNotify
  3 Avisos
  3 WebChanges
  3 AvaliaLI1
  2 WebCss
  2 WebSideBar
 
May 2016 71 0 0  12 WebStatistics
  7 WebHome
  7 WebSearch
  6 WebPreferences
  5 Avisos
  5 LI1Aula1
  4 AvaliaLI1
  3 WebCss
  3 WebNotify
  3 WebChanges
  3 WebTopBar
 
Apr 2016 63 0 0  14 WebHome
  8 WebSideBar
  5 LI1Aula1
  4 WebIndex
  3 WebTopicList
  3 WebTopicCreator
  3 WebTopicActions
  3 WebCss
  3 AvaliaLI1
  3 WebStatistics
  3 WebLeftBar
 
Mar 2016 39 0 0  11 WebPreferences
  8 WebHome
  3 WebStatistics
  2 MatDispLI1
  2 WebCss
  2 LI1Aula1
  2 Avisos
  2 WebChanges
  2 WebLeftBar
  1 WebSearchAdvanced
  1 WebTopicCreator
 
Feb 2016 84 0 0  14 WebHome
 12 WebStatistics
  9 WebPreferences
  5 WebSearch
  5 WebNotify
  5 WebSideBar
  5 WebChanges
  5 WebTopBar
  4 WebLeftBar
  3 Avisos
  3 MatDispLI1
 
Jan 2016 88 0 0  15 WebStatistics
 10 WebHome
  9 WebPreferences
  7 WebIndex
  6 LI1Aula1
  5 WebTopicCreator
  5 WebChanges
  4 AvaliaLI1
  4 WebTopBar
  3 WebTopicList
  3 WebTopicActions
 
Dec 2015 90 0 0  16 WebHome
  9 WebStatistics
  8 WebChanges
  7 WebIndex
  5 WebNotify
  5 WebPreferences
  5 WebTopBar
  4 WebTopicActions
  4 WebCss
  4 WebSearch
  4 Avisos
 
Nov 2015 95 0 0  17 WebStatistics
 13 WebHome
 10 WebSideBar
  7 WebChanges
  6 WebTopBar
  5 WebTopicList
  4 WebTopicCreator
  4 WebIndex
  4 Avisos
  4 WebPreferences
  4 AvaliaLI1
 
Oct 2015 127 0 0  15 WebHome
 13 Avisos
 13 WebStatistics
 10 WebPreferences
 10 MatDispLI1
 10 AvaliaLI1
  8 WebSideBar
  8 WebChanges
  7 WebIndex
  6 WebTopBar
  5 WebTopicActions
 
Sep 2015 115 0 0  15 WebPreferences
 14 WebHome
 12 WebStatistics
 11 WebChanges
  7 WebSearchAdvanced
  6 Avisos
  6 AvaliaLI1
  5 WebCss
  5 WebNotify
  4 WebTopicList
  4 WebTopicCreator
 
Aug 2015 345 0 0 108 WebHome
 61 WebStatistics
 55 WebPreferences
 21 WebChanges
  9 WebIndex
  7 WebSearchAdvanced
  7 WebTopicList
  7 WebSearch
  6 WebTopicCreator
  6 WebTopicActions
  6 WebLeftBar
 
Jul 2015 276 0 0  87 WebHome
 33 WebPreferences
 15 WebNotify
 15 Avisos
 15 WebStatistics
 12 LI1Aula1
 11 WebTopicList
 11 WebIndex
 10 WebSearch
  9 MatDispLI1
  9 AvaliaLI1
 
Jun 2015 142 0 0  28 WebHome
 24 WebPreferences
 18 WebChanges
 17 WebStatistics
  7 WebNotify
  6 WebSearch
  6 LI1Aula1
  5 WebTopicList
  5 WebCss
  5 AvaliaLI1
  4 WebTopicActions
 
May 2015 200 0 0  62 WebHome
 17 WebPreferences
 14 WebStatistics
 10 WebSearch
 10 Avisos
 10 AvaliaLI1
  9 WebChanges
  9 LI1Aula1
  8 WebNotify
  8 MatDispLI1
  7 WebIndex
 
Apr 2015 114 0 0  42 WebHome
 12 WebPreferences
  8 WebNotify
  6 Avisos
  6 MatDispLI1
  5 WebSearch
  5 LI1Aula1
  5 WebStatistics
  3 WebTopicCreator
  3 WebTopicActions
  3 WebSideBar
 
Mar 2015 139 0 0  35 WebHome
 14 WebStatistics
 10 WebPreferences
  9 WebSideBar
  8 WebLeftBar
  8 WebTopBar
  6 WebIndex
  6 MatDispLI1
  6 LI1Aula1
  5 AvaliaLI1
  4 WebSearchAdvanced
 
Feb 2015 216 0 0  48 WebHome
 24 WebPreferences
 16 WebStatistics
 13 Avisos
 13 WebChanges
 10 WebTopicList
 10 WebSearch
 10 WebSideBar
 10 AvaliaLI1
  9 MatDispLI1
  9 WebTopBar
 
Jan 2015 181 0 0  46 WebHome
 26 WebStatistics
 10 WebTopicList
  9 WebTopicCreator
  9 WebIndex
  9 WebPreferences
  8 WebSearch
  7 Avisos
  7 MatDispLI1
  6 WebNotify
  6 AvaliaLI1
 
Dec 2014 464 0 0 142 WebHome
 53 WebStatistics
 26 WebChanges
 22 WebPreferences
 18 Avisos
 17 WebSideBar
 17 LI1Aula1
 16 MatDispLI1
 16 AvaliaLI1
 14 WebTopicList
 14 WebIndex
 
Nov 2014 510 0 0 247 WebHome
 54 WebPreferences
 26 WebStatistics
 23 Avisos
 20 MatDispLI1
 19 WebChanges
 19 AvaliaLI1
 14 WebSearch
 11 WebTopicList
  9 WebIndex
  8 WebTopicCreator
 
Oct 2014 190 0 0  49 WebHome
 26 WebPreferences
 17 WebChanges
 13 WebSearch
 12 WebIndex
 11 LI1Aula1
 10 WebStatistics
  8 AvaliaLI1
  7 WebNotify
  7 MatDispLI1
  5 WebTopBar
 
Sep 2014 349 0 0  56 WebPreferences
 53 WebStatistics
 45 WebHome
 31 WebChanges
 18 WebSearch
 13 WebIndex
 13 WebCss
 13 AvaliaLI1
 11 Avisos
 11 WebLeftBar
 11 MatDispLI1
 
Aug 2014 895 0 0 257 WebHome
177 WebPreferences
123 WebStatistics
 36 WebChanges
 26 MatDispLI1
 25 AvaliaLI1
 24 WebIndex
 23 WebSearch
 23 Avisos
 20 WebNotify
 19 WebSearchAdvanced
 
Jul 2014 186 0 0  51 WebHome
 20 WebPreferences
 14 WebStatistics
 10 Avisos
 10 AvaliaLI1
  8 WebChanges
  7 WebTopicActions
  7 WebSearch
  7 MatDispLI1
  6 WebSearchAdvanced
  6 WebTopicCreator
 
Jun 2014 72 0 0  16 WebStatistics
 12 WebHome
  9 AvaliaLI1
  6 WebPreferences
  4 WebTopicCreator
  4 MatDispLI1
  4 WebTopBar
  3 WebLeftBar
  2 WebTopicList
  2 WebTopicActions
  2 LI1Aula1
 
May 2014 37 0 0  11 WebHome
  5 WebPreferences
  4 WebSearch
  3 MatDispLI1
  3 WebStatistics
  2 AvaliaLI1
  2 WebTopBar
  1 WebIndex
  1 WebNotify
  1 LI1Aula1
  1 WebChanges
 
Apr 2014 18 0 0   5 WebStatistics
  5 WebHome
  3 WebPreferences
  2 WebTopicActions
  1 AvaliaLI1
  1 LI1Aula1
  1 WebCss
 
Mar 2014 492 0 0 230 WebHome
133 WebPreferences
 27 WebStatistics
 11 WebSideBar
 10 WebSearch
  9 MatDispLI1
  7 WebSearchAdvanced
  7 Avisos
  7 WebChanges
  7 WebTopBar
  7 LI1Aula1
 
Feb 2014 272 0 0  59 WebHome
 39 WebStatistics
 23 LI1Aula1
 15 WebPreferences
 14 Avisos
 13 WebIndex
 13 WebSearch
 13 WebChanges
 12 MatDispLI1
 10 WebTopicList
  9 WebSearchAdvanced
 
Jan 2014 268 0 0  45 WebHome
 41 WebStatistics
 21 WebPreferences
 20 LI1Aula1
 14 WebSearch
 13 WebChanges
 12 WebTopicList
 10 WebIndex
 10 WebTopicActions
 10 Avisos
  9 MatDispLI1
 
Dec 2013 247 0 0  35 WebHome
 30 WebStatistics
 25 WebPreferences
 15 AvaliaLI1
 14 WebSearch
 14 Avisos
 11 WebCss
 11 LI1Aula1
 10 WebTopicActions
  9 WebSearchAdvanced
  9 WebIndex
 
Nov 2013 173 0 0  52 WebHome
 13 WebIndex
 12 WebChanges
 11 WebStatistics
  9 Avisos
  9 LI1Aula1
  8 WebPreferences
  7 WebTopicList
  7 WebNotify
  6 WebSearch
  6 WebTopBar
 
Oct 2013 163 0 0  75 WebHome
 13 AvaliaLI1
  9 Avisos
  9 WebChanges
  7 MatDispLI1
  6 LI1Aula1
  5 WebIndex
  5 WebSideBar
  5 WebPreferences
  5 WebStatistics
  4 WebSearchAdvanced
 
Sep 2013 99 0 0  21 WebHome
 12 WebStatistics
  9 WebChanges
  7 MatDispLI1
  6 AvaliaLI1
  5 WebIndex
  5 WebSearch
  4 Avisos
  4 WebPreferences
  4 LI1Aula1
  3 WebTopicList
 
Aug 2013 91 0 0  17 WebStatistics
 10 AvaliaLI1
  9 Avisos
  6 WebHome
  6 WebCss
  6 WebSearch
  5 WebIndex
  5 LI1Aula1
  4 WebTopicList
  3 WebSearchAdvanced
  3 WebNotify
 
Jul 2013 268 0 0 104 WebStatistics
 20 WebHome
 17 WebIndex
 16 WebPreferences
 12 Avisos
 10 MatDispLI1
  9 WebSearchAdvanced
  9 WebCss
  9 WebSideBar
  9 WebChanges
  8 LI1Aula1
 
Jun 2013 164 0 0  24 WebStatistics
 19 WebHome
 15 WebPreferences
 11 WebSearch
  9 WebCss
  9 AvaliaLI1
  8 WebTopicList
  8 WebIndex
  8 LI1Aula1
  7 WebNotify
  7 Avisos
 
May 2013 127 0 0  28 WebHome
 20 WebStatistics
  8 MatDispLI1
  8 AvaliaLI1
  7 WebPreferences
  7 LI1Aula1
  6 Avisos
  6 WebChanges
  5 WebIndex
  5 WebSearch
  4 WebTopicList
 
Apr 2013 170 0 0  91 WebStatistics
 12 WebHome
  8 LI1Aula1
  6 WebIndex
  6 WebCss
  6 WebPreferences
  6 WebChanges
  5 WebSearchAdvanced
  4 WebTopicList
  4 WebTopicActions
  4 WebSideBar
 
Mar 2013 103 0 0  29 WebStatistics
 11 WebHome
 10 WebPreferences
  7 Avisos
  6 WebSearchAdvanced
  5 WebSearch
  5 MatDispLI1
  4 WebIndex
  4 WebNotify
  4 AvaliaLI1
  4 WebTopBar
 
Feb 2013 74 0 0  24 WebStatistics
 13 WebHome
  5 WebPreferences
  4 WebTopicCreator
  4 Avisos
  4 WebChanges
  3 WebTopicList
  3 WebSearch
  2 WebIndex
  2 WebCss
  2 WebNotify
 
Jan 2013 152 0 0 108 WebStatistics
 10 WebHome
  6 WebPreferences
  5 Avisos
  5 WebSideBar
  4 AvaliaLI1
  2 WebTopicList
  2 MatDispLI1
  2 WebIndex
  2 LI1Aula1
  2 WebNotify
 
Dec 2012 189 0 0 113 WebStatistics
  8 WebIndex
  6 WebSearchAdvanced
  6 WebHome
  6 WebPreferences
  6 AvaliaLI1
  6 LI1Aula1
  5 Avisos
  5 MatDispLI1
  4 WebTopicList
  4 WebTopicActions
 
Nov 2012 293 0 0 118 WebStatistics
 19 WebHome
 17 WebIndex
 15 WebSearchAdvanced
 14 AvaliaLI1
 12 WebPreferences
 11 WebChanges
 11 LI1Aula1
 10 MatDispLI1
  8 WebTopicCreator
  8 WebCss
 
Oct 2012 316 0 0 198 WebStatistics
 23 WebHome
 12 WebIndex
 11 WebPreferences
 10 Avisos
  8 WebSearchAdvanced
  7 WebTopBar
  6 WebChanges
  6 MatDispLI1
  6 AvaliaLI1
  5 WebTopicList
 
Sep 2012 211 0 0 137 WebStatistics
 19 WebHome
  7 WebPreferences
  6 AvaliaLI1
  5 WebSearchAdvanced
  5 Avisos
  4 WebTopicCreator
  4 WebIndex
  4 MatDispLI1
  3 WebLeftBar
  3 LI1Aula1
 
Aug 2012 63 0 0  15 WebStatistics
 11 WebHome
  5 WebSearch
  5 WebPreferences
  4 WebIndex
  3 WebNotify
  3 WebChanges
  3 WebTopBar
  2 WebSearchAdvanced
  2 WebTopicList
  2 Avisos
 
Jul 2012 304 0 0 214 WebStatistics
 19 WebHome
 11 WebChanges
  8 WebNotify
  8 WebSideBar
  6 WebPreferences
  6 AvaliaLI1
  5 WebTopicList
  5 WebTopicActions
  3 WebSearchAdvanced
  3 WebSearch
 
Jun 2012 236 0 0 176 WebStatistics
 18 WebHome
  6 WebSearchAdvanced
  6 Avisos
  6 AvaliaLI1
  4 WebIndex
  3 WebTopicCreator
  3 WebPreferences
  3 MatDispLI1
  2 WebTopicActions
  2 WebChanges
 
May 2012 148 0 0  50 WebStatistics
 24 WebHome
 12 WebIndex
  8 WebPreferences
  6 AvaliaLI1
  5 WebTopicActions
  5 WebSideBar
  5 WebLeftBar
  4 WebTopicList
  4 Avisos
  4 WebChanges
 
Apr 2012 187 0 0  61 WebHome
 55 WebStatistics
 11 WebPreferences
 10 WebChanges
  7 WebSideBar
  5 WebTopicList
  5 AvaliaLI1
  5 WebTopBar
  4 WebIndex
  4 WebNotify
  4 WebLeftBar
 
Mar 2012 296 0 0 228 WebStatistics
 15 WebHome
  7 WebIndex
  7 LI1Aula1
  7 WebPreferences
  5 WebChanges
  4 WebTopicList
  4 AvaliaLI1
  4 WebNotify
  3 WebTopBar
  3 WebSearch
 
Feb 2012 272 0 0 188 WebStatistics
 27 WebHome
  8 WebIndex
  6 WebPreferences
  4 WebSearchAdvanced
  4 Avisos
  4 WebChanges
  4 AvaliaLI1
  4 LI1Aula1
  3 MatDispLI1
  3 WebTopBar
 
Jan 2012 116 0 0  35 WebHome
 16 WebStatistics
 10 WebPreferences
  9 WebChanges
  9 LI1Aula1
  6 AvaliaLI1
  5 WebTopBar
  4 Avisos
  3 WebSearchAdvanced
  3 WebTopicCreator
  3 WebNotify
 
Dec 2011 358 0 0 128 WebHome
 77 WebStatistics
 24 WebPreferences
 18 Avisos
 13 MatDispLI1
 12 WebCss
 12 AvaliaLI1
 11 LI1Aula1
  9 WebTopicList
  9 WebSideBar
  8 WebChanges
 
Nov 2011 849 0 0 376 WebStatistics
173 WebHome
 82 WebPreferences
 30 WebChanges
 21 WebSearchAdvanced
 19 Avisos
 17 WebIndex
 14 WebSideBar
 13 LI1Aula1
 12 WebTopicActions
 12 WebLeftBar
 
Oct 2011 280 0 0  95 WebStatistics
 42 WebHome
 27 WebPreferences
 14 WebIndex
 14 WebChanges
 10 WebSearch
  9 WebSideBar
  8 Avisos
  8 MatDispLI1
  7 WebTopicList
  7 AvaliaLI1
 
Sep 2011 256 0 0  73 WebHome
 25 WebPreferences
 19 WebStatistics
 16 WebSideBar
 14 Avisos
 11 WebIndex
 11 MatDispLI1
 10 WebChanges
  9 WebSearch
  9 WebNotify
  8 WebTopicList
 
Aug 2011 514 0 0 215 WebHome
 35 WebPreferences
 28 WebSideBar
 23 WebLeftBar
 22 WebChanges
 21 WebStatistics
 21 LI1Aula1
 17 WebCss
 17 Avisos
 15 WebNotify
 13 WebIndex
 
Jul 2011 667 0 0 296 WebStatistics
117 WebHome
 25 Avisos
 25 WebPreferences
 23 AvaliaLI1
 20 WebLeftBar
 17 WebTopicList
 17 WebNotify
 17 WebChanges
 16 WebSideBar
 15 WebIndex
 
Jun 2011 270 0 0  70 WebHome
 26 WebStatistics
 17 WebPreferences
 15 WebIndex
 14 LI1Aula1
 13 WebSearch
 13 WebSideBar
 10 WebTopicList
 10 Avisos
  9 WebChanges
  9 AvaliaLI1
 
May 2011 380 0 0 159 WebHome
 27 WebPreferences
 18 WebStatistics
 17 WebIndex
 16 WebSearch
 15 Avisos
 15 LI1Aula1
 13 AvaliaLI1
 12 WebTopicList
 11 WebChanges
 11 MatDispLI1
 
Apr 2011 416 0 0  63 WebHome
 40 WebPreferences
 35 WebSideBar
 27 Avisos
 27 WebLeftBar
 19 WebCss
 19 WebStatistics
 18 WebTopicCreator
 18 LI1Aula1
 17 WebNotify
 16 WebIndex
 
Mar 2011 305 0 0  69 WebHome
 34 WebPreferences
 22 Avisos
 16 WebCss
 15 WebIndex
 15 WebSideBar
 15 WebStatistics
 14 WebNotify
 14 AvaliaLI1
 14 LI1Aula1
 12 WebTopicList
 
Feb 2011 123 0 0  12 WebIndex
 12 WebStatistics
 10 WebTopicList
  9 WebHome
  8 AvaliaLI1
  7 WebTopicActions
  7 WebCss
  7 WebSearch
  7 LI1Aula1
  6 WebTopicCreator
  6 WebPreferences
 
Jan 2011 264 0 0  54 WebHome
 17 AvaliaLI1
 16 WebTopicList
 15 WebTopicCreator
 15 WebChanges
 14 WebIndex
 14 WebSearch
 14 WebPreferences
 14 MatDispLI1
 14 WebStatistics
 13 Avisos
 
Dec 2010 308 0 0  56 WebHome
 36 WebStatistics
 24 AvaliaLI1
 23 WebPreferences
 21 Avisos
 19 WebChanges
 17 WebIndex
 17 MatDispLI1
 14 WebLeftBar
 12 WebSearch
 12 WebSideBar
 
Nov 2010 229 0 0  20 WebIndex
 19 WebSearchAdvanced
 18 WebHome
 16 WebPreferences
 14 WebTopicList
 14 WebTopicActions
 13 WebStatistics
 11 WebSearch
 11 Avisos
 11 WebSideBar
 11 LI1Aula1
 
Oct 2010 116 0 0  15 WebHome
 14 WebTopicCreator
 14 WebCss
 13 WebPreferences
  6 Avisos
  6 WebChanges
  6 AvaliaLI1
  5 WebIndex
  5 WebSearch
  5 WebNotify
  4 WebTopicList
 
Sep 2010 300 0 0  63 WebHome
 35 WebPreferences
 33 WebStatistics
 19 Avisos
 19 WebChanges
 14 WebTopicCreator
 13 WebTopicList
 13 WebIndex
 11 WebSearch
 11 AvaliaLI1
 10 WebSearchAdvanced
 
Aug 2010 707 0 0 329 WebStatistics
 85 WebHome
 39 WebPreferences
 34 WebSideBar
 20 WebCss
 20 WebChanges
 19 WebTopicList
 19 WebLeftBar
 18 LI1Aula1
 15 WebSearchAdvanced
 14 WebTopicCreator
 
Jul 2010 24 0 0   5 LI1Aula1
  2 WebHome
  2 WebNotify
  2 WebStatistics
  2 WebSideBar
  1 WebTopicList
  1 WebTopicCreator
  1 MatDispLI1
  1 WebIndex
  1 WebCss
  1 AvaliaLI1
 
Jun 2010 275 0 0  61 WebHome
 28 WebPreferences
 27 WebStatistics
 19 Avisos
 12 WebIndex
 12 MatDispLI1
 12 LI1Aula1
 11 WebSearchAdvanced
 11 WebCss
 10 WebTopBar
  9 WebTopicActions
 
May 2010 419 0 0 107 WebHome
 37 WebPreferences
 24 AvaliaLI1
 23 WebIndex
 22 WebStatistics
 21 Avisos
 21 WebChanges
 18 MatDispLI1
 17 WebTopicList
 17 WebTopicActions
 16 WebTopicCreator
 
Apr 2010 232 0 0  30 WebStatistics
 29 WebHome
 14 WebIndex
 14 AvaliaLI1
 12 Avisos
 12 WebLeftBar
 11 WebTopicActions
 11 MatDispLI1
 11 LI1Aula1
 10 WebSearchAdvanced
 10 WebPreferences
 
Mar 2010 333 0 0  45 WebStatistics
 28 WebPreferences
 25 WebSideBar
 23 WebHome
 22 WebLeftBar
 21 Avisos
 19 WebIndex
 17 WebCss
 16 MatDispLI1
 16 AvaliaLI1
 14 WebTopicCreator
 
Feb 2010 306 0 0  46 WebStatistics
 40 WebHome
 21 Avisos
 16 MatDispLI1
 15 WebTopicActions
 15 WebPreferences
 15 AvaliaLI1
 14 WebIndex
 14 WebSideBar
 14 WebChanges
 13 WebTopicList
 
Jan 2010 332 0 0  44 WebStatistics
 34 WebHome
 33 WebChanges
 24 AvaliaLI1
 23 MatDispLI1
 17 WebTopBar
 16 WebCss
 16 Avisos
 16 WebSideBar
 15 WebIndex
 14 LI1Aula1
 
Dec 2009 312 0 0  62 WebHome
 42 WebStatistics
 23 WebIndex
 22 AvaliaLI1
 19 WebLeftBar
 19 MatDispLI1
 17 WebTopicCreator
 14 WebPreferences
 12 WebSearch
 12 Avisos
 11 WebTopicList
 
Nov 2009 495 0 0 204 WebHome
 39 Avisos
 35 WebStatistics
 24 MatDispLI1
 20 WebPreferences
 18 WebIndex
 17 AvaliaLI1
 17 LI1Aula1
 15 WebTopicList
 14 WebTopicActions
 12 WebTopBar
 
Oct 2009 240 0 0 102 WebHome
 20 WebStatistics
 14 MatDispLI1
 13 WebIndex
 11 WebTopicList
 11 Avisos
 10 WebTopicActions
 10 WebChanges
 10 WebTopBar
  9 AvaliaLI1
  8 WebSearch
 
Sep 2009 52 0 0  16 WebHome
  3 Avisos
  3 MatDispLI1
  3 AvaliaLI1
  2 WebSearchAdvanced
  2 WebTopicList
  2 WebTopicCreator
  2 WebTopicActions
  2 WebIndex
  2 WebCss
  2 WebPreferences
 
Aug 2009 426 0 0  46 Avisos
 31 WebHome
 31 WebStatistics
 26 WebLeftBar
 26 AvaliaLI1
 25 WebTopicList
 24 WebSearchAdvanced
 24 WebTopBar
 21 WebSearch
 21 WebSideBar
 20 WebIndex
 
Jul 2009 290 0 0  45 WebStatistics
 44 WebPreferences
 28 WebNotify
 26 Avisos
 24 WebHome
 14 WebSearch
 14 AvaliaLI1
 13 WebLeftBar
 11 WebTopicCreator
 11 MatDispLI1
  8 WebCss
 
Jun 2009 284 0 0  43 WebStatistics
 35 WebHome
 21 Avisos
 19 AvaliaLI1
 18 WebTopicCreator
 18 WebChanges
 16 MatDispLI1
 13 WebIndex
 12 WebPreferences
 11 WebTopicList
 11 WebLeftBar
 
May 2009 209 0 0  27 WebHome
 20 AvaliaLI1
 18 WebStatistics
 15 Avisos
 14 WebTopicCreator
 14 MatDispLI1
 10 WebTopicList
 10 WebPreferences
 10 WebTopBar
  9 LI1Aula1
  8 WebIndex
 
Apr 2009 192 0 0  35 WebPreferences
 26 WebStatistics
 14 WebTopicCreator
 13 WebIndex
 12 WebSearchAdvanced
 11 WebHome
 11 MatDispLI1
 11 AvaliaLI1
 10 WebNotify
  8 Avisos
  5 WebTopicList
 
Mar 2009 419 0 0  79 WebHome
 41 WebPreferences
 36 WebStatistics
 26 WebIndex
 23 Avisos
 23 WebChanges
 22 WebLeftBar
 22 AvaliaLI1
 20 WebSideBar
 20 MatDispLI1
 19 WebCss
 
Feb 2009 340 0 0  44 Avisos
 42 WebHome
 27 MatDispLI1
 26 WebStatistics
 23 LI1Aula1
 22 AvaliaLI1
 21 WebTopicList
 17 WebCss
 16 WebPreferences
 15 WebIndex
 14 WebSideBar
 
Jan 2009 302 0 0  41 WebHome
 29 WebStatistics
 25 Avisos
 20 WebIndex
 20 WebLeftBar
 20 MatDispLI1
 17 AvaliaLI1
 16 LI1Aula1
 15 WebTopicList
 14 WebTopicCreator
 14 WebPreferences
 
Dec 2008 504 0 0  76 WebHome
 59 WebStatistics
 41 MatDispLI1
 41 AvaliaLI1
 34 Avisos
 29 WebTopicList
 28 LI1Aula1
 26 WebIndex
 22 WebCss
 22 WebSideBar
 20 WebTopicCreator
 
Nov 2008 372 0 0  61 WebHome
 36 MatDispLI1
 33 AvaliaLI1
 29 Avisos
 22 WebStatistics
 18 WebPreferences
 18 LI1Aula1
 17 WebIndex
 16 WebTopicList
 16 WebCss
 15 WebTopicCreator
 
Oct 2008 492 0 0  79 WebHome
 42 AvaliaLI1
 39 MatDispLI1
 38 Avisos
 31 WebStatistics
 28 WebPreferences
 24 LI1Aula1
 22 WebLeftBar
 21 WebSideBar
 20 WebIndex
 19 WebSearchAdvanced
 
Sep 2008 402 0 0  85 WebHome
 33 Avisos
 32 MatDispLI1
 26 WebSideBar
 26 AvaliaLI1
 25 WebLeftBar
 22 WebStatistics
 16 WebSearch
 15 WebTopicList
 15 LI1Aula1
 14 WebTopicCreator
 
Aug 2008 607 0 0 112 WebHome
 47 AvaliaLI1
 46 WebStatistics
 43 MatDispLI1
 42 Avisos
 30 WebTopicList
 29 WebSideBar
 27 WebTopicCreator
 27 WebTopicActions
 27 WebIndex
 27 WebCss
 
Jul 2008 1182 0 0 311 WebHome
 82 MatDispLI1
 77 WebPreferences
 77 AvaliaLI1
 69 Avisos
 54 WebSideBar
 52 WebStatistics
 46 WebLeftBar
 43 WebIndex
 42 WebCss
 41 WebTopicList
 
Jun 2008 1218 0 0 318 WebHome
130 WebPreferences
 91 WebStatistics
 77 Avisos
 60 MatDispLI1
 54 WebSideBar
 49 AvaliaLI1
 44 WebChanges
 42 WebIndex
 42 WebCss
 42 WebLeftBar
 
May 2008 632 0 0 131 WebStatistics
108 WebHome
 50 MatDispLI1
 45 Avisos
 41 AvaliaLI1
 24 WebPreferences
 21 WebTopicList
 20 WebTopicCreator
 20 WebIndex
 20 WebTopicActions
 20 WebChanges
 
Apr 2008 679 0 0 161 WebHome
 74 WebStatistics
 59 MatDispLI1
 59 AvaliaLI1
 50 Avisos
 37 WebPreferences
 24 WebTopicActions
 22 WebSideBar
 21 WebIndex
 20 LI1Aula1
 20 WebTopBar
 
Mar 2008 988 0 0 387 WebHome
159 AvaliaLI1
 83 MatDispLI1
 68 WebStatistics
 48 Avisos
 27 WebPreferences
 21 WebIndex
 20 WebNotify
 19 WebChanges
 19 WebTopBar
 18 WebLeftBar
 
Feb 2008 8412 12 0 3607 AvaliaLI1
3555 WebHome
805 MatDispLI1
108 WebStatistics
 85 Avisos
 33 WebChanges
 23 WebIndex
 22 WebCss
 19 WebSearch
 18 WebTopBar
 17 LI1Aula1
 12 OlgaPacheco
Jan 2008 1764 1 0 604 WebHome
370 MatDispLI1
345 AvaliaLI1
 99 WebStatistics
 54 Avisos
 34 WebChanges
 26 WebIndex
 25 LI1Aula1
 21 WebLeftBar
 21 WebTopBar
 20 WebCss
  1 OlgaPacheco
Dec 2007 2954 0 0 1099 WebHome
614 MatDispLI1
522 AvaliaLI1
116 WebPreferences
 81 WebStatistics
 71 Avisos
 57 WebChanges
 55 WebSideBar
 43 WebLeftBar
 42 WebIndex
 41 WebCss
 
Nov 2007 2290 3 0 839 WebHome
726 MatDispLI1
429 AvaliaLI1
 39 Avisos
 33 WebStatistics
 28 WebPreferences
 27 WebChanges
 23 LI1Aula1
 20 WebIndex
 19 WebSearch
 15 WebTopicActions
  3 OlgaPacheco
Oct 2007 3176 36 0 1293 WebHome
1141 MatDispLI1
308 AvaliaLI1
 54 Avisos
 53 WebPreferences
 34 WebChanges
 34 WebStatistics
 32 LI1Aula1
 28 WebSearch
 27 WebSideBar
 25 WebIndex
 26 OlgaPacheco
  8 AlcinoCunha
  1 ManuelBernardoBarbosa
  1 JoseBarros
Sep 2007 458 0 0  78 WebHome
 52 WebStatistics
 44 MetodosFormais?
 35 AnaliseTesteSoftware?
 33 CalculoSistemasInformacao?
 28 ProcessosArquitecturasSoftware?
 26 WebPreferences
 25 ProjectoIntegrado?
 25 Modulos?
 17 Avisos
 15 WebSideBar
 
Aug 2007 645 0 0 104 WebHome
 59 WebStatistics
 52 MetodosFormais?
 43 AnaliseTesteSoftware?
 40 ProcessosArquitecturasSoftware?
 36 WebPreferences
 33 CalculoSistemasInformacao?
 30 WebChanges
 27 ProjectoIntegrado?
 25 Modulos?
 23 WebSideBar
 
Jul 2007 646 0 0 126 WebHome
 51 MetodosFormais?
 48 CalculoSistemasInformacao?
 42 AnaliseTesteSoftware?
 41 ProcessosArquitecturasSoftware?
 40 WebPreferences
 39 ProjectoIntegrado?
 28 Avisos
 25 Modulos?
 23 WebTopBar
 20 WebSideBar
 
Jun 2007 581 0 0  79 WebHome
 67 MetodosFormais?
 51 AnaliseTesteSoftware?
 46 ProcessosArquitecturasSoftware?
 40 CalculoSistemasInformacao?
 34 Modulos?
 31 WebPreferences
 27 ProjectoIntegrado?
 26 WebSearch
 20 WebSideBar
 19 Avisos
 
May 2007 784 61 9 200 WebHome
104 MetodosFormais?
 75 AnaliseTesteSoftware?
 50 Modulos?
 49 ProcessosArquitecturasSoftware?
 45 CalculoSistemasInformacao?
 35 ProjectoIntegrado?
 22 WebSearch
 18 WebSideBar
 18 WebPreferences
 17 WebStatistics
 40 AlcinoCunha
 30 JoseNunoOliveira
Apr 2007 144 16 1  19 WebHome
 12 MetodosFormais?
 10 Modulos?
  9 CalculoSistemasInformacao?
  8 AnaliseTesteSoftware?
  8 WebPreferences
  8 WebChanges
  8 ProcessosArquitecturasSoftware?
  7 WebSideBar
  7 ProjectoIntegrado?
  6 Avisos
 17 AlcinoCunha
Mar 2007 1244 15 5 417 WebHome
352 MaterialApoio?
 89 Projectos?
 71 Programa?
 66 Sumarios?
 56 Funcionamento?
 19 WebSideBar
 18 WebPreferences
 17 Avisos
 13 WebTopicList
 13 WebChanges
 20 AlcinoCunha
Feb 2007 1223 135 8 397 WebHome
150 MaterialApoio?
115 Funcionamento?
115 Programa?
 88 Sumarios?
 85 WebPreferences
 57 Projectos?
 39 WebSideBar
 31 WebCSS?
 13 WebSearch
 13 ViewSkinAlcinoTemplate?
140 AlcinoCunha
  3 LuisSoaresBarbosa

Notes:

  • Do not edit this topic, it is updated automatically. (You can also force an update)
  • TWikiDocumentation tells you how to enable the automatic updates of the statistics.
  • Suggestion: You could archive this topic once a year and delete the previous year's statistics from the table.
WebTopBar 13 Feb 2007 - 14:43 - NEW AlcinoCunha
WebTopicActions 03 Oct 2007 - 09:53 - NEW AlcinoCunha
WebTopicCreator 15 Nov 2006 - 19:43 - r2 TWikiContributor

Create New Topic in Education/LI10708 Web

Topic name:


It's usually best to choose a WikiWord for the new topic name, otherwise automatic linking may not work. Characters not allowed in topic names, such as spaces will automatically be removed.

Topic parent:

Use template:

View templates


info Once you have created the topic, consider adding links in related topics to the new topic so that there are more ways people can discover it.
WebTopicList 15 Nov 2006 - 19:43 - r3 TWikiContributor

See also the verbose WebIndex.

Found 21 topics.
This site is powered by the TWiki collaboration platform Copyright © by the contributing authors. Ideas, requests, problems? Send feedback.
Syndicate this site RSSATOM