repo string | commit string | message string | diff string |
|---|---|---|---|
bcd/exec09 | 4bd5b781ce6138c078935778808cc22128459cd2 | Write timing results to log file when LOG6809 environment variable is set. The value indicates the filename to use. | diff --git a/6809.c b/6809.c
index eb16312..fd66bbd 100644
--- a/6809.c
+++ b/6809.c
@@ -1,663 +1,676 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and... |
bcd/exec09 | 9adac9fb10670adb7d95341d6e6c185f70d6dc16 | Remove more old code. | diff --git a/wpc.c b/wpc.c
index c91b66e..32246bd 100644
--- a/wpc.c
+++ b/wpc.c
@@ -1,693 +1,671 @@
/*
* Copyright 2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public... |
bcd/exec09 | ead90cf3baea3956f06dba5c2053df62627bacc7 | Delete OLDSYS code. | diff --git a/6809.h b/6809.h
index dc2eec4..2b0f742 100644
--- a/6809.h
+++ b/6809.h
@@ -1,243 +1,240 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or mo... |
bcd/exec09 | 861e3d81699e4b08e9c3cbaf081851b0d4e2d934 | Improve DMD handling for mono images with no page flipping. | diff --git a/wpc.c b/wpc.c
index c91b66e..1fe120f 100644
--- a/wpc.c
+++ b/wpc.c
@@ -1,693 +1,720 @@
/*
* Copyright 2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public... |
bcd/exec09 | 6571e6952b9e1c88b510a450a90f903167ad0b91 | Add get_flags(). | diff --git a/6809.c b/6809.c
index 248b8e0..eb16312 100644
--- a/6809.c
+++ b/6809.c
@@ -1,968 +1,974 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and... |
bcd/exec09 | 5a2edae42da825020cfb5544b012ae35cd1459ce | Exit with sim_error() on invalid post code. | diff --git a/6809.c b/6809.c
index 3084e61..248b8e0 100644
--- a/6809.c
+++ b/6809.c
@@ -1,898 +1,890 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and... |
bcd/exec09 | 11ff0f8fa870d11b22ff19d3e9d332c599c42819 | Exit with sim_error() on cwai, sync opcodes. | diff --git a/6809.c b/6809.c
index 03e0a33..3084e61 100644
--- a/6809.c
+++ b/6809.c
@@ -1104,1034 +1104,1032 @@ abx (void)
static void
addd (unsigned val)
{
unsigned arg = (A << 8) | B;
unsigned res = arg + val;
C = res & 0x10000;
Z = res &= 0xffff;
OV = ((arg ^ res) & (val ^ res)) >> 8;
A = N =... |
bcd/exec09 | d41b20660e84b2e3c5169364baaa1f436056b671 | Bump version to 0.92 | diff --git a/configure b/configure
index ebb5c23..066c191 100755
--- a/configure
+++ b/configure
@@ -1,2558 +1,2558 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for m6809-run 0.91.
+# Generated by GNU Autoconf 2.61 for m6809-run 0.92.
#
# Report... |
bcd/exec09 | 919256ad16943f5a1ffb75a9f370b6dcd69d661a | Add includes to SOURCES so they are distributed. | diff --git a/Makefile.am b/Makefile.am
index 43fdca0..b937dc1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,6 @@
-m6809_run_SOURCES = 6809.c main.c monitor.c machine.c eon.c wpc.c symtab.c command.c fileio.c wpclib.c
+m6809_run_SOURCES = \
+ 6809.c main.c monitor.c machine.c eon.c wpc.c \
+ symtab.c command.c f... |
bcd/exec09 | 5564c72bc6b1bb343ea8826d08df4db5e894adcb | Modify WPC backend to send DMD date to a remote client. | diff --git a/Makefile.am b/Makefile.am
index daf5acd..43fdca0 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,2 +1,2 @@
-m6809_run_SOURCES = 6809.c main.c monitor.c machine.c eon.c wpc.c symtab.c command.c fileio.c
+m6809_run_SOURCES = 6809.c main.c monitor.c machine.c eon.c wpc.c symtab.c command.c fileio.c wpclib.c
... |
bcd/exec09 | 83406a7206ae800907218b8bccfec401b8f0b912 | Remove change_pc() runtime check for goodness. | diff --git a/6809.c b/6809.c
index ad1c616..03e0a33 100644
--- a/6809.c
+++ b/6809.c
@@ -1,685 +1,687 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and... |
bcd/exec09 | 0cf2cf0f56c66a0b7eb48f13d430ac2f6fd37566 | Remove sym_lookup on function call for performance. | diff --git a/monitor.c b/monitor.c
index 531b32f..2fd38a1 100644
--- a/monitor.c
+++ b/monitor.c
@@ -787,639 +787,641 @@ opcode_t codes11[256] = {
{_undoc, _illegal},
{_undoc, _illegal},
{_undoc, _illegal},
{_undoc, _illegal},
{_cmps, _indexed},
{_undoc, _illegal},
{_undoc, _illegal},
{_undoc, _... |
bcd/exec09 | 7902d886280a21f3dc678899f46ddb91dba7d43d | Remove redundant include. | diff --git a/fileio.c b/fileio.c
index 2aef61e..ac0e681 100644
--- a/fileio.c
+++ b/fileio.c
@@ -1,62 +1,61 @@
-#include <stdio.h>
#include "6809.h"
void
path_init (struct pathlist *path)
{
path->count = 0;
}
void
path_add (struct pathlist *path, const char *dir)
{
char *dir2;
dir2 = path->entry[pat... |
bcd/exec09 | a3d1551cdabd833306e7b753ec5f35b20f57129b | Honor autoconf macros for including termios.h | diff --git a/command.c b/command.c
index 086711d..e0d68e8 100644
--- a/command.c
+++ b/command.c
@@ -1,521 +1,522 @@
#include "6809.h"
#include "monitor.h"
#include "machine.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
#include <sys/errno.h>
-#include <termios.h>
+#ifdef HAVE_TERMIOS_H
+# incl... |
bcd/exec09 | 5f3c01ada61a89e34282f6d021f2c5976289fafd | Remove includes not needed. | diff --git a/symtab.c b/symtab.c
index 6a905a2..f7058ce 100644
--- a/symtab.c
+++ b/symtab.c
@@ -1,237 +1,233 @@
/*
* Copyright 2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of the Portable 6809 Simulator.
*
* The Simulator is free software; you can redistribute it and/or modify
* it und... |
bcd/exec09 | 3a141f91182fe09c9328992a9f68070df8396afd | Initialize input to stdin by default. | diff --git a/command.c b/command.c
index 62de1aa..086711d 100644
--- a/command.c
+++ b/command.c
@@ -1013,517 +1013,518 @@ void cmd_measure (void)
if (!arg)
return;
addr = eval_mem (arg);
printf ("Measuring ");
print_addr (addr);
printf (" back to ");
print_addr (to_absolute (retaddr));
... |
bcd/exec09 | a6b8b2b494d48e826d45731c1d7e8d91d5a9f70c | Print cycles correctly on exit. | diff --git a/6809.c b/6809.c
index 2ee7e27..ad1c616 100644
--- a/6809.c
+++ b/6809.c
@@ -1,662 +1,664 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and... |
bcd/exec09 | 98659eed7d7e9250a523295ad15c64880f709252 | Clean up help. | diff --git a/main.c b/main.c
index cf95380..e778eb5 100644
--- a/main.c
+++ b/main.c
@@ -1,407 +1,408 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006-2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/... |
bcd/exec09 | 0f6e797c7eab379c2732ca829a5d959df8230c40 | Add shell commands to the README. | diff --git a/README b/README
index 7882b94..2ae16b0 100644
--- a/README
+++ b/README
@@ -1,78 +1,154 @@
This is a rewrite of Arto Salmi's 6809 simulator. Many changes
have been made to it. This program remains licensed under the
GNU General Public License.
Input Files
Machines
The simulator now has the ... |
bcd/exec09 | ab5081f5cf87ecfdab45454ed28ade87610775b0 | Allow only one WPC ASIC at a time, kept in the global 'wpc'. | diff --git a/wpc.c b/wpc.c
index 13cdebb..c22cb69 100644
--- a/wpc.c
+++ b/wpc.c
@@ -1,640 +1,648 @@
/*
- * Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
+ * Copyright 2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it... |
bcd/exec09 | e6464804b79ef702dffecc1c55b3fbe4023cd0fa | Add cpu_read16(), a faster way to read 16-bits at once. This is only a slight optimization, but it gets exercised a lot. | diff --git a/6809.h b/6809.h
index 0e50849..dc2eec4 100644
--- a/6809.h
+++ b/6809.h
@@ -1,243 +1,243 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or mo... |
bcd/exec09 | f15e70c0af03e913e8663ed35a84ac60843e2cb8 | Change the read/write hooks to return immediately if there are no active breakpoints. This makes things run much faster. | diff --git a/command.c b/command.c
index 9c609c7..62de1aa 100644
--- a/command.c
+++ b/command.c
@@ -115,1407 +115,1415 @@ eval_historical (unsigned int id)
void
assign_virtual (const char *name, unsigned long val)
{
unsigned long v_val;
if (!sym_find (&auto_symtab, name, &v_val, 0))
{
virtual... |
bcd/exec09 | d4a28b85dc0b7796fe57d77c2ffa5aaffdfb1fa4 | Throw FIRQ every 8ms now. | diff --git a/main.c b/main.c
index 2415577..cf95380 100644
--- a/main.c
+++ b/main.c
@@ -1,400 +1,407 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006-2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/... |
bcd/exec09 | eabd3c1c5bb6f2ad27e1c919f8d1bbb74579a4b8 | Remove hack from WPC DMD update. | diff --git a/wpc.c b/wpc.c
index 1a6eda7..13cdebb 100644
--- a/wpc.c
+++ b/wpc.c
@@ -1,643 +1,640 @@
/*
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General ... |
bcd/exec09 | 51b85edef9072da1aa67c746fe28439c273f1a21 | CHange check_break() not to take a parameter. | diff --git a/6809.c b/6809.c
index d5abb98..2ee7e27 100644
--- a/6809.c
+++ b/6809.c
@@ -1223,1025 +1223,1025 @@ pshs (void)
{
cpu_clk -= 2;
S = (S - 2) & 0xffff;
write_stack16 (S, X);
}
if (post & 0x08)
{
cpu_clk -= 1;
S = (S - 1) & 0xffff;
write_stack (S, DP... |
bcd/exec09 | 790779370ff9b13117e0ad3901fa34bc48e456c6 | Remove debug prints about command-line parsing. | diff --git a/main.c b/main.c
index 159b02c..2415577 100644
--- a/main.c
+++ b/main.c
@@ -1,400 +1,400 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006-2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/... |
bcd/exec09 | d06e899f783426517ab437cdf93e349e6a695729 | Implement FIRQ. It is currently asserted anytime IRQ is, wrong I know. | diff --git a/6809.c b/6809.c
index 3fa82d5..d5abb98 100644
--- a/6809.c
+++ b/6809.c
@@ -1,2030 +1,2038 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it a... |
bcd/exec09 | 41421a0a42d12c2d3e718cccd6f5f2f0816a3047 | Fix some compiler warnings. | diff --git a/machine.c b/machine.c
index 4e0547b..ac234ad 100644
--- a/machine.c
+++ b/machine.c
@@ -1,648 +1,647 @@
/*
* Copyright 2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the terms of the GN... |
bcd/exec09 | adb908889ed6f88795319ee7b77d8f1f8dfd4204 | Remove old-style command-line parsing. | diff --git a/main.c b/main.c
index b55be0d..9a8241d 100644
--- a/main.c
+++ b/main.c
@@ -1,460 +1,399 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006-2008 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/... |
bcd/exec09 | 8bf7279aecc13a8c948c948aa029b0a221ae1a1e | Initial DMD paging implementation. | diff --git a/wpc.c b/wpc.c
index bcfdc2a..1a6eda7 100644
--- a/wpc.c
+++ b/wpc.c
@@ -1,593 +1,643 @@
/*
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the terms of the GNU General ... |
bcd/exec09 | 3165a5190f3f4dbd3e2298116c67ab10a1169fd4 | Add the tracedump (td) command. | diff --git a/command.c b/command.c
index 5d1b323..9c609c7 100644
--- a/command.c
+++ b/command.c
@@ -1,1484 +1,1521 @@
#include "6809.h"
#include "monitor.h"
#include "machine.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/errno.h>
#include <termios.h>
typedef struct
{
uns... |
bcd/exec09 | 1cc7e35be82ab119b87c9c36ecf206631020787b | Fix so that script files can start/stop the CPU OK. | diff --git a/Makefile.in b/Makefile.in
index 53b1791..5303319 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,546 +1,547 @@
# Makefile.in generated by automake 1.9.6 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005 Free Software Found... |
bcd/exec09 | ed53d9108a6e9df09d9f4f9a95ffaff338242e52 | Bump to version 0.91. | diff --git a/configure b/configure
index b03c0fe..bababb8 100755
--- a/configure
+++ b/configure
@@ -1,2558 +1,2558 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.61 for m6809-run 0.90.
+# Generated by GNU Autoconf 2.61 for m6809-run 0.91.
#
# Report... |
bcd/exec09 | dd523b354af2f318965d8f8e990a4b965f24ae27 | Misc. enhancements: | diff --git a/6809.h b/6809.h
index f4c3cdc..a6d0baa 100644
--- a/6809.h
+++ b/6809.h
@@ -1,241 +1,243 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or mo... |
bcd/exec09 | 94992fc8f9e4e4fbd22f337da8d9f795150c9546 | Add the runfor command. | diff --git a/Makefile.in b/Makefile.in
index 5303319..53b1791 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,547 +1,546 @@
# Makefile.in generated by automake 1.9.6 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005 Free Software Found... |
bcd/exec09 | 388134422f01037d921760ae22910d41960a4228 | Fix executable permissions on text files again. | diff --git a/6809.c b/6809.c
old mode 100755
new mode 100644
diff --git a/command.c b/command.c
old mode 100755
new mode 100644
diff --git a/machine.c b/machine.c
old mode 100755
new mode 100644
diff --git a/main.c b/main.c
old mode 100755
new mode 100644
diff --git a/monitor.c b/monitor.c
old mode 100755
new mode 1006... |
bcd/exec09 | f290a98494a3ec0aa0dc46bb20294f205bacf424 | Remove old comment. | diff --git a/wpc.c b/wpc.c
old mode 100755
new mode 100644
index 4545165..01f3c7b
--- a/wpc.c
+++ b/wpc.c
@@ -1,537 +1,536 @@
/*
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or modify
* it under the ... |
bcd/exec09 | 0456e858bcb2c344f0cd81c658583b9f8f2ad1b9 | Further updates: | diff --git a/6809.c b/6809.c
index 14046e1..3fa82d5 100644
--- a/6809.c
+++ b/6809.c
@@ -1,1998 +1,2036 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it a... |
bcd/exec09 | 828cc48f9b7a42d5fba34b23d776bec6336a0063 | Further improvements: | diff --git a/6809.c b/6809.c
old mode 100755
new mode 100644
diff --git a/6809.h b/6809.h
old mode 100755
new mode 100644
index c656271..f4c3cdc
--- a/6809.h
+++ b/6809.h
@@ -1,226 +1,241 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file i... |
bcd/exec09 | 58fe855dc2c605b0b72a8cc518b822e9b1862bd3 | Continued improvements: | diff --git a/6809.c b/6809.c
index 683361e..14046e1 100755
--- a/6809.c
+++ b/6809.c
@@ -911,1025 +911,1025 @@ inc (unsigned arg)
OV = ~arg & res;
cpu_clk -= 2;
return res;
}
static unsigned
ld (unsigned arg)
{
unsigned res = arg;
N = Z = res;
OV = 0;
return res;
}
static unsigned
... |
bcd/exec09 | 921df4e896dafe6d4e53335ce09d4341958f1468 | Add new fileio.c. | diff --git a/fileio.c b/fileio.c
new file mode 100644
index 0000000..a0fd2c7
--- /dev/null
+++ b/fileio.c
@@ -0,0 +1,58 @@
+
+#include <stdio.h>
+
+struct pathlist
+{
+ int count;
+ char *entry[32];
+};
+
+
+void
+path_init (struct pathlist *path)
+{
+ path->count = 0;
+}
+
+void
+path_add (struct pathlist *path, const... |
bcd/exec09 | aa0bf2ce91a7f93f0948ca6770f3a18fcfbb9ad3 | Changes made during PAPA 11: | diff --git a/6809.h b/6809.h
index a84b7a7..c656271 100755
--- a/6809.h
+++ b/6809.h
@@ -1,225 +1,226 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or mo... |
bcd/exec09 | 7384cbf517ff9d85cb44196ffddbf451b7a49580 | Latest batch of changes: | diff --git a/6809.h b/6809.h
index 8b9bfe9..a84b7a7 100755
--- a/6809.h
+++ b/6809.h
@@ -1,226 +1,225 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; you can redistribute it and/or mo... |
bcd/exec09 | b569ecb7893691af3cd9c5cf4b844d1b5febe48b | Continued improvements: | diff --git a/6809.c b/6809.c
old mode 100644
new mode 100755
index 3764570..683361e
--- a/6809.c
+++ b/6809.c
@@ -1,558 +1,559 @@
/*
* Copyright 2001 by Arto Salmi and Joze Fabcic
* Copyright 2006, 2007 by Brian Dominy <brian@oddchange.com>
*
* This file is part of GCC6809.
*
* GCC6809 is free software; yo... |
rspeicher/JuggyWishlists | f27cb131e12a3a7cb6d6f98546001b3f88d521e6 | Remove an unused variable | diff --git a/JuggyWishlists.lua b/JuggyWishlists.lua
index 3c0ad3f..74a7b3f 100644
--- a/JuggyWishlists.lua
+++ b/JuggyWishlists.lua
@@ -1,34 +1,33 @@
-- Huge thanks to tekkub's Engravings for most of this code.
Wishlists = {}
-local sources = Wishlists
local origs = {}
local R, G, B = 1, 136/255, 0
local db
lo... |
daaku/python-colorized-logger | 7f38c1243cf18d1df2bed01ae6fb378f80fea0f3 | use escape codes instead of binary data, added readme/gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..52e4e61
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+*.pyc
+*.pyo
diff --git a/README.markdown b/README.markdown
new file mode 100644
index 0000000..a7dbf86
--- /dev/null
+++ b/README.markdown
@@ -0,0 +1,5 @@
+colorized-logger
+================... |
daaku/python-colorized-logger | 82713b89de0d33736fede8b458fd1a5025fcae0c | haha - never worked, copy paste doesnt mix with binary data | diff --git a/__init__.py b/__init__.py
index 301c23e..48d3243 100644
--- a/__init__.py
+++ b/__init__.py
@@ -1,15 +1,17 @@
import logging
-DEF_COLOR="^[[0m"
-CYAN="^[[36;01m"
-GREEN="^[[32;01m"
-YELLOW="^[[33;01m"
-RED="^[[31;01m"
+DEF_COLOR="[0m"
+BLUE="[34;01m"
+CYAN="[36;01m"
+GREEN="[32;01m"
+RED="[31;01m... |
func09/Basic-Scss | 52bc01f5bcf05715946813fb9de152d551b3f265 | ãã©ã¼ã ããã¤ã¢ãã°å¨ã | diff --git a/scss/flash.scss b/scss/flash.scss
new file mode 100644
index 0000000..ae7e386
--- /dev/null
+++ b/scss/flash.scss
@@ -0,0 +1,41 @@
+.error, .notice, .successã{
+
+ border: 1px solid #CCCCCC;
+ font-weight: bold;
+ margin: 0 0 1em;
+
+ p {
+ padding: 1px;
+ }
+
+ }
+
+.error, .notice, .... |
func09/Basic-Scss | abacdaa1731a5b15adfa3f43ac16c6cfe671acd5 | ãªã»ããCSS | diff --git a/scss/mixins.scss b/scss/mixins.scss
new file mode 100644
index 0000000..770ab51
--- /dev/null
+++ b/scss/mixins.scss
@@ -0,0 +1,27 @@
+@mixin border-radius($tl: 0px, $tr: 0px, $br: 0px, $bl: 0px) {
+ -webkit-border-top-left-radius: $tl;
+ -webkit-border-top-right-radius: $tr;
+ -webkit-border-bottom-rig... |
reddavis/Frequency-Distribution | f6cb61204954c5c9504a7040059160ad6e7528a2 | Regenerated gemspec for version 0.0.0 | diff --git a/frequency_distribution.gemspec b/frequency_distribution.gemspec
index 91931b7..1b21c06 100644
--- a/frequency_distribution.gemspec
+++ b/frequency_distribution.gemspec
@@ -1,54 +1,55 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspe... |
reddavis/Frequency-Distribution | 4455578c445929867fb166d321503919ba868a12 | remove gchart | diff --git a/lib/frequency_distribution.rb b/lib/frequency_distribution.rb
index a2a0ea1..9165ecd 100644
--- a/lib/frequency_distribution.rb
+++ b/lib/frequency_distribution.rb
@@ -1,45 +1,43 @@
-require 'gchart'
-
class FrequencyDistribution
def initialize(conditions, *events)
@conditions = conditions
@e... |
reddavis/Frequency-Distribution | da409d61cde8fe0e5d6843151db54a55c780ab2e | for first release | diff --git a/Rakefile b/Rakefile
index dcd9e5e..269b395 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,45 +1,45 @@
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "frequency_distribution"
- gem.summary = %Q{TODO: one-line summary of your gem}
- gem.desc... |
reddavis/Frequency-Distribution | 550603f5d1239062b3ff8888ae5820520197dca5 | Version bump to 0.0.0 | diff --git a/VERSION b/VERSION
new file mode 100644
index 0000000..77d6f4c
--- /dev/null
+++ b/VERSION
@@ -0,0 +1 @@
+0.0.0
|
tomasmalmsten/c2dm-web-server | dcf1edc6c6b36e208c09afa58bdfe8ce1a90f84a | Added some more to README | diff --git a/README b/README
index eacbfa9..5cf3982 100644
--- a/README
+++ b/README
@@ -1,13 +1,17 @@
This is the web application server to support the C2DM application test.
You are free to use and abuse this code as is without any warranty.
Please note that when you have check the code out you will need to is... |
tomasmalmsten/c2dm-web-server | 894ebbecb6565364582d4ddd424812376212850c | Added README | diff --git a/README b/README
new file mode 100644
index 0000000..eacbfa9
--- /dev/null
+++ b/README
@@ -0,0 +1,13 @@
+This is the web application server to support the C2DM application test.
+
+You are free to use and abuse this code as is without any warranty.
+
+Please note that when you have check the code out you w... |
hardbap/wanna | 96276496730e5d586b26d802fc286a50d1e2b454 | minor updates to controller/view templates. | diff --git a/wanna_scaffold/templates/controller.rb b/wanna_scaffold/templates/controller.rb
index 48fd1dd..1c12472 100644
--- a/wanna_scaffold/templates/controller.rb
+++ b/wanna_scaffold/templates/controller.rb
@@ -1,65 +1,65 @@
class <%= controller_class_name %>Controller < ApplicationController
def index
@... |
hardbap/wanna | 96ee90aa40f8a45b6918decc0f8b82a7d81f8b0e | add a Readme | diff --git a/Readme.textile b/Readme.textile
new file mode 100644
index 0000000..e69de29
|
hardbap/wanna | 904aba5d5b989e07f2ea8271153067b5cfba449a | Clean up factory & migration templates. | diff --git a/wanna_model/templates/factory.rb b/wanna_model/templates/factory.rb
index ad48dc3..e972766 100644
--- a/wanna_model/templates/factory.rb
+++ b/wanna_model/templates/factory.rb
@@ -1,5 +1,5 @@
Factory.define :<%= file_name %> do |factory|
-<% for attribute in attributes -%>
+<%- attributes.each do |attribu... |
hardbap/wanna | a51cbe0319668bcf548c3f9928a3e444bd634820 | Clean up unit_test template. | diff --git a/wanna_model/templates/unit_test.rb b/wanna_model/templates/unit_test.rb
index 7c94578..a202023 100644
--- a/wanna_model/templates/unit_test.rb
+++ b/wanna_model/templates/unit_test.rb
@@ -1,10 +1,10 @@
require File.join(File.dirname(__FILE__), '..', 'test_helper')
-
+
class <%= class_name %>Test < Activ... |
hardbap/wanna | 7d8af68d569f5522b7be9b0e2979bea69fcc9c31 | Fix require test_helper in helper_test template. | diff --git a/wanna_scaffold/templates/helper_test.rb b/wanna_scaffold/templates/helper_test.rb
index 6388cbd..62093ad 100644
--- a/wanna_scaffold/templates/helper_test.rb
+++ b/wanna_scaffold/templates/helper_test.rb
@@ -1,4 +1,4 @@
-require 'test_helper'
+require File.join(File.dirname(__FILE__), '..', 'test_helper')... |
hardbap/wanna | 1f731fdd21a5b2016ebc837d0fb6962aa0d1bff9 | Add wanna_integration generator. | diff --git a/wanna_integration/USAGE b/wanna_integration/USAGE
new file mode 100644
index 0000000..c733b25
--- /dev/null
+++ b/wanna_integration/USAGE
@@ -0,0 +1,8 @@
+Description:
+ Stubs out a new integration test. Pass the name of the test, either
+ CamelCased or under_scored, as an argument. The new test clas... |
hardbap/wanna | f48a6be45c24a70f1dbb2a03c31b8390b883e15e | Clean up scaffold options. | diff --git a/wanna_scaffold/wanna_scaffold_generator.rb b/wanna_scaffold/wanna_scaffold_generator.rb
index 0ce8bad..53ee038 100644
--- a/wanna_scaffold/wanna_scaffold_generator.rb
+++ b/wanna_scaffold/wanna_scaffold_generator.rb
@@ -1,119 +1,125 @@
class WannaScaffoldGenerator < Rails::Generator::NamedBase
defaul... |
hardbap/wanna | df35ad21d6507fbf4baeb809935e528ac69d5be8 | Add option to generate functional test. | diff --git a/wanna_scaffold/wanna_scaffold_generator.rb b/wanna_scaffold/wanna_scaffold_generator.rb
index f984b5d..0ce8bad 100644
--- a/wanna_scaffold/wanna_scaffold_generator.rb
+++ b/wanna_scaffold/wanna_scaffold_generator.rb
@@ -1,111 +1,119 @@
class WannaScaffoldGenerator < Rails::Generator::NamedBase
defaul... |
hardbap/wanna | 1a500801c17b1fa794888b1e973ead4c80d4f57a | Add option to skip helpers to scaffold. | diff --git a/wanna_scaffold/wanna_scaffold_generator.rb b/wanna_scaffold/wanna_scaffold_generator.rb
index 6c9fded..f984b5d 100644
--- a/wanna_scaffold/wanna_scaffold_generator.rb
+++ b/wanna_scaffold/wanna_scaffold_generator.rb
@@ -1,107 +1,111 @@
class WannaScaffoldGenerator < Rails::Generator::NamedBase
- defaul... |
rbdixon/rbdpuppet | f0c9a5bcf93b6180a74129fb7114d1ac49c211eb | evacuate | diff --git a/manifests/.gitignore b/manifests/.gitignore
new file mode 100644
index 0000000..d680f5d
--- /dev/null
+++ b/manifests/.gitignore
@@ -0,0 +1 @@
+passwords.pp
diff --git a/manifests/classes/pkgs.pp b/manifests/classes/pkgs.pp
index a505178..2fe3330 100644
--- a/manifests/classes/pkgs.pp
+++ b/manifests/class... |
rbdixon/rbdpuppet | 142787282a3eb2716e851c35a6ed8d40be17ac02 | basic work on packages, mail, and ssh | diff --git a/.gitignore b/.gitignore
index b25c15b..21b13a0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
*~
+manifests/.gitignore
diff --git a/manifests/classes/pkgs.pp b/manifests/classes/pkgs.pp
index 925bf5f..a505178 100644
--- a/manifests/classes/pkgs.pp
+++ b/manifests/classes/pkgs.pp
@@ -1,7 +1,13 @@
-... |
rbdixon/rbdpuppet | 70bd76e6777948766bea14bf9d69ee6a967765d9 | First steps. git, inkscape, emacs | diff --git a/manifests/classes/pkgs.pp b/manifests/classes/pkgs.pp
new file mode 100644
index 0000000..925bf5f
--- /dev/null
+++ b/manifests/classes/pkgs.pp
@@ -0,0 +1,7 @@
+$packages = ["emacs", "git", "git-core", "inkscape"]
+
+class pkgs {
+ package{$packages:
+ ensure => installed
+ }
+}
diff --git a/manifest... |
rbdixon/rbdpuppet | 1a794d21f61756417c64fedb4c7c0e73019a9bc5 | gitignore | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..b25c15b
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*~
|
rbdixon/rbdpuppet | c5ae6f860110bec503874f8d9eed57201f9a7262 | Stock install manifests | diff --git a/fileserver.conf b/fileserver.conf
new file mode 100644
index 0000000..19cccda
--- /dev/null
+++ b/fileserver.conf
@@ -0,0 +1,17 @@
+# This file consists of arbitrarily named sections/modules
+# defining where files are served from and to whom
+
+# Define a section 'files'
+# Adapt the allow/deny settings t... |
tinyjs/simple-jquery-form-validation | 04e4587fb5525933041639ab1f943bd5ea06a8f3 | inital commit | diff --git a/index.html b/index.html
new file mode 100755
index 0000000..915c426
--- /dev/null
+++ b/index.html
@@ -0,0 +1,87 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>... |
p3lim-wow/Devak | be2a3a8b97a8f6a327354b6bd1487851cbc39abf | AddonLoader greatness | diff --git a/Devak.lua b/Devak.lua
index 9c3530b..32d5161 100644
--- a/Devak.lua
+++ b/Devak.lua
@@ -1,78 +1,82 @@
--[[
Copyright (c) 2010 Adrian L Lange <adrianlund@gmail.com>
All rights reserved.
You're allowed to use this addon, free of monetary charge,
but you are not allowed to modify, alter, or redis... |
p3lim-wow/Devak | d43b4cd7f74102ea3077416ec22d1d8a8eb6040a | Zone/login updates | diff --git a/Devak.lua b/Devak.lua
index d9917bb..9c3530b 100644
--- a/Devak.lua
+++ b/Devak.lua
@@ -1,68 +1,78 @@
--[[
Copyright (c) 2010 Adrian L Lange <adrianlund@gmail.com>
All rights reserved.
You're allowed to use this addon, free of monetary charge,
but you are not allowed to modify, alter, or redis... |
comotion/edd | 3b52ea821d4ce14ba21016c3e2cc728cfb88c16c | bpf filter for pcap files too, and usage() somewhere | diff --git a/edd.c b/edd.c
index 59ea82a..55c4a88 100644
--- a/edd.c
+++ b/edd.c
@@ -321,586 +321,590 @@ void packet_profiler (const u_char *packet, const uint32_t p_len)
* tresholds? markov chains? averaging?
*
* check this with our friend the kolmogorov
*
* Basis for this entropy: just guessing:
* Entr... |
comotion/edd | bc2f4df34745e4c422a17e70aac271bc930b9f1a | EDD now classifies simple SYN floods successfully. | diff --git a/edd.c b/edd.c
index bad4b94..59ea82a 100644
--- a/edd.c
+++ b/edd.c
@@ -1,835 +1,906 @@
/* ppacket. Detect DDOS thru entropy
*
* Author: comotion@users.sf.net
* Idea by breno.silva@gmail.com
http://lists.openinfosecfoundation.org/pipermail/oisf-wg-portscan/2009-October/000023.html
* Thanks to eb... |
comotion/edd | e230968a87e56bd7b07ed6aa486c58c85fd7c189 | level-trigger instead of all-the-time-triggering | diff --git a/edd.c b/edd.c
index 8889606..bad4b94 100644
--- a/edd.c
+++ b/edd.c
@@ -1,825 +1,835 @@
/* ppacket. Detect DDOS thru entropy
*
* Author: comotion@users.sf.net
* Idea by breno.silva@gmail.com
http://lists.openinfosecfoundation.org/pipermail/oisf-wg-portscan/2009-October/000023.html
* Thanks to eb... |
comotion/edd | 6a380dd4267b51decf2600c8d45922b269f705cc | edd: first commit | diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3d5e64c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,41 @@
+#Makefile
+
+CC=gcc
+LDFLAGS=-lpcap -lm
+CFLAGS=-O3
+DCFLAGS=-g
+PCFLAGS='-g -pg'
+ifneq (${DEBUG},)
+CFLAGS = -g -DDEBUG
+endif
+
+OBJECTS = edd.o
+
+
+all: edd
+
+edd: $(OBJECTS)
+ $(CC) $(OCFLA... |
lordxist/groupable_attributes | 729a62fe95dd4454db594bf15e799a3fb41d14ba | severe find bugfix | diff --git a/lib/active_record/groupable_attributes.rb b/lib/active_record/groupable_attributes.rb
index 9ad0583..f6102ad 100644
--- a/lib/active_record/groupable_attributes.rb
+++ b/lib/active_record/groupable_attributes.rb
@@ -1,81 +1,83 @@
module ActiveRecord
module GroupableAttributes
def self.included(bas... |
lordxist/groupable_attributes | 7134996508af6ea1265ca613427cc71a4d444b4c | added exception at select when collection doesn't exist | diff --git a/lib/active_record/groupable_attributes.rb b/lib/active_record/groupable_attributes.rb
index 3337a35..9ad0583 100644
--- a/lib/active_record/groupable_attributes.rb
+++ b/lib/active_record/groupable_attributes.rb
@@ -1,78 +1,81 @@
module ActiveRecord
module GroupableAttributes
def self.included(bas... |
lordxist/groupable_attributes | c2eadf79fa2a4f0e19792f96b67113d8d82612b4 | added find option for collection selection | diff --git a/lib/active_record/groupable_attributes.rb b/lib/active_record/groupable_attributes.rb
index fd74e94..3337a35 100644
--- a/lib/active_record/groupable_attributes.rb
+++ b/lib/active_record/groupable_attributes.rb
@@ -1,44 +1,78 @@
module ActiveRecord
module GroupableAttributes
def self.included(bas... |
lordxist/groupable_attributes | 50ef0be817704eb0c14fdb96b469015d3ee6540e | example.com email in spec, too | diff --git a/spec/groupable_attributes_spec.rb b/spec/groupable_attributes_spec.rb
index bf5c693..1d5093d 100644
--- a/spec/groupable_attributes_spec.rb
+++ b/spec/groupable_attributes_spec.rb
@@ -1,13 +1,13 @@
require File.dirname(__FILE__) + '/spec_helper'
class GroupableAttributesTestModel < ActiveRecord::Base
... |
lordxist/groupable_attributes | bd3167cc5dd42f9c721299fc0e1be193f91bfcba | changed example email to something unproblematic (example.com) | diff --git a/README b/README
index 233aec3..e648da1 100644
--- a/README
+++ b/README
@@ -1,18 +1,18 @@
GroupableAttributes
===================
This plugin for Rails provides a method for grouping attributes.
Example
=======
class Comment < ActiveRecord::Base
attribute_collection :restricted, [:name, :e... |
rickclare/apache2-conf | 9d99d35636300893f7ed8a6751d29088fc0930ec | updating conf | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 67406e8..12915b9 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,338 +1,339 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | f2371df1c18180a3148073ea5782e0b813df3dd8 | updating to be in line with production | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index e280702..67406e8 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,377 +1,338 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 520d11fd0ae98f7084966a42632b59c4e28bb99d | updating gemset | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index c1aebe5..e280702 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,354 +1,377 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 74791f4db70ba1f0556e4217a9ed36977b8316a7 | updating ruby version | diff --git a/httpd.conf b/httpd.conf
index b281f08..2c0365d 100644
--- a/httpd.conf
+++ b/httpd.conf
@@ -1,508 +1,507 @@
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for det... |
rickclare/apache2-conf | c513d4aa7bca90a9c80ca6a1fe83a1c39f885c23 | updating passenger | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index c479013..c1aebe5 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,424 +1,354 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | df8d35cc279cfb51a9167f11ea69f9fe55e21c01 | updating passenger gem | diff --git a/httpd.conf b/httpd.conf
index bcbaa95..d2ade89 100644
--- a/httpd.conf
+++ b/httpd.conf
@@ -1,507 +1,507 @@
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for det... |
rickclare/apache2-conf | 1f4a72de630204706a16cb3ef339d979b4ae87fa | adding servername | diff --git a/httpd.conf b/httpd.conf
index df81526..bcbaa95 100644
--- a/httpd.conf
+++ b/httpd.conf
@@ -1,507 +1,507 @@
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for det... |
rickclare/apache2-conf | 2bd3aa704769d8ad7d7083029cbcb12cd9d80479 | updating passenger version | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 06b2c36..4d2834e 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,422 +1,424 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 3cf9f5de0986692450cd065e74e19f9fb2b761bf | updating | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index e76f7b2..06b2c36 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,388 +1,422 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 901ca15750f157a62610010993c10d9e28f8a864 | adding svg to expires | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index cf4066d..e76f7b2 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,318 +1,388 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | a5dfdbc48190bde24b147b25e472405ed0b50b9f | updating gitignore | diff --git a/.gitignore b/.gitignore
index 90ec22b..ba9a3fb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
.svn
+extra/mod_php.conf.mp_*
|
rickclare/apache2-conf | 6025c0003a9bcf9b45bafdce767969bc8c06bd69 | updating passenger | diff --git a/httpd.conf b/httpd.conf
index e56fc7f..897e390 100644
--- a/httpd.conf
+++ b/httpd.conf
@@ -1,505 +1,505 @@
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for det... |
rickclare/apache2-conf | dde75b79612d82573e27c1db791c6be0b3d655e1 | updating passenger | diff --git a/httpd.conf b/httpd.conf
index 1acfa13..e56fc7f 100644
--- a/httpd.conf
+++ b/httpd.conf
@@ -1,508 +1,505 @@
#
# This is the main Apache HTTP server configuration file. It contains the
# configuration directives that give the server its instructions.
# See <URL:http://httpd.apache.org/docs/2.2> for det... |
rickclare/apache2-conf | a291d969f315592c8efd9b9e1ef0adfe3ea44cf6 | updating passenger | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index d9d2ee5..cf4066d 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,275 +1,318 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 2ce4c5d50d362329511e76dd7bedded1e5c64a95 | updating passenger | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 5cad602..d9d2ee5 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,275 +1,275 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 97c423347cbcfa3c9914e4fccd43625631cb37d4 | updating | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 3f7cad8..5cad602 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,274 +1,275 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | 87816b6e9a643e432b9c80b1b84015ac973d4813 | updating vhosts | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 0826b49..3f7cad8 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,274 +1,274 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | e4a7724c1cbd6fa67919095be95ebdebb5700f47 | adding tools.drinkaware.localproduction.enableinteractive.co.uk | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 4a63256..0826b49 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,233 +1,274 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
rickclare/apache2-conf | a8087849ff532244dc069f705fe84f4732901b77 | updating vhosts | diff --git a/extra/httpd-vhosts.conf b/extra/httpd-vhosts.conf
index 8272231..0afe1b2 100644
--- a/extra/httpd-vhosts.conf
+++ b/extra/httpd-vhosts.conf
@@ -1,227 +1,233 @@
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most co... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.