Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(32) |
Sep
(19) |
Oct
(3) |
Nov
(7) |
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(21) |
Feb
(47) |
Mar
(4) |
Apr
(29) |
May
(23) |
Jun
(12) |
Jul
(2) |
Aug
(3) |
Sep
(2) |
Oct
(1) |
Nov
(1) |
Dec
|
2002 |
Jan
|
Feb
|
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
(3) |
Nov
(4) |
Dec
(2) |
2003 |
Jan
(7) |
Feb
(20) |
Mar
(40) |
Apr
(2) |
May
(3) |
Jun
(4) |
Jul
(11) |
Aug
|
Sep
|
Oct
(4) |
Nov
(1) |
Dec
|
2004 |
Jan
|
Feb
(3) |
Mar
(2) |
Apr
(3) |
May
(2) |
Jun
(10) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(6) |
Dec
(3) |
2005 |
Jan
(1) |
Feb
(2) |
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
(7) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
(21) |
2006 |
Jan
(1) |
Feb
(1) |
Mar
(10) |
Apr
|
May
(6) |
Jun
(10) |
Jul
(1) |
Aug
(1) |
Sep
(5) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2007 |
Jan
(12) |
Feb
(10) |
Mar
(6) |
Apr
(3) |
May
(2) |
Jun
(4) |
Jul
(4) |
Aug
(10) |
Sep
(11) |
Oct
(6) |
Nov
|
Dec
(3) |
2008 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(3) |
Dec
(3) |
2009 |
Jan
(2) |
Feb
(4) |
Mar
(5) |
Apr
|
May
(2) |
Jun
(1) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
(1) |
2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(1) |
Nov
|
Dec
(2) |
2011 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(1) |
Jul
(1) |
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(7) |
Aug
(4) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2013 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(3) |
2014 |
Jan
(12) |
Feb
(16) |
Mar
(49) |
Apr
(19) |
May
(39) |
Jun
(37) |
Jul
(14) |
Aug
(49) |
Sep
(45) |
Oct
(52) |
Nov
(10) |
Dec
(27) |
2015 |
Jan
(34) |
Feb
(58) |
Mar
(49) |
Apr
(42) |
May
(46) |
Jun
(33) |
Jul
(7) |
Aug
(5) |
Sep
|
Oct
|
Nov
(9) |
Dec
(10) |
2016 |
Jan
(12) |
Feb
(1) |
Mar
(10) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
(1) |
16
|
17
|
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
(1) |
|
|
|
|
|
|
From: Yuval Yaari <yuval@wi...> - 2004-02-29 17:33:21
|
Hi, I have configured mmm-mode to work with mason. On Xemacs, the Perl regions look like CPerl looks on Xemacs, and the same for HTML-Helper-Mode. On TTY emacs, CPerl and HTML-Helper-Mode look good, but when used together within mmm-mode, they lose most of their fancy syntax highlighting. I know it's weird, but it's true. I can post screenshots if needed. Indentation doesn't work well, I think it has something to do with the fact that I'm using CPerl-mode v5.0. Thanks, --Yuval Yaari |
From: Dan Debertin <airboss@no...> - 2004-02-19 22:28:32
|
I'm about half done with a lex/flex-mode (with bison-mode to follow soon after) using MMM-mode. It was child's play to get c-mode as a submode between %{ ... %} delimiters, but in lex specifications you can also include C code if it's indented, without any starting or ending character, up to the next un-indented line. Like this: %{ /* This section should be in c-mode */ ... C code ... %} %s FOO BAR BAZ ==> regular lex mode int thingy = 0; /* This line should be in c-mode. */ IDENTIFIER [A-Za-z] ==> regular lex mode This is how I'm defining the submode class: (mmm-add-classes '((lex-def-c-indented-block :submode c-mode :front "^[\t ]+" :back "^[^\t ]+"))) But mmm-mode's usual magic isn't working for me. The code between the %{ ... %} looks fine, but the indented line doesn't act like c-mode at all. Is there a way to do this? TIA, Dan -- Dan Debertin | airboss@... | http://www.nodewarrior.org | |
From: Tsirkin Evgeny <tsurkin@ma...> - 2004-02-15 14:55:56
|
Hi the list! I use the mmm-mode on the ntemacs that is why i can't 'make' the mmm-mode .That made me to write a lisp make file which i want to share with others in hope it will be usefull. Using the file you can just type emacs -q --no-site-file -batch -l mmm-comp.el (assuming that you saved the code into mmm-comp.el) and you are done . Here is the code: ;;emacs -q --no-site-file -batch -l mmm-comp.el (require 'bytecomp) ;;(message "%S\n" command-line-args-left) (let ((load-path (append '(".") load-path)) (compile-file-list-1st '("mmm-auto.el" "mmm-class.el" "mmm-cmds.el" "mmm-compat.el" "mmm-mason.el" "mmm-mode.el" "mmm-region.el" "mmm-rpm.el" "mmm-univ.el" "mmm-sample.el" "mmm-utils.el" "mmm-vars.el")) file) (message "" compile-file-list-1st) (message "Remove old byte-compiled files-----") (mapcar (lambda (x) (setq file (concat (file-name-sans-extension x) ".elc")) (if (file-exists-p file) (progn (message "Remove %s" file) (delete-file file))) nil) compile-file-list-1st) (message "Compiling -----") (mapcar (lambda (file) (save-excursion (byte-compile-file file))) compile-file-list-1st)) ;;Actually the code is a modification of mucs-comp.el ;;from mule-ucs.el ;;Evgeny |