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 6061
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
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 6051
Add insert into reports for new package notiication report
change public.report_log_package_notifications to id, not serial
postgres, not postgress.
Revision
5946 -
Directory Listing
-
[select for diffs]
Modified
Tue Dec 12 22:54:46 2023 UTC
(15 months, 3 weeks ago)
by
dan
Diff to
previous 5941
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
5910 -
Directory Listing
-
[select for diffs]
Modified
Sat Sep 30 15:01:34 2023 UTC
(18 months ago)
by
dan
Diff to
previous 5907
Add new function: DoneProcessingCommit()
It is not invoked anywhere - I suspect that would
be somewhere inside the commit inserting/adding
code.
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 5882
Rename GetCategoryPortFromLatestLink to FUNCTION GetCategoryPortFromPackageName
because latestlink is no longer used by Ports.
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 5855
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
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 5837
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
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 5826
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 5799
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
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
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 2095
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
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