repo
string
commit
string
message
string
diff
string
alios/lab
6a37a583ffc48c66f6d41e5217ed71201ba324e5
fixed makefile
diff --git a/httpd/Makefile b/httpd/Makefile index 9adae36..64bc081 100644 --- a/httpd/Makefile +++ b/httpd/Makefile @@ -1,29 +1,29 @@ PROJ=httpd OBJS= httpd.o INCLUDE= CC=gcc LD=gcc -CFLAGS=-std=posix -gdwarf2 -pedantic -Wall -Wcast-align -Wcast-qual \ +CFLAGS=-ansi -g -pedantic -Wall -Wcast-align -Wcast-qual...
alios/lab
b1b3b836df72cfe7821e37e89113049a487f7aad
added output of client information on connection
diff --git a/httpd/httpd.c b/httpd/httpd.c index 9ec4698..24c5854 100644 --- a/httpd/httpd.c +++ b/httpd/httpd.c @@ -1,18 +1,234 @@ - #include <stdlib.h> +#include <stdint.h> +#include <unistd.h> #include <stdio.h> +#include <string.h> +#include <signal.h> +#include <regex.h> #include <sys/socket.h> +#include <netin...
alios/lab
b0ddc19b77a065cd7f5862e7c8814d39c680f47b
implemented basic tcp connection handling and prepeared for HTTP implementation
diff --git a/httpd/Makefile b/httpd/Makefile new file mode 100644 index 0000000..9adae36 --- /dev/null +++ b/httpd/Makefile @@ -0,0 +1,29 @@ +PROJ=httpd +OBJS= httpd.o +INCLUDE= + +CC=gcc +LD=gcc + +CFLAGS=-std=posix -gdwarf2 -pedantic -Wall -Wcast-align -Wcast-qual \ + -Wchar-subscripts -Winline -Wpointer-arith -Wr...
alios/lab
449d37294f97fb49cfd927681116452f2b6748fa
no longer line buffered
diff --git a/rot13.hs b/rot13.hs index df5efad..0b916e2 100644 --- a/rot13.hs +++ b/rot13.hs @@ -1,23 +1,26 @@ +module Main (main, rot13) where -module Main(main) where - - - -rot l = - let a1 = cycle l - a2 = drop 13 a1 - in take 26 $ zip a1 a2 +import System.IO chars = rot ['A'..'Z'] ++ rot ['a'..'z'] +...
alios/lab
6afdeb12bc2609680cbb5b603c35c375ed164cb3
added rot13
diff --git a/rot13.hs b/rot13.hs new file mode 100644 index 0000000..df5efad --- /dev/null +++ b/rot13.hs @@ -0,0 +1,23 @@ + +module Main(main) where + + + +rot l = + let a1 = cycle l + a2 = drop 13 a1 + in take 26 $ zip a1 a2 + +chars = rot ['A'..'Z'] ++ rot ['a'..'z'] + +rot13 c = + let r = lookup c chars + ...
alios/lab
26c2e39c8e95335f6e26df4acbd26476344c6ac8
statemachine enhencments
diff --git a/StateMachines.lhs b/StateMachines.lhs index 4b466d8..2e353c0 100644 --- a/StateMachines.lhs +++ b/StateMachines.lhs @@ -1,41 +1,77 @@ > {-# LANGUAGE FlexibleInstances, MultiParamTypeClasses, FunctionalDependencies #-} -> import Data.Set(Set) +> import Data.Set (Set) > import qualified Data.Set as S +> ...
alios/lab
683dc510c2f8e11435ff2358ae997661c69555f2
some more implementation in the StateMachines module
diff --git a/StateMachines.lhs b/StateMachines.lhs index 8e016f3..4b466d8 100644 --- a/StateMachines.lhs +++ b/StateMachines.lhs @@ -1,8 +1,41 @@ +> {-# LANGUAGE FlexibleInstances, MultiParamTypeClasses, FunctionalDependencies #-} > import Data.Set(Set) +> import qualified Data.Set as S A deterministic finite aut...
alios/lab
c2497c5ff4f2f90f40330d5a6d93821873378c41
added Statemachines
diff --git a/StateMachines.lhs b/StateMachines.lhs new file mode 100644 index 0000000..8e016f3 --- /dev/null +++ b/StateMachines.lhs @@ -0,0 +1,8 @@ + +> import Data.Set(Set) + +A deterministic finite automaton + +> type Transition q z = (q, z) -> q +> type DFA q z = (Set q, Set z, Transition q z, q, Set z) +
alios/lab
84edbbd7fda870596c1515e66aea42549d6f9705
added great circle distance calculations
diff --git a/Beteigeuze.hs b/Beteigeuze/Beteigeuze.hs similarity index 100% rename from Beteigeuze.hs rename to Beteigeuze/Beteigeuze.hs diff --git a/Geodatic.hs b/Geodatic.hs index e5f04ba..d2872dd 100644 --- a/Geodatic.hs +++ b/Geodatic.hs @@ -1,123 +1,152 @@ {-# LANGUAGE GADTs, EmptyDataDecls, FlexibleInstances, Ra...
alios/lab
62ad231dcbec1553a6af74296bde30a7426fb79b
initial implementation of Beteigeuze
diff --git a/Beteigeuze.hs b/Beteigeuze.hs new file mode 100644 index 0000000..610cf1f --- /dev/null +++ b/Beteigeuze.hs @@ -0,0 +1,156 @@ +{-# LANGUAGE DeriveDataTypeable, TemplateHaskell, TypeFamilies, + TypeOperators, FlexibleInstances, MultiParamTypeClasses, + FlexibleContexts, FunctionalD...
alios/lab
611946ee34aac4abbe1d6c936400b0800647c70c
cleanup
diff --git a/Geodatic.hs b/Geodatic.hs index eadfe07..e5f04ba 100644 --- a/Geodatic.hs +++ b/Geodatic.hs @@ -1,104 +1,123 @@ -{-# LANGUAGE GADTs, EmptyDataDecls, FlexibleInstances, Rank2Types, FlexibleContexts, TypeSynonymInstances #-} +{-# LANGUAGE GADTs, EmptyDataDecls, FlexibleInstances, Rank2Types, FlexibleContexts...
alios/lab
9c1cd6dd0acafb5184f5761f386adb2190f6535c
now compiles. using functional dependencies
diff --git a/Turing.hs b/Turing.hs index 223f0fd..e065947 100644 --- a/Turing.hs +++ b/Turing.hs @@ -1,61 +1,72 @@ -{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, UndecidableInstances, RankNTypes #-} +{-# LANGUAGE MultiParamTypeClasses, + FlexibleInstances, + UndecidableInstances, + ...
alios/lab
a46e8643810f9ad14797036aac97588c6cd221b5
first implementation still needs some type system clarification
diff --git a/Turing.hs b/Turing.hs new file mode 100644 index 0000000..223f0fd --- /dev/null +++ b/Turing.hs @@ -0,0 +1,61 @@ +{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, UndecidableInstances, RankNTypes #-} + +module Turing where + + +data Direction = L | R + deriving (Show, Read, Eq, Enum) + ...
alios/lab
068de7799fd80b3e4bec52dc0e9b49d4bca8b6f6
still having some exceptions and problems parsing sentences without checksum, finalized the Binary put/get implementation
diff --git a/Nmea0183Binary.hs b/Nmea0183Binary.hs index 30ff050..29b8712 100644 --- a/Nmea0183Binary.hs +++ b/Nmea0183Binary.hs @@ -1,143 +1,221 @@ module Nmea0183Binary where import Data.Word +import Data.Char(toUpper) import Data.Int (Int64) import Data.Binary import Data.Binary.Get import Data.Binary.Put -imp...
alios/lab
3062f49766111178917028be8f0f3dbc42747920
more or less finished Atom version of the nmea parser
diff --git a/NmeaRawParser.hs b/NmeaRawParser.hs index b2b7438..19fec1d 100644 --- a/NmeaRawParser.hs +++ b/NmeaRawParser.hs @@ -1,141 +1,197 @@ {-# LANGUAGE GADTs #-} module NmeaParser ( ) where import Language.Atom import Data.Monoid (mempty) import Data.Word import Data.Char import Nmea0183 ...
alios/lab
94705e8258861bff52cd24dffa1f67d70ac7568f
added much more implementation
diff --git a/Geodatic.hs b/Geodatic.hs index b22ebcf..eadfe07 100644 --- a/Geodatic.hs +++ b/Geodatic.hs @@ -1,103 +1,104 @@ {-# LANGUAGE GADTs, EmptyDataDecls, FlexibleInstances, Rank2Types, FlexibleContexts, TypeSynonymInstances #-} module ObjectDB where import qualified Prelude import Numeric.Units.Dimension...
alios/lab
0e1ccbfe7e6614a54c18b46c1cf9151751d179db
added binary parser
diff --git a/Nmea0183Binary.hs b/Nmea0183Binary.hs new file mode 100644 index 0000000..30ff050 --- /dev/null +++ b/Nmea0183Binary.hs @@ -0,0 +1,143 @@ +module Nmea0183Binary where +import Data.Word +import Data.Int (Int64) +import Data.Binary +import Data.Binary.Get +import Data.Binary.Put +import Data.ByteString.Lazy ...
alios/lab
3066fa80290739ebec1bdb2c749788f2b964b818
added transoration geodatic coord <-> ECEF Coordinates intrudeced NmeaCominator module
diff --git a/Geodatic.hs b/Geodatic.hs new file mode 100644 index 0000000..b22ebcf --- /dev/null +++ b/Geodatic.hs @@ -0,0 +1,103 @@ +{-# LANGUAGE GADTs, EmptyDataDecls, FlexibleInstances, Rank2Types, FlexibleContexts, TypeSynonymInstances #-} + +module ObjectDB where + +import qualified Prelude +import Numeric.Units.D...
alios/lab
be22f0d1e251f94fd1930e8b50a750459f9f2772
more stuff - does not compile at the moment
diff --git a/Nmea0183.hs b/Nmea0183.hs index d32b0dc..e8d324f 100644 --- a/Nmea0183.hs +++ b/Nmea0183.hs @@ -1,48 +1,59 @@ module Nmea0183 ( isNmeaChar , startChar , isStartChar + , fieldSep + , isFieldSep + , checksumSep + ...
alios/lab
b7c1c2df8c4ff17360b43f6682e4aaefe6e85e0b
splittet generic stuff out to Nmea0183
diff --git a/Nmea0183.hs b/Nmea0183.hs new file mode 100644 index 0000000..d32b0dc --- /dev/null +++ b/Nmea0183.hs @@ -0,0 +1,48 @@ +module Nmea0183 ( isNmeaChar + , startChar + , isStartChar + , reservedChars + , isReservedChar + , validC...
alios/lab
bcf2e6c35cbbe8e8dd17bd5a84d27c816fc53f0b
added the Binary Parser
diff --git a/Parser.hs b/Parser.hs new file mode 100644 index 0000000..33ce8b0 --- /dev/null +++ b/Parser.hs @@ -0,0 +1,78 @@ +{-# OPTIONS -fglasgow-exts #-} + + +module GisServer.Nmea0183.Parser () where + +import Data.Bits +import Data.Word +import Data.Char +import Data.ByteString.Internal(c2w, w2c) +import Data.Gen...
alios/lab
0bc5a7ba9c3561d042a535eb17f32caee208206e
initial checkinto lab
diff --git a/NmeaRawParser.hs b/NmeaRawParser.hs new file mode 100644 index 0000000..901342f --- /dev/null +++ b/NmeaRawParser.hs @@ -0,0 +1,98 @@ +{-# LANGUAGE GADTs #-} + +module NmeaParser + ( ExternalState(..) + , Result(..) + , DiscardReason(..) + ) where + +import Language.Atom +import Da...
nkpart/deriving-scalaz
3a475a80d0bdd132269d90ddc5138d4e69f59096
As we ended up.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6827877 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +out +target +project/boot +lib_managed +WEB-INF diff --git a/src/main/scala/ds/Main.scala b/src/main/scala/ds/Main.scala index 918d33e..04979ea 100644 --- a/src/main/scala/ds/Main....
grinnellplans/Newlove
cab9fbe2c1ccc615f870dd0b426703e45996cc50
v1.4.0
diff --git a/newlove.user.js b/newlove.user.js index 8c7425d..84f305b 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,172 +1,173 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
9e36b5aedb408dce5e0cfcd34453222e209efc8b
Fix GM_ functions in GM 3.0
diff --git a/newlove.user.js b/newlove.user.js index c09ec3b..8c7425d 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,172 +1,172 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
dca5038bd27b746ecdb2a50419371a02fc6d1cc6
.gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a21be10 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +chrome.zip
grinnellplans/Newlove
354f14ed39c05a996e3352797ab35a8ed33462a2
Simple Makefile to build for Chrome
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ba1356d --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build: chrome.zip + +chrome.zip: manifest.json newlove.user.js + zip chrome.zip manifest.json newlove.user.js
grinnellplans/Newlove
6255267207547fb8a7352865e0ef3d87d5d0bad0
Bump script version
diff --git a/newlove.user.js b/newlove.user.js index c5425eb..c09ec3b 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,172 +1,172 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
d3d3b108f4a9ed927d31c9743e9ff5dbde7c27dd
Add @downloadUrl declaration
diff --git a/newlove.user.js b/newlove.user.js index 0d9c14d..c5425eb 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,171 +1,172 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
f8ebce297cb4f385a9877c68207544a06cdddb2b
Replace Greasemonkey-specific commands, now compat
diff --git a/newlove.user.js b/newlove.user.js index c8856ca..0d9c14d 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,149 +1,171 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
4ecdda3e7fd166712b8d7a54b314e2cdb1ade114
New release to accommodate Chrome changes
diff --git a/manifest.json b/manifest.json index 71f4a87..e666c0d 100644 --- a/manifest.json +++ b/manifest.json @@ -1 +1 @@ -{"manifest_version":2,"version":"1.3.2","name":"GrinnellPlans NewLove","description":"Shows only new planlove in the quicklove page.","content_scripts":[{"matches":["*://*.grinnellplans.com/sear...
grinnellplans/Newlove
ed3999c0002871efd4620c1ca15228b95ccebd2a
Remove Greasemonkey-specific commands
diff --git a/newlove.user.js b/newlove.user.js index 769d7ee..aedc125 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,152 +1,147 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
112aa2d220e168d7fbb9638d4b8e60e852bd9e1a
Add version number to script
diff --git a/newlove.user.js b/newlove.user.js index 6e1f72a..769d7ee 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,151 +1,152 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
f50d6ab620ab722960c6e5d2ede62f2826d92cd4
Manifest for Chrome extension
diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..71f4a87 --- /dev/null +++ b/manifest.json @@ -0,0 +1 @@ +{"manifest_version":2,"version":"1.3.2","name":"GrinnellPlans NewLove","description":"Shows only new planlove in the quicklove page.","content_scripts":[{"matches":["*://*.grinnellplan...
grinnellplans/Newlove
3e1e5d2a4517f9ef890b7d800ff09897582e1a65
Add https:// URLs to @match lines, enabling newlove for SSLified plans.
diff --git a/newlove.user.js b/newlove.user.js index 95285bb..6e1f72a 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,147 +1,151 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
88975c4cae27b1b8be5558c24a5f0a405215afa2
Change github username
diff --git a/README.markdown b/README.markdown index 0d22e4f..787a8c9 100644 --- a/README.markdown +++ b/README.markdown @@ -1,30 +1,30 @@ GrinnellPlans Newlove Script ============================ This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemonkey...
grinnellplans/Newlove
7537a6efce934c540da54d9b8889ff3f183674c4
Match rules for Chrome
diff --git a/newlove.user.js b/newlove.user.js index 6cb3891..95285bb 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,145 +1,147 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
1a797b90373ac890b095dcfa10f23e697ce56f6a
Updating the docs
diff --git a/README.markdown b/README.markdown index beeccdd..0d22e4f 100644 --- a/README.markdown +++ b/README.markdown @@ -1,24 +1,30 @@ GrinnellPlans Newlove Script ============================ This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemonkey...
grinnellplans/Newlove
32bf1636f6d9b7f2184d0d600a2c984771daabd7
Always use localStorage
diff --git a/newlove.user.js b/newlove.user.js index c810327..6cb3891 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,151 +1,145 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
0e489e102d412f215ef8023d7fec6f281d8eeab0
Better variable names
diff --git a/newlove.user.js b/newlove.user.js index e9e6ed2..c810327 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,151 +1,151 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
8bf565116cc0d3b964d9ff68157313e02660cf64
Whitespace
diff --git a/newlove.user.js b/newlove.user.js index d9c9dcc..e9e6ed2 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,151 +1,151 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
5830a54146366fa6506c93224458dbda3e84c0cf
Comment cleanup
diff --git a/newlove.user.js b/newlove.user.js index e1f0ae3..d9c9dcc 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,147 +1,151 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
9d6d950616b092d11087b10e620d9453acbdfb05
No longer try to upgrade from old version
diff --git a/newlove.user.js b/newlove.user.js index 98b719e..e1f0ae3 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,154 +1,147 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
c19dbbaa9fa2e899753026506778058d23c8292b
Cleaner array manipulation
diff --git a/newlove.user.js b/newlove.user.js index d97e1aa..98b719e 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,155 +1,154 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
a4bdacabb9e549989a03b5913483a7babcfeb430
Changing a variable name, should fix Firefox 4
diff --git a/newlove.user.js b/newlove.user.js index 53704f2..d97e1aa 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,151 +1,155 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
635a67252898c62c24fdac537862f4ec70d1d938
Removing timing code
diff --git a/newlove.user.js b/newlove.user.js index 04f3216..53704f2 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,165 +1,151 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
b1a15661fda50082860953cc3ee04102d018f9e6
Use native JSON object
diff --git a/newlove.user.js b/newlove.user.js index 46253d1..5656830 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,250 +1,164 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
ded17e3f4fd17283cc28d6953b25d7a83163663d
Only set JSON, but try to upgrade cleanly
diff --git a/newlove.user.js b/newlove.user.js index f8155b4..46253d1 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,249 +1,250 @@ /* Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
311c175a8efcd239c2b1821015646419e81d5f12
Wow, this script is *old*.
diff --git a/newlove.user.js b/newlove.user.js index 5fa7c8d..f8155b4 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,249 +1,249 @@ /* - Copyright 2007-2009 Ian Young + Copyright 2007-2011 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GN...
grinnellplans/Newlove
215cb6f4990255984e016ab1c48c5d1ccccde4ca
Use localStorage when possible, from [nichols]
diff --git a/newlove.user.js b/newlove.user.js index ab06c9d..5fa7c8d 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,155 +1,249 @@ /* Copyright 2007-2009 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
fefc12b605691003c52113b680b4f337d0e8a4e1
Adding an alternate form of the URL
diff --git a/newlove.user.js b/newlove.user.js index ebfdf8a..ab06c9d 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,154 +1,155 @@ /* Copyright 2007-2009 Ian Young This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as publis...
grinnellplans/Newlove
c1bed792b308a3d591449662b758d2b3ebe21fda
Updating copyright to GPLv3 and adding license
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/> + Everyone is permitted to copy...
grinnellplans/Newlove
73d85a2eecc244bc7e6b0bc1009478b14547cb7b
Updating Greasemonkey link in readme
diff --git a/README.markdown b/README.markdown index 8cc2c1a..971bfc7 100644 --- a/README.markdown +++ b/README.markdown @@ -1,24 +1,24 @@ GrinnellPlans Newlove Script ============================ This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemonkey...
grinnellplans/Newlove
e8c7a50b60e1f5a6360d9af0d30e8b63c81ec067
Some readme touchup
diff --git a/README.markdown b/README.markdown index 46496be..8cc2c1a 100644 --- a/README.markdown +++ b/README.markdown @@ -1,24 +1,24 @@ GrinnellPlans Newlove Script ============================ This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemonkey...
grinnellplans/Newlove
fa8e24329c38366a4ac7cbf9ee8f29a5f8f96f49
Adding content to the readme
diff --git a/README.markdown b/README.markdown index bdc90f8..46496be 100644 --- a/README.markdown +++ b/README.markdown @@ -1,4 +1,24 @@ GrinnellPlans Newlove Script ============================ This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemonkey ...
grinnellplans/Newlove
3040e0a12a188e9307230cb0ba5f9b87097ecc9b
Adding a very simple README for testing
diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..bdc90f8 --- /dev/null +++ b/README.markdown @@ -0,0 +1,4 @@ +GrinnellPlans Newlove Script +============================ + +This is a script that lets you easily find newly added planlove on your quicklove page. It runs under the Greasemo...
grinnellplans/Newlove
f702b67102441e5d59330e39ca9f7b5576abd026
Dropping newlove class support, consolidating to one branch
diff --git a/newlove.user.js b/newlove.user.js index 20ff757..02c12d3 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,164 +1,155 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the...
grinnellplans/Newlove
0f5ed88029f1916d4df4cbed076376f1d44e16d7
Fixing indentation
diff --git a/newlove.user.js b/newlove.user.js index 2fd15f1..20ff757 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,165 +1,164 @@ /* -(c) Ian Young 2007 + (c) Ian Young 2007 -This program is free software; you can redistribute it and/or modify it -under the terms of the GNU General Public License as pu...
grinnellplans/Newlove
613eb4b5c08be81e5a1750480f413d9305b45a1c
Sync version numbers with other branch
diff --git a/newlove.user.js b/newlove.user.js index 8ad2594..d227899 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,156 +1,156 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
grinnellplans/Newlove
e33ffaec18a1b33b54aa615919ba4d0633777de1
Revert "Initial differences between the versions"
diff --git a/newlove.user.js b/newlove.user.js index 8ad2594..2fd15f1 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,156 +1,165 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
grinnellplans/Newlove
9f506e76d9898634ca6f08021ad95054731522bb
Use trim() properly
diff --git a/newlove.user.js b/newlove.user.js index afc4343..8ad2594 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,156 +1,156 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
grinnellplans/Newlove
22a55ccdbb142929c5cfeaffcaabd891de23ce7b
Compatible with old (updated) interface as well as new interface
diff --git a/newlove.user.js b/newlove.user.js index b52a9c3..afc4343 100644 --- a/newlove.user.js +++ b/newlove.user.js @@ -1,156 +1,156 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free So...
grinnellplans/Newlove
24ce68562e3a6ff847255b10f3a159bc2ba4926c
Fixing to work with Plans3
diff --git a/newlove.js b/newlove.js index 461b7a2..b52a9c3 100644 --- a/newlove.js +++ b/newlove.js @@ -1,151 +1,156 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
a23cd54ee5b58dfa1a9f75970b526003c65da7eb
Initial differences between the versions
diff --git a/newlove.js b/newlove.js index eab6a23..461b7a2 100644 --- a/newlove.js +++ b/newlove.js @@ -1,160 +1,151 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
39667efd38a89622a274a45573f48ae4d326c1cc
Unnecessary line
diff --git a/newlove.js b/newlove.js index 4ff88c9..eab6a23 100644 --- a/newlove.js +++ b/newlove.js @@ -1,161 +1,160 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
f0938560672425af8be118b824fd806dc2dac91a
It seems to be working...
diff --git a/newlove.js b/newlove.js index 3726772..4ff88c9 100644 --- a/newlove.js +++ b/newlove.js @@ -1,158 +1,161 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
59abab9926bbb6951e050157d34ba87587c3bceb
Removing 'everyone' feature for now because it won't work
diff --git a/newlove.js b/newlove.js index 3726772..adfa0ec 100644 --- a/newlove.js +++ b/newlove.js @@ -1,158 +1,158 @@ /* (c) Ian Young 2007 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
e4807356c3667d9d2c3797963b1d0d96af5b12ff
Added revision history and copyright date
diff --git a/newlove.js b/newlove.js index 53a78a8..3726772 100644 --- a/newlove.js +++ b/newlove.js @@ -1,153 +1,158 @@ /* +(c) Ian Young 2007 + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; e...
grinnellplans/Newlove
e7d535dcd78a0651ea6035d2f10b8a25fccc7239
Added GPL text
diff --git a/newlove.js b/newlove.js index ad6336e..53a78a8 100644 --- a/newlove.js +++ b/newlove.js @@ -1,137 +1,153 @@ +/* +This program is free software; you can redistribute it and/or modify it +under the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2 of the...
grinnellplans/Newlove
7e8770cda2a65317eb2084d50d708766fbe07d0d
Menu items, and a little bit of cleaning
diff --git a/newlove.js b/newlove.js index a8cb5b0..ad6336e 100644 --- a/newlove.js +++ b/newlove.js @@ -1,118 +1,137 @@ // ==UserScript== // @name NewLove // @namespace http://www.grinnellplans.com // @description Highlights new planlove in the quicklove page. // @include http://www.grinn...
grinnellplans/Newlove
6cac4e9a500a0fe2e7d3ee197d39b4d7deb7c68d
Making it remember changes. It's more or less ready for release. Could use a few menu items though, namely one to remove stored username, and one to ignore current changes.
diff --git a/newlove.js b/newlove.js index 5fa0442..a8cb5b0 100644 --- a/newlove.js +++ b/newlove.js @@ -1,118 +1,118 @@ // ==UserScript== // @name NewLove // @namespace http://www.grinnellplans.com // @description Highlights new planlove in the quicklove page. // @include http://www.grinn...
grinnellplans/Newlove
9dd7c86a929895d1d805dc8fb9d637c4c7d8002f
Added username guessing
diff --git a/newlove.js b/newlove.js index 3f8d8df..5fa0442 100644 --- a/newlove.js +++ b/newlove.js @@ -1,112 +1,118 @@ // ==UserScript== // @name NewLove // @namespace http://www.grinnellplans.com // @description Highlights new planlove in the quicklove page. // @include http://www.grinn...
grinnellplans/Newlove
95d6cbb0e7b3aa31897d3be348674400cafe99bd
Simple prompt-for-username scheme
diff --git a/newlove.js b/newlove.js index 6196c47..3f8d8df 100644 --- a/newlove.js +++ b/newlove.js @@ -1,118 +1,112 @@ // ==UserScript== // @name NewLove // @namespace http://www.grinnellplans.com // @description Highlights new planlove in the quicklove page. // @include http://www.grinn...
grinnellplans/Newlove
2ff9fc6f935c174ca37247e5587d90d41ba5097b
Trying to add tricksy username discovery, failing.
diff --git a/newlove.js b/newlove.js index 83fe3fe..6196c47 100644 --- a/newlove.js +++ b/newlove.js @@ -1,98 +1,118 @@ // ==UserScript== // @name NewLove // @namespace http://www.grinnellplans.com // @description Highlights new planlove in the quicklove page. // @include http://www.grinne...
erwan/xbmcfrance2
33c5df25496a23d8cbed19518c00428f4f2e0091
rakefile for easy packaging
diff --git a/rakefile.rb b/rakefile.rb new file mode 100644 index 0000000..e7b83af --- /dev/null +++ b/rakefile.rb @@ -0,0 +1,7 @@ +task :default => [:xpi] + +task :xpi do + rm_f 'vgspy.xpi' + `cd ..;find xbmcfrance2/skins xbmcfrance2/xbmcutils xbmcfrance2/*.py -type f \ + | egrep -v "(#|~|pyo)" | xargs zip -r xbmc...
erwan/xbmcfrance2
3a07ea3ca8873a46e67c2a75c6017c604053d495
Remove Sans Frontieres for the release
diff --git a/france2.py b/france2.py index e0b6923..1b8c619 100644 --- a/france2.py +++ b/france2.py @@ -1,120 +1,122 @@ """ Copyright (c) 2007 Daniel Svensson, <dsvensson@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation fil...
erwan/xbmcfrance2
34e535131ea921348a8cb7c431069b7466b95b76
Add "sans frontieres"
diff --git a/default.py b/default.py index 1bdef34..f9076d3 100644 --- a/default.py +++ b/default.py @@ -1,122 +1,117 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
ee5eff82e73725ee72bbd233505db009d32f2d4e
simplify
diff --git a/default.py b/default.py index e4e97b5..1bdef34 100644 --- a/default.py +++ b/default.py @@ -1,124 +1,122 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
d09722431971e52fcef773decaa74ab45e133630
Make the program list more generic
diff --git a/default.py b/default.py index db1c85d..e4e97b5 100644 --- a/default.py +++ b/default.py @@ -1,125 +1,124 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
dba97f4154f654210ef7fb0f30575e9d7994e36c
prefetch, bigger font
diff --git a/default.py b/default.py index 00280c7..db1c85d 100644 --- a/default.py +++ b/default.py @@ -1,120 +1,125 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
c21595efaf290480dea769a0ee89b7bd3b403053
Show the edition name
diff --git a/default.py b/default.py index 88c91fb..00280c7 100644 --- a/default.py +++ b/default.py @@ -1,111 +1,120 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
248da8ade48cf40f1a0d3d73dcb83a1706861f65
Fetch the title of the edition (but don't use it yet)
diff --git a/default.py b/default.py index d33af2f..88c91fb 100644 --- a/default.py +++ b/default.py @@ -1,111 +1,111 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
ae7895186f1d6e714fd82b5ade349166771e179e
cleanup
diff --git a/default.py b/default.py index cec1d66..d33af2f 100644 --- a/default.py +++ b/default.py @@ -1,129 +1,111 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
23702b7fce0d63d5a6b104f6094229323d607a80
cleanup
diff --git a/default.py b/default.py index d52c3cd..cec1d66 100644 --- a/default.py +++ b/default.py @@ -1,148 +1,129 @@ """ Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> This file may be used under the terms of the GNU General Public License Version 2 (the "GPL"), http://www.gnu.org/licenses/gpl.htm...
erwan/xbmcfrance2
889a9eff3aa9370b1e57741e2020bbc4c72d950d
Initial checkin
diff --git a/default.py b/default.py new file mode 100644 index 0000000..d52c3cd --- /dev/null +++ b/default.py @@ -0,0 +1,148 @@ +""" + Copyright (c) 2008 Erwan Loisant <eloisant@gmail.com> + + This file may be used under the terms of the + GNU General Public License Version 2 (the "GPL"), + http://www.gnu.org/license...
gbarr/perl-nagios-plugin-ldap
07d5f31450f064d0acc17cbaac245e5facf09a22
Release 0.04
diff --git a/META.yml b/META.yml index 829b426..5fae181 100644 --- a/META.yml +++ b/META.yml @@ -1,22 +1,22 @@ --- abstract: 'Nagios plugin to observe LDAP server' author: - 'Graham Barr <gbarr@pobox.com>' distribution_type: module generated_by: 'Module::Install version 0.75' license: perl meta-spec: url: ...
gbarr/perl-nagios-plugin-ldap
20a00e7034c67c35e3e5473b384076f943ed157e
Calculate delta using ->epoch
diff --git a/lib/Nagios/Plugin/LDAP.pm b/lib/Nagios/Plugin/LDAP.pm index 95a0522..f86b71d 100644 --- a/lib/Nagios/Plugin/LDAP.pm +++ b/lib/Nagios/Plugin/LDAP.pm @@ -1,409 +1,409 @@ package Nagios::Plugin::LDAP; use strict; use warnings; use base qw(Nagios::Plugin); use Net::LDAP; use Net::LDAP::Util; use N...
gbarr/perl-nagios-plugin-ldap
261f489166d0e5ab5b860228760d0db3d2d66bc5
Release 0.03
diff --git a/META.yml b/META.yml index 5a4516c..829b426 100644 --- a/META.yml +++ b/META.yml @@ -1,22 +1,22 @@ --- abstract: 'Nagios plugin to observe LDAP server' author: - 'Graham Barr <gbarr@pobox.com>' distribution_type: module generated_by: 'Module::Install version 0.75' license: perl meta-spec: url: ...
gbarr/perl-nagios-plugin-ldap
3bc8d8b0a60a471f92632d34534acb52ca5b0cc6
Fix fetching contextCSN from slave
diff --git a/lib/Nagios/Plugin/LDAP.pm b/lib/Nagios/Plugin/LDAP.pm index af898cc..95a0522 100644 --- a/lib/Nagios/Plugin/LDAP.pm +++ b/lib/Nagios/Plugin/LDAP.pm @@ -1,405 +1,409 @@ package Nagios::Plugin::LDAP; use strict; use warnings; use base qw(Nagios::Plugin); use Net::LDAP; use Net::LDAP::Util; use N...
gbarr/perl-nagios-plugin-ldap
2a8870c64c46dc59fe02cbd877da3e804ad9fe56
Avoid Duplicate specification warnings from Getop::Long
diff --git a/META.yml b/META.yml index 4280ab6..5a4516c 100644 --- a/META.yml +++ b/META.yml @@ -1,22 +1,22 @@ --- abstract: 'Nagios plugin to observe LDAP server' author: - 'Graham Barr <gbarr@pobox.com>' distribution_type: module generated_by: 'Module::Install version 0.75' license: perl meta-spec: url: ...
gbarr/perl-nagios-plugin-ldap
1c9e5c3fce5dcfc86102963c9ac08dcdcdd208e1
Add .gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ed48614 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +Makefile +*blib +_test +temp +*.bak diff --git a/MANIFEST b/MANIFEST index 0cbe78b..4910fb1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,18 +1,19 @@ +.gitignore bin/check_ldap_repl inc/Module...
gbarr/perl-nagios-plugin-ldap
df3d36ea034d4ec6784e6040584db7f3fa77f8f4
Initial version
diff --git a/MANIFEST b/MANIFEST new file mode 100644 index 0000000..0cbe78b --- /dev/null +++ b/MANIFEST @@ -0,0 +1,18 @@ +bin/check_ldap_repl +inc/Module/AutoInstall.pm +inc/Module/Install.pm +inc/Module/Install/AutoInstall.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Mo...
lethain/mahou
7350445970c3a3186bf03bfd09600211809474d7
Removed settints specific to my account (which is disabled, so even if you revert the changes, it won't work ;).
diff --git a/app.yaml b/app.yaml index 1733b8c..8620f8b 100644 --- a/app.yaml +++ b/app.yaml @@ -1,18 +1,18 @@ -application: mahou +application: your-app-id version: 1 runtime: python api_version: 1 handlers: - url: /search/.* script: main.py - url: / static_files: static/index.html upload: static/...
lethain/mahou
f7860ac9011e2fc8ab1c953411412c3bf41ca19f
Fixed not updating the retrieved entries after the second batch.
diff --git a/static/WLImageResultsView.j b/static/WLImageResultsView.j index 0dd2b1b..fd45366 100644 --- a/static/WLImageResultsView.j +++ b/static/WLImageResultsView.j @@ -1,80 +1,81 @@ import <Foundation/CPObject.j> import "WLResultsView.j" import "WLImageDisplayView.j" @implementation WLImageResultsView : WLRe...
lethain/mahou
e10eaf7ddfdabc954833f60b257e171028e7fdcd
Fixed typo.
diff --git a/static/WLImageResultsView.j b/static/WLImageResultsView.j index 584aca1..0dd2b1b 100644 --- a/static/WLImageResultsView.j +++ b/static/WLImageResultsView.j @@ -1,82 +1,80 @@ import <Foundation/CPObject.j> import "WLResultsView.j" import "WLImageDisplayView.j" @implementation WLImageResultsView : WLRe...
lethain/mahou
70ce59dc74cf5d38358fa8b6b2f7bbd226650219
Fixed webcell implementation, so that they properly update to new represented objects.
diff --git a/static/WLResultsView.j b/static/WLResultsView.j index 1c9121a..11683e0 100644 --- a/static/WLResultsView.j +++ b/static/WLResultsView.j @@ -1,116 +1,116 @@ import <Foundation/CPObject.j> import "WLScrollView.j" @implementation WLResultsView : WLScrollView { CPArray _results; CPString _searchStri...
lethain/mahou
bb0e0700d3f22f8bf965a700398296e2cae1ed8a
Enabled re-searching when toggling delicious results.
diff --git a/static/WLWebResultsView.j b/static/WLWebResultsView.j index 01abc74..46f070e 100644 --- a/static/WLWebResultsView.j +++ b/static/WLWebResultsView.j @@ -1,117 +1,118 @@ import <Foundation/CPObject.j> import "WLResultsView.j" import "WLURLLabel.j" import "WLHTMLTextField.j" @implementation WLWebResult...
lethain/mahou
06aa7bf19b3d9752b97429a8079a3794fa941c09
Renamed menu item.
diff --git a/static/AppController.j b/static/AppController.j index 227fbec..c6f65ac 100644 --- a/static/AppController.j +++ b/static/AppController.j @@ -1,320 +1,320 @@ import <Foundation/CPObject.j> import "WLTextField.j" import "WLResultsView.j" import "WLImageResultsView.j" import "WLWebResultsView.j" import...
lethain/mahou
f0247b3d4871741c5b683a7aa7e943636d16ac3a
Menu tweaks.
diff --git a/static/AppController.j b/static/AppController.j index b23e481..227fbec 100644 --- a/static/AppController.j +++ b/static/AppController.j @@ -1,319 +1,320 @@ import <Foundation/CPObject.j> import "WLTextField.j" import "WLResultsView.j" import "WLImageResultsView.j" import "WLWebResultsView.j" import...
lethain/mahou
db8064d33cd21a45f31da0c1135d6911d4fb3292
Can now select number of results per search.
diff --git a/main.py b/main.py index d7ed4b3..727ec45 100755 --- a/main.py +++ b/main.py @@ -1,88 +1,91 @@ #!/usr/bin/env python # # Copyright 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a...