remove duplicate but different instance of FUNCTION public.ports_categories_set() RETURNS trigger
Adjust column aligment for better reading
Adjust column aligment for better reading
grant truncate ON packages_raw TO packaging; allow www to read abi
Adjust column aligment for better reading
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.
mv updates-2024-06-21.txt updates-2024-06-22.README.txt
Save things for freshports multiple cookies
Move users.cookie to a new table: user_cookie This allows multiple logins for different sessions, say from your desktop and from your laptop. re: https://github.com/FreshPorts/freshports/issues/574
Allow reading to select from watch_list_element re: https://github.com/FreshPorts/freshports/issues/550
for package_notifications table, use package_notifications_abi_set_port_idx CONSTRAINT
Add insert into reports for new package notiication report change public.report_log_package_notifications to id, not serial postgres, not postgress.
Pulled in all the changes from the DB via PGAdmin 8.4
Add report_log_package_notifications
GRANT INSERT ON packages_last_checked TO abi_maintenance
Add more for this.
first draft of triggers for package_notifications table
A FreshSource RO user
add update to abi_maintenance
save SQL updates for abi maint
For PackagesLastCheckedSetRepoDate(), indicate an update is required only if a_RepoDate is not null. If it is null, there is no such repo and it cannot be imported. See: https://news.freshports.org/2023/12/31/no-repos-need-importing-how-did-this-happen-this-should-never-happen/
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.
Add more comments
Allow reading to select from categories
Add new function: DoneProcessingCommit() It is not invoked anywhere - I suspect that would be somewhere inside the commit inserting/adding code.
When checking for latest commit before a quarterly branch, ignore null port versions. They can happen: https://cgit.freebsd.org/ports/commit/?id=fb16dfecae4a6efac9f3a78e0b759fb7a3c53de4
Remove unneeded declarations and notices.
Use ports_active instead of ports By default, it is head only.
Remove latest_link, no longer used.
Rename GetCategoryPortFromLatestLink to FUNCTION GetCategoryPortFromPackageName because latestlink is no longer used by Ports.
When creating a port on a branch, use the ports table, not the ports_active view to get the element_id. It won't be there because ports_active is now head only. re: https://github.com/FreshPorts/freshports/issues/413 https://github.com/FreshPorts/freshports/issues/407
Correct the name of this file.
Add test_depends to views.
Add new column: ports.test_depends re: https://github.com/FreshPorts/freshports/issues/411
make both ports_all and ports_active head-specific. We shall see if this works out OK re: https://github.com/FreshPorts/freshports/issues/407 https://github.com/FreshPorts/freshports/issues/406
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.
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.
Comment out this NOTICE. It winds up in the .errors file for the commit.
Fix a trigger optimization which avoided updating the table if the values did not change. re: https://news.freshports.org/2022/08/19/missing-ports_categories-entries/
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.
don't tell me about required modifying the the parent % from a file to directory
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
better comment
Create the ports_to_refresh table. re: https://github.com/FreshPorts/freshports/issues/328
Make sure the branch is in public.freshports_commit_record - fixes https://github.com/FreshPorts/freshports/issues/327
add branch text to public.freshports_commit_record
silence some entries.
Add code for clearing cached commits
return multiple records when searching for elements
Add for better cache clearing: https://news.freshports.org/2021/01/31/changing-how-we-record-ports-which-need-cache-clearing/
Add pkg_plist()
add stuff for new search
comment out conflicts type so we do not lose a table
add options_name column to ports table
add author and committer name and email
Change the regex for pkgplist from 'lib/[[:alnum:]]*?\.so to 'lib/[^/]*?\.so' re https://github.com/FreshPorts/freshports/issues/216#issuecomment-794892427
commiter -> committer
Add new commit_log columns * committer_name * committer_email * author_name * author_email
better suggestion from Magnus
This attempt at replacing ports.pkg_plist with generate_plist,installed_file is close, but not quite right.
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.
Add repo.db_root_prefix
Comment out some NOTICE and WARNINGS
avoid duplicates in the cache_clearing_ports_test table
use CREATE OR REPLACE FUNCTION instead of CREATE FUNCTION
Add missing END IF
ZTHEN -> THEN Remove trailing ;
How did that space get in there?
Add in the changes from the subversion branch.
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.
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
what?
Add stuff for updating the database for use by git
Remvoe usage of public.
Fix this up for devgit - it wasn't all right
Attempt to being in updates for git which were not on this branch
Copying in things added to the sp branch which were never on the git branch
Add in * GetQuarterlyBranchName * NormalizeBranch * DenormalizeBranchName * AddNewABIToPackagesLastChecked Which where someone how only over here.
spaces onlyi
Add some comments & blank lines
third draft of elementGetCaseInsensitive()
second draft of elementGetCaseInsensitive()
first draft of elementGetCaseInsensitive()
Add packager and package roles
Add more notices
Add GetPort(integer), which pulls the element_pathname for this port
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;
When the datatypes need to be redone, redo the datatypes too
svn_hostname => repo_hostname
RENAME svn_hostname TO repo_hostname
Branch for git
whitespace only
Fix GetCategoryPortFromLatestLink() which did not work well with branches. This fixes: * https://dev.freshports.org/commits.php?package=mariadb55-server * https://dev.freshports.org/?package=mariadb55-server * https://dev.freshports.org/filter.php?package=mariadb55-server * https://dev.freshports.org/vuxml.php?vid=198e6220-ac8b-11e9-a1c7-b499baebfeaf re https://github.com/FreshPorts/freshports/issues/124
pacakges -> packages
fix PortVersionLatestBeforeQuarterlyBranch which was not pulling back the full version information
pg_hba.conf not pg_hba,conf
Move some inserts into another ddl update file. This one to be run after ri.txt
A copy of package_imports_completed is needed here
Move iso_date() and iso_date_seconds() above where they are used.
Adjust PortPackages to also return processed_date While here, return formatted dates, without seconds. Create iso_date_seconds() to format that date.
add GetPackageStatus() and iso_date()
Add value to listen_for for clearing packages.
Properly save away the package_raw update code. See http://news.freshports.org/2020/04/28/found-new-repo-release-automatically-imported-it
Add new columns to package_imports
PackagesLastCheckedSetRepoDate() needs to grab the pre-update value of repo_date for comparison
Change the update package_imports table to set newly added columns: last_checked, repo_date, import_date, processed_date
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.
Remove ports_origin from the equation
Update packages_raw by joining with ports and element_pathname
Document why the analyse is required before DELETE
Adjust names for some functions to better describe what they do.
Add * PackagesLastCheckedSetImportDate() * PackagesGetReposNeedingImports()
fix packages_last_checked to use package_sets populate public.abi
Add * GetReposToReview * PackagesLastCheckedSetRepoDate
when a new row goes into abi, add two rows into packages_last_checked
Fix how the updates are done for port_origin. There is no OLD to check.
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.
Add public.package_imports
Add in the real PortPackages
Updates to reduce stuf we don't need any more
Add ABI table
Add DDL for packages
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
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:
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
Work in progress
Add UpdatePackagesFromRawPackages()
add PackagesRawDeleteForABIPackageSet()
DISTINCT doesn't need () sort_key is no longer required
PortPackages is working.
We got progress
We now have a scripts to load in new stuff
Expand PortPackages to pull back dates from packages_last_checked
adding: * NormalizeBranch - convert latest to head and quarterly to latest branch * PackagesLastCheckedSetRepoDate(a_abi_name text, a_branch_name text, a_CheckedDate text)
Add AddNewABIToPackagesLastChecked() This should be invoked each time a new row is added to the ABI table.
Add stuff
Making good progress on packages
Add stuff related to packages
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.
'initial package'
Whitespace only
Fix CreatePort(text,text,text) by not using GetPort() with the SQL. It seems to not be pulling in the correct value.
use = not ==
remove debugging recently added to element_pathname_insert()
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);
Updates for PostgreSQL 12 iscachable -> IMMUTABLE Use ROW_COUNT because RESULT_OID is gone.
Add Quarterly revision * fixes #115 * display the port version on the latest quarterly branch Add sort-by last updated * fixes #116
Start describing the upgrade
Remove stuff no long relevent Add mention of sudoers.
Better instructions
whitespace only
Commit out We DID NOT LOCATE that port
rsyncer must be able to dump all tables
Comment out some RAISE NOTICE
do not drop TYPE conflicts
mention flavors script
Change DROP TRIGGER to DROP TRIGGER IF EXISTS
Do not create plperl here. It already exists. That creation is done via an UPGRADE.
Add the tables and functions for package flavors
Here is a better way to implement LatestCommitDatePorts()
Add package flavors
Fix the way we calculate the number of vulnerable ports.
Correct CategoryPortCount() so it uses the incoming parmeter, not a hardcoded 'databases' value.
Fix CategoryPortCount() to be branch-aware
This fixes: https://github.com/FreshPorts/freshports/issues/67
Document the changes for GetPortFromPackageName()
Add: CREATE TRUSTED PROCEDURAL LANGUAGE plperl
Add ports_conflicts_set trigger
Add permissions for CONFLICTS
This is what worked for CONFLICTS on staging.
Save work in progress
Remove cruft
remove cruft
Working on CONFLICTS What I'm saving here will have to be trimmed, but I'm saving everything so I have it.
When inserting dependencies, ignore duplicates. re: https://www.freshports.org/commit.php?category=net&port=ceph&files=yes&message_id=201803060059.w260xMYN015292@repo.freebsd.org https://news.freshports.org/2018/03/11/duplicate-dependency-issues-avoiding-duplicate-rows/
Flush the cache when vuxml processing occurs
Add port_dependencies_clear_cache()
Remove ports.makefile & ports.pkg_plist Add generate_plist
Correctly count on head: Restricted, NO CDROM, and Vulnerable
Correctly count Ingored ports
Correctly count deprecated on head
Count broken ports only on head
Make the count of expired and expiring ports branch aware.
Correctly count the number of new ports on head.
Make WatchListStagingProcess operate upon HEAD only
Fix the number of params in a NOTICE. Bug was noticed by PostgreSQL 9.6
When deleting from ports_vulnerable the port might already be deleted. Cater for that.
comments only
Correct filename
Make many changes to remove php errors, mostly undefined index/variable
Better cache clearing
* 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
Add pkg_plist & makefile
Better creation of ports
distinfo stuff
Add new columns for no-package https://github.com/FreshPorts/freshports/issues/9
whitespace
Add CopyPortFromHeadToBranch(text, text, text) & CreatePort(text, text, text) add new datatype: element_id_pathname alter all ''DROP TYPE' to 'DROP TYPE IF EXISTS' re: http://news.freshports.org/2016/06/28/branches-are-simple-but-more-complex-than-head/ http://news.freshports.org/2016/06/29/branches-add-a-new-port-automagically/ http://news.freshports.org/2016/07/02/copying-a-port-from-head-to-a-branch/ http://news.freshports.org/2016/07/02/a-single-function-for-creating-a-new-port/
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.
Add pkgmessage to ports
Add a bunch of debugging for processing UPDATING add repo.name to a query or two
null OR space, works better now
Add entry to listen_for table
Add cache_clearing_dates and the RI for it.
Comment out a RAISE notice
More fields! FETCH_DEPENDS, EXTRACT_DEPENDS, PATCH_DEPENDS, and USES
REturn repo.name
Get ready for more detail on commits
add trailing newline
Missed these
Update for branches
Make sure we never have false null values for ports.commit_log_id
Fix updates to revision name
Add in index on commit_log (committer)
How to use jails
Add a couple more things for the update
Moving to full pathnames, including repo, on commits
Update this for 9.x
Add revision
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.
Add new column to vuxml table for checksum Use this to see if a vuln changes.
Performance on vuln lookup
Correct the calculations of vulnerabilities by not using ports_vulnerable table. That's what we're setting up now. Don't use it.
Add some RI to commit_log_ports_elements
When rows are deleted from ports_vulnerable, be sure to clear the cache
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.
Add the stored procedure for PortsDependenciesAdd()
Add the upgrade for port_dependencies
Add port_dependencies
Slight tweaks to SQL
Add password reset stuff
Document upgrade for license support
Put the bracket ( in the right place.
better quoting, to cope with 8.3 strictness
convert to $$ for procedures
Go to $$ quoting
Cast the first arguent to digest(). Under 8.3.3 it seems to need this.
For showconfig
Add ports.showconfig, which will be the output of make showconfig
Sanity test failure table now has FK with delete cascade, not delete restrict.
Add triggers to keep watch list count up to date as people add/change entries to/from their watch lists.
no idea what changed here
Add the master_slave() table, as yet unused. See http://news.freshports.org/2007/10/12/masterslave-relationships/
For freshports_commit_port, invoke element_pathname() such that it does not provide a leading slash in the filename.
Sanity Test Failures should have a delete cascade, not delete restrict, relationship with commit_log
Add a return NEW to categories_new()
Alter the announcements table to have plain text.
Add AnnouncementsGetPlain() Alter AnnouncementsGet() so it does not need an end date
for the design_results table
Add GetParentID
Instructions for daemontools/fp-listen/config.py
add processing for NOTIFY category_new
instructions for adding processing of www/en/ports/categories for fp-listen
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.
Merge from FreshPorts2 to HEAD
CLE.revision_name is now returned as revision_name, not revision
Add commit_group and commit_group_contents
Add sanity_test_failures
Add changes to element_type
Add element_pathname to elementGet()
Add element_pathname to element_type
When calculating Daily Stats, put the value into a bigint.
Add more capacity to the daily_stats_table by using bigint.
element_pathname becomes pathname Add DROP TYPE to make it easier to use this in a script
Add Stats_DatabaseSize Order output by good stuff.
Add details for page_size and database size
fix broken command
Add freshports_commit_regular() and freshports_commit_port() to pull back the right stuff for a given message ID.
Take only what's in the user's staging area, not the whole staging area. Reported by Christian Ullrich <chris@chrullrich.de>
Add Sanity Test Failure upgrade notes
Add SanityTestFailures(int)
Add new table: sanity_test_failures
Populate element_pathname
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.
Add MigrateStagingAreaToWatchList()
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.
Give us a PDF version of the tables.
fix some SQL nits
Remove this one too.
Move these away. No longer used.
Add CategoryStatsUpdate()
Add category stats
Correct a trigger name
Add "on watch list" to freshports_commit()
Add LatestCommitsFiltered and LatestCommitsLargeFiltered. Remove security_notice.
add creation of element_pathname
Add triggers for maintaining element_pathname
better define the changes
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.
For SPOOLING
Remove the security notice table
Remove references to the security_notice table
Add two new functions: - Element_ID(category, port) - OnWatchList(UserID, ElementID)
Add LatestCommitDatePorts(), LatestCommitDate()
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.
Add old_new_ports_record, used by WatchListDeletedPorts()
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.
In 8.?, you cannot use DELETE in IMMUTABLE or STABLE functions. Such functions must be VOLATILE.
Found this problem when using PG8. l_SlavePortCategory and l_SlavePortName must be declared.
Remove AnyActiveFiles(). Committed for historical purposes only.
Add AllFilesDeleted() and AnyActiveFiles().
Add personal watch lists and is_interactive
Add three new columns to the ports table: is_interactive only_for_archs not_for_archs
whitespace only
Add GMT_Format()
For expired ports, and those about to expire, ignore deleted ports.
Add expiration_date
Dropping types
Move the index further down.
Add stats functions for ports.expiration_date
Add expiration date
For the latest commits, we remove the outer LIMIT. We already have an inner limit, so that is our boundary.
add Stats_PortCountVulnerable(
mention scripts/Verify/set-restricted-no-cdrom.pl
Add restricted and no_cdrom fields to the ports table
Add stats for restricted and no_cdrom ports
Add restricted and no_cdrom fields to LatestCommits* functions
Add restricted and no_cdrom
Add vulnerable_current and vulnerable_past
Start documenting the upgrade process to the latest vuxml stuff
remove ClearSlavePort (not used)
Comment out some RAISE NOTICE commands
Include instructions for setting up ports_vulnerable
- 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.
Add PortsVulnerabilityCountAdjust() which sets the correct values in the ports_vulnerable table.
Remove Notice commands not needed.
divide LatestCommits into LatestCommitsSmall and LatestCommitsLarge which deal with 10 and 100 commits respectively. This dramatically improves the speed.
Add WatchListCountDefault
Comment out a notice
Replace " in URLs with '
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);
whitespace only
Add vuxml_ranges_vid() Add TITLE to WatchersAlsoWatched()
Add also_watched_record
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".
A bit more detail on the upgrade, completed already.
This commit was manufactured by cvs2svn to create tag 'FreshPorts-VuXML'.
Use package_name, not latest_link when looking up package names
Add the vuxml tables
Correctly spell vuxml
Start using epoch
Change the column order to op1, version1, op2, version2.
Add vuxml_record
Add FUNCTION vuxml_ranges()
vuxml_ranges.vuxml_name_id becomes vuxml_affected_id.
In vuxml_ranges, rename the fields so they do not contain range_ and _start|_finish.
Add package_version(text, text, text) RETURNS text This function strings together PortVersion, PortRevision, and PortEpoch as they are for a package name.
Give initial values to port_epoch
add port_epoch to commit_log_ports rename ports.pkgname to ports.package_name
rename ports.pkgname to package_name
- 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.
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
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.
Add these fields to ports: no_latest_link no_package pkgname Add vuxml tables
Add GetCategoryPortFromLatestLink(text)
First attempt at VuXML tables
add PortsUpdatingPortsXrefAdd
Welcome to ports_updating and ports_updating_port_xref. A way to display the contents of /usr/ports/UPDATING
Add is_slave_port and latest_link to the ports table
replace ClearSlavePort(int) with ClearSlavePort(text)
add comments
add SetSlavePort(text, text), GetPort(text, text), ClearSlavePort(int)
add security_notice_id to freshports_commit result set
Add forbidden, deprecated, ignore, and broken.
Add forbidden, deprecated, ignore, and broken.
Whitespace only
Alter freshports_commit(text) to take a page size and offset. Add freshports_commit_count_elements(text) which returns the number of rows.
Add deprecated and ignore
handle the new ports.deprecated field
reverse last commit, done in error.
rename status to security_notice_status_id
security_notice[_audit].status becomes security_notice_status_id
upgrade instructions for security_notice*
Populate security_notice_status
Create security_notice_status
Alter SecurityNoticeCreate to take a status field
Remove shadow introduced via CONTROL-W
Reflect changes made to .PDM file: - announcements table dates do not have time zone - page_load_summary now has a total and users field
Provide instructions for latest changes to page_load_summary
Rename fields in page_load_summary to make more sense
Better explanations about commit_log_ports_elements
Find a better way to do FUNCTION freshports_commit(text) RETURNS SETOF freshports_commit_record This was taking two minutes for commits such as 200401291613.i0TGD7Wu024303@repoman.freebsd.org
Add function AnnouncementsGet
For the page_load_summary table, reflect changes in column names and change the way we count things.
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
Add instructions for converting page_load_detail table
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
Remove NOTIFY commands
Add PortsMovedAdd
ports_moved : make from_port_id not null. Add Date, Reason
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.
Improve the index on page_load_detail Add ports_moved table to reflect /usr/ports/MOVED
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).
add element_id to the freshports_commit_record data type.
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)
Limit the join on commit_log_ports_elements to those commits > latest_commits_ports_anchor()
include upgrade instructions
remember to create commit_log_ports_elements
Add tables for statistics
add create table for commit_log_ports_elements
Add some missing drop triggers statements.
Include instructions for populating commit_log_ports_elements
Ignore the backup files
Replace commit_log_port_extras with commit_log_ports_elements. The function of the table has changed, but the fields are the same.
*** empty log message ***
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.
- 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
- 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.
Add login counts code
Add freshports_commit_record and commit_record
add FUNCTION freshports_commit(text) RETURNS SETOF freshports_commit_record
Add freshports_commit_record, for use by commit.php
Add recent changes
add IsPort IsCategory elementGet
Add element_type
Instructions for keeping the database up to date with the code
Alter FUNCTION LastestCommits(int, int) to cater for non-port port commits. Bring back the full pathname.
Add element_pathname, which will be used for non-port ports tree commits
Add FUNCTION commit_log_ports_insert(int) RETURNS boolean which adds a commit to the latest_commits_ports table
Use TRIGGER instead of "trigger"
Add FUNCTION LastestCommits(int, int) RETURNS SETOF commit_record
Add a file which contains our data type definitions
Provide a better method for ensuring duplicates do not arrive in daily_refreshes.
Change SystemTimeAdjust to be an SQL function.
Triggers should be dropped before they are created.
Add the latest_commits and latest_commits_ports back in. We need them.
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;
for ElementTagSet, be sure to check for an existing revision before adding it. For some reason this was removed.
remove: WatchListUserID RecordLastestPortCommits RecordLastestCommits
remove: commit_log_ports_insert commit_log_insert commit_log_update
WatchListStagingClear should take an int8
make element_pathname Pathname_ID stable
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
This belongs in develop.freshports.org/www/directories
Example FreshPorts database
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.
Add watch_list_count
Add copyright notice
comment out a message
Add the announcements table
Update GetPortID to treat virtual and physical categories differently.
This commit was manufactured by cvs2svn to create tag 'FreshPorts_2003_05_04'.
Add the security notice report to the report table
move element_pathname to after a function it calls
comment out some debugging
Add function, triggers, etc, which were ommitted
In Stats_PortCountNewInterval, we shouldn't use SystemTimeAdjust
create element_pathname with an optional boolean
add users.page_size
Add user.page_size
Add security_notice_audit triggers
Use int4 instead of int8 in some places.
Let's do nice SQL
remove duplicate trigger and function add missing commit_log_update
Add missing element_pathname which takes a boolean for leading /
Add latest_commits table
start using triggers instead of rules on latest_commits_ports and latest_commits
remove anchor_clid and replace it with latest_commits_anchor and latest_commits_ports_anchor
Hmmm, when inserting, the check for old != new will fail, because there is no old.
remove duplicate GetPortID
Add new trigger ports_categories_set
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
Add optional leading slash to Element_Pathname
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.
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
rename commits_latest_ports to latest_commits_ports
Add security_notice_audit
add trigger on security_notice for security_notice_audit
better logging
add new stored procedure for security notices.
Add rules for commit_log_ports. Perhaps these should be changed into triggers.
drop the old commits_latest_ports, create the new smaller leaner version
PR 251 - columns of user_tasks table should be user_id, task_id
This commit was manufactured by cvs2svn to create tag 'RELEASE-beta- 2003_03_07'.
whitespace only
Add CategoryPortCount for category paging
Add GetPortID
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
use TRIGGER not OPAQUE convert some stuff to upper case
WatchListStagingLogDelete updated for multiple watch lists
add trigger on categories for virtual categories
virtual categories: - Allow categories.element_id to be null - create table clp (should be renamed) - create table ports_categories
convert some stuff to upper case, whitespace changes.
virtual categories support
Changes for virtual categories.
rename ports_refresh_ignore to commit_log_ports_ignore
rename ports_refresh_ignore (it was ports_refesh_ignore)
Let's order by message_id, a business value, rather than commit_log_id, which is something we set.
Start using serial so we can remove the add sequence commands a few other random changes Part of upgrading to PostgreSQL 7.3
Part of upgrade to 7.3 - use "timestamp with time zone" instead of "timestamp"
It seems I deleted a great deal during a previous commit.
Add commits_latest, which seems to have been deleted/omitted.
Some changes, don't know what...
In commits_latest_ports, add security_notice_id
redo the security notice tables to be more compact rearrange the diagram for printing
Lots of changes to fix errors/warnings found by pressing F4. Add housekeeping.id to explore speed improvements
add: users.watch_list_add_remove users.max_number_watch_lists
Add users.watch_list_add_remove
changes for multiple watch lists
Add watch_list.in_service Alter watch_list_staging to use user_id instead of watch_list_id
We had two Stats_CommitCountPorts; rename one to Stats_CommitCount.
Add Stats_CommitLogCount
Add note about watch_list columns not all being used
Add a whole new bunch of statistics
Add a note about populating element_pathnames
Move element_pathnames to ri.txt from sp.txt
Add element_pathnames
Add committer_notify
Log changes to users.email
- 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
Add revision_name
add a much simplier commits_recent
sorry, that should have been changes for freshsource
latest changes for freshports
oops, use commits_recent_ports instead of commits_recent
use commits_latest_ports instead of commits_latest, which freshsource will now use.
latest version of report_log_latest
Add the reporting module
create Stats_PortCountNewInterval and modify Stats_PortCountNewToday Stats_PortCountNewYesterday and Stats_PortCountNewThisWeek to use it.
Add daily_stats, daily_stats_data.
Add functions for more stats
Update date in copyright message
Add index on ports (element_id) Add graphs table
Lets simply the code and make it work with inserts and null parents
Ummm, let's only check parent status if we are dealing with a port here
Delete or activate the parent if a child is modified
Add status to ports_all
add encoding_losses
Add commits_latest_tmp.message_id so we can link from the webpage to the mailing list archive.
oops, reverse the sign on SystemTimeAdjust()
remove ports2, categories2, and element2 no idea where they came from
Add Daily_Refreshes table
Add Daily_Refreshes table and function for adding stuff to and removing entries from.
Make the functions previously in sp-config.txt.sample data driven and move them back into sp.txt
- add committer to commits_latest - set users.emailbouncecount default to zero - add view ports_all
Add committer to front page.
This commit was manufactured by cvs2svn to create branch 'FreshPorts2'.
Split functions into two parts. One which requires configuration for local use. The other does not.
Latest version
- 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
update PortVerifyBegin to use new ports_check strategy
Add revision to commits_latest
use ports.revision/version if commit_log_ports value is null
Alter watch_notice_log, rename frequency to frequency_id and add FK to watch_notice. add view commits_recent.
Add commits_recent view used to ensure the last one hundred ports are listed.
RecordLastestPortCommits now works independently of date. and uses a view.
Start using our view so we only get all the ports for the last 100 commits
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.
If we try to add a file into the tree, and it's parent is a file, change it to a directory rather than raise an exception.
Latest and greatest
Add functions for checking /usr/ports/INDEX
Let's start logging changes to the staging area
Let's start logging changes to the staging area.
adjust comments to be accurate
WatchListStagingMergeWatchList is no longer used
remove some unused but duplicated references
OK, now we have staging area clear, and update watch list working.
new pkg_info -qoa strategy
major change to use pkg_info -qao
Added new tables: watch_list_staging_results & watch_list_staging for use with processing pkg_info uploads
stuff for processing pkg_info uploading
add ip-address to users table.
Add ConfirmUserAccount
when a new user is created, add a token to user_confirmations
looks good for avoiding deadlock on slower machinesk
When we add a user, create their watch list.
lastest and greatest
The first thing we do is reset the refresh bit in case any refreshes complete while we are updating.
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.
Clear the refresh_done bit.
Make sure we put the basic data into the system so it is usable.
add some raw data into the required tables
Add two new tables: commits_latest housekeeping
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.
use text instead of varchar in Element_Pathname
Add the ports.categories field to the schema
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.
Add port_revision to commit_log_ports
oops, don't do asc on indexes.
commit that stuff
add default values for some timestamp field add index on commit_log(message_id)
simplify WatchListAdd so you provide the watch list id and the element pathname
Includes commit_log_ports
Includes commit_log_ports.
Latest build
Add commit_log_port and renamed commit_log_port to commit_log_port_elements
Add system.time_adjust field
Remember to update the date
Add user_confirmations table for email verification
correct some on delete cascade...
directory_file_flag should be F or D. make some RI constraints cascade not restrict
directory_file_flag should be F or D. make some RI constraints cascade not restrict
remove GetOrCreateCategory which was not used. Remove quotes from field names which screwed up the category entries.
Name things correctly
remember to set status in element.
commit_log contains a field called description, not update_description
rename system_version to system_branch rename system_version_element to system_branch_element_revision remove some unneeded sequences
remove comment to enable drop trigger.
rename system_version to system_branch rename system_version_element to system_branch_element_revision
rename system_version to system_branch rename system_version_element to system_branch_element_revision remove some unneeded sequences
add ID to head of file.
New stuff
add commit_log - commit_log_elements integrity
Add stuff about creating INDEXES
for latest changes
provide a way to get a category/port from a pathname
instructions for creating database schema
put it all away again
change ports table
Add GetCategory(int4)
Add CreatePort
Add IsPortsTree return TRUE if the element exists under the ports tree
add GetPort
change a restrict to a cascade.
add more comments and debugging. comment out all debugging.
Don't let an object be a parent of itself.
Make sure default value for status is specified.
I think we should be using this instead of the other.pd* files
fix up some typos add/remove some drops to avoid error messages.
Remove uneeded sequences. Remove asc from index creation. Remove foreign key names from foreign key creation.
first commit - use this code to create a FreshPorts2 database.
IsLoginValid added.
add WatchListAdd, a function for adding an element to a user's main watch list.
Adding triggers to set an element as deleted if a new commit_log_element arrives with change_type = 'R'.
Remember to add parents as we trace through the tree to add a new element.
add functions for system_version_element
The final bit of code to reflect the latest database changes. element_revsion is just two fields. system_version_element is just three fields.
Just the latest.
more changes.
*** empty log message ***
Initial import.
*** empty log message ***
*** empty log message ***
*** empty log message ***
This commit was manufactured by cvs2svn to create tag 'head'.
Create the FreshPorts2 project
Standard project directories initialized by cvs2svn.