Revision
6137 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 27 16:17:37 2024 UTC
(4 months ago)
by
dvl
Diff to
previous 6136
xml_munge_git.pm: Remove unused Element_Add() function
Add some more debugging statements
Correct impelemented
to implemented
Revision
6135 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 27 16:13:25 2024 UTC
(4 months ago)
by
dvl
Diff to
previous 6134
element.pm - remove code which grabbed the parent id
It seems to be unnecessary
Some column alignment.
Remove unused $tmp variable
Revision
6126 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 19:49:33 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6125
'missing-port-categories.sh - make it OFFLINE aware, change get-list-of-current-categories.sh so it no longer observes OFFLINE.'
Revision
6125 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 02:03:02 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6124
Let's change how we approach new commits
Most of this refers to _CompileListOfPorts()
At the start of commit processing, make sure we have the ports tree checked
out to the commit in question. That allows us to get a list of categories
which are current as of that commit.
For example, /ports/head/ftp/vsftpd/Makefile
When we are processing the file names, we check to see if ftp is a category.
We look at the list we got from the repo. If we find it here, we know it is
a category. If it's not, we know it's not a port and we can ignore it. Then
we check the database; if it's not found, we know it's a new category and we
must add it to the database.
Revision
6124 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 01:53:26 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6123
With recent changes to config.pm.sample:
* Stop using $FreshPorts::Config::OFFLINE
* start using $FreshPorts::Config::Offline instead
Revision
6122 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 10 01:51:19 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6121
Remove $FreshPorts::Config::OFFLINE - which had an incorrect path
Add $FreshPorts::Config::Offline - which has the correct path
Revision
6098 -
Directory Listing
-
[select for diffs]
Modified
Mon Nov 4 17:41:13 2024 UTC
(4 months, 3 weeks ago)
by
dvl
Diff to
previous 6097
kxml_munge_git.pm: specify the correct branch for Sanity Test Failures
We were specifying whahtever branch we found in the xml file. Instead, now
we show the converted branch name ('main' from FreeBSD, is 'head' in
FreshPorts-land.
also, only show the branch on the URL within the message if it is not head.
Revision
6077 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 24 00:17:37 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6076
dump-package_imports.sh: order by repo_date
- the processed date is relevant
- But repo_date will be the same on all FreshPorts nodes
Revision
6070 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 19 23:48:04 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6069
Adjust for new package importing strategy
Add:
* FreshPorts::Config::LogDir
* FreshPorts::Config::LogJobsWaiting
Remove:
* $FreshPorts::Config::NewRepoImported
Revision
6068 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 19 23:40:56 2024 UTC
(7 months, 1 week ago)
by
dvl
Diff to
previous 6067
Adjust for new package importing strategy
see: https://github.com/FreshPorts/packages-import/releases/tag/2.7.0
job-waiting.pl
* remove references to FreshPorts::Config::NewRepoImported
* start logging to FreshPorts::Config::LogJobsWaiting
* no need to launch after report-notification-packages.pl after UpdatePackagesFromRawPackages.py
* that is done by import-via-copy-packagesite-all-raw-fields.py
* wow, in hindsight, I should have created a wrapper script
which invokes import-via-copy-packagesite-all-raw-fields.py, and
UpdatePackagesFromRawPackages.py, and then report-notification-packages.pl
* Perhaps later.
report-notification-packages.pl
* If there is nothing to report upon, don't error out
* no need to remove NewRepoImported any more
Revision
6066 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 13 11:13:40 2024 UTC
(7 months, 2 weeks ago)
by
dvl
Diff to
previous 6065
ri.txt: fix broken packages triggers
After INSERT, invoke package_notifications_insert, not after UPDATE
After DELETE, invoked package_notifications_delete, not after UPDATE
Seems like repeated copy/paste/fail to correctly amend.
Revision
6062 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 24 11:47:34 2024 UTC
(8 months, 1 week ago)
by
dvl
Diff to
previous 6061
port.pm: fix some problem with _GetFileContents()
Some time ago, I hit a problem. I worked on it and
did not document the issue. So here I am, checking in code
which seems to work.
The problem with input files is they don't always encode well.
I had comments like this in the code:
+ print "This is bullshit\n";
+# open my $in, '<:encoding(ISO-8859-1)', $file; # works
+# open my $in, '<:encoding(ascii)', $file; # fails ascii "\xC3" does not map to Unicode
+ open my $in, '<:encoding(iso-8859-1)', $file;
+# open my $in, '<:encoding(UTF-8)', $file; # fails UTF-8 "\xC3" does not map to Unicode
The current code seems to work, but without knowing the original
problem, I can't verify it fixes the issue.
Commit away.
Revision
6055 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 31 12:05:02 2024 UTC
(12 months ago)
by
dvl
Diff to
previous 6054
Standardize all report emails.
Subject will be:
FreshPorts Notification: <topic>
Hopefully this will help people to filter easily.
Revision
6054 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 12 13:07:29 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6053
'loop detections added to job-waiting.pl; missing-port-categories.sh will log better; add in report-notification-packages.pl'
Revision
6053 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 11 18:25:05 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6052
Add insert into reports for new package notiication report
change public.report_log_package_notifications to id, not serial
postgres, not postgress.
Revision
6049 -
Directory Listing
-
[select for diffs]
Modified
Sat Mar 9 20:03:52 2024 UTC
(12 months, 3 weeks ago)
by
dvl
Diff to
previous 6048
Attempt to standardize on one name for emails:
FreshPorts notification
Start keeping stats
Explain what update, delete, insert will mean.
Revision
6037 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 17 18:44:14 2024 UTC
(13 months, 2 weeks ago)
by
dan
Diff to
previous 6036
Change the rm to rm -f when removing the flag
This script is invoked by a periodic script. The FLAG won't be present then.
Revision
5996 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 3 16:45:06 2024 UTC
(14 months, 4 weeks ago)
by
dan
Diff to
previous 5995
Update PostgreSQL items
* For use by new abi scripts:
- Use export on PGSSLMODE
- Add PGSSLROOTCERT
- add DBUSER_ABI
Revision
5988 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 2 20:29:13 2024 UTC
(14 months, 4 weeks ago)
by
dan
Diff to
previous 5987
Adjust to use STDIN
add-new-abi.sh and delete-depcreated-abi.sh now take their input from STDIN
(via cat) instead of seprately invoking current_list_of_valid_abi.sh
This save an extra fetch.
Revision
5975 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 26 15:09:12 2023 UTC
(15 months, 1 week ago)
by
dan
Diff to
previous 5974
Start using variables for everything
Rename hourly/506.fp_categories_rebuild_search_html.inn to hourly/506.fp_categories_rebuild_search_html
When that file was brought over from dvl/p5-freshports-scripts, it had that
name. We will do a lot of processing in the FreeBSD port.
Revision
5963 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 24 18:58:21 2023 UTC
(15 months, 1 week ago)
by
dan
Diff to
previous 5962
Use grep -c
ls *.xml will result in ./system_status.sh: /bin/ls: Argument list too long
... when there are large numbers of commits.
Revision
5946 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 12 22:54:46 2023 UTC
(15 months, 2 weeks ago)
by
dan
Diff to
previous 5945
When done populating the packages table, clear out the pacakges_raw table.
I suspect we had lingering data in there. This was messing up the results.
We'd have a version, and no record of ever importing that tree.
Revision
5936 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 10 18:19:01 2023 UTC
(15 months, 3 weeks ago)
by
dan
Diff to
previous 5935
job-waiting.pl
* remove FreshPorts::Config::WWWENPortsCategoriesFlag => 'process_www_en_ports_categories.sh
* add FreshPorts::Config::DefaultVersionsFlag => 'process_default_versions.pl
remove:
* process_CVSROOT_approvers.sh
* process_www_en_ports_categories.sh
add process_default_versions.pl
Revision
5917 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 24 19:26:27 2023 UTC
(17 months, 1 week ago)
by
dan
Diff to
previous 5916
Caching changes
12345678901234567890123456789012345678901234567890123456789012345678901234567890
Items like MOVED & UPDATING where never cleared from cache. caching.pm was
designed when the web server and the ingress server where always assumed to be
on the same host. That is no longer the cache. The code has been rewritten to
use the same cache clearing mechanism as in other parts of the system.
A new table has been created: cache_clearing_files
It functions much like the existing cache_clearing_ports table
The changes here are coordinated with changes to the modules port and to the
fp-listen (part of the webserver) code.
re: https://github.com/FreshPorts/freshports/issues/468
Revision
5910 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 30 15:01:34 2023 UTC
(18 months ago)
by
dan
Diff to
previous 5909
Add new function: DoneProcessingCommit()
It is not invoked anywhere - I suspect that would
be somewhere inside the commit inserting/adding
code.
Revision
5895 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 22 23:27:28 2023 UTC
(2 years ago)
by
dan
Diff to
previous 5894
Make sure we use head not branches/main
Add FreshPorts::Constants::MAIN as a constant
and when checking to see what branch we are on,
convert main to head, because the XML gives us
main, but we are using head in the database.
fixes #435
Revision
5890 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 9 18:28:40 2023 UTC
(2 years ago)
by
dan
Diff to
previous 5889
When we're finished checking the queue, check again.
This avoids the race condition where more stuff is added to the queue and we
miss it because we are processing the queue already.
Revision
5888 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 28 14:54:59 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5887
Rename GetCategoryPortFromLatestLink to FUNCTION GetCategoryPortFromPackageName
because latestlink is no longer used by Ports.
Revision
5883 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 24 19:53:14 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5882
Start using the spooling directory. This has been in use on dev since at
least Sep 17 2022. Time to spread it around.
Revision
5871 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 11 14:45:48 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5870
'refresh-ports.sh & process_updating.sh now log to DIRLOG, process_updating.pl looks for AFFECTS and avoids duplicates in cache_clearing_ports, add show-config.sh'
Revision
5869 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 11 13:33:36 2022 UTC
(2 years, 3 months ago)
by
dan
Diff to
previous 5868
Split role creation out from permissions.sql into roles-users-groups.sql
This allows permissions to be re-run at any time, for example, after a view
changes.
Revision
5858 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 29 12:46:46 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5857
Fix UPDATING
With 20220623 and 20220620, 20220620 appears in column one.
That caused failures because of a faulty regex.
https://regex101.com to the rescue for this one
It was broken anyway, because the directory was wrong.
For cache clearing, we need to use the cache_clearing_ports table
The caching module is good only on webservers, not on ingress nodes,
which is where this script runs.
Revision
5855 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 21 12:48:37 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5854
When clearing cache for a port, consider all categories
re https://github.com/FreshPorts/freshports/issues/373
A port has a primary category. e.g. x11/bemenu
However, this port is also listed in the wayland category,
which is a virtual category. This is known as a secondary
category. Secondary categories are always vritual.
You can't browse to wayland/bemenu - but you can see bemenu
listed at https://www.freshports.org/wayland/
Therefore, we must flush that page from cache when that port
is updated.
The solution: insert both of these pairs into the cache_clearing_ports
table:
* x11,bemenu
* wayland,bemenu
The fp-listen daemon, which runs on the webserver nodes, will always clear
the category page in addition to the port page.
It will also clear the now non-existent wayland/bemenu page - no harm done
there. Should the display of a port on a virtual page be implemented one
day, this solution will properly clear that cache too.
Revision
5845 -
Directory Listing
-
[select for diffs]
Modified
Sun Sep 11 14:56:38 2022 UTC
(2 years, 6 months ago)
by
dan
Diff to
previous 5844
'update refresh-all-active-ports.pl for modern times. update set-pkgmessage-and-options_name.pl for jexec. add set-pkgmessage.pl never saved before'
Revision
5833 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 12 14:41:56 2022 UTC
(2 years, 7 months ago)
by
dan
Diff to
previous 5832
Start using Try::Tiny
I was seeing errors on printing the SQL. Let's see if that traps that.
Testing was not able to reproduce it.
Revision
5830 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 19 13:03:32 2022 UTC
(2 years, 8 months ago)
by
dan
Diff to
previous 5829
Exclude deleted ports on package name search
Use ports_active not ports
Example: otrs has www and devel (deleted).
If entered into the search box on the front page, you'd be taken to the
search page where only the non-deleted port would be found. Better to take
then directly to the active port, as intended.
Revision
5807 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 2 18:02:53 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5806
Remove NOT EXISTS (SELECT port_id
FROM cache_clearing_ports
WHERE port_id = PD.port_id_dependent_upon)
from the trigger. It's seems extraneous
Revision
5802 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 2 14:11:59 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5801
Add in long options:
dryrun y/n
debug y/n
limit How many rows to process
offset Where to start int the result set
Stop using syslog, because output is now logged to a file
Revision
5774 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 11 07:32:13 2021 UTC
(3 years, 7 months ago)
by
dan
Diff to
previous 5773
Move from chroot to jexec.
The ports-tree at ~freshports/ports-jail is no longer used.
Instead, we use one in a true proper jail.
Revision
5756 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 16 16:17:17 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5755
Update to check ports_categories when not processing commits.
Add this to /usr/local/etc/freshports/config.sh:
CHECKPORTSCATEGORIESFILE="${BASEDIR}/signals/check_port_categories"
Revision
5755 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 16 16:16:14 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5754
Update to check ports_categories when not processing commits.
Add this this to /usr/local/etc/freshports/config.pm:
$FreshPorts::Config::CheckPortsCategoriesFlag = $FreshPorts::Config::BaseDir . '/signals/check_port_categories';
Revision
5753 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 13 21:36:39 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5752
Fix the script name and the user
set_hourly_flags.sh.sh should have been set_hourly_flags.sh
This script should be run by freshports
Revision
5751 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 13 13:00:25 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5750
Don't use . in a shell variable name
or periodic will be upset:
/etc/periodic.conf.local: fp.set_hour_flags_enable=YES: not found
Revision
5740 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 8 21:14:31 2021 UTC
(3 years, 8 months ago)
by
dan
Diff to
previous 5739
'Avoid variables without values in verifyport.pm
Add a proper Undelete() for ports in port.pm
Fix paths for branch commits in xml_munge_git.pm
'
Revision
5734 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 26 16:59:56 2021 UTC
(3 years, 9 months ago)
by
dan
Diff to
previous 5733
make-apply-slist.sh is not required in the port jail.
This functionality is carried out by get-list-of-current-categories.sh
Revision
5715 -
Directory Listing
-
[select for diffs]
Modified
Mon May 31 11:03:28 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5714
Remove get-list-of-current-categories.pl, not used.
Add get-list-of-current-categories.sh back in, removed via 5713
I really should have waited. Kept this only on dev for a few days.
Then test, staging, and prod would not have been affected.
Revision
5685 -
Directory Listing
-
[select for diffs]
Modified
Mon May 10 12:18:42 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5684
Stop using IgnoredItems and use a list of Categories pulled from the repo
Add categories.pm used thusly:
use FreshPorts::categories
use List::MoreUtils 'any';
FreshPorts::categories::FetchAll();
# look for special files outside a port, such as LEGAL, GIDs, UIDs, .hooks
if ( ! any {/$category_name/} @FreshPorts::Categories::categories ) {
...
}
Revision
5684 -
Directory Listing
-
[select for diffs]
Modified
Mon May 10 12:18:15 2021 UTC
(3 years, 10 months ago)
by
dan
Diff to
previous 5683
Be cautious when printing svn_revision - I think this arose when writing
Verify/set-pkgmessage-and-options_name.pl
Revision
5659 -
Directory Listing
-
[select for diffs]
Modified
Tue Apr 6 21:54:40 2021 UTC
(3 years, 11 months ago)
by
dan
Diff to
previous 5658
Now that the FreeBSD git repo is out, it seems they changed the name of the
head branch from master to main. The main change there is:
-my %BranchConversions = ( 'master' => 'head' );
+my %BranchConversions = ( 'main' => 'head' );
Adjust some constants to allow commits to process.
$FreshPorts::Config::RepoDir . '/PORTS-head'; was renamed to
$FreshPorts::Config::RepoDir . '/' . $FreshPorts::Config::Repo_PORTS;
This meant that $FreshPorts::Config::Repo_PORTS had to be moved higher
up withint config.pm
Adjust the constants for the repo directories. We have abandoned github
and moved to git.freebsd.org. e.g. freebsd-doc becomes doc
Revision
5653 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 21 22:39:49 2021 UTC
(4 years ago)
by
dan
Diff to
previous 5652
'freebsd-cvs.sh: say if config.sh is not found
queue-status.pl: stop using the database, sort the queue keys so Nagios output is consistent, look only for files > 5 minutes old.
config.sh.sample: mention PORTSDIRBASE is best without a trailing slash
Add the monitoring directory, but I am not sure it is used yet.
process_vuxml.pl: improve spacing'
Revision
5636 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 1 19:12:34 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5635
This is the first attempt at converting expression which one ran on a single column
into one which runs on rows.
Previously, it ran on array_to_json(regexp_match(ports.pkg_plist, 'lib/[[:alpha:]]*?\.so'))
But now those values are speard across several rows in the generate_plist
table.
This first attempt is wrong.
Revision
5632 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 25 00:30:34 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5631
Add p5-Email-Address-XS>0:mail/p5-Email-Address-XS as new dependecy because
we need to split the user off the address.
We now take in Author and Committer.
Author is not yet written to the database.
Revision
5629 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 25 00:20:20 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5628
Pull in the vuxml code from the main branch, because we need the new vuxml
code here too. While here, do some betting debugging.
Revision
5620 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 18 18:36:21 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5619
'K IW svn-commit.tmp (Modified) Row 3 Col 1
Stop using FreshPorts::Utilities::CommitCountPeriod because we are counting
only file more than 5 minutes old.'
Revision
5611 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 16 16:28:02 2021 UTC
(4 years, 1 month ago)
by
dan
Diff to
previous 5610
Add MANIFESTs for fake packages so the real packages do not accidentally get
installed.
$ sudo pkg register -M +MANIFEST-FreshPorts-Scripts
[dev-ingress01.int.unixathome.org] Installing FreshPorts-Scripts-9999.0.1...
$ sudo pkg lock FreshPorts-Scripts
FreshPorts-Scripts-9999.0.1: lock this package? [y/N]: y
Locking FreshPorts-Scripts-9999.0.1
Revision
5596 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 1 01:56:10 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5595
When inserting into the cache_clearing_ports table, which now has a unique
index on port_id, detect a conflict on that index and do nothing if it
occurs.
While here, try to not NOTIFY if we don't have to.
Revision
5595 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 1 01:17:18 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5594
Use -- instead of # for comments
Remove AddNewABIToPackagesLastChecked() which does not compile against the packages_last_checked
table which does not contain a column named branch_id
Revision
5590 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 30 20:30:01 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5589
Add three new paramaters:
* dryrun - do not update the database
* showchecksums - show the checksums
* printnodes - print the node we are processing
Change from IO::File to IO::String for the $nodeString = $node->toString();
XML. This means the fh->open($nodeString) succeeds.
Revision
5582 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 26 18:51:18 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5581
Change to fixed length wait times.
We are going to very high values for Fetch_Retry_Limit because svn is lagged
on replication. It is easier to wait than to error out and fix by hand.
Revision
5579 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 26 18:32:52 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5578
When invoking parse, specify ProtocolEncoding => 'ISO-8859-1'
That avoid errors like this:
not well-formed (invalid token) at line 28, column 23, byte 1305 at /usr/local/lib/perl5/site_perl/mach/5.32/XML/Parser.pm line 187.
on this:
Reported by Andr?? Bargull on 2020-11-2</li>
see vid="01ffd06a-36ed-11eb-b655-3065ec8fd3ec"
Revision
5564 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 3 23:14:24 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5563
Fix up CanWeProcessThisBranch() was was passing an unnecesary parameter
because it should have been invoking GetPathToRepoForBranchSVN() not
GetPathToRepoForBranch()
Revision
5561 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 3 22:43:28 2021 UTC
(4 years, 2 months ago)
by
dan
Diff to
previous 5560
Convert from `echo ${INCOMING}/*` to $(echo ${INCOMING}/*)
Put the ls output all into one command so the files are properly aligned
Correct a logging statement from load_xml_into_db_git.pl to load_xml_into_db.pl
Revision
5553 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 16:24:46 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5552
branches.pm
* add GetPathToRepoForBranchSVN
* for a given branch name, return the full path. Including the CHROOT path.
constants.pm
* add FreshPorts::Constants::SVN_Repo_Dir_Name_Ports = ports-HEAD
* is that used?
port.pm
* make this script work with both git and svn
* the repos are in different locations
* remove
process_svn_mail.pm
* Amend XML to include the source (subversion) so that XML processing knows which code to invoke
* When invoking XML::Writer, don't specify OUTPUT, becuase that borks the code
verifyport.pm
* start passing around RepoType so everyone knows if this is git or svn
xml_munge.pm
* remove a bunch of commented out code now that most of this processing is in one of xml_munge_git.pm & xml_munge_svn.pm
* we open the XML, check git or svn, and invoke the respective code to complete the processing
xml_munge_git.pm
xml_munge_svn.pm
* adjust the code so that non-ports don't start compiling lists of ports to save
* in xml_munge_git.pm, remove the code which checked the length of message_id to determin git or svn
* that detemination is carried out by xml_munge.pm and it checks the XML to decide that
Revision
5551 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 16:00:32 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5550
load_xml_into_db.pl
* modified to check the source repo for this XML
* then invoke one of FreshPorts::xml_munge_git or FreshPorts::xml_munge_svn
load_xml_into_db_git.pl
load_xml_into_db_svn.pl
Modified to invoke the approviaate XML munging class:
* my $Munger = FreshPorts::XML_Munge_git->new($dbh);
* my $Munger = FreshPorts::XML_Munge_svn->new($dbh);
Revision
5549 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 21 15:57:02 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5548
I started to modify these scripts to work with git, then realized they are
no longer used.
email and commit processing is handled by services:
[dan@devgit-ingress01:/usr/local/libexec/freshports-service] $ ls -l
total 26
-r-xr-xr-x 1 root wheel 7267 Dec 6 22:17 freshports.sh
-r-xr-xr-x 1 root wheel 1387 Dec 6 20:16 ingress.sh
-r-xr-xr-x 1 root wheel 4109 Dec 6 22:13 ingress_svn.sh
Look there for invoking the xml processing scripts
Revision
5536 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 13 17:50:46 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5535
Add in
* GetQuarterlyBranchName
* NormalizeBranch
* DenormalizeBranchName
* AddNewABIToPackagesLastChecked
Which where someone how only over here.
Revision
5530 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 6 20:31:01 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5529
Change the mv .txt file to a cp/rm to avoid:
mv: /var/db/freshports/message-queues/recent/2020.07.11.07.46.58.18048.txt: set owner/group (was: 10002/10001): Operation not permitted
Revision
5529 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 6 20:15:07 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5528
'with message queue directory permissions now 0775, move .txt file to ~freshports/message-queues/recent after creating .xml file'
Revision
5526 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 6 19:39:06 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5525
Start using these file names:
email: 2020.07.11.07.46.34.15635.txt
xml: 2020.07.11.07.46.34.15635.xml
errors: 2020.07.11.07.46.34.15635.errors
Other scripts will need updating for .loading, which will become .log
Revision
5522 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 6 17:00:58 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5521
Good to go for testing.
I got sidetracking creating fp-daemon on the git branch but then
re-discovered my work here.
Revision
5516 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 5 20:58:45 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5515
Create the git version of fp-daemon
Starting with the the FreshPorts for git daemon and use that.
The former takes XMl and laods it. The latter will take email and create XML
for the former.
Revision
5514 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 5 18:50:06 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5513
Start using the newly created load_xml_into_db.pl, not
load_xml_into_db_git.pl, because it will work with both git and subversion.
Also, rm -f
Revision
5511 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 5 13:46:01 2020 UTC
(4 years, 3 months ago)
by
dan
Diff to
previous 5510
Now that I've realized the website should process both svn and git commits,
I wanted a way to inspect an XML file and determine which type of repo it
came from. This is vital because we have two different sets of code to deal
with each origin:
[dan@devgit-ingress01:~/scripts] $ ls -l load_xml_into_db*
-rwxr-xr-x 1 dan dan 1251 Dec 5 03:00 load_xml_into_db.pl
-rwxr-xr-x 1 dan dan 1404 Jul 3 20:40 load_xml_into_db_git.pl
-rwxr-xr-x 1 dan dan 1404 Jul 3 20:40 load_xml_into_db_svn.pl
Invoke load_xml_into_db.pl and it determine the type of XML and then invoke
one of load_xml_into_db_git.pl and load_xml_into_db_svn.pl
In turn, each of those scripts will use one of these modules:
[dan@devgit-ingress01:~/scripts] $ ls -l ~/modules/xml_munge*
-rwxr-xr-x 1 dan dan 5392 Dec 5 02:51 /usr/home/dan/modules/xml_munge.pm
-rwxr-xr-x 1 dan dan 36848 Dec 5 02:24 /usr/home/dan/modules/xml_munge_git.pm
-rwxr-xr-x 1 dan dan 31944 Dec 5 02:37 /usr/home/dan/modules/xml_munge_svn.pm
xml_munge.pm determines the type of repository this commit came from. This
is important because there are slightly different data in the XML. For
example, subversion does not have a commit_hash.
load_xml_into_db.pl learns the type from this data in the XML file:
<UPDATES Version="1.4.0.1" Source="git">
<UPDATES Source="subversion" Version="1.3.2.2">
The Version numbers refer to the code module and is used. Yet.
Revision
5493 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 29 15:42:33 2020 UTC
(4 years, 4 months ago)
by
dan
Diff to
previous 5492
Properly bring a port back from the dead.
After a port is deleted, it may be brought back.
The code was looking for that, but not detecting it
because of path issues. Let's strip the leading /ports/head or
/ports/branches/2020Q4 and use what is left.
While here, leave the loop once we have found something to resurrect.
Revision
5490 -
Directory Listing
-
[select for diffs]
Modified
Sat Nov 14 20:31:30 2020 UTC
(4 years, 4 months ago)
by
dan
Diff to
previous 5489
remove FreshPorts::Branches::GetPathToRepoForBranchCHROOT which seems
outdated for git and does not work
Add FreshPorts::Constants::GitRepos & FreshPorts::Constants::RepoLabelsToGitRepoNames
Revision
5472 -
Directory Listing
-
[select for diffs]
Modified
Sun Aug 2 22:06:33 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5471
If there is nothing to save in port_dependencies_delete_clear_cache(),
don't save it. It avoids this situation:
freshports.devgit=# delete from element where id = 1058393;
ERROR: null value in column "category" violates not-null constraint
DETAIL: Failing row contains (19934459, 59842, null, null, 2020-08-02 21:50:23.967785).
CONTEXT: SQL statement "INSERT INTO cache_clearing_ports (port_id, category, port)
VALUES (OLD.port_id, l_category, l_port)"
PL/pgSQL function port_dependencies_delete_clear_cache() line 19 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
SQL statement "delete from element
where parent_id=old.id"
PL/pgSQL function on_delete_remove_children() line 4 at SQL statement
freshports.devgit=# rollback;
Revision
5469 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 21:14:58 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5468
Add a test for showing repos:
[dan@devgit-ingress01:~/modules] $ echo perl ./Testing/GetRepos.pl| sudo su -fm freshports
ports has REPODIR='/var/db/freshports/ports-jail/var/db/repos/freebsd-ports' and REPODIR_CHROOT='/var/db/repos/freebsd-ports'
ports-quarterly has REPODIR='/var/db/freshports/ports-jail/var/db/repos/freebsd-ports-quarterly' and REPODIR_CHROOT='/var/db/repos/freebsd-ports-quarterly'
Revision
5467 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 20:58:48 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5466
Change GetRepoNameForBranch() to use newly FreshPorts::Constants::GitRepos
We want to convert ports and ports-quarterly to freebsd-port and
freebsd-ports-quarterly respectively. We have labels; we want directories.
Revision
5466 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 1 18:49:04 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5465
This is the start of passing in the Repository name to many functions to enable correct repo-on-disk identification
Revision
5454 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 26 23:29:33 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5453
Add two functions needed for processing git commands.
Perhaps they should be in another file, but config.sh is included by thoese
that need these.
Revision
5448 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 26 15:05:24 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5447
Add SET CLIENT_ENCODING TO 'SQL_ASCII' on a select.
Not everything is UTF-8, so we have to do this for now.
Whitespace some stuff
Revision
5446 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 25 15:40:52 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5445
Moving to git, we take a slightly different approach. We need multiple
working copies because there are multiple git repos:
* freebsd
* freebsd-ports
* freebsd-docs
Change path_to_tree to RepoDir
Move CheckGit from freshports to ingress signal directory
Revision
5413 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 19 15:20:15 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5412
Rename config.sh.sample to config/fp-freshports.sh
Yes, the script and the configuration file have the same name.
The config file should be installed to /usr/local/etc/freshports/fp-freshports.sh
Revision
5411 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 19 15:10:30 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5410
Stop using logger, use echo.
daemon(8) will direct that output to syslog and from there into the correct
log file.
Revision
5409 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 23:49:49 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5408
'Move configuration file:
-. /usr/local/etc/freshports/daemon-config.sh
+. /usr/local/etc/freshports/fp-ingress.sh
'
Revision
5408 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 23:49:24 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5407
'Move configuration file:
-. /usr/local/etc/freshports/daemon-config.sh
+. /usr/local/etc/freshports/fp-ingress.sh
'
Revision
5407 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 23:44:42 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5406
'Move configuration file:
-. /usr/local/etc/freshports/daemon-config.sh
+. /usr/local/etc/freshports/fp-ingress.sh
'
Revision
5405 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 23:37:33 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5404
'Move configuration file:
-. /usr/local/etc/freshports/daemon-config.sh
+. /usr/local/etc/freshports/fp-freshports.sh
'
Revision
5404 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 23:36:39 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5403
Move configuration file:
-. /usr/local/etc/freshports/daemon-config.sh
+. /usr/local/etc/freshports/fp-freshports.sh
Revision
5393 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 21:36:09 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5392
Change configuration file
from: config.sh
to: /usr/local/etc/freshports/daemon-config.sh
Start using FRESHPORTS_* variables
this daemon doesn't need a incoming directory any more
Revision
5391 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 19:53:45 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5390
I'm moving to two daemons:
fp-freshports - same function as fp-daemon had
fp-ingress - processing incoming commits into XML
this is partly the mailfilter script
and part of what fp-daemon.sh once did.
Revision
5386 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 14:20:02 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5385
Copy this over for use as an ingress daemon:
* receives notice of new commits via signals
* creates XML
* moves XMl into ~ingress/message-queues/incoming directory
Potential signals
* commits waiting
* which repo?
* commit hash?
* run single commt
* which repo?
* commit hash?
* hooks - I imagine hooks will be intercepted externally and signals raised
* email - If commit emails are implemented, that could also raise a signal
Revision
5384 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 18 14:14:18 2020 UTC
(4 years, 8 months ago)
by
dan
Diff to
previous 5383
removed INGRESSDIR
add MSGDIR
This may be reversed soon. I'll be creating a ingress.sh daemon and it will
also need a config.sh file.
Revision
5377 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 3 19:41:00 2020 UTC
(4 years, 9 months ago)
by
dan
Diff to
previous 5376
Use commit log message not email subject
With git processing, we run off the repo, not incoming commit email.
Thus, we must change.
Revision
5349 -
Directory Listing
-
[select for diffs]
Modified
Sat May 30 11:43:59 2020 UTC
(4 years, 10 months ago)
by
dan
Diff to
previous 5348
Add missing require: FreshPorts::committer_opt_in
This will avoid this error:
nUndefined subroutine &FreshPorts::CommitterOptIn::RecordErrorDetails called at ./process_vuxml.pl line 124, <> chunk 1.\n
Revision
5339 -
Directory Listing
-
[select for diffs]
Modified
Fri May 29 20:51:14 2020 UTC
(4 years, 10 months ago)
by
dan
Diff to
previous 5338
remove:
* NotificationNonPorts & NotificationDirectories - they appear to be unused
* add MaintainerPorts for new report
Revision
5327 -
Directory Listing
-
[select for diffs]
Modified
Sun May 3 15:25:08 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5326
Adjust PortPackages to also return processed_date
While here, return formatted dates, without seconds.
Create iso_date_seconds() to format that date.
Revision
5317 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 29 17:49:40 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5316
Change the signal name to match the others
I note that the listen_for table is not named great. The script_name isn't
necessarily the script which gets invoked, but it does help.
Revision
5316 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 29 17:43:16 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5315
Add ability to clear packages cache via zfs rollback
Add in the category cache which I'm sure is needed in prod
Convert all lingering print to syslog.
Remove commented out code
Revision
5305 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 27 01:14:42 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5304
Change the update package_imports table to set newly added columns:
last_checked, repo_date, import_date, processed_date
Revision
5304 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 26 22:28:42 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5303
Change our job-waiting loop.
When the job_waiting signal is set, run the waiting jobs and keep
runnint them until we don't find anything more to run.
Revision
5303 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 24 21:45:49 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5302
Rewrite PackagesLastCheckedSetRepoDate to clear processed_date & import_date
if the new repo_date is not the same as the incoming date.
If the dates are the same, no update occurs.
Returns the number of rows updated.
Revision
5293 -
Directory Listing
-
[select for diffs]
Modified
Tue Apr 21 13:57:28 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5292
Rename trigger and function ports_origin_insert to ports_origin_maintain
because it's run on both update and insert, not just insert.
Use IS DISTINCT FROM on the update.
Revision
5287 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 14:41:35 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5286
Whitespace for element_pathname_update
Change ports_origin_insert to pull port_origin first
Then do the UPDATE only if things have changed - no need to churn
Revision
5286 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 00:25:39 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5285
When copying data from packages_raw to packages, first set port_id and
abi_id
When comparing, also use P.port_id = PR.port_id
addReviewed by:
Revision
5285 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 20 00:24:40 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5284
keep the ports_origin table up to date
when package_imports is updated, note that in the packages_last_checked
table
a bunch of ' on ' to ' ON ' etc
Revision
5276 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 12 14:40:44 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5275
adding:
* NormalizeBranch - convert latest to head and quarterly to latest branch
* PackagesLastCheckedSetRepoDate(a_abi_name text, a_branch_name text, a_CheckedDate text)
Revision
5271 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 9 12:38:00 2020 UTC
(4 years, 11 months ago)
by
dan
Diff to
previous 5270
Add DeleteUser
Delete by user id as supplied by the code.
The initial intent was to delete by cookie, but that
value is on the client. Let's do this by id instead.
SECURITY DEFINER - means run this function as the user
which created. This means the www
user does not require write permission
on the users table.
Revision
5261 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 26 20:58:10 2020 UTC
(5 years ago)
by
dan
Diff to
previous 5260
These are helper scripts, mostly for use with commits after they have
arrived. When you're looking for the raw file, use these tools
Revision
5238 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 14 13:20:26 2019 UTC
(5 years, 4 months ago)
by
dan
Diff to
previous 5237
Fix CreatePort(text,text,text) by not using GetPort() with the SQL.
It seems to not be pulling in the correct value.
Revision
5233 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 12 14:52:54 2019 UTC
(5 years, 4 months ago)
by
dan
Diff to
previous 5232
Fix new element insertion failures on PostgreSQL 12
Was getting this:
select Element_Add('/ports/head/www/httpdirfs/', 'F');
ERROR: duplicate key value violates unique constraint "element_pathname_pathname" DETAIL: Key (pathname)=() already exists.
Because:
INSERT INTO element_pathname (element_id, pathname)
VALUES (NEW.id, element_pathname(NEW.id));
The pathname value was always NULL.
The fix, change the SQL to:
DECLARE
l_pathname text;
BEGIN
l_pathname := element_pathname(NEW.id);
INSERT INTO element_pathname (element_id, pathname)
VALUES (NEW.id, l_pathname);
Revision
5225 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 15 18:56:56 2019 UTC
(5 years, 8 months ago)
by
dan
Diff to
previous 5224
Instead of using mv which caused:
/usr/local/bin/readproctitle service errors: ...message-queues/recent/2019.07.15.15.42.07.48391.txt.raw: set owner/group (was: 10002/10001): Operation not permitted\nmv: /var/db/freshports/message-queues/recent/2019.07.15.15.43.31.53460.txt.raw: set owner/group (was: 10002/10001): Operation not permitted\nmv: /var/db/freshports/message-queues/recent/2019.07.15.15.45.39.56551.txt.raw: set owner/group (was: 10002/10001): Operation not permitted\n
use cp and rm
even when using this example:
[dan@dev-ingress01:~] $ ls -l ~ingress/message-queues/ ~freshports/message-queues/
/var/db/freshports/message-queues/:
total 248
drwxr-xr-x 18 freshports freshports 18 Jul 2 03:16 archive
drwxr-xr-x 10 freshports freshports 18 Jun 10 22:03 retry
/var/db/ingress/message-queues/:
total 3
drwxr-xr-x 2 root ingress 10 Mar 20 13:53 DUPS
drwxrwxr-x 2 ingress freshports 2 Jul 15 15:29 incoming
Revision
5223 -
Directory Listing
-
[select for diffs]
Modified
Sat May 25 17:15:59 2019 UTC
(5 years, 10 months ago)
by
dan
Diff to
previous 5222
Add Quarterly revision
* fixes #115
* display the port version on the latest quarterly branch
Add sort-by last updated
* fixes #116
Revision
5215 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 4 13:48:11 2019 UTC
(6 years, 1 month ago)
by
dan
Diff to
previous 5214
'We have two scripts which check master-slave. One queries the databse (.pl), the other queries the Makefile (.sh). Fix both and comment appropriately'
Revision
5209 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 28 18:47:50 2019 UTC
(6 years, 2 months ago)
by
dan
Diff to
previous 5208
Log to a .log file--This line, and those below, will be ignored--
M daily/300.send-security-notices
M daily/310.send-report-notices-daily
M daily/320.send-report-new-ports-daily
M fortnightly/310.send-report-notices-fortnightly
M fortnightly/320.send-report-new-ports-fortnightly
M monthly/310.send-report-notices-monthly
M monthly/320.send-report-new-ports-monthly
M weekly/310.send-report-notices-weekly
M weekly/320.send-report-new-ports-weekly
Revision
5203 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 3 14:08:17 2019 UTC
(6 years, 3 months ago)
by
dan
Diff to
previous 5202
'Add new config.pm value: $FreshPorts::Config::ScriptDir, Start using Email::Address::UseXS because of upstream deprecation'
Revision
5188 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 18 22:12:53 2018 UTC
(6 years, 4 months ago)
by
dan
Diff to
previous 5187
Remove vertical whitespace to avoid:
replaced vertical whitespace in Subject header with space; this will become fatal in a future version at /usr/local/lib/perl5/site_pe
Revision
5182 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 11 15:30:12 2018 UTC
(6 years, 4 months ago)
by
dan
Diff to
previous 5181
'add Flavors, adjust ccommitter_opt_in to use new email modules, assign default value to database.pm::sslmode, update email.pm to use Email::Simple not Mail::Sender(now deprecated)'
Revision
5160 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 15 12:33:15 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5159
Invoke logger only if the periodic is enabled
Standardize on logger -f local3.notice
Use $0 instead of hardcoding the filename
Revision
5157 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 19:24:23 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5156
'Convert from using p5-Mail-Sender to p5-Email-Sender, Honor $FreshPorts::Config::ReportDebugging for reports, Add test-sending-email.pl'
Revision
5153 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 18:58:47 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5152
Convert from using p5-Mail-Sender to p5-Email-Sender
* headers are now passed in via a hash
report-new-ports.pl now takes a range, as originally intended
show-config.pl: stop using email_client and use only email_server
Revision
5151 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 13 18:26:28 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5150
Remove email_client: please use email_server instead
Add ReportDebugging, to allow reports to run without sending anything.
Revision
5142 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 12 13:07:37 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5141
Add new periodic scripts for
* daily security notices
* daily, monthly, fortnightly, and monthly notices for
* changes to ports on your watch list
* new ports
Revision
5133 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 4 15:39:10 2018 UTC
(6 years, 5 months ago)
by
dan
Diff to
previous 5132
Since this is now a periodic, and it's actually running now,
make it work since we need to send an email. The output goes to a log file
via:
$ grep output /etc/periodic.conf
hourly_output=/var/log/hourly.log
daily_output="/var/log/daily.log"
weekly_output="/var/log/weekly.log"
monthly_output="/var/log/monthly.log"
Revision
5112 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 5 13:07:57 2018 UTC
(6 years, 6 months ago)
by
dan
Diff to
previous 5111
When inserting, set a value for the commit_log_ports.port_name_revision
field. This is used when comparing against the ports.conflicts* fields.
Revision
5093 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 14 15:08:47 2018 UTC
(6 years, 7 months ago)
by
dan
Diff to
previous 5092
All of the following deficiencies led to hiding permissions issues on a
directory.
* mention when process_vuxml.pl begins
* say vuxml_ident.pl, not vuxml ident
* say vuln_latest.pl, not vuxml latest
* toss the output of vuln_latest.pl into the log file
* if an error occurs during vuln_latest.pl, refer the reader to the logfile
Instead, now we see this in the vuxml.log file:
###
process_vuxml.pl finishes
'/var/db/freshports/cache/html' exists
trying to open '/var/db/freshports/cache/html/vuln-latest.html.tmp'
could not open '/var/db/freshports/cache/html/vuln-latest.html.tmp'
Tue Aug 14 14:59:55 UTC 2018 process_vuxml.sh vuxml finishes
####
Revision
5068 -
Directory Listing
-
[select for diffs]
Modified
Sun May 6 12:49:51 2018 UTC
(6 years, 10 months ago)
by
dan
Diff to
previous 5067
This code no longer used.
see svn+ssh://svnusers@svn.int.unixathome.org/freshports-1/ingress instead
Split the code into two parts:
1 - scripts run from the command line
2 - Perl modules used by some of those scripts
Revision
5067 -
Directory Listing
-
[select for diffs]
Modified
Sun May 6 12:47:16 2018 UTC
(6 years, 10 months ago)
by
dan
Diff to
previous 5066
Split the code into two parts:
1 - scripts run from the command line
2 - Perl modules used by some of those scripts
Revision
5065 -
Directory Listing
-
[select for diffs]
Modified
Sun May 6 12:37:14 2018 UTC
(6 years, 10 months ago)
by
dan
Diff to
previous 5064
Split the code into two parts:
1 - scripts run from the command line
2 - Perl modules used by some of those scripts
Revision
5014 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 10 18:06:26 2017 UTC
(7 years, 3 months ago)
by
dan
Diff to
previous 5013
Fix the stale filehandle issue with processing vuxml errors.
It seems we are creating a new $fh value each time through the loop.
While that approach worked with HANDLE, it does not work with IO::File.
We were getting errors such as:
no element found at line 1, column 0, byte 0 at /usr/local/lib/perl5/site_perl/mach/5.24/XML/Parser.pm line 187.
I think that is indictative of an empty file. I encountered similar
messages when printing the contents of the $fh before invoking the parser
but those messages went away if I did a seek to te beginning of the file
before parsing. I also noticed that the processing worked for the first
vuln it processed, but never for the second. Invoking the script again
allowed another vuln to get processed, and so on. That is what led me to the
'reuse' issue.
I also tried a $p->DESTROY(); ... this also allowed things to work but this
commit is a much better solution.
Revision
4940 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 28 17:31:13 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4939
* Add optional parameter when invoking FreshPorts::Database::GetDBHandle
* use $FreshPorts::Constants::DB_ConnectionType => SOMEVALUE
* possible values are:
* $FreshPorts::Constants::DB_ConnectionType_ReadOnly
* $FreshPorts::Constants::DB_ConnectionType_Commits
* $FreshPorts::Constants::DB_ConnectionType_Listener
Revision
4937 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 28 16:10:04 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4936
Add three database connection types:
* Commits - used by default
* read only - will become the default soon
* listening - used by fp-daemon
Revision
4906 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 24 21:59:23 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4905
Stop using HANDLE and start using File::IO
This will hopefully avoid: Name "main::HANDLE" used only once: possible typo at ./process_vuxml.pl line 89.
This should have been included in revision 4905
Revision
4905 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 24 21:58:37 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4904
Stop using HANDLE and start using File::IO
This will hopefully avoid: Name "main::HANDLE" used only once: possible typo at ./process_vuxml.pl line 89.
Revision
4904 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 24 21:57:25 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4903
When not refreshing explain:
this port *** EITHER *** does not need a refresh *** OR *** we were told not to fetch
Revision
4899 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 19 14:11:55 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4898
Alter this script so that each port is always updated.
Remove ValueHasChanged()
Become branch aware, because we have active ports on branches.
Revision
4881 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 16 12:01:37 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4880
Reinstate the depends_* trimming erroneously removed in a recent commit.
While here, remove unnecessary references to SVNDIR_CHROOT
Revision
4873 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 15 22:57:09 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4872
Add generate_plist feature. Fixes https://github.com/FreshPorts/freshports/issues/50
This will give us a better pkg-plist solution.
Stop using full path names in depends field:
* depends_build
* depends_run
* depends_lib
* fetch_depends
* extract_depends
* patch_depends
We were storing taking a
As a result, we no longer need these functions:
* freshports_ConvertPortPathToStandardLocation()
* depends_stripper()
Revision
4853 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 10 16:38:18 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4852
Add Report($;$) which takes a level and a message.
Use this function internally.
Start logging via local3 so we can capture that via syslog
Revision
4846 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 10 01:37:34 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4845
Adjust UMASK to be group writable (002)
Adjust regex to consider only headers (:h)
When discarding a message, log the Date, From, and Subject, much like a
delivery.
Revision
4830 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 8 19:07:36 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4829
Specify Maildir despite using neither Maildir nor mbox. Why? I suspect it
might make a difference in how the files are saved. Maildir saves to a
temp file, then moves it o the final destination. We want that behavior.
Under procmail, it was designed to save to a temp file, then mv.
Now that we are using maildrop and Maildir, let's use their save/mv instead
of doing it ourselves. Mind you, perhaps procmail did that too?
Forwarding email address must be prefixed with a !
Stop doing the save/mv we did in procmail. Let Maildir handle that.
Revision
4824 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 6 19:21:07 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4823
Bring up to date with new directories.
We no longer need foo+bar addresses because the recipient is now a dedicated
user (i.e. not dan).
Revision
4817 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 5 22:10:19 2017 UTC
(7 years, 5 months ago)
by
dan
Diff to
previous 4816
Reverse previous commit and leave config.sh in this directory.
Instead, we will create a symlink to /usr/local/etc/freshports/config.sh
Why?
Pulling in a config.pm file for perl might be more difficult. Might as well
use symlinks for both.
Revision
4796 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 26 22:33:58 2016 UTC
(8 years, 8 months ago)
by
dan
Diff to
previous 4795
* convert all DROP TRIGGER to DROP TRIGGER IF EXISTS
* add port_dependencies_insert_clear_cache() and port_dependencies_delete_clear_cache()
to properly handle changes to the port_dependencies table
Revision
4787 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 5 21:49:01 2016 UTC
(8 years, 8 months ago)
by
dan
Diff to
previous 4786
Most of these changes allow for commits to ports on branches and the
associated updates to any slave ports.
* Add distinfo field to ports table
* rename _GetPKGMESSAGE() to _GetFileContentsFromJail() because we are using it for both pkg-message and distinfo.
* introduce CreatePortOnBranch()
Revision
4782 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 5 21:01:58 2016 UTC
(8 years, 8 months ago)
by
dan
Diff to
previous 4781
* Master ports are always defined on head, because they may not exist on the branch
It may occur that someone changes the master port on a branch, but highly unlikely
* Remove extraneous fields from SQL query
* pg_lasterror -> pg_last_error
Revision
4773 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 2 15:25:08 2016 UTC
(8 years, 9 months ago)
by
dan
Diff to
previous 4772
The stored procedure GetGategory($CategoryName) did not work so I changed it
to prefix the category name with 'ports/head/' instead of just 'ports/'.
It seems this function was not used anywhere, but at least now it works.
Revision
4738 -
Directory Listing
-
[select for diffs]
Modified
Sun Aug 16 15:01:56 2015 UTC
(9 years, 7 months ago)
by
dan
Diff to
previous 4737
Allow for
--fetch for fetching before running (defaults to 1)
--message_id=MESSAGE_ID_FROM_COMMIT
--port=www/bacula-sysutils
Revision
4726 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 24 14:36:53 2015 UTC
(9 years, 8 months ago)
by
dan
Diff to
previous 4725
se client_encoding = 'ISO-8859-15' to avoid ERROR: invalid byte sequence for encoding "UTF8": 0xe1 0x66 0x69
Something to do with Ade's commits.
While here. make sure there is a space before LIMIT & OFFSET
Revision
4724 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 24 14:36:00 2015 UTC
(9 years, 8 months ago)
by
dan
Diff to
previous 4723
use client_encoding = 'ISO-8859-15' to avoid ERROR: invalid byte sequence for encoding "UTF8": 0xe1 0x66 0x69
Something to do with Ade's commits.
While here. make sure there is a space before LIMIT & OFFSET
Revision
4718 -
Directory Listing
-
[select for diffs]
Modified
Wed May 20 12:42:19 2015 UTC
(9 years, 10 months ago)
by
dan
Diff to
previous 4717
Change the wrapper used because the old one has trouble with more recent perl?
"This shouldn't happen at /usr/local/lib/perl5/5.18/Text/Wrap.pm line 84."
-use Text::Wrap;
+use Text::Wrapper;
Revision
4685 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 23 02:04:02 2014 UTC
(10 years, 3 months ago)
by
dan
Diff to
previous 4684
Display depends as: autoheader-2.69 : devel/autoconf
rename Required to build to Build Dependencies
rename Reuired to Run to Runtime Dependencies
rename Required libraries to LIbrary Dependencies
Use Maintainer not Maintained By
Use Homepage not Main Web Site
bug becomes issue
Revision
4572 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 25 16:49:01 2014 UTC
(11 years, 2 months ago)
by
dan
Diff to
previous 4571
Fix search problem
problem caused by port.last_commit_id containig a value which did not exist in the commit_log table.
Situation arose when manually deleting a commit and rerunning it, which left an orphan value in the table.
While here, add many aliases
Revision
4540 -
Directory Listing
-
[select for diffs]
Modified
Sun May 12 20:21:26 2013 UTC
(11 years, 10 months ago)
by
dan
Diff to
previous 4539
Use pg_escape_string instead of AddSlashes.
This avoid db errors like:
Security Events
=-=-=-=-=-=-=-=
May 12 19:56:57 supernews postgres[3700]: [2-1] ERROR: syntax error at or
near "\" at character 110
System Events
=-=-=-=-=-=-=
May 12 19:56:57 supernews postgres[3700]: [2-2] STATEMENT: select * from
vuxml where vid = '7fcf1727-be71-11db-b2ec-000c6ec775d9\"
class=\"resultLink/general.php?*id=\'\''
Revision
4535 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 24 15:09:15 2013 UTC
(11 years, 11 months ago)
by
dan
Diff to
previous 4534
Remove time-based values from page content. This causes the page
to be different each time it's loaded, despite the 'content' never changing.
Fix a long standing bug, which prevented 304 from ever being returned.
Revision
4513 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 16 15:37:57 2013 UTC
(12 years, 2 months ago)
by
dan
Diff to
previous 4512
Fix how we update in place.
Do this by deleting, then inserting.
It gives better results without getting very complex on updates.
Revision
4465 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 15 11:49:10 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4464
- update for storing svn revision in the commit_log table
- start doing an svn up on the revision name, not the individual files
Revision
4462 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 9 13:11:10 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4461
- remove the unused function GetFreeBSDRepository(), which always returned
src.
- add GetRevision() so we know the repository revision for this commit
Revision
4460 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 8 19:11:21 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4459
- start using PORTSVN as the PORTSDIR for our local ports tree
- this lets us use svn up to grab updates
- add a sanity test for CATEGORIES to ensure it contains the primary
- category
- ^ that is useful for repo copies
- UsualPortsTreeLocation is /usr/ports, not /usr
- This is because our incoming file names are prefixed with ports/ to
- reflect the existing tree structure in our database
which was set up when FreeBSD used cvs for the ports tree, not svn as it
- now does
- start fetching files from svn using svn up
- this will be useful for directories involved in repo copies. No more
- missing Makefiles on svn mv.
- in such cases, the file being fetched will be blank, but the directory is
- not.
Revision
4458 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 7 13:13:24 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4457
Add more debugging.
Google reported an increase in soft 404 errors
Tracked it down to ports deleted before we introduced the ports_categories
table.
Fixed it by changing the stored procedure Port_ID to use just the element,
ports, and categories table, thus ignoring the ports_categories table
entirely.
Revision
4457 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 7 13:07:32 2012 UTC
(12 years, 7 months ago)
by
dan
Diff to
previous 4456
Change the way we look up at Port ID. This was causing problems for some
ports, which were deleted before we created the ports_categories table.
And thus, have no entries in this table.
Revision
4452 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 22 12:06:56 2012 UTC
(12 years, 8 months ago)
by
dan
Diff to
previous 4451
- instead of processing the entire vuln.xlm file, look at each one and
compare the checksum. Process only the different ones
Revision
4445 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 22 12:00:27 2012 UTC
(12 years, 8 months ago)
by
dan
Diff to
previous 4444
- adjust for new approach of updating just the vuln
that have changed
- this script now just processed one vuln at a time
- record the checksum
- keep track of whether or not we updated the database
so our caller can take action based upon that
- add more detailed debugging statements
Revision
4437 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 16 14:53:39 2012 UTC
(12 years, 8 months ago)
by
dan
Diff to
previous 4436
Forced commit to correct log message:
- When displaying files, provide the appropriate link to SVN when it's an
SVN commit
Revision
4422 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 10 19:06:45 2012 UTC
(12 years, 8 months ago)
by
dan
Diff to
previous 4421
- prepare for FreeBSD move of post to svn
- alter svn processing so it prepends a repository name to all filenames
- create process_mail.pm (FreshPorts::ProcessMail) which contains a few
- common functions for parsing svn messages
- move some functions from process_mail.pl to process_mail.pm
- alter process_mail.pl to reference FreshPorts::ProcessMail
- GetOS_RepoPrefix() is the function that gets the repo name
- while here, remove process_cvs_mail.pl & process_svn_mail.pl which were
deprecated by respective .pm files some time ago
Revision
4420 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 26 12:29:25 2012 UTC
(12 years, 9 months ago)
by
dan
Diff to
previous 4419
Correct the calculations of vulnerabilities by not using ports_vulnerable
table. That's what we're setting up now. Don't use it.
Revision
4413 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 26 12:22:47 2012 UTC
(12 years, 9 months ago)
by
dan
Diff to
previous 4412
- better format a call to FreshPorts::CommitterOptIn::RecordErrorDetails()
- add missing DEPENDS as a sanity test failure
- add more debugging related to depends evaluation
- in sanity test failures, mention DEPENDS that cannot be translated to a
- dependency
Revision
4382 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 24 19:59:20 2011 UTC
(13 years, 6 months ago)
by
dan
Diff to
previous 4381
Some commits touch no files. Thus, correctly report the number of files
adjusted. This corresponds to a recent change to pulling back a commit
(see sp.txt) which now uses LEFT OUTER JOIN
Revision
4380 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 24 19:28:29 2011 UTC
(13 years, 6 months ago)
by
dan
Diff to
previous 4379
For some commits, there are no files touched. Allow for that in the SQL
by using left outer joins
If a port cannot be found, raise a notice, not an exception.
Revision
4367 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 15 16:31:56 2011 UTC
(13 years, 7 months ago)
by
dan
Diff to
previous 4366
Introduce, and start using, process_svn_mail.pm for processing SVN commits.
This has been in use on svn.freshports.org for quite some time.
This change allows freebsd-cvs.sh to invoke process_mail.pl, which decides
if this is an email we can process.
Revision
4276 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 30 15:47:30 2008 UTC
(16 years, 11 months ago)
by
dan
Diff to
previous 4275
Fix a comment - spell output
For Commit History, to make it fit on a 1024x768 screen:
Put the version in bold, not big.
Put everything after the version on a new line
Revision
4202 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 20 20:57:23 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4201
Do not redirect to vuxml.org if there is just one vuxml. It is nice to be
able to see what FreshPorts has recorded.
When displaying all vulns, compare package names in lower case. This will
put all different variations of phpMyAdmin together.
Revision
4185 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 16 19:01:41 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4184
Remove inaccurate comments referring to ./process_moved.sh
Log more information
This script no long fetches the file.
That should occur before this script is invoked.
Revision
4181 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 16 18:54:41 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4180
Remove PORTDIR from MASTERPORT.
Some ports do this in a wonky way. For example:
category | name | master_port
--------------+----------------------------------------+-----------------------------------------------
graphics | ocaml-lablgl | /usr/home/dan/ports/devel/ocaml-camlidl
archivers | ocaml-zip | /usr/home/dan/ports/devel/ocaml-camlidl
security | ocaml-cryptgps | /usr/home/dan/ports/devel/ocaml-camlidl
x11-toolkits | ocaml-lablgtk | //usr/home/dan/ports/devel/ocaml-camlidl
japanese | kinput2-canna+sj3 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+sj3+wnn6 | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+sj3+wnn7 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+wnn7 | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+wnn6 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-sj3+wnn7 | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-wnn7 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-freewnn+sj3 | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-wnn6 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+freewnn | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-canna+freewnn+sj3 | //usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-sj3+wnn6 | /usr/home/dan/ports/japanese/kinput2-freewnn/
japanese | kinput2-sj3 | //usr/home/dan/ports/japanese/kinput2-freewnn/
math | spooles-mpich | /usr/home/dan/ports/math/spooles/
science | mpqc-mpich | //usr/home/dan/ports/science/mpqc/
x11-toolkits | fltk-threads | /usr/home/dan/ports/x11-toolkits/fltk/
Revision
4176 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 15 18:54:11 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4175
Add:
43 18 * * * ${DIR}/cvsup-local-tree
which replaces the old command line version... which started to get ugly
Revision
4172 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 12 16:32:34 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4171
when processing a new category, fetch /www/en/ports/categories
Yes, we should use configuration items for these URLS...
Revision
4170 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 12 15:16:05 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4169
For freshports_commit_port, invoke element_pathname() such that it does not
provide a leading slash in the filename.
Revision
4164 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 11 18:57:27 2007 UTC
(17 years, 5 months ago)
by
dan
Diff to
previous 4163
Check that bacula-client is a slave port of bacula-server.
We could make this a list of such ports, but that's for future work.
Revision
4151 -
Directory Listing
-
[select for diffs]
Modified
Sun Sep 16 01:30:43 2007 UTC
(17 years, 6 months ago)
by
dan
Diff to
previous 4150
Take a better approach when checking for non ASCII files...
Don't look for HTML anywhere in the file output. Just look for it at the
start of the line.
Revision
4149 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 13 13:01:42 2007 UTC
(17 years, 6 months ago)
by
dan
Diff to
previous 4148
Provide knobs to set fetch sleep intervals and fetch retries. This should
improve handling of network comms problems.
Revision
4137 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 15 11:54:02 2007 UTC
(17 years, 7 months ago)
by
dan
Diff to
previous 4136
Oh, we're using the old style of cache file name when flushing the cache.
And we aren't finding anything. So the cache is never cleared. This is a
problem.
Revision
4129 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 9 21:40:47 2007 UTC
(17 years, 8 months ago)
by
dan
Diff to
previous 4128
Add code to append the repo name to CVSROOT in each commit.
Each cvs-all email contains a line of this form:
FreeBSD doc repository
where doc is the name of the repository. It is important to append the
repository name to CVSROOT for any commits to the CVSROOT/ directory.
Revision
4112 -
Directory Listing
-
[select for diffs]
Modified
Sun Jun 3 15:48:25 2007 UTC
(17 years, 10 months ago)
by
dan
Diff to
previous 4111
In the SQL, refer to commit_log as CL (easier to type).
Add a bunch of missing columns, not really used by this type of commit, but
useful for commit_record which expects these columns.
Revision
4106 -
Directory Listing
-
[select for diffs]
Modified
Sun Jun 3 03:17:43 2007 UTC
(17 years, 10 months ago)
by
dan
Diff to
previous 4105
Add SetShowEntireCommit()
Use ShowEntireCommit when deciding whether or not to display the entire
commit message.
Revision
4097 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 12 00:31:13 2007 UTC
(17 years, 11 months ago)
by
dan
Diff to
previous 4096
With soundex, provide a method for setting the whole expression, not just
the operator and the RHS of the expression.
Add in some more parameter checking
Revision
4043 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 31 21:49:24 2007 UTC
(18 years, 2 months ago)
by
dan
Diff to
previous 4042
Add new event to look for:
insert into listen_for (name, script_name) values ('category_new',
'listen_category_new');
When a new category appears, process the categories file.
Revision
4030 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 30 21:16:12 2006 UTC
(18 years, 3 months ago)
by
dan
Diff to
previous 4029
Update copyright year
Move the commit count to beside the date links.
Change reference to today's commit to be latest commits (because commits.php
is the latest 100 commits).
Revision
3970 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 10 12:52:16 2006 UTC
(18 years, 4 months ago)
by
dan
Diff to
previous 3969
$Category->FetchByName now returns zero, not undefined, for an unknown
category.
While here, stop using $Category->{id} and use $Category->id instead.
Revision
3962 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 10 03:37:02 2006 UTC
(18 years, 4 months ago)
by
dan
Diff to
previous 3961
Reorganize so there is only one place invoking port, category, and non-port
displays. This should be easier to maintain.
Revision
3955 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 9 21:47:58 2006 UTC
(18 years, 4 months ago)
by
dan
Diff to
previous 3954
Oops, we forgot completely about virtual categories. Let's implement them.
Later we will come back here and tidy this up, to make the code path
cleaner.
Revision
3939 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 9 16:41:44 2006 UTC
(18 years, 4 months ago)
by
dan
Diff to
previous 3938
> function freshports_Commit_Link_Port($MessageID, $Category, $Port) {
>
> $HTML = '<a href="/commit.php?category=' . $Category . '&port='
. $Port . '&files=yes&message_id=' . $MessageID . '">';
> $HTML .= freshports_Files_Icon();
> $HTML .= '</a>';
>
> return $HTML;
> }
>
1115,1123d1124
< function freshports_CommitFilesLink($MessageID, $Category, $Port) {
<
< $HTML = '<a href="/commit.php?message_id=' . $MessageID .
'&category=' . $Category . '&port=' . $Port . '&files=yes">';
< $HTML .= freshports_Files_Icon();
< $HTML .= '</a>';
<
< return $HTML;
< }
<
cvs
REname freshports_CommitFilesLink() to freshports_Commit_Link_Port() and
nput message_id at the end of the URL. This rearrangement caters to the
Apache mod_rewrite we are doing for files.php, which means QSA puts the
query string at the end:
RewriteRule ^/(.*)/(.*)/files\.php$ /commit.php?category=$1&port=$2&files=yes [R=permanent,QSA]
Revision
3936 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 9 16:35:38 2006 UTC
(18 years, 4 months ago)
by
dan
Diff to
previous 3935
Rename freshports_CommitFilesLink() to freshports_CommitFilesLink()
Prefix the port URL to start with a / and thus be absolute.
Revision
3919 -
Directory Listing
-
[select for diffs]
Modified
Sat Nov 4 19:40:50 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3918
A better way of showing files. At this URL we can
- show no files
- show all files
- show files for a particular commit
Revision
3918 -
Directory Listing
-
[select for diffs]
Modified
Sat Nov 4 19:30:37 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3917
Do not set a width on the poppy cell. Just set nowrap instead.
For pagelinks, for page 1, use /, not /&page=1
For showing files, use the new commit.php link.
Revision
3907 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 31 13:29:43 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3906
Modifications for handling pagination. Not sure this will work for all
types of commits, especially for those involving MOVED
Revision
3904 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 31 13:20:35 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3903
Add two new parameters to freshports_PortCommits(): $PageNumber, $NumCommitsPerPage
Add pagination to freshports_PortCommits()
Revision
3899 -
Directory Listing
-
[select for diffs]
Modified
Tue Oct 31 13:03:57 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3898
Add Count(), LIMIT() and OFFSET()
FetchInitialize now uses LIMIT and OFFSET.
Better error reporting, only to syslog().
Revision
3893 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 22 17:39:24 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3892
Start using new classes:
classes/commits_by_committer.php
classes/commits_by_description.php
classes/commits_by_tree_location.php
Revision
3890 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 22 17:15:52 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3889
Move a lot of the functionality from commits.php into three new classes:
commits_by_committer
commits_by_description
commits_by_tree_location
Revision
3885 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 22 13:38:00 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3884
Remove freshports_Commits()
This functionality is now provided by classes/commits.php and
classes/display_commit.php
Revision
3883 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 21 13:41:31 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3882
Add freshports_commit_regular() and freshports_commit_port() to pull back
the right stuff for a given message ID.
Revision
3882 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 21 13:40:48 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3881
Add new feature: SetShowAllPorts()
If you want to show all the ports/elements associated with this commit,
invoke this function with true.
Use revision_name, not revision.
Use pathname, not element_pathname.
Revision
3878 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 20 23:28:52 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3877
Introduce better debugging and error logging.
Add:
GetCountPortCommitsByTreeLocation()
GetCountCommitsByTreeLocation()
FetchByTreePath()
FetchByTreePathSrc()
For FetchByCommitMessageContents() and
GetCountCommitsByCommitMessage(), be more specific
in what we are passing in: a condition, not a value.
Revision
3876 -
Directory Listing
-
[select for diffs]
Modified
Fri Oct 20 23:24:19 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3875
Massive reorganization of the code. I'm sure there will be bugs.
Simplify query building by creating arrays of keys and phrases.
When searching by 'sounds like', order by the soundex for better
results at the top.
Revision
3858 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 14 15:36:53 2006 UTC
(18 years, 5 months ago)
by
dan
Diff to
previous 3857
Add freshports_SanityTestFailure_Link() and freshports_SanityTestFailure_Icon()
Display the STF icon if the commit failed a ST
Some whitespace changes around PortsFreezeStatus()
Better quoting (' intead of ")
Ensure ShowAds is declared as a GLOBAL
Add a link to the Sanity Test Failures page.
Revision
3835 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 5 23:46:26 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3834
listen_for takes better names.
add a new index to vuxml_names. It was in beta, but not prod, and prod runs
slower, or so it seems.
Revision
3833 -
Directory Listing
-
[select for diffs]
Modified
Wed Oct 4 12:00:49 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3832
Use $_REQUEST instead of $_POST
Don't send the $ports parameter to MoveStagingToWatchList(). It is not used
in this particular form.
Revision
3832 -
Directory Listing
-
[select for diffs]
Modified
Wed Oct 4 11:58:45 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3831
Be singular if there is only one port.
Remove the $ports parameter from MoveStagingToWatchList() as it is not used.
Start using newly added stored procedure MigrateStagingAreaToWatchList
After moving staging area to watch list, clear out the watch list.
Revision
3828 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 2 15:48:42 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3827
Move the search box up to avoid scrolling. While here, move the vul box up
to be just below the new search box location.
Revision
3822 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 1 20:04:49 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3821
Include ports_vulnerable when counting as the ports-vulnerable.php page
needs to set the condition: PV.current != 0
Revision
3818 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 1 18:32:39 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3817
- Fix a long-standing but only discovered-today bug in
freshports_SideBarHTML() where it uses the title instead of the label when
we are on the URL in question.
- Add A link to the newsfeed directory (/backend/).
- Move the link for news.freshports.org to be just under the newsfeed link
Revision
3805 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 1 12:40:01 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3804
Add a new parameters: PortCount.
The number of ports returned by the query may be a subset of that in the
group. i.e. we may be doing an OFFSET LIMIT query.
Revision
3793 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 16 23:17:20 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3792
For deleted ports, at least show the name of the package. This can be
useful when assigning names to vuxml vuln entries.
Revision
3790 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 14 17:02:25 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3789
Add two hidden options for each port:
BypassCache and RefreshCache
These two options must be the last on the line and be of the form:
RefreshCache=1
Thus, they are mutually exclusve.
Revision
3772 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 11 02:27:26 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3771
Add a few things, some not yet used.
- listen_for: events that listening daemons should listen for
- top_answers, top_questions: starting point for polling users on things
- event_types: type of events that can be raised in this database
- events: events that have been raised but not yet processed
- cache_clearing_ports: ports that should be removed from cache, populated
by triggers.
Revision
3770 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 11 02:18:39 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3769
Remove textproc/p5-Text-CSV_XS, which I think we never used.
Add databases/py-psycopg for the new fp-listen daemon
Revision
3768 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 11 01:49:16 2006 UTC
(18 years, 6 months ago)
by
dan
Diff to
previous 3767
Add RCS ID.
Correctly specify the cache path
Better syslogging.
Move to deleting cache entries one by one, and deleting from
the cache needed table one by one. Commit after each. Sounds fair to me.
Revision
3744 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 2 19:08:45 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3743
Minimize this script to a SELECT of a stored procedure. This script now
saves results to a database table, and does not return HTML.
Revision
3740 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 2 18:41:26 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3739
The last update field is incorrectly named for sorting.
When sorting, include the ascending icon.
Perhaps later, we sort up and down.
Revision
3738 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 2 18:11:41 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3737
Center the Google referral ad in the left hand column, make that column 160
wide to accomodate the wide skyscraper properly.
Revision
3729 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 2 14:22:27 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3728
Because we can't watch all categories, add freshports_Watch_Icon_Empty()
which displays an empty graphic, just for us.
uppercase DEFINE.
Revision
3715 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 31 15:15:25 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3714
Move the add/remove to/from watch list to the start of the line, before the
port name.
Add userid to the freshports_commit() call so we can correctly determine if
the port is on a watch list.
Revision
3704 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 31 01:37:34 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3703
A late check of data.
new tables for cross platform and cross arch testing of ports:
releases - what releases have we had?
archs - what archs do we have?
port_status - status of a given port with respect to release and arch
add fields to ports table already in production:
- is_interactive
- only_for_archs
- not_for_archs
For person watch lists on watch_list, create a token
using generate_watch_list_token()
For filtering, add new table element_pathname
EOF.
Revision
3674 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 23 13:33:14 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3673
The SUM icon has had whitespace removed from around it. Therefore, adjust
the WIDTH and HEIGHT for that icon here.
Start using the new watch add and watch remove icons. Adjust the text
accordingly to make more sense.
Revision
3672 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 23 13:28:45 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3671
Use a plus/minus on the watch list add icon. Keep the originals around so
we can reference them in the announcement. Keep our original artwork in case
we need it later.
Revision
3665 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 20 10:03:21 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3664
With the recently received file for parsing the categories list, add
textproc/p5-Text-CSV_XS which is a dependency for that script.
Revision
3662 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 19 15:35:16 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3661
Properly use DEFAULT_PAGE_SIZE as the default page size, and define it to be
100. Fewer pages, less page regeneration from the cache, etc.
Revision
3649 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 16 23:31:29 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3648
Let's not bother obscuring emails. Any email that's on FreshPorts is
already available from other multiple sources.
Revision
3630 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 9 23:12:08 2006 UTC
(18 years, 8 months ago)
by
dan
Diff to
previous 3629
There was a caching problem where cache entries were not deleted as
expected. This turned out to be a permissions issue.
There is code here that will be removed with the next commit. It was just
kind of a shame to delete it without committing it.... ;)
Revision
3627 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 4 20:26:52 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3626
Get the <title></title> field right by using $category/$port, not the now
defunct values $port->category/$port->port.
Use $MyPort instead of $port when actually fetching a port.
Revision
3626 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 4 20:21:21 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3625
Reduce database access.
Remove freshports_PortDescription() and freshports_PortDescriptionByPortID()
Change freshports_PortDisplay($db, $port)
to freshports_PortDisplay($db, $category, $port)
The port cache now contains the ElementID
As a result, we need to grab the OnWatchList value in a distinct call.
Revision
3623 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 4 20:17:14 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3622
Add freshports_ConditionalGetUnix() which takes a Unix timestamp.
This complements freshports_ConditionalGet() which takes a date/time string.
Add freshports_GetElementID() which grabs the ElementID for a category/port.
Add freshports_OnWatchList() which tells you how many watch lists an element
ID appears on for a given user.
Revision
3621 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 4 01:51:25 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3620
Remove all to better format the output when not all items appear
Display all categories, "real" or not, as hyperlinks
Revision
3616 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 3 15:53:15 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3615
Make it easier to follow what's going on here. Put more stuff into a
function and make the main code easier to follow.
Revision
3599 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 30 11:46:53 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3598
- Tell observers about UpdateBegins and UpdateEnds
- Take note of the return value from FetchAllFiles
and do not refresh ports if it fails.
- Event if there was a fetch problem, tell the observers
that refresh has been completed, so they make take action
(in this case, they mark ports as vulnerable)
Revision
3592 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 28 05:40:03 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3591
Save the Ports for later cache flushing. This means we can process the
cache removal requests after the transactions have been completed.
Revision
3591 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 28 05:39:12 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3590
Use the new path to cache files, which is a ports-tree-like directory
structure.
When we pass in CommitLogPorts, it is now category/port string.
Revision
3584 -
Directory Listing
-
[select for diffs]
Modified
Mon Jun 26 22:11:21 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3583
Start using ReplaceWatchListToken().
Actually, all the files changed here should start using the cache.
Then we'd have to create a new function that reads all the watch list
items for the user.
Revision
3577 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 23 14:39:42 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3576
Start caching the port details. This should be fast.
A simple test of page rendering times went from .220s to .047s
Revision
3576 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 23 14:38:20 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3575
Instead of populating the Watch List add/remove button, put a token in the
HTML. This allows us to cache the data and replace it at run time.
Revision
3575 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 23 14:37:32 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3574
Create two different types of caching: Commits, and Details.
When removing a cache entry, remove all types (e.g. commits and details)
Revision
3568 -
Directory Listing
-
[select for diffs]
Modified
Thu Jun 22 15:11:44 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3567
Be consistent in the log messages. Prefix each one with 'Cache: '.
Expand _CleanKey() and prevent directory stepping: i.e. ..
Revision
3567 -
Directory Listing
-
[select for diffs]
Modified
Thu Jun 22 15:09:46 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3566
Improve the logging messages by using CachePort not CachPort.
Move to a directory structure that reflects the ports tree: i.e.
ports/CATEGORYNAME/PORTNAME
Introduce and used _CacheFileName()
Revision
3562 -
Directory Listing
-
[select for diffs]
Modified
Mon Jun 12 17:59:49 2006 UTC
(18 years, 9 months ago)
by
dan
Diff to
previous 3561
Return a proper value for LastModified if there are no matches.
Add User as a property. Pass to freshports_ListOfPorts()
Revision
3549 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 6 14:28:45 2006 UTC
(18 years, 10 months ago)
by
dan
Diff to
previous 3548
Fix problem with cache removal. Only attempt removal if cache entry exists.
Use unlink instead of rm.
Fix typo: Finsihed => Finished
Revision
3546 -
Directory Listing
-
[select for diffs]
Modified
Tue May 30 22:10:27 2006 UTC
(18 years, 10 months ago)
by
dan
Diff to
previous 3545
For syslog, go from LOG_PID | LOG_PERROR, LOG_LOCAL0 to LOG_PID, LOG_SYSLOG
This way, we don't get stuff added to /var/log/httpd-error.log and it goes
to /var/log/messages instead.
Revision
3544 -
Directory Listing
-
[select for diffs]
Modified
Tue May 30 21:51:57 2006 UTC
(18 years, 10 months ago)
by
dan
Diff to
previous 3543
Use fwrite instead of fputs (they are aliases).
Check the results of frwite.
Do an fclose on the spool file before moving it into the cache.
Do an fclose if the write fails
chmod the file to be 664 so the perl scripts can remove it
For spool file names, use tempname to avoid collisions.
Revision
3529 -
Directory Listing
-
[select for diffs]
Modified
Fri May 26 22:06:49 2006 UTC
(18 years, 10 months ago)
by
dan
Diff to
previous 3528
Split the process for parsing the data into two parts:
- creation of cat/port array
- processing of said array
This allows us to create a new function that parses a string instead of a
file.
Revision
3520 -
Directory Listing
-
[select for diffs]
Modified
Thu May 18 11:53:10 2006 UTC
(18 years, 10 months ago)
by
dan
Diff to
previous 3519
Let's see if all those 'kernel: pid 47605 (httpd), uid 80: exited on signal
6' messages are related this to URL.
Revision
3508 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 26 21:35:36 2006 UTC
(18 years, 11 months ago)
by
dan
Diff to
previous 3507
Forced commit to document changes:
Expand the capability to search for related items by just clicking on an
icon. Now we can find:
- all ports maintained by the maintainer of this port
- all commits by this committer
- all ports that depend upon this port
Revision
3506 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 26 21:32:00 2006 UTC
(18 years, 11 months ago)
by
dan
Diff to
previous 3505
Start using new DisplayCommit class. This allows the code for
displaying commits to be shared between this module and the search module.
Revision
3504 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 26 21:29:26 2006 UTC
(18 years, 11 months ago)
by
dan
Diff to
previous 3503
This commit adds support for displaying commits by committer.
Allow for LIMIT and OFFSET in the result set.
Add new functions:
SetLimit()
SetOffset()
GetCountCommitsByCommitter()
GetCountPortCommitsByCommitter()
GetCountPortsTouchedByCommitter()
FetchByCommitter()
Revision
3497 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 21 21:04:31 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3496
Better document the difference between adding a port and adding a package.
Better divide the output by adding some <HR>
Remove an unneeded ; from SQL
Revision
3496 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 21 20:59:30 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3495
fix Port_ID() and put a condition on the ports.category_id field.
This avoids duplicates when a port is in more than one category.
For example, mail/squirrelmail which is also listed in www.
Revision
3491 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 13 15:41:21 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3490
add freshports_PortDisplay() which takes a $port instance and displays it.
add freshports_PortDescriptionByPortID() which takes a port id, grabs a $port instance,
and then calls freshports_PortDisplay().
freshports_PortDescriptionByPortID($db, $port_id) {
> GLOBAL $TableWidth;
> GLOBAL $FreshPortsTitle;
> GLOBAL $User;
>
> $port = new Port($db);
> $port->FetchByID($port_id, $User->id);
>
> freshports_PortDisplay($db, $port);
> }
>
> function freshports_PortDisplay
Revision
3488 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 13 15:39:00 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3487
Handle ports that move better. You are given links to the new and port
port and that makes it easier to add/remove them.
Revision
3486 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 13 15:16:16 2006 UTC
(19 years, 1 month ago)
by
dan
Diff to
previous 3485
Add WatchListDeletedPorts(bigint) for catering to ports on your watch list which
have been deleted from the ports tree
Add Port_ID() which gives you the port id for a category/port combination. This
function handles virtual cagtegories.
Revision
3476 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 5 21:52:15 2006 UTC
(19 years, 2 months ago)
by
dan
Diff to
previous 3475
Add RefreshDescription()
Cater for non primary categories by setting element_ID to null when no
value is provided.
Revision
3456 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 27 13:50:20 2005 UTC
(19 years, 3 months ago)
by
dan
Diff to
previous 3455
Include a link to Yesterday's commits.
When showing yesteday's commits, include a linkto the previous date,
the next date, and today.
This improves over the previous situation which was just Previous Day, Next day.
Revision
3453 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 12 11:47:18 2005 UTC
(19 years, 3 months ago)
by
dan
Diff to
previous 3452
Include the URL into the FreshPorts webserver for each port that had trouble.
Provide a bit more space before listing the errors.
If notifications are disabled, tell me who the committer was.
Revision
3441 -
Directory Listing
-
[select for diffs]
Modified
Thu Dec 1 04:06:13 2005 UTC
(19 years, 4 months ago)
by
dan
Diff to
previous 3440
Add databases/postgresql74-client
databases/postgresql74-server
sysutils/bacula-client
sysutils/daemontools
databases/mysql41-client
databases/mysql41-server
devel/pear-HTML_Common
devel/pear-HTML_Page2
databases/postgresql-contrib
Revision
3420 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 8 02:00:48 2005 UTC
(19 years, 5 months ago)
by
dan
Diff to
previous 3419
Display the URLs for the personal news feed if they are logged in.
Display the personal news feed content if they supply a valid token.
Revision
3386 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 18 12:16:45 2005 UTC
(19 years, 8 months ago)
by
dan
Diff to
previous 3385
Use the correct variable name for expiration_date
Properly quote or don't quote the value depending on whether or not it is NULL
While here, renumber the numbers so they are sequential.
Revision
3345 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 25 16:20:48 2005 UTC
(19 years, 9 months ago)
by
dan
Diff to
previous 3344
Mention that broken, ignored, and forbidden ports are not built by the package
cluster. Therefore, pkg_add will not work.
Revision
3334 -
Directory Listing
-
[select for diffs]
Modified
Mon May 23 16:19:23 2005 UTC
(19 years, 10 months ago)
by
dan
Diff to
previous 3333
Remove the ====== before and after the call to PeopleWatchingThisPortAlsoWatch()
Make PeopleWatchingThisPortAlsoWatch() return an empty string. The overhead
on this function can be high.
Revision
3327 -
Directory Listing
-
[select for diffs]
Modified
Sat Apr 9 20:36:40 2005 UTC
(19 years, 11 months ago)
by
dan
Diff to
previous 3326
"Sounding like" is only for the short fields (i.e. "Port Name", "Package Name",
"Latest Link", and "Maintainer"). If you try "Sounding like" on any other field,
the system will actually use "Containing" instead.
Revision
3293 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 17 04:48:28 2005 UTC
(20 years, 1 month ago)
by
dan
Diff to
previous 3292
A script to set initial values for restricted and no_cdrom fields of the ports table.
Does not clear out existing values.
Revision
3284 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 17 04:22:41 2005 UTC
(20 years, 1 month ago)
by
dan
Diff to
previous 3283
ensure all IMG SRC have border, width, and height.
Fix vulnerabity text to refer to present and past vulnernabilities more explicitly.
Revision
3277 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 17 01:53:25 2005 UTC
(20 years, 1 month ago)
by
dan
Diff to
previous 3276
Use a new restricted image, which has a new size and type.
Correct the hyperlinks used for restricted and no_cdrom
Rename freshports_NoCDROM_Icon() to freshports_No_CDROM_Icon() to be consistent
with the field name.
use a cdrom image to indicate no_cdrom.
Correct the labels associated with the long form of the RESTRICTED and NO CDROM
messages.
Revision
3269 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 1 17:53:14 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3268
Put transaction control here
Pass the database handle into the XML_Munge object
After processing, rollback or commit, as appropriate.
Revision
3266 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 1 17:39:35 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3265
Remove the database connection from this file. It is now supplied with object
creation.
Replace $dbh with $self->{dbh}
Revision
3264 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 1 14:01:55 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3263
First attempt at putting all the css into a file. Until now, it was in each
download from the website. A terrible waste of space.
Revision
3260 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 29 03:37:23 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3259
Remove Deprecated, Ignore, Broken, Forbidden, and New Ports from the
Ports box. These were duplicated by entries that appear in the Statistics box.
Revision
3251 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 26 21:03:15 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3250
During object creation, set the vuxml list to undef.
Remove VulnerabilityCount() and
replace it with IsVulnerable() and WasVulnerable()
Revision
3250 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 26 20:55:32 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3249
For the observer object, provide a database handle during creation.
Create the observer object first, then the xml munging object.
(Just because we can)
Revision
3244 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 26 14:39:31 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3243
- When moving to using UTC internally (revision 1.79), we changed
page_load_summary.date to a timestamp when it should be a date.
We now change this back.
- Remove commit_log_port_vxuml, added in error. Use the
commit_log_ports_vxuml table instead.
- Add some indexes on the ports table to speed some queries.
- Add the ports_vulnerable table.
Revision
3225 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 23 03:05:16 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3224
Add new attribute _debug and functions to set/get it.
Add function setDB()
Don't automaticaly add a new row and cell to the table. let the caller do that
Simlarly, don't close off the last cell/row.
Be sure to vertically align the side bar to the top.
Revision
3219 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 22 14:46:53 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3218
Start using return instead of echo. It gives more flexibility. This is
being done as part of the move to using PEAR::HTML_Page2.
Revision
3210 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 22 14:37:02 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3209
Add two new functions:
IsCurrentPortVulnerable() - now just a stub
VulnerabilityCount() - returns number of vulnerabilities for this port
Revision
3202 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 17 00:08:44 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3201
divide LatestCommits into LatestCommitsSmall and LatestCommitsLarge which
deal with 10 and 100 commits respectively. This dramatically improves
the speed.
Revision
3196 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 13 22:15:08 2005 UTC
(20 years, 2 months ago)
by
dan
Diff to
previous 3195
Add CheckForNoDefaultAndAddToDefault
When there are no default watch lists, and the user has opted for
'the default watch list[s]', then when you click on add/remove for a port,
no action will be taken. Silently.
This at least lets them know.
Revision
3173 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 5 23:14:41 2005 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3172
Create a common method for display the main table and the main content
table. Thereby making it easier to display things such as port freeze
notifications.
Revision
3153 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 19 23:20:21 2004 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3152
Observer the FilesFetched event.
Keep track of whether or not the ports tree infrastructure needs to be patched
based up on the files that are in this commit
Revision
3147 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 19 17:10:56 2004 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3146
Add facilities for displaying the vuxml details, useful for debugging
and for the VuXML team to verify that all went well.
Revision
3145 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 19 16:44:52 2004 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3144
Start using port->IsSlave()
Add freshports_CheckForOutdatedVulnClaim($commit, $port, $VuXMLList)
if the most recent commit for a slave port is marked as vulnerable,
and the commit version isn't the same as the port version, let them
know that the master port may have been updated, and the port may no longer
be vulnerable.
Revision
3138 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 14 01:10:47 2004 UTC
(20 years, 3 months ago)
by
dan
Diff to
previous 3137
Convert to using timestamp without timezone in anticipation of going to UTC
internally.
Add index on commit_log_ports_port_id on commit_log_ports (port_id);
Revision
3091 -
Directory Listing
-
[select for diffs]
Modified
Fri Dec 3 00:56:56 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3090
Improve the Hover text by including the actual FORBIDDEN, BROKEN,
DEPRECATED, or IGNORE message.
also: Implement links to PORTSMON without actually using it yet....
Revision
3087 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 1 22:56:47 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3086
Include links to the FAQ for most icons, such as freshports_Broken_Icon()
by providing a function, freshports_Broken_Icon_Link().
Revision
3079 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 30 12:36:52 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3078
Add some vuxml functions expected to be used when I start optimizing
the vuxml process.
Add currenttimestamputc() that may be useful when moving to UTC
Add WatchersAlsoWatched() to display "People watching this port, also watch".
Revision
3063 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 18 21:24:41 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3062
Use ILIKE instead of lower() when doing case insensitive LIKE
Order the code so that it's always depends_build, depends_lib, depends_run.
Just so it is consistent.
Add depends_all which searches all of the above three terms.
Better format the SQL when an error occurs.
Revision
3058 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 17 22:37:27 2004 UTC
(20 years, 4 months ago)
by
dan
Diff to
previous 3057
When using the ?package=PACKAGENAME, and there is more than one port with that
package name, redirect them to the search page where the results will be listed.
Revision
3031 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 24 14:41:35 2004 UTC
(20 years, 5 months ago)
by
dan
Diff to
previous 3030
Use IsSet($_SERVER['REDIRECT_QUERY_STRING']) instead of In_Array("REDIRECT_QUERY_STRING", $_SERVER)
which appears to fail.
While here, adjust whitespace on a }
Revision
3028 -
Directory Listing
-
[select for diffs]
Modified
Thu Oct 21 03:29:44 2004 UTC
(20 years, 5 months ago)
by
dan
Diff to
previous 3027
Only display the package if ports.no_package is non-blank.
If it is non-blank, say there is no package and give the reason.
Revision
3013 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 3 01:45:09 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3012
This file was taken from process_vuxml.pl and will now be the file that
just loads the vuxml file into the database.
process_vuxml.pl will soon load the file, and mark the commits.
Revision
3012 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 2 18:51:39 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3011
Display 'non port:' before the element name.
Fix display so it looks like main pages. The side bars were appearing one cell
lower than other pages.
Revision
3009 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 2 18:49:13 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3008
For non-ports, do not show revision.
For non-ports, don't display a lots of things, like forbidden, deprecated, etc.
Revision
3008 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 2 18:19:28 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3007
In FetchInitialize, remove $element_id from the select and use
commit_log_elements.element_id instead. This will give us the correct value
and correctly name the column as element_id a the same time.
Revision
3007 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 2 18:18:08 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3006
In the function freshports_CommitsFooter, the parameter is not a $port.
It is an $element_record. Make it so.
In freshports_Commits, use $element_record, not $port, which is undefined.
Revision
3004 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 28 22:15:48 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 3003
If we pass '' to a sub, then invoke a shell script, that is missed as a parameter.
So the usage is invoked. Not nice. So use , '"''" instead.
While debugging this problem, improve the debugging output.
Revision
2998 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 27 00:31:38 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2997
Pass on to the vuxml.org URL if we have just one vuln.
If we have multiple vulns, display a list. (not working yet)
Revision
2994 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 27 00:30:17 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2993
To take advantage of the new fetch script, without breaking existing code,
create FetchFileURL(), and alter FetchFile to pass acceptable parameters.
Revision
2993 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 27 00:29:25 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2992
Become more useful by adding a couple of parameters:
URL=$1 - The URL to fetch from. Useful for local testing.
SUFFIX=$6 - The suffix to attach to the URL. Useful to specify the repository.
Revision
2988 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 25 19:42:46 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2987
I was planning on grabbing the historical epochs for the master sites of slave ports,
but that proved to be ugly because historical makefiles do not always parse cleanly.
Revision
2987 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 25 19:41:17 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2986
Start updating commit_log_ports
Add some code for extracting PORTEPOCH via make -V, but then
comment it out because some old revisions of makefiles do not
parse cleanly.
Ignore PortEpochs that are variables. We can't use them here.
Revision
2985 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 23 20:17:14 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2984
If the port never sets PORTEPOCH, it must be set in the MASTERPORT.
Detect such situations and display the master port name.
Revision
2959 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 22 13:57:09 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2958
Introduce new function: freshports_PackageVersion() which creates the
package name, based upon PORTVERSION, PORTREVISION, and PORTEPOCH.
Alter existing code to use this new function.
Fix a problem with MAINTAINER mailto by not obscuring the subject field
Revision
2956 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 20 19:57:10 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2955
Instead of doing a subselect, use a JOIN. It's faster. And continues
to work if you have multiple ports with the same package name.
Revision
2948 -
Directory Listing
-
[select for diffs]
Modified
Fri Sep 17 18:48:16 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2947
Add package_version(text, text, text) RETURNS text
This function strings together PortVersion, PortRevision, and PortEpoch
as they are for a package name.
Revision
2944 -
Directory Listing
-
[select for diffs]
Modified
Fri Sep 17 03:14:56 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2943
On a file update, invoke FreshPorts::SpecialProcessingFiles::Eat
Start handling $FreshPorts::Messages::PortsFreezeCheck
Revision
2925 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 13 13:01:16 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2924
- is_slave_port text ,
+ master_port text ,
latest_link text ,
+ depends_lib text ,
no_latest_link text ,
no_package text ,
pkgname text ,
+ portepoch
Rename is_slave_port to master_port to reflect what we are actually using in the
database.
Add depends_lib and portepoch.
Revision
2924 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 13 12:52:49 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2923
Add new columns to ports table:
no_latest_link
no_package
pkgname
portepoch
example:
freshports.org=# select no_latest_link, no_package, pkgname, portepoch from ports_active where name = 'dgd-net';
no_latest_link | no_package | pkgname | portepoch
----------------+------------+---------------+-----------
| | dgd-net-1.1.8 | 0
(1 row)
freshports.org=#
Revision
2921 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 11 14:04:35 2004 UTC
(20 years, 6 months ago)
by
dan
Diff to
previous 2920
Add update_database_vuxml_affected and update_database_vuxml_references
This completes the database updates for vuxml data.
Revision
2907 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 27 16:55:35 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2906
Move range_version_start nearer to the top of the table.
Now we can see the data like this:
range_version_start range_operator_start VERSION and VERSION range_operator_end range_version_end
Example:
1.04b <= VERSION and VERSION < 1.06
Revision
2906 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 27 14:52:07 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2905
Alter GetCategoryPortFromLatestLink() to remove RAISE NOTICE debugging
messages. Also if more than one match found, return -1, not the count.
This makes the return value more useful.
Revision
2904 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 27 14:32:51 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2903
We have a new deleted icon. Change the size accordingly.
Add freshports_VuXML_Icon().
In freshports_PortsMoved, give $HTML an initial value.
Start using the classes/commit_log_ports_vuxml table.
Revision
2890 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 26 18:38:42 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2889
Give initial values to $orderby and $orderbyupdown
Use ORDERBYASCENDING not ORDERBYASC
Use ORDERBYDESCENDING not ORDERBYDESC
Revision
2860 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 9 22:36:36 2004 UTC
(20 years, 7 months ago)
by
dan
Diff to
previous 2859
Introduce freshports_PortsUpdating and include notices from /usr/ports/UPDATING
Use FRESHPORTS_VERSION_REVISION_JOINER
Revision
2849 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 13 13:50:31 2004 UTC
(20 years, 8 months ago)
by
dan
Diff to
previous 2848
Fix some HTML nits by using & instead of &
Use the Right ALT and TITLE values when calling freshports_Commit_Link
Fix a broken tag.
Use htmlspecialchars on the port homepage
Introduce freshports_Head whereby we can show all the commit message
if it's over the limit by just a few lines.
Properly define WRAPCOMMITSATCOLUMN
Revision
2825 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 29 18:47:38 2004 UTC
(20 years, 9 months ago)
by
dan
Diff to
previous 2824
Back out the change. The blank line code has been tested in production for
some time, but it's not thought to be necessary. The error it is detecting
should not occur. It may be better to fail with when this error occurs.
Revision
2812 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 2 12:37:16 2004 UTC
(20 years, 10 months ago)
by
dan
Diff to
previous 2811
Allow the date in a commit message to be : or / delimited.
e.g. jeh 2001/12/04 05:22:26 PST
or jeh 2001-12-04 05:22:26 PST
Revision
2793 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 1 18:25:35 2004 UTC
(21 years ago)
by
dan
Diff to
previous 2792
Alter freshports_commit(text) to take a page size and offset.
Add freshports_commit_count_elements(text) which returns the number of rows.
Revision
2786 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 22 20:32:58 2004 UTC
(21 years ago)
by
dan
Diff to
previous 2785
A port can be marked as IGNORE. Start processing that value from the makefile.
All makes now use: LOCALBASE=/nonexistentlocal X11BASE=/nonexistentx
This will allow ports marked as BROKEN to be queried as if they were being
loaded into a empty machine (i.e. no ports installed).
Idea from: Oliver Eikemeier <eikemeier@fillmore-labs.com>
Brought up by: Thierry Thomas <thierry@pompo.net>
Revision
2779 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 22 18:58:22 2004 UTC
(21 years ago)
by
dan
Diff to
previous 2778
Provide a method for adding nofollow and noindex tags. There is far too
much information on FreshPorts for every link to be indexed.
Revision
2736 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 10 15:54:14 2004 UTC
(21 years, 1 month ago)
by
dan
Diff to
previous 2735
Based up on report-notifications.pl, this script does not need to refer to
report_frequency because it is run on demand.
We refer to security_notice.date_added not commit_log.date_added
The next step is to remove all reference to frequency.
Revision
2723 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 31 13:40:13 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2722
Reflect changes made to .PDM file:
- announcements table dates do not have time zone
- page_load_summary now has a total and users field
Revision
2704 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 29 15:21:06 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2703
Update copyright.
move WatchURL, ReportSubscriptionURL here from various report scripts
Create FreshPorts::ReportConstants::Footer
Revision
2698 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 12 21:02:40 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2697
In the page_load_summary table:
remove defaults for user and non_users
rename non_users to total
add rendering_time_min and rendering_time_max
In the page_load_detail table:
split timestamp into two fields: date and time.
remove NOT NULL on user_id column
Revision
2689 -
Directory Listing
-
[select for diffs]
Modified
Fri Jan 9 19:22:33 2004 UTC
(21 years, 2 months ago)
by
dan
Diff to
previous 2688
in page_load_summary:
- rename name to page_name
- add rendering_time_min and rendering_time_max
in page_load_detail
- break timestamp into date and time fields
- user_id can be null
Revision
2653 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 30 14:08:12 2003 UTC
(21 years, 3 months ago)
by
dan
Diff to
previous 2652
Allow nulls on ports_moved.{from_port_id|to_port_id}
I suspect from_port_id cannot be NULL, but we'll adjust that later if need be.
Revision
2650 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 21 14:13:31 2003 UTC
(21 years, 3 months ago)
by
dan
Diff to
previous 2649
Forced commit to correct previous commit message:
If no watch lists are in service return the first one ordered by name.
Revision
2632 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 7 20:10:50 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2631
Set $PortCount earlier in the code so it always has a value.
Be more careful when reseting the array, which may not have a value if
the entire page was not sent back to the user.
Revision
2613 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 1 18:32:33 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2612
When a new user is created, a watch list is automatically created too.
When this is done, ensure the in_service flag is set to true. Otherewise,
they can't start adding things to their watch list.
See classes/watch_list_element.php::AddToDefault($UserID, $ElementID).
Revision
2605 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 28 00:17:41 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2604
Let's not use $HTML.= anymore. Just echo. It can be 20s faster for 2000 ports
4429 | 2003-11-27 19:16:20.067438 | /watch.php | 1 | 192.168.0.99 | 00:00:52.00862
4427 | 2003-11-27 19:14:24.64815 | /watch.php | 1 | 192.168.0.99 | 00:00:28.657504
Revision
2595 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 26 13:45:18 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2594
Ensure you call AddSlashes. I noticed this problem because of this error:
2003-11-26 05:43:12 [82327] ERROR: parser: parse error at or near "cgi" at character 41
And was able to reproduce it by using this URL:
%20+%20base%20+%20'cgi-bin/ads/'%20+%20%20%20adcode%20+%20'.cgi'%20+%20Tv%20+%20%20%20
Revision
2583 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 20 14:21:00 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2582
Remove commit_log_port_elements which has been replaced by commit_log_ports_elements
Add index commit_log_ports_elements_clid on
commit_log_ports_elements (commit_log_id)
Revision
2580 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 20 14:16:46 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2579
When processing a commit, check to see if the Makefile is there. If it isn't,
error out and mention that if this is a repocopy, please ignore this error.
While here, put the Makefile pathname into $Makefile, and stop repeating
the use of MakefileDirectory/$FreshPorts::Constants::FILE_MAKEFILE
Revision
2574 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 14 17:58:26 2003 UTC
(21 years, 4 months ago)
by
dan
Diff to
previous 2573
Improve error reporting by including port/category.
Only report the error if the error file is > 0 and the result is zero
Revision
2557 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 5 17:02:41 2003 UTC
(21 years, 5 months ago)
by
dan
Diff to
previous 2556
Don't store the start position within the form. Leave it on the URL.
This allows us to tell the difference between clicking on search (no start
specified) and clicking on next page (start will be on the URL).
Revision
2536 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:32:13 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2535
Replace commit_log_port_extras with commit_log_ports_elements. The function
of the table has changed, but the fields are the same.
Revision
2534 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:20:43 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2533
- Use commit_log_ports_elements instead of commit_log_ports_extra
- When creating a new port, be sure to read the details back in after
saving. That info is needed later.
- fix up the matching of directories and ports so we quote any meta
characters in the port name. i.e. \Qpathname\E
Revision
2533 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:17:05 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2532
Replace commit_log_ports_extra with commit_log_ports_elements.
Same concept, but larger scope. This new table cross references a commit
to ports and files outside ports.
Revision
2532 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 6 17:10:50 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2531
Start using new commit_log_ports_elements table in order to simply the
process of displaying both ports and non-ports on a single page.
Revision
2529 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:32:11 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2528
- remove housekeeping table, no longer used
- alter security_notice
- remove index on security_notice (commit_log_id)
and leave it to the primary key instead.
- move indexes on ports_categories (port_id) and ports_categories (category_id)
- add commit_log_port_extras
Revision
2528 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:13:34 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2527
- Adjust FUNCTION LastestCommits(int, int) RETURNS SETOF commit_record to
use commit_log_ports_extra.
- At the same time, we can remove an extraneous JOIN.
- Convert those LEFT OUTER JOINs no longer needed to JOINs.
Revision
2527 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:06:11 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2526
Any ports tree commit which touches a file not belonging to a port (e.g.
ports/INDEX) will result in an entry in this table.
Revision
2526 -
Directory Listing
-
[select for diffs]
Modified
Sat Oct 4 21:05:28 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2525
- Because the File structure now contains element_id, be sure to
extract it from the where used.
- Add _RecordPortsFilesOutsidePorts which will populate the
commit_log_ports_extra table.
Revision
2505 -
Directory Listing
-
[select for diffs]
Modified
Fri Sep 26 12:48:56 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2504
Fix to make files.php work, the option which displays the files
with a port which were touched by a given commit.
Look for 'files.php', extract that from the pathname so we can find the
element, extract the message id, then call the freshports_Files function.
As part of this change, send the REDIRECT_URL instead of the REQUEST_URI
to freshports_Parse404URI.
< $result = freshports_Parse404URI($_SERVER['REQUEST_URI'], $db);
---
> $result = freshports_Parse404URI($_SERVER['REDIRECT_URL'], $db);
Revision
2495 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 25 15:11:54 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2494
Move the old package code with the new package code, which was added
to the wrong place. It is now within the IF.
Revision
2493 -
Directory Listing
-
[select for diffs]
Modified
Thu Sep 25 14:13:40 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2492
Add freshports_CVS_Icon()
Add freshports_CVS_Link
Remove GLOBALs and use the defines for CVS and FTP URLs instead
Use recently added EncodingLosses() and PackagesExists() functions
Instead of referring to Homepage, use Main Web Site, as does the main FreeBSD site
Provide a link to the CVSweb for non-port entities
Revision
2462 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 24 13:47:44 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2461
Provide a facility for recording commits into the last_commits_ports table
which are in the ports tree, but which do not involve a port.
Revision
2439 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 16 11:51:12 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2438
Now that main page update has gone away, we need the ability to refresh
the daily summaries. One day, we'll start using it...
Revision
2435 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 16 11:00:35 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2434
If no files are found during a regular GetFiles procedure, try invoking
GetFilesImported instead. This will process any file imports.
Revision
2434 -
Directory Listing
-
[select for diffs]
Modified
Sun Sep 14 14:02:04 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2433
Give the submit button a name on the front page search form. This will
allow it to actually retrieve search results rather than merely populating
the form when search.php is displayed.
Revision
2433 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 13 11:15:53 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2432
Trim input from users. No sense having trailing/leading spaces.
We trim more fields than we have to, but let's be consistent.
Revision
2413 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 9 11:48:58 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2412
Lots of whitespace fixes.
Record the information which is used during Error Notification.
(message subject and message id)
Revision
2412 -
Directory Listing
-
[select for diffs]
Modified
Tue Sep 9 11:48:14 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2411
Allow CommitMessageID and CommitMessageSubject to be included in
the notification.
If Committer Notifications are turned off, don't include the part
about why you are getting this message. It'll be going to the system
owner, who should know why...
Revision
2407 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 8 18:19:21 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2406
If no files found in a commit, report an error. This was prompted by
someone who did a cvs import instead of using addport.
Revision
2402 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 8 14:18:14 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2401
When listing ports, retrieve the primary category so that we may properly
link to the right port.
To remain consistent with category listings, use * to designate ports with
a primary category different to that which is being displayed.
Revision
2401 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 8 13:54:23 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2400
Indicate that ports marked with a * actually reside within another category but
have this category listed as a secondary category.
Revision
2400 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 8 13:53:02 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2399
If category_looking_at is set, and it's not the primary category,
display a * after the port name. This is most useful for category
listings. (e.g. http://www.FreshPorts.org/lang/)
When displaying "Also listed in", use category_looking_at if it
supplied, otherwise, use category. This is also useful on the
same page as above.
Revision
2399 -
Directory Listing
-
[select for diffs]
Modified
Mon Sep 8 13:50:59 2003 UTC
(21 years, 6 months ago)
by
dan
Diff to
previous 2398
A port always has one primary category. This category corresponds to
the directory in which the port resides. This directory is always
within the ports tree. A port may also reside in other categories
but they are referred to as secondary categories.
When displaying the contents of a category, the same port name may appear
twice, but from different categories. For example, japanese/gawk and
lang/gawk. The query to obtain a list of ports from a given category
will now return both the primary category (as category) and the name
of the category we are looking at (as category_looking_at).
Revision
2396 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 6 12:19:27 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2395
Replace OPAQUE with TRIGGER on functions used as triggers.
remember to drop triggers before replacing them:
DROP TRIGGER security_notice_audit ON security_notice;
DROP TRIGGER ports_ports_categories ON ports;
Revision
2380 -
Directory Listing
-
[select for diffs]
Modified
Wed Sep 3 23:07:00 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2379
ignore ? FreshPorts2.PDB
cvs server: Diffing .
Index: FreshPorts2.pdm
===================================================================
RCS file: /home/repositories/freshports-1/database-schema/FreshPorts2.pdm,v
retrieving revision 1.71
diff -r1.71 FreshPorts2.pdm
51c51
< -- $Id: FreshPorts2.pdm,v 1.71 2003/05/09 19:39:24 dan Exp $\
---
> -- $Id: FreshPorts2.pdm,v 1.70 2003/05/02 18:37:59 dan Exp $\
83c83
< 1052505034
---
> 1052509087
[dan@polo:/usr/websites/working-copy.freshports.org/database-schema] $ cd ..
[dan@polo:/usr/websites/working-copy.freshports.org] $ cd database-schema
[dan@polo:/usr/websites/working-copy.freshports.org/database-schema] $ cvs .ignore
ignore FreshPorts2.PDB
Revision
2365 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 19 13:32:57 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2364
Remove functions associated with element_pathnames table.
This table was experimental and attempted to deal with path parsing
issues which would arise with watch lists on FreshSource. We might be
able to use these functions at a later date if we allow people to
watch a directory.
Revision
2363 -
Directory Listing
-
[select for diffs]
Modified
Tue Aug 19 10:53:37 2003 UTC
(21 years, 7 months ago)
by
dan
Diff to
previous 2362
Each category has a pkg/COMMENT file which describes that category.
When a new category is encountered, if we cannot fetch pkg/COMMENT, then go
with a fake description.
Revision
2362 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 31 18:01:44 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2361
When creating a new port, ensure the status is set to Active. This doesn't
affect the saving of the port, because a new port is always set Active.
It affects code modified in the previous comment which checked the status
to determine whether or not to refresh the port.
Revision
2359 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 31 17:51:58 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2358
Improve the error reporting during sanity testing. I found a case where
we got an error such as this: "/usr/home/dan/ports/french/homard/Makefile",
line 56: Need an operator (caused by spaces instead of tabs in a section
such as do-install:). In such cases, no results are returned from the
make command. Instead, the errors will be captured in the tmp file
we created to capture ERROUT.
Add two new functions: SetActive and SetDeleted.
Revision
2358 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 31 17:46:59 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2357
Include a CC field when mailing out messages. This will allow me to
CC myself on any outgoing sanity test errors.
Revision
2352 -
Directory Listing
-
[select for diffs]
Modified
Wed Jul 30 12:10:10 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2351
Fix some HTML nits:
- Provide a content-type
- Specify the script type when declaring Javascript
- Optionally provide the commit date, commit time, and committer name
Provide link to bchosting.com
Revision
2347 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 29 20:37:41 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2346
Improve handling when no date is supplied.
Ensure commits part of the table is as wide as available.
Slight cellpadding adjustment to match index.php
Revision
2345 -
Directory Listing
-
[select for diffs]
Modified
Thu Jul 17 14:54:13 2003 UTC
(21 years, 8 months ago)
by
dan
Diff to
previous 2344
Sometimes a port can be deleted in one commit, and a later
commit will remove a missed file. If this port is deleted, don't refresh it.
If we don't need to refresh it, we don't need to save it.
Revision
2336 -
Directory Listing
-
[select for diffs]
Modified
Fri Jul 4 15:19:09 2003 UTC
(21 years, 9 months ago)
by
dan
Diff to
previous 2335
Add new parameters to the URL:
- MaxArticles : number of ports to report upon
- date : show the commit date
- committer : show the committer name
- time : show the commit time
Revision
2329 -
Directory Listing
-
[select for diffs]
Modified
Thu Jun 5 14:31:42 2003 UTC
(21 years, 10 months ago)
by
dan
Diff to
previous 2328
Use newly added function EmptyTheListCategory instead of EmptyTheList.
Let's not clear the entire watch list every time someone adds ports
from a category.
Revision
2326 -
Directory Listing
-
[select for diffs]
Modified
Thu Jun 5 13:37:47 2003 UTC
(21 years, 10 months ago)
by
dan
Diff to
previous 2325
Some ports are in more than one category. The first category listed is the
primary category. This must be a physical category (i.e. one which exists
in the ports tree on disk). Any other categories are referred to as a secondary
category. The others may be either physical or virtual.
A category may be in more then one physical directory but will always have
exactly one primary category.
On this page, indicate ports which list this category as a secondary category.
Revision
2324 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 3 13:30:53 2003 UTC
(21 years, 10 months ago)
by
dan
Diff to
previous 2323
Fix an off-by-one error with searching.
If start = 1, we don't offset starting at one, we offset starting at zero.
Revision
2313 -
Directory Listing
-
[select for diffs]
Modified
Sat May 24 15:24:33 2003 UTC
(21 years, 10 months ago)
by
dan
Diff to
previous 2312
- Use ports_active, not ports, so we don't have to check if a
port has been deleted. Which means we don't need to refer
to the element table at all. So remove all that code.
- Use tabs to delimit things instead of :
Revision
2297 -
Directory Listing
-
[select for diffs]
Modified
Fri May 16 15:45:40 2003 UTC
(21 years, 10 months ago)
by
dan
Diff to
previous 2296
We now ignore a refresh once it has been reported. But we can't ignore
it forever. Add an option to allow inclusion of ignored refreshes.
Revision
2234 -
Directory Listing
-
[select for diffs]
Modified
Tue Apr 29 14:01:28 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2233
When totaling categories, use the right formual depending on whether or
not it's a virtual category.
Supply a total.
Revision
2190 -
Directory Listing
-
[select for diffs]
Modified
Sat Apr 26 16:46:42 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2189
Add a new switch, AllowUserChanges, which indicates whether or not users
are allowed to make changes. This is a system wide switch. The intention
is to keep the website running, but disable changes, during an upgrade, etc.
Revision
2147 -
Directory Listing
-
[select for diffs]
Modified
Wed Apr 16 00:35:28 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2146
WatchListStagingClear now takes and returns int8
and also renamed WatchListID to UserID to reflect new strategy
WatchListStagingLogClearing now takes int8
ports_categories_set is moved to ri.txt as it becomes a trigger
Revision
2135 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 10 16:32:09 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2134
Add the rules for commit_log_ports which keep it populated with new commits.
We still have to write the rules to clear out this table from time to time.
Revision
2130 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 10 11:46:45 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2129
Use this file to set configuration parameters such
as the location of the msgs tree and the scripts directory location.
Revision
2127 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 10 11:39:21 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2126
Move to a better method of message handling. This will allow
multiple databases per user and for the processing of multiple
incoming cvs-all streams.
Revision
2126 -
Directory Listing
-
[select for diffs]
Modified
Thu Apr 10 11:14:13 2003 UTC
(21 years, 11 months ago)
by
dan
Diff to
previous 2125
Use a different approach to pathnames.
This should make it easier for one user to process multiple
cvs-all streams.
Revision
2125 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 7 17:02:17 2003 UTC
(22 years ago)
by
dan
Diff to
previous 2124
Avoid a problem which occurs on the day after DST changes:
< select (current_date - interval ''1 day'')::date
---
> select (current_date - 1)::date
While here: whitespace adjustment
Revision
2099 -
Directory Listing
-
[select for diffs]
Modified
Sat Mar 8 18:18:52 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2098
Add permissions for security_notice_audit and security_notice_audit_id_seq.
Adjust permissions on security_notice to be less liberal.
Revision
2092 -
Directory Listing
-
[select for diffs]
Modified
Sat Mar 8 16:21:42 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2091
doh, we should be loading classes/user_tasks.php
Avoid repeated IsTaskAllowed calls by using a variable
Allow trusted users to amend the security notice, not just add a new one.
Revision
2074 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 6 21:26:43 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2073
fix debugging statement.
return id, not name when fetching by name.
add UpdateDescription to allow users to set description on new virtual categories
Revision
2054 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 5 21:07:13 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2053
use _REQUEST instead of _GET
oops, we didn't code for remove, just add.
when removing elements from the watch list, don't worry if it's not actually there...
Revision
2051 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 5 19:46:39 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2050
Keep the Makefile status the same as it's parent.
Do a CREATE OR REPLACE on categories_insert_update
add function for user_email_change trigger
Revision
2040 -
Directory Listing
-
[select for diffs]
Modified
Wed Mar 5 13:13:40 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 2039
virtual categories:
- Allow categories.element_id to be null
- create table clp (should be renamed)
- create table ports_categories
Revision
1996 -
Directory Listing
-
[select for diffs]
Modified
Fri Feb 21 15:51:32 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 1995
Start using serial so we can remove the add sequence commands
a few other random changes
Part of upgrading to PostgreSQL 7.3
Revision
1991 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 13 13:25:18 2003 UTC
(22 years, 1 month ago)
by
dan
Diff to
previous 1990
Place removal of pkg directory to be after make command has run.
Ignore COMMENTFILE. COMMENT should now always work.
remove large unused portion of needs_refrseh for new ports
Revision
1947 -
Directory Listing
-
[select for diffs]
Modified
Fri Jan 10 15:55:02 2003 UTC
(22 years, 2 months ago)
by
dan
Diff to
previous 1946
add TITLE field to icons
added freshports_Security_Icon
Added security icon to port description page
some whitespace changes
Revision
1945 -
Directory Listing
-
[select for diffs]
Modified
Fri Jan 10 15:52:31 2003 UTC
(22 years, 2 months ago)
by
dan
Diff to
previous 1944
remove old and unused security_notice, security_notice_elements and security_notice_log
add tasks and user_tasks
start using new security_notice
Revision
1822 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 9 20:30:31 2002 UTC
(22 years, 3 months ago)
by
dan
Diff to
previous 1821
Add $WatchListAsk parameters to freshports_Watch_Link_Add and
freshports_Watch_Link_Remove.
When displaying $port->date_added, show "unknown" as appropriate.
Revision
1819 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 9 20:27:55 2002 UTC
(22 years, 3 months ago)
by
dan
Diff to
previous 1818
Modify freshports_WatchListDDLB to add new optional parameter element_id.
Optionally show the number of watch lists upon which the element resides.
Revision
1791 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 8 03:21:51 2002 UTC
(22 years, 4 months ago)
by
dan
Diff to
previous 1790
Put the website name into the logo ALT text.
Enable the "ask" feature for adding/removing ports.
create freshports_ErrorMessage for displaying errors.
Revision
1724 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 28 18:49:43 2002 UTC
(22 years, 4 months ago)
by
dan
Diff to
previous 1723
The first step to caching the data. But I gave up when I realised that doing
so will cause problems as things are updated.... Not to mention watch lists.
Revision
1695 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 24 04:56:29 2002 UTC
(22 years, 4 months ago)
by
dan
Diff to
previous 1694
- Make Element_Pathname iscachable
- Always insert into system_branch_element_revision when setting a tag
- Use a case instead of a COALESCE for system_branch_element_revision
Revision
1693 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 21 20:49:15 2002 UTC
(22 years, 4 months ago)
by
dan
Diff to
previous 1692
Start using trim_multiple_to_single and trim on depends run and depends build.
Perhaps we should do that on other fields as well?
Revision
1601 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 17 14:47:51 2002 UTC
(22 years, 7 months ago)
by
dan
Diff to
previous 1600
Cater for reports which have no frequency. They are instantaneous reports.
This will allow for Fenner reports on ports which do not build.
Revision
1494 -
Directory Listing
-
[select for diffs]
Modified
Tue May 28 15:53:47 2002 UTC
(22 years, 10 months ago)
by
dan
Diff to
previous 1493
create Stats_PortCountNewInterval and modify Stats_PortCountNewToday Stats_PortCountNewYesterday
and Stats_PortCountNewThisWeek to use it.
Revision
1337 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 21 23:46:07 2002 UTC
(22 years, 11 months ago)
by
dan
Diff to
previous 1336
PR142 - after refreshing a port, queue the date into the daily_refreshes
table so that the daily summaries are updated.
Revision
1335 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 21 18:22:20 2002 UTC
(22 years, 11 months ago)
by
dan
Diff to
previous 1334
move freshports_MorePortsToShow to here from index.php
create freshports_MoreCommitMsgToShow based upon that function
create freshports_Head to return only the n lines of a string
alter freshports_PortDescriptionPrint optionally show only the
first n lines of the string and supply a URL to the full message.
Revision
1334 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 21 18:22:10 2002 UTC
(22 years, 11 months ago)
by
dan
Diff to
previous 1333
move freshports_MorePortsToShow to include/freshports.php
when calling freshports_PortDescriptionPrint, include
the URL to use for long commits.
Revision
1333 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 21 18:22:01 2002 UTC
(22 years, 11 months ago)
by
dan
Diff to
previous 1332
move over comments from freshports.php which should have
been moved in a previous commit.
add $freshports_CommitMsgMaxNumOfLinesToShow
Revision
1255 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 12 14:17:44 2002 UTC
(22 years, 11 months ago)
by
dan
Diff to
previous 1254
new htmlify code
remove some TITLE from graphics which are links so the URL appears
in the status bar and not the title.
Revision
1185 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 1 21:00:17 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1184
- Add DailySummaries back to the front page (and include more of them)
- use freshports_CommitFilesLink to create links to files
Revision
1134 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 19 12:56:39 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1133
Include the correct field on the form so that searching from the side bar
will provide results on the search page instead of just going to the search
page.
Also add a bit more debugging info on search.php
Revision
1121 -
Directory Listing
-
[select for diffs]
Modified
Sun Mar 17 17:46:31 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1120
- add list of options required in PowerDesigner 6.0 to
generate this database schema
- modify ports_check replacing found_in_ports wih category_id
and port_id
- create index on ports (element_id)
- create view ports_active
Revision
1114 -
Directory Listing
-
[select for diffs]
Modified
Thu Mar 14 20:28:31 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1113
PR 112
watch_notice_log.frequency_id needs to be implemented
changing frequency to frequency_id
check scripts/email.pl and AddToLogs
Revision
1105 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 12 19:25:40 2002 UTC
(23 years ago)
by
dan
Diff to
previous 1104
remove DROP FUNCTION statements.
change CREATE FUNCTION to CREATE OR REPLACE FUNCTION to avoid dependency
problems which arise when you drop a function which is used by another function.
Revision
1061 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 25 15:48:14 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 1060
Make sure the values set by getvalues are available everywhere by declaring
them to be GLOBAL.
If a disabled account is found, log them out, and let them know.
Revision
1055 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 24 02:37:35 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 1054
update copyright
change return value of 3 to 0 if all is well
we don't move files around. the fp-daemon script does
Revision
1038 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 23 21:32:43 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 1037
New users must now supply a valid email address. Instructions
to enable their account are forwarded to that email address.
Revision
957 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 17 20:00:58 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 956
Add a new column to housekeeping, refresh_done. Any time a port is refreshed,
this bit should be set. It will be cleared by RecordLastestPortCommits.
Revision
938 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 16 07:19:40 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 937
Let's have a look at the Makefiles before we use them. If they are
ASCII Text, then they are probably a Makefile. If not, they are probably
HTML, and that means the fetch failed.
Revision
927 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 14 20:37:16 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 926
Add two table: commits_latest and housekeeping
which will be used mostly by RecordLastestPortCommits
which records the query results into a table for
easy retrieval.
Revision
925 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 14 19:26:32 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 924
To speed up the home page, we are going to cache the data in a table.
The main page will then read from that table. The main page will
be updated every minute.
Revision
922 -
Directory Listing
-
[select for diffs]
Modified
Wed Feb 13 22:56:50 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 921
remove old FP1MigrationCutoffDate code
create new freshports_PortDescriptionPrint which will centralize the
formatting of port commit messages, long descriptions, and short
descriptions.
Revision
913 -
Directory Listing
-
[select for diffs]
Modified
Tue Feb 12 23:40:54 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 912
Add a link to the commit details to the front page.
Modify the details on the port page to be more like the main page.
Revision
901 -
Directory Listing
-
[select for diffs]
Modified
Mon Feb 11 01:44:24 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 900
now that we have a good wrapping scheme for lines > 72 characters, we
don't have to treat pre and post migratin data differently.
Revision
899 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 10 03:05:03 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 898
The migrated fp1 commits are single line log messages. They must
be wrapped. Therefore, use <CODE> if before a certain date, and <PRE>
afterwards.
Revision
895 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 9 19:47:32 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 894
refresh-unrefreshed-ports.pl stays as it was, refreshing unrefreshed ports
based on commit_log_ports.needs_refresh.
Revision
886 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 9 02:57:12 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 885
Add flag -R which means do not refresh any ports associated with a given
commit. Useful during the fp1-fp2 migration. We'll just refresh each
port after the data is imported.
Revision
883 -
Directory Listing
-
[select for diffs]
Modified
Fri Feb 8 00:29:56 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 882
don't export deleted ports - they won't exist in the ports tree and we won't
be able to refresh the port. This does mean we lose the history for about
451 deleted ports. I can live that that. We can always import them later.
Revision
880 -
Directory Listing
-
[select for diffs]
Modified
Thu Feb 7 19:57:54 2002 UTC
(23 years, 1 month ago)
by
dan
Diff to
previous 879
allow incoming parameter to set limit
If file_action = 'I' (import) used add and change filename to '.../Makefile'
Revision
878 -
Directory Listing
-
[select for diffs]
Modified
Sun Feb 3 15:18:17 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 877
remove an unused ElementTagSet and modify the one which is used.
before we insert into system_branch_element_revision, ensure
the entry is not already there.
Revision
874 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 2 23:29:52 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 873
Here's the file where will allow us to export
FP1 data into XML format. Looks OK so far.
But will need further testing of output
Revision
868 -
Directory Listing
-
[select for diffs]
Modified
Sat Feb 2 03:06:31 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 867
Add new commit_log class
Start using new ReportError function from utilities.pm instead of calling
SysLog and die.
Revision
854 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 23 02:46:56 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 853
When an error occurs when processing a make file, return the error to the
calling function. Then, don't update the port because it's not ready
Revision
853 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 23 01:54:14 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 852
Put a knob in to turn off creation of a pkg directory. I think I added
this to detect problems which arose if this directory exists.
noteably: pre-everything having two : after it.
Revision
849 -
Directory Listing
-
[select for diffs]
Modified
Tue Jan 8 06:23:58 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 848
use PRE tags around the commit description and the file names.
remove the file graphic and make the cvsweb hyperlink on the file name instead.
Revision
848 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 7 21:15:12 2002 UTC
(23 years, 2 months ago)
by
dan
Diff to
previous 847
PR#21
cater for imported sources. With a recent change implemented by Josef Karthauser,
imported source cvs-all message do contain a BRANCH. However, the
message do not contain a LOG section. Thus the XML field is empty.
Get around the problem with a minor reorganization of the code.
Grab the message subject. Grab the log. If the log is empty, use
the subject.
ALSO: white space changes.
Revision
847 -
Directory Listing
-
[select for diffs]
Modified
Mon Jan 7 13:08:42 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 846
Ensure all references to images directory starts with /images. This is most
for use by the missing*.php files.
Revision
841 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 6 23:19:31 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 840
After a reco-copy of these files from another section of the tree,
we now have a process by which the user can upload their pkg_info
information and add them to their watch list.
Revision
837 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 6 16:58:45 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 836
Update the SQL which records that a logged in user has accessed the website.
We track the last time they logged in so we know whether or not an account
is active. We do not record what pages they are visiting.
Revision
834 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 6 16:48:13 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 833
create and use a new function freshports_CookieClear to be used
when a person logs out or when we ware given a cookie which
we don't recognize.
Revision
824 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 6 06:22:59 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 823
upgrade to postgresql.
Now that this is done, the next step is to get some of you on the Develop list
to start tracking your ports via fp2.freshports.org. BUT FIRST I'll have to
upgrade that site to the latest database and scripts as found in
lists-test.freshports.org. Watch this space.
Revision
812 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 5 03:26:15 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 811
Add some debugging code.
for ports, make sure we don't include commit log information when
retriving by partial path name.
Revision
811 -
Directory Listing
-
[select for diffs]
Modified
Sat Jan 5 02:00:13 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 810
use the predefined website name
add a bit of cell padding
use an outer join to get the correct count value
Revision
810 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 3 03:05:27 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 809
Rename categoryResult to LocalResult.
This file set by caller so you can set up an SQL statement and then
get Port to fetch itself for you.
Revision
806 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 3 02:22:04 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 805
convert customize.php to use postgresql
lost of whitspace changes to getvalues.php which was also changed to postgresql
include/freshports.php now includes classes/watchnotice.php
Revision
805 -
Directory Listing
-
[select for diffs]
Modified
Thu Jan 3 01:22:03 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 804
remove the <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> entries because
they are all in include/freshports.php
Revision
799 -
Directory Listing
-
[select for diffs]
Modified
Wed Jan 2 02:53:56 2002 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 798
Rename files from .php3 to .php.
The code within many of these files still needs to be converted from mysql
to postgresql.
Revision
790 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 31 15:26:29 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 789
$hash{portname} is not the same as
$hash{$portname}
Fix this annoying bug so more than just the first port in a commit gets refreshed.
Revision
789 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 31 06:18:09 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 788
daily summary changes
- use category/port format
- add time-ajustment factor to cater for time zone differences
Revision
784 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 30 23:26:39 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 783
If they get the category right, but provide an unknown port, tell them
and then show the link to the category they provided.
Revision
779 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 30 23:22:29 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 778
- correct where the script was still using ports.needs_refresh instead of
commit_log_ports.needs_refresh.
- for now, we will fetch every file touch by a port commit. I still
don't have a solution for files included by Makefile.
Revision
767 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 29 20:48:00 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 766
move the commit to be before the CreateDailySummary call.
If that call falls over, we want to be sure the transaction is closed.
otherwise, it will roll back and undo what we did.
Revision
764 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 29 19:06:26 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 763
PR 26 - adding new class for commit_log_ports which is used on the
port description page (i.e. missing-port.php). see the
port-description.php3 page for a similar output.
Revision
760 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 29 04:09:02 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 759
pull back more detail into the port class. This should be enough for
the port-description.php functionality to be put into a function rather
than a webpage. PR 26
Revision
757 -
Directory Listing
-
[select for diffs]
Modified
Fri Dec 28 22:37:18 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 756
- with master/slave ports, the directory we are fetching to (master port)
may not be the directory we are working in (slave port; the one being
refreshed. adjust fetching scheme accordingly.
- add function to remove port directory prefix (RemovePortsPrefix).
Revision
749 -
Directory Listing
-
[select for diffs]
Modified
Mon Dec 24 03:16:05 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 748
My first attempt at moving needs_refresh from the port table to the
commit_log_ports table. In addition, the commit_log_ports will hold
the port_version associated with that commit. Thus, as you look
down the page, you should be able to see the port_version change
from commit to commit (not that every commit causes a change).
Revision
743 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 23 02:53:30 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 742
Add missing.php.
This page is activated via ErrorDocument 404 /missing.php in the apache
configuration for this website. It uses the classes element and port to
grab information from the database.
This is the start of being able to browse to:
http://FreshPorts.org/net/samba and get the samba page. Or, if a port
is uniqely named, http://FreshPorts.org/samba will take you to the
same place.
Much to do, but this is the proof of concept.
Revision
737 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 22 23:23:08 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 736
Add the new archive-messages.sh. call this from cron.
it will call the improved archive-logs.sh which will
move the msgs away from the main directory and archive them.
Revision
733 -
Directory Listing
-
[select for diffs]
Modified
Sat Dec 22 21:50:12 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 732
provide a new option: -O (Overwrite)
when processing an XML file, if the supplied message id exists, delete it
and continue processing. Useful when you need to reprocess a message
for some reason.
Revision
717 -
Directory Listing
-
[select for diffs]
Modified
Fri Dec 21 06:09:48 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 716
Add two new values:
CVSTimeAdjustment - difference in seconds between CVS server and database server.
LocalTimeAdjustment - differnece in seconds between web server and user.
Plan is to allow the user to override either or both of these settings to suit
their location.
Revision
709 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 12 04:43:35 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 708
convert all varchar(x) fields where x > 1 to text
Add new tables:
Security_Notice - details of notice
Security_Notice_Log - who added the notice, who moderated it, modified it
Security_Notice_Elements - what elements of the source tree are affected?
...for use with security notifications.
Revision
708 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 11 04:31:06 2001 UTC
(23 years, 3 months ago)
by
dan
Diff to
previous 707
Change to landscape. It won't all fit on the screen in portrait and be big
enough to read.
Rename commit_log_port to commit_log_port_elements.
Add commit_log_port which does what it should.
Revision
698 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 5 06:06:09 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 697
Don't do the build of daily summaries until after we have refreshed
the ports. Otherwise for new ports, version will be empty.
Revision
697 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 5 04:34:54 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 696
Don't do any of the port update things if there are no ports.
This mainly reduces the size of the log file.
Revision
692 -
Directory Listing
-
[select for diffs]
Modified
Wed Dec 5 00:16:55 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 691
For broken and forbidden ports, display just Broken or Forbidden in the
ALT text, not the actual text of the broken/forbidden message.
For the commit message itself, yes, we're going to use <PRE></PRE> until
we can find a better way.
Revision
676 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 27 06:35:42 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 675
remove a pg_exec ($database, "end"); which was causing this:
[Tue Nov 27 01:33:54 2001] [error] NOTICE: COMMIT: no transaction in progress
Revision
672 -
Directory Listing
-
[select for diffs]
Modified
Mon Nov 26 06:42:37 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 671
freshports_PortDetails now needs $db
use nl2br where we once used <PRE>; this allows us to
have the same line breaks, but in a better font.
takes less real estate too.
change a while loop to a for.
Revision
670 -
Directory Listing
-
[select for diffs]
Modified
Mon Nov 26 06:39:07 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 669
Add $db parameter to freshports_PortDetails
fix broken subject field on mailto:
change a </BR> to a <BR>
Change "download port" link to FreeBSD.org website
Add conversion utilities for add hyperlinks to text
upper case various tags.
Revision
669 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 25 21:42:02 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 668
call freshports_PortDetails instead of including ./include/port-basics.php
pretty some of the HTML output by adding \n
fix the HTML by adding missing end tabs (</DD>)
enclose the commit description within <PRE></PRE>
Revision
668 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 25 21:41:52 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 667
sort the files by name
make the displayed pathnames relative to the port directory
(i.e. remove /ports/<category>/<port>/ from pathnames
Revision
654 -
Directory Listing
-
[select for diffs]
Modified
Sat Nov 24 21:41:50 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 653
remove CommitLogElementsInsert
replace EnsureCategoryAndPortExist with SaveChangesToPortsTree
create _CompileListOfPorts which replaces the fuctionality of EnsureCategoryAndPortExist
Instead of saving a port as we go along, we will compile a list of ports based
on the files we find. Once all files are processed and saved to the database,
we have our list. Then we process the files again, setting the needs_refresh
value for the port affected by this file. If we find that the Makefile for
a port has been deleted, we set needs_refresh = 0.
Revision
645 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 23 04:51:39 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 644
remove unneeded exports
if the port has been deleted, make sure we set port->{deleted} correctly
and process things.
move the refresh ports process to port.pm so it can be used
both with load_xml_into_db.pl and from refresh-unrefreshed-ports.pl
Revision
637 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 21 04:06:37 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 636
remove GetOrCreateCategory which was not used.
Remove quotes from field names which screwed up the category entries.
Revision
625 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 20 16:42:55 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 624
rename system_version to system_branch
rename system_version_element to system_branch_element_revision
remove some unneeded sequences
Revision
622 -
Directory Listing
-
[select for diffs]
Modified
Tue Nov 20 16:30:58 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 621
rename system_version to system_branch
rename system_version_element to system_branch_element_revision
remove some unneeded sequences
Revision
614 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 16 19:40:47 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 613
PR 4 solved.
scan the lines following the subject and include them as part of the subject
if they start with 9 spaces.
Revision
612 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 16 18:40:26 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 611
The previous commit was in error.
PR 15
Previously the log message was terminated at the first occurance of:
Revision
PR:
Submitted by:
Approved by:
Reviewed by:
To Unsubscribe
Now it's only:
Revision
To Unsubscribe
Also, populate the ObtainedFrom field while we are here.
Revision
597 -
Directory Listing
-
[select for diffs]
Modified
Sun Nov 11 02:39:45 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 596
Update to new version:
new commit_log_elements and system_version_element table.
add commit_log_port table for direct links between a port and a commit.
Revision
585 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 9 23:26:46 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 584
Now we fetch the files needed to refresh the port,
we update the port class, and we save it.
port.pm needs to be updated to save and fetch more fields.
Revision
575 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 9 05:16:00 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 574
needs_refresh is now being computed.
We have have to do something special for ports which are created first time.
Revision
574 -
Directory Listing
-
[select for diffs]
Modified
Fri Nov 9 04:09:00 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 573
Now processing the files and ports correctly.
now we just have to parse the file names and update the port needs_refresh.
Revision
573 -
Directory Listing
-
[select for diffs]
Modified
Thu Nov 8 23:15:04 2001 UTC
(23 years, 4 months ago)
by
dan
Diff to
previous 572
We now have a list of ports which needs to be updated.
next step: set the needs_refresh field and then save the results
back to the database.
Revision
509 -
Directory Listing
-
[select for diffs]
Modified
Sun Oct 7 15:56:04 2001 UTC
(23 years, 6 months ago)
by
dan
Diff to
previous 508
Put the database connect into freshports_database.pm and use
freshports_database.pm.sample as the example.
Revision
463 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 1 21:30:11 2001 UTC
(23 years, 6 months ago)
by
dan
Diff to
previous 462
Don't create a pkg directory in fetch-cvs-file.sh.
Let's do it where werun the make -V. then we'll remove it.
this catches the pre-everything bug.
Revision
462 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 1 21:29:41 2001 UTC
(23 years, 6 months ago)
by
dan
Diff to
previous 461
Don't create a pkg directory here. Let's do it where we
run the make -V. then we'll remove it.
this catches the pre-everything bug.
Revision
422 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 27 01:03:45 2001 UTC
(24 years ago)
by
dan
Diff to
previous 421
- When logging in, make sure we come back to where we
were by using rawurldecode.
- Set the focus to the first edit field when asking
the user for data entry.
Revision
420 -
Directory Listing
-
[select for diffs]
Modified
Tue Mar 27 01:00:12 2001 UTC
(24 years ago)
by
dan
Diff to
previous 419
List 100 ports at a time, instead of only 50.
Create new function freshports_PortDetails to print details of a port.
Revision
409 -
Directory Listing
-
[select for diffs]
Modified
Mon Mar 19 07:43:20 2001 UTC
(24 years ago)
by
dan
Diff to
previous 408
add a bit more to the orphaned elements task. This is really something which
we could do in log_accum.pl on freefall... if they'll let us do it.
Revision
393 -
Directory Listing
-
[select for diffs]
Modified
Sat Mar 10 09:47:11 2001 UTC
(24 years ago)
by
jcampbell
Diff to
previous 392
Latest files for uploading output of pkg_info. Added support for pre-deleting
ports if "-c" option is given. Improved debug (-d) support.
Revision
363 -
Directory Listing
-
[select for diffs]
Modified
Sun Jan 28 02:31:01 2001 UTC
(24 years, 2 months ago)
by
dan
Diff to
previous 362
The final bit of code to reflect the latest database changes.
element_revsion is just two fields.
system_version_element is just three fields.
Revision
311 -
Directory Listing
-
[select for diffs]
Modified
Sun Dec 31 10:49:28 2000 UTC
(24 years, 3 months ago)
by
dan
Diff to
previous 310
Removed <body > which was in _private/header.inc
Commit ports-not-in-latest-index.php3 for first time.
Modified Files:
about.php3 authors.php3 bouncing.php3 categories.php3
category.php3 change_log.php3 change_log_details.php3
change_log_port.php3 changes.php3 convert_change_log.php3
customize.php3 files.php3 forgotten-password.php3 index.php3
inthenews.php3 legal.php3 login.php3 new-user.php3
port-description.php3 port-watch.php3 ports-deleted.php3
ports-new.php3 ports.php3 privacy.php3 search.php3 stats.php3
thanks.php3 watch-categories.php3 watch.php3 welcome.php3
whatnext.php3
Added Files:
ports-not-in-latest-index.php3
Revision
281 -
Directory Listing
-
[select for diffs]
Modified
Wed Nov 15 06:50:18 2000 UTC
(24 years, 4 months ago)
by
dan
Diff to
previous 280
Diff applied against port-description.php3 to allow commits to be deleted.
Added Files:
deleting_commits.txt
Revision
278 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 16 23:13:15 2000 UTC
(24 years, 5 months ago)
by
dan
Diff to
previous 277
Hmmm, it assumed that a port commit started with cvs commit: ports/
now, it doesn't. the ports/ bit can be anywhere on the subject: line.
Modified Files:
log-catcher.awk
Revision
277 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 16 23:11:52 2000 UTC
(24 years, 5 months ago)
by
dan
Diff to
previous 276
oops! forgot to add the ports changes for pkg-descr etc.
Committing in updates
Modified Files:
updates.pl
Revision
276 -
Directory Listing
-
[select for diffs]
Modified
Mon Oct 9 02:40:48 2000 UTC
(24 years, 5 months ago)
by
dan
Diff to
previous 275
changed pkg/DESCR to pkg-descr and other changes associated with new ports
layout.
Modified Files:
ports.pm
Revision
266 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 19 08:30:48 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 265
Always convert the id to lower case before creating the cookie.
That's because mysql is case insensitive.
Committing in _private
Modified Files:
commonlogin.php3
Revision
263 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 19 08:25:57 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 262
Don't send stuff out if dont have an email or have been bouncing.
Modified Files:
forgotten-password.php3
Revision
261 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 19 06:07:27 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 260
Clear out $UserID so the correct menu items are shown in the side-bar.
Modified Files:
forgotten-password.php3
Revision
260 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 19 05:34:52 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 259
Allow the users to recieve their password via email.
Modified Files:
login.php3
Added Files:
forgotten-password.php3
Revision
258 -
Directory Listing
-
[select for diffs]
Modified
Sun Aug 13 10:28:45 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 257
Add a new feature to allow showing of port creation date.
Committing in _private
Modified Files:
port-basics.inc getvalues.php3
Revision
257 -
Directory Listing
-
[select for diffs]
Modified
Sat Aug 12 12:09:30 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 256
Pull back the correct information. When combined with a script
to update the ports.last_change_id field correctly, this page
now shows the correct details. Sorry about that folks.
Modified Files:
watch.php3
Revision
252 -
Directory Listing
-
[select for diffs]
Modified
Wed Aug 9 09:39:50 2000 UTC
(24 years, 7 months ago)
by
dan
Diff to
previous 251
do some parameter checking and give the user a nice screen when they
get no data.
Modified Files:
category.php3 port-description.php3 port-watch.php3
Revision
250 -
Directory Listing
-
[select for diffs]
Modified
Mon Aug 7 10:02:12 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 249
Added broken and forbidden to the code.
Modified Files:
index.php3 category.php3 ports-new.php3 port-description.php3
search.php3 ports-deleted.php3 watch.php3
Revision
247 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 4 11:11:12 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 246
change the logs.gif file to something with better definition
Modified Files:
files.php3 port-description.php3
Revision
244 -
Directory Listing
-
[select for diffs]
Modified
Fri Aug 4 04:35:41 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 243
Allow the users to see what files are changed within a port.
Modified Files:
files.php3 port-description.php3
Revision
238 -
Directory Listing
-
[select for diffs]
Modified
Thu Aug 3 01:03:55 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 237
fix some caching bugs related to host name mistakes I made.
Committing in _private
Modified Files:
commonlogin.php3
Revision
230 -
Directory Listing
-
[select for diffs]
Modified
Tue Jul 25 10:22:08 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 229
Cater for ports which are deleted, then reimported. We have them in the
tree, but they are deleted. Just set them "status = 'A'" and get on with it.
Modified Files:
updates.pl
Revision
229 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 24 22:08:28 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 228
Don't let people do ugly things to the data input.
use addslashes to stop such things.
Modified Files:
new-user.php3
Revision
228 -
Directory Listing
-
[select for diffs]
Modified
Mon Jul 24 22:07:58 2000 UTC
(24 years, 8 months ago)
by
dan
Diff to
previous 227
Don't let people do ugly things to the data input.
use addslashes to stop such things.
Modified Files:
login.php3 search.php3
Revision
214 -
Directory Listing
-
[select for diffs]
Modified
Sun Jul 2 19:23:45 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 213
adding this file because if it's not there, and with these permission
settings, news.php3 will fail to create it.
Added Files:
news.txt
Revision
210 -
Directory Listing
-
[select for diffs]
Modified
Sat Jul 1 23:29:37 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 209
inital add
Added Files:
index.php3 list.php3 phpPollAdmin.php3 phpPollBar.gif
phpPollCollector.php3 phpPollConfig.php3 phpPollUI.php3
results.php3 view.php3 vote.php3
Revision
208 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 30 12:12:56 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 207
post FreshPost 1.1 install
Committing in .
Modified Files:
convert_change_log.php3 index.php3 permissions.txt
upgrade.1.txt watch.php3
Revision
200 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 28 09:44:55 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 199
final changes before freshports 1.1
Committing in .
Modified Files:
log-catcher.awk log-catcher.pl
Modified Files:
updates.pl
Revision
195 -
Directory Listing
-
[select for diffs]
Modified
Wed Jun 28 09:01:06 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 194
final changes after doing a dry run.
Modified Files:
changes.txt convert_change_log.php3 customize.php3
permissions.txt port-description.php3
Revision
191 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 24 02:02:00 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 190
These allow you to check the logs.
Added Files:
change_log.php3 change_log_details.php3 change_log_port.php3
Revision
189 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 24 01:17:07 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 188
move the call to MarkPortAsRefreshNeeded to where it is always called for
every entry being modified. Failure to do this means pkg/DESCR are not
fetched and therefore the data is out of date.
Modified Files:
updates.pl
Revision
178 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 13 23:08:15 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 177
change side bar table widths to 152. This should really go into a variable
somewhere.
change sorting to be by commit date, change_log_id, port name, category,
version.
add change_log_id to output so we can clump commits together under one commit
time and commit message. This saves lots of real estate.
Modified Files:
index.php3
Revision
177 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 13 23:05:31 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 176
change table width to 152. This really should go into a variable somewhere.
Committing in _private
Modified Files:
side-bars.php3
Revision
175 -
Directory Listing
-
[select for diffs]
Modified
Sun Jun 11 04:15:48 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 174
Set $UserID to '' in getvalues
adding origin to post in login.inc
change username to userid in sidebars.
Modified Files:
getvalues.php3 login.inc.php3 side-bars.php3
Revision
172 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 9 09:48:24 2000 UTC
(24 years, 9 months ago)
by
dan
Diff to
previous 171
Now creates directories if a port is new.
This allows the fetch to succeed.
Modified Files:
fetch-cvs-file.sh
Revision
171 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 6 09:48:45 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 170
Still looks good.
have to consolidate index2..4, newrefreshtime, keichii, headerwithtwolines
Committing in _private
Modified Files:
commonlogin.php3 getvalues.php3 new-user.inc port-basics.inc
side-bars.php3
Revision
170 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 6 09:48:26 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 169
Still looks good.
have to consolidate index2..4, newrefreshtime, keichii, headerwithtwolines
Committing in .
Modified Files:
customize.php3 index.php3 port-description.php3
ports-deleted.php3 stats.php3 watch.php3
Revision
169 -
Directory Listing
-
[select for diffs]
Modified
Tue Jun 6 09:47:20 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 168
Looks good so far. Just a quick commit to save everything.
At this point, I have the fetching of Makefile, pkg/DESCR, and pkg/COMMENTS
going. But I have to know when to fetch such things.
Committing in .
Modified Files:
fetch-cvs-file.sh fetch-refresh-ports.pl ports.pm test.pl
Revision
168 -
Directory Listing
-
[select for diffs]
Modified
Mon Jun 5 06:35:27 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 167
fetch-cvs-file.pl is actually fetch-cvs-file.sh
Committing in .
Modified Files:
announce.pl email.pl ports.pm refresh-ports.pl test.pl
Removed Files:
fetch-cvs-file.pl
Revision
167 -
Directory Listing
-
[select for diffs]
Modified
Mon Jun 5 06:33:40 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 166
These files are used to refresh a port on-the-fly.
fetch-cvs-file.sh will fetch the latest version of any cvs file.
fetch-refresh-ports.pl uses the above to refresh all ports which need refreshing.
Added Files:
fetch-refresh-ports.pl fetch-cvs-file.sh
Revision
162 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 3 02:05:19 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 161
Now uses change_log* tables fully.
Should remove old fields from database and see if the
.php3 files and scripts still work.
Committing in _private
Modified Files:
port-basics.inc
Revision
161 -
Directory Listing
-
[select for diffs]
Modified
Sat Jun 3 02:05:05 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 160
Now uses change_log* tables fully.
Should remove old fields from database and see if the
.php3 files and scripts still work.
Committing in .
Modified Files:
index.php3 port-description.php3 watch.php3
Revision
159 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 2 10:21:05 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 158
This looks like a good candidate for promotion.
It includes the customization, uses the change_log, change_log_port,
and change_log_details tables.
Needs some minor changes yet.
Show all changes on port-description page.
Rename port.last_change_log_detail_id to last_change_log_id.
What about deleted ports being added back in?
Check watch.php for correct use of log tables.
Committing in _private
Modified Files:
commonlogin.php3 getvalues.php3 port-basics.inc
Revision
158 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 2 10:20:52 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 157
This looks like a good candidate for promotion.
It includes the customization, uses the change_log, change_log_port,
and change_log_details tables.
Needs some minor changes yet.
Show all changes on port-description page.
Rename port.last_change_log_detail_id to last_change_log_id.
What about deleted ports being added back in?
Check watch.php for correct use of log tables.
Committing in .
Modified Files:
category.php3 convert_change_log.php3 index.php3 login.php3
port-description.php3 ports-deleted.php3 ports-new.php3
watch.php3
Revision
155 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 2 07:47:42 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 154
adding in the customization stuff
Modified Files:
commonlogin.php3 footer.inc freshports.php3 getvalues.php3
new-user.inc port-basics.inc side-bars.php3
Revision
154 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 2 07:47:16 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 153
adding in the customization stuff
Modified Files:
category.php3 customize.php3 index.php3 login.php3
port-description.php3 ports-deleted.php3 ports-new.php3
search.php3
Revision
153 -
Directory Listing
-
[select for diffs]
Modified
Fri Jun 2 01:00:25 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 152
just a file for converting change_log_detail to use change_log_port.
Added Files:
convert_change_log.php3
Revision
150 -
Directory Listing
-
[select for diffs]
Modified
Mon May 29 01:39:39 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 149
fixed up setting of refresh_needed and started using index instead of a regex
for FilesWhichPromptRefresh.
Modified Files:
updates.pl
Revision
149 -
Directory Listing
-
[select for diffs]
Modified
Mon May 29 01:00:43 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 148
now updates change_log_details properly.
obtains needs_refresh and status when checking for existing ports.
assigns value to needs_refresh only if necessary.
sets needs_refresh to "N" if port is deleted.
Modified Files:
updates.pl
Revision
147 -
Directory Listing
-
[select for diffs]
Modified
Thu May 25 08:54:47 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 146
initial add
Added Files:
advdel.php datedel.php db.php easyadmin.php edit.php files.php
global.php html.php main.php manage.php managemenu.php
master.php new.php pass.php props.php quickapp.php
quickdel.php quickedit.php setup.php
Revision
141 -
Directory Listing
-
[select for diffs]
Modified
Fri May 19 22:38:02 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 140
added relative pathnames. incorporate changes from production.
Modified Files:
changes.php3 index.php3 category.php3
Revision
138 -
Directory Listing
-
[select for diffs]
Modified
Fri May 19 22:24:40 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 137
the link to the page you are on is now disabled when you are on that page.
Modified Files:
side-bars.php3
Revision
131 -
Directory Listing
-
[select for diffs]
Modified
Fri May 19 22:03:22 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 130
Use relative path names.
cache file name are now set in common_login
Modified Files:
about.php3 authors.php3 customize.php3 inthenews.php3
login.php3 port-watch.php3 ports-deleted.php3 ports-new.php3
watch-categories.php3 welcome.php3
Revision
124 -
Directory Listing
-
[select for diffs]
Modified
Fri May 19 21:20:29 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 123
add UNIX_TIMESTAMP(ports.date_created) as date_created to SQL so we can show
whether or not something is new.
Modified Files:
watch.php3 ports.php3 port-description.php3
Revision
110 -
Directory Listing
-
[select for diffs]
Modified
Sun May 14 10:40:26 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 109
redirection when login/logout is needed/done.
Modified Files:
side-bars.php3
Modified Files:
watch.php3 watch-categories.php3 logout.php3 login.php3
customize.php3
Revision
100 -
Directory Listing
-
[select for diffs]
Modified
Sun May 14 00:29:24 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 99
you can now sort by category or last update. useful if you get told
something has been modified, but you don't know what.
Modified Files:
watch.php3
Revision
97 -
Directory Listing
-
[select for diffs]
Modified
Sat May 13 23:33:04 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 96
fix off-by-one bug when reading in watched categories for a given user.
Modified Files:
watch-categories.php3
Revision
96 -
Directory Listing
-
[select for diffs]
Modified
Sat May 13 22:27:21 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 95
changed meta tags
adding new files to repository.
Modified Files:
about.php3 authors.php3 categories.php3 category-watch.php3
category.php3 changes.php3 customize.php3 inthenews.php3
login.php3 new-user.php3 port-description.php3 port-watch.php3
ports-new.php3 ports.php3 watch-categories.php3 watch.php3
welcome.php3
Added Files:
news.php3 ports-deleted.php3 search.php3
----------------------------------------------------------------------
Revision
88 -
Directory Listing
-
[select for diffs]
Modified
Sat May 13 05:31:03 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 87
no longer sets status to 'N' when a port is updated
ignored ports are now tested for individually as using a REGEX was causing
too many problems.
improved formatting of code.
Revision
85 -
Directory Listing
-
[select for diffs]
Modified
Sat May 13 05:28:07 2000 UTC
(24 years, 10 months ago)
by
dan
Diff to
previous 84
added deleted notice for deleted ports
short description, and maintainer are now optionally displayed.
Revision
33 -
Directory Listing
-
[select for diffs]
Modified
Tue May 2 06:18:44 2000 UTC
(24 years, 11 months ago)
by
dan
Diff to
previous 32
fixed homepage bug, now ignore more directories, and allows you to start
at a particular spot in the tree.
Revision
23 -
Directory Listing
-
[select for diffs]
Modified
Mon May 1 00:52:55 2000 UTC
(24 years, 11 months ago)
by
dan
Diff to
previous 22
This version uses the new ports table, caters for ports without version
numbers, and does rather nicely, thank you.
Revision
21 -
Directory Listing
-
[select for diffs]
Modified
Sun Apr 30 07:13:15 2000 UTC
(24 years, 11 months ago)
by
dan
Diff to
previous 20
for a new port, set short_description to '-- waiting for description --'.
also, set date_created to a datetime value instead of a date.
Revision
15 -
Directory Listing
-
[select for diffs]
Modified
Fri Apr 28 21:37:22 2000 UTC
(24 years, 11 months ago)
by
dan
Diff to
previous 14
After finding that I'd overwritten the log catcher with the log munger,
I quickly learned out to extract a particular revision from cvs.
Added headers to the top of each file. That should solve the above problem.
Revision
6 -
Directory Listing
-
[select for diffs]
Modified
Mon Apr 24 21:55:38 2000 UTC
(24 years, 11 months ago)
by
dan
Diff to
previous 5
Committing in .
Added Files:
connect.pl log-catcher.awk log-catcher.pl log-munger.awk
updates.pl
Revision
1 -
Directory Listing
-
[select for diffs]
Added
Sun Apr 23 04:59:18 2000 UTC
(24 years, 11 months ago)
by
(unknown author)
Standard project directories initialized by cvs2svn.