Skip to content

Commit

Permalink
version 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown author authored and gaborcsardi committed May 4, 2012
1 parent 37c1c69 commit 48b3387
Show file tree
Hide file tree
Showing 134 changed files with 3,676 additions and 4,706 deletions.
11 changes: 6 additions & 5 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rcqp
Type: Package
Title: interface to the Corpus Query Protocol
Version: 0.1
Title: Interface to the Corpus Query Protocol
Version: 0.3
Date: 2012-05-04
Author: Bernard Desgraupes <bernard.desgraupes@u-paris10.fr>, Sylvain
Loiseau <sylvain.loiseau@univ-paris13.fr>
Expand All @@ -17,7 +17,8 @@ Lazyload: yes
URL: http://www.r-project.org
Collate: main.R zzz.R s3.R
Encoding: latin1
SystemRequirements: GNU make
Packaged: 2012-06-26 08:51:29 UTC; ripley
SystemRequirements: GNU make, pcre (>= 7), glib2 (>= 2)
Packaged: 2012-10-18 19:49:23 UTC; sylvainloiseau
OS_type: unix
Repository: CRAN
Date/Publication: 2012-06-26 08:51:29
Date/Publication: 2012-10-19 08:11:55
259 changes: 128 additions & 131 deletions MD5

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- First release 2012/06/25
svn revision : 298

- Release 0.2

- Release 0.3
Correcting a bug affecting linux users
Correcting a bug in the function cqp_flist
svn revision : 346
5 changes: 4 additions & 1 deletion R/s3.R
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,9 @@ print.cqp_attr <- function(x, ...) {
# ------------------------------------------------------------------------
##
corpus <- function(corpus.name) {
if (! corpus.name %in% cqi_list_corpora()) {
stop("This corpus does not exist, see cqi_list_corpora()");
}
x <- 0;
class(x) <- "cqp_corpus";
attr(x, "cqp_corpus.name") <- corpus.name;
Expand Down Expand Up @@ -779,7 +782,7 @@ cqp_flist.cqp_subcorpus <- function(x, anchor, attribute, left.context=0, right.
fdist <- cqi_fdist1(qualified.subcorpus.name, anchor, attribute, cutoff=cutoff, offset=offset);
id <- fdist[,1];
flist <- fdist[,2];
names(flist) <- cqi_cpos2str(
names(flist) <- cqi_id2str(
paste(parent.cqp_corpus.name, attribute, sep="."),
id
);
Expand Down

0 comments on commit 48b3387

Please sign in to comment.