Skip to content

Commit

Permalink
added missing pieces for 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gregdetre committed Mar 8, 2009
1 parent 1693fad commit ce65436
Show file tree
Hide file tree
Showing 20 changed files with 739 additions and 4 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
@@ -0,0 +1,2 @@
Greg Detre
Per Sederberg
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README
@@ -0,0 +1,5 @@
This is the README file for the Emacs Freex minor mode.

Emacs Freex is available from http://code.google.com/p/emacs-freex/.


2 changes: 2 additions & 0 deletions freex-conf-test.el
Expand Up @@ -84,3 +84,5 @@
'freex-meta-parse-alias-into-tag-parents)


;; Otherwise implicit links will be turned off
(setq freex-enable-implicit-links t)
11 changes: 7 additions & 4 deletions freex_sqlalchemy.py
Expand Up @@ -652,10 +652,13 @@ def update_implicit_link_regexp():
# the global regexp
global impLinkRegexp

## xxx - cheat and exit so it works without hyperlinks with
## lame mac python 2.5 regex overflow bug
impLinkRegexp = re.compile('', re.MULTILINE)
return
# only bother with the regexes if we're in emacs (i.e. use_lisp = True)
# AND emacs wants us to
if fsqa.use_lisp and lisp.freex_enable_implicit_links:
# xxx - cheat and exit so it works without hyperlinks with
# lame mac python 2.5 regex overflow bug
impLinkRegexp = re.compile('', re.MULTILINE)
return

# get and sort the aliases
aliases = get_all_aliases()
Expand Down
6 changes: 6 additions & 0 deletions run_tests
@@ -0,0 +1,6 @@
#!/bin/tcsh

# python freex_sqlalchemy_test.py -v
# testoob freex_sqlalchemy_test.py --verbose --immediate --debug

testoob freex_sqlalchemy_test.py -v
6 changes: 6 additions & 0 deletions tests/backup_test_txt/test0.txt
@@ -0,0 +1,6 @@
this is the zeroth test. embeds first

<file>test1.txt</file>



3 changes: 3 additions & 0 deletions tests/backup_test_txt/test1.txt
@@ -0,0 +1,3 @@
this is the first test. embeds second

<file>test2.txt</file>
7 changes: 7 additions & 0 deletions tests/backup_test_txt/test2.txt
@@ -0,0 +1,7 @@
this is the second test. embeds third-a and third-b

<file>test3a.txt</file>

<file>test3b.txt</file>


1 change: 1 addition & 0 deletions tests/backup_test_txt/test3a.txt
@@ -0,0 +1 @@
this is the third-a test. nothing embedded
1 change: 1 addition & 0 deletions tests/backup_test_txt/test3b.txt
@@ -0,0 +1 @@
this is third-b test. nothing embedded
2 changes: 2 additions & 0 deletions tests/backup_test_txt/test_nugget0.txt
@@ -0,0 +1,2 @@

<nugget>1</nugget>
2 changes: 2 additions & 0 deletions tests/obsolete/test_nugget0.txt
@@ -0,0 +1,2 @@

<nugget>1</nugget>
Binary file added tests/test.db
Binary file not shown.
3 changes: 3 additions & 0 deletions tests/test.muse
@@ -0,0 +1,3 @@
this is my test file's contents

hello
6 changes: 6 additions & 0 deletions tests/test0.txt
@@ -0,0 +1,6 @@
this is the zeroth test. embeds first

<file>test1.txt</file>



3 changes: 3 additions & 0 deletions tests/test1.txt
@@ -0,0 +1,3 @@
this is the first test. embeds second

<file>test2.txt</file>
7 changes: 7 additions & 0 deletions tests/test2.txt
@@ -0,0 +1,7 @@
this is the second test. embeds third-a and third-b

<file>test3a.txt</file>

<file>test3b.txt</file>


1 change: 1 addition & 0 deletions tests/test3a.txt
@@ -0,0 +1 @@
this is the third-a test. nothing embedded
1 change: 1 addition & 0 deletions tests/test3b.txt
@@ -0,0 +1 @@
this is third-b test. nothing embedded

0 comments on commit ce65436

Please sign in to comment.